@import "fix_problems";
.cards-container {
  margin: 0 auto;
  padding: 0 0 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 -45px 50px 0 rgba(0,59,120,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out 0.1s;
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 5;
  padding: 0 50px;
}
.card::before {
  content: '';
  display: block;
  width: 120px;
  height: 6px;
  background: #89c041;
  margin: 0 auto;
}
.card:hover {
  transform: translateY(-70px);
  box-shadow: 0 -45px 60px 0 rgba(0,59,120,0.15);
}
.card-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 2rem;
  flex-grow: 1;
  align-items: center;
}
.card-pre-title {
  color: #008c99;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0 0 0.5rem;
}
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.card-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #235b93;
  margin: 1rem auto 0;
}
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.card-text {
  color: #5f5f57;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 1.25rem 0;
  flex-grow: 1;
}
.card-footer {
  text-align: center;
  padding-top: 0.5rem;
}
.card-footer span {
  color: #008c99;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #008c99;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.card-footer span:hover {
  color: #89c041;
  border-color: #89c041;
}
.meet-team-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}
.meet-team-header {
  max-width: 900px;
  margin: 0 auto;
}
.meet-team-pre-title {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 12px;
  font-weight: 400;
}
.meet-team-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0 auto 20px;
  max-width: 700px;
}
.meet-team-divider {
  width: 60px;
  height: 3px;
  background-color: #2a7f8e;
  margin: 0 auto 30px;
}
.meet-team-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .meet-team-heading {
    font-size: 26px;
  }
  .meet-team-section {
    padding: 40px 16px;
  }
  .meet-team-description {
    font-size: 15px;
  }
}
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.provider-card {
  text-decoration: none;
  display: block;
  text-align: left;
  flex: 1 1 0;
  max-width: 350px;
  min-width: 200px;
}
.provider-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 14px;
}
.provider-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.provider-card:hover .provider-img-wrap img {
  transform: scale(1.03);
}
.provider-name {
  font-size: 17px;
  font-weight: 600;
  color: #2a7f8e;
  margin: 0 0 4px;
  line-height: 1.3;
}
.provider-title {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .provider-grid {
    gap: 30px 20px;
  }
}
@media (max-width: 480px) {
  .provider-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.so-section {
  padding: 150px 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.so-content {
  background-color: #5B3A8C;
  color: #fff;
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-row: 1/3;
}
.so-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.so-heading {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 28px;
}
.so-divider {
  width: 50px;
  height: 3px;
  background-color: #fff;
  margin-bottom: 28px;
}
.so-description {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 36px;
}
.so-cta {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.so-cta:hover {
  background-color: #fff;
  color: #5B3A8C;
}
.so-image {
  overflow: hidden;
  position: relative;
  top: -120px;
  margin-bottom: -120px;
  z-index: 1;
}
.so-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.so-quote {
  grid-column: 2/3;
  background-color: #1AABB8;
  padding: 50px 60px 40px;
  position: relative;
  bottom: -60px;
  margin-top: -60px;
  z-index: 2;
}
.so-quote-icon {
  position: absolute;
  top: -28px;
  left: 50px;
  width: 56px;
  height: 56px;
  background-color: #F5A623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.so-quote-icon span {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.so-quote-text {
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.75;
  color: #fff;
}
@media (max-width: 900px) {
  .so-section {
    padding: 0;
    grid-template-columns: 1fr;
  }
  .so-content {
    padding: 60px 30px;
    grid-row: auto;
  }
  .so-image {
    min-height: 350px;
    top: 0;
    margin-bottom: 0;
  }
  .so-image img {
    height: 100%;
  }
  .so-heading {
    font-size: 28px;
  }
  .so-quote {
    grid-column: 1/-1;
    bottom: 0;
    margin-top: 0;
  }
}
.testimonial-section {
  padding: 60px 0;
  overflow: hidden;
}
.testimonial-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}
.testimonial-label {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  color: #2ba5b5;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.testimonial-heading {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}
.testimonial-divider {
  width: 50px;
  height: 3px;
  background-color: #1a1a1a;
  margin: 0 auto;
}
.testimonial-body {
  display: flex;
  align-items: stretch;
}
.testimonial-image {
  flex: 0 0 55%;
  max-width: 55%;
  line-height: 0;
}
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-slider {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 40px 60px;
  position: relative;
}
.testimonial-slide {
  display: none;
}
.testimonial-slide.active {
  display: block;
  position: relative;
}
.testimonial-quote-open {
  color: #6b4c9a;
  font-size: 48px;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -4px;
}
.testimonial-quote-close {
  color: #6b4c9a;
  font-size: 48px;
  font-family: Georgia, serif;
  line-height: 1;
  text-align: right;
  margin-top: 15px;
  letter-spacing: -4px;
}
.testimonial-quote-text {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}
.testimonial-quote-text strong,
.testimonial-quote-text b {
  color: #2ba5b5;
  font-weight: 700;
}
.testimonial-quote-name {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}
.testimonial-dot.active {
  background-color: #6b4c9a;
}
@media (max-width: 768px) {
  .testimonial-body {
    flex-direction: column;
  }
  .testimonial-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .testimonial-slider {
    padding: 30px 20px;
  }
  .testimonial-heading {
    font-size: 28px;
  }
}
.testimonial-slider {
  overflow: visible;
}
.testimonial-quote-close {
  padding-right: 10px;
}
.care-cards-section {
  padding: 40px 20px;
  text-align: center;
}
.care-cards-heading {
  color: #2a7ab5;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
}
.care-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}
.care-card {
  width: calc(30%);
  min-width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.care-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.care-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.care-card-title {
  padding: 12px 15px;
  text-align: left;
}
.care-card-title span {
  color: #2a7ab5;
  font-size: 15px;
  font-weight: 500;
}
a.care-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.care-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
}
@media (max-width: 900px) {
  .care-card {
    width: calc(30%);
  }
}
@media (max-width: 550px) {
  .care-card {
    width: 100%;
  }
}
.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg,#eaf2f8 0%,#d6e6f2 50%,#eaf2f8 100%);
  padding: 60px 0 80px;
}
.about-section-bg {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -10%;
  width: 60%;
  height: 120%;
  background: rgba(255,255,255,0.15);
  transform: skewY(-6deg);
  pointer-events: none;
}
.about-intro {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.about-intro-logo {
  flex-shrink: 0;
  width: 180px;
}
.about-intro-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.about-intro-content {
  flex: 1;
}
.about-intro-heading {
  color: #1b4965;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.about-intro-text {
  color: #444;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.info-panels {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.info-panel {
  flex: 1;
  background: #1b4965;
  border-radius: 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.info-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.info-panel-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.info-panel-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.8;
}
.info-panel-body {
  padding: 20px 28px;
  flex: 1;
}
.info-panel-text {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.info-panel-footer {
  padding: 0 28px 28px;
}
.info-panel-btn {
  display: inline-block;
  padding: 11px 28px;
  background: #fff;
  color: #1b4965;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.info-panel-btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-intro-logo {
    width: 140px;
  }
  .info-panels {
    flex-direction: column;
  }
  .about-section {
    padding: 40px 0 50px;
  }
}
.a2a_kit {
  text-align: right;
}
.header-wrapper {
  display: flex;
}
.header-wrapper a {
  color: #005b9e;
  text-decoration: none;
}
.navigation-menu {
  margin: 0;
  padding: 0;
  height: 50px;
}
.tabs {
  background-color: #173c70;
}
.tabs ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
.tabs ul a {
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  font-family: gothic, sans-serif;
}
.tabs .submenu-top-item {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.tabs .submenu-top-item:hover > ul {
  z-index: 99999;
  opacity: 1;
  transition: 300ms;
}
.tabs .submenu-top-item ul {
  padding: 10px;
  background: #173c70;
  position: absolute;
  display: flex;
  top: 40px;
  width: 300px;
  left: 0;
  opacity: 0;
  transition: 300ms;
  z-index: -1;
  animation-delay: 1s;
  border: 1px solid #2ecc40;
  border-radius: 8px;
}
.tabs .submenu-top-item ul li {
  width: 100%;
  display: flex;
  justify-content: center;
  transition: 300ms;
}
.tabs .submenu-top-item ul li:hover {
  background: white;
  transition: 300ms;
}
.tabs .submenu-top-item ul li:hover a {
  color: #173c70;
}
.tabs .submenu-top-item ul a {
  width: 100%;
  display: flex;
  justify-content: center;
}
.tabs .submenu-top-item ul:hover {
  z-index: 99999;
  opacity: 1;
}
@media (max-width: 1000px) {
  .header-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.header-social-icons-wrapper {
  margin-bottom: 8px;
}
.header-social-icons {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-social-icons > li {
  display: inline-block;
  vertical-align: top;
}
.header-social-icons > li:nth-child(n+2) {
  margin-left: 8px;
}
.header-social-icons img {
  max-width: 48px;
  height: auto;
  aspect-ratio: 1;
  vertical-align: bottom;
}
.header-wrappings {
  text-align: center;
  max-width: 1500px;
  max-width: min(100%,1500px);
  margin-right: auto;
  margin-left: auto;
  padding: 2em;
}
.header-scrolled .header-wrappings {
  background-color: #fff;
}
.header-wrappings img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.header-wrappings .search-fields {
  border: 1px solid #333;
  background-color: #fff;
  display: block;
}
.header-wrappings .search-fields,
.header-wrappings .search-fields input {
  border-radius: 6px;
}
.header-wrappings .search-fields .fa {
  color: #333;
}
.header-wrappings .search-fields .fa:hover,
.header-wrappings .search-fields .fa:focus,
.header-wrappings .search-fields .fa:active {
  color: #0c66a5;
}
a.book-now {
  color: #4e8c36;
  font-size: 1.4rem;
  font-weight: 800;
}
div.header-container-wrappings {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: solid #173b70 35px;
}
div.header-hospital-address {
  text-align: right;
  color: #173b70;
}
.tabs .top-left-menu a,
.tabs .top-left-menu a:link,
.tabs .top-left-menu a:visited,
.tabs .top-left-menu a:hover,
.tabs .top-left-menu a:focus,
.tabs .top-left-menu a:active {
  text-decoration: none;
  color: #fff;
  padding-right: 10px;
  font-size: 15px;
  margin-right: 15px;
  padding-top: 0;
  display: block;
}
.header-logo {
  max-width: 30%;
}
.content-page .content-header-wrapper {
  padding: 20px 0;
}
.contact-bar-wrappings p .fa {
  font-size: 16px;
  padding-right: 10px;
}
.content-logo {
  float: left;
}
.content-address {
  float: right;
}
.content-search,
.content-icons {
  padding-top: 10px;
  padding-right: 40px;
  text-align: right;
}
.header-logo-wrapper {
  overflow: hidden;
  padding-top: 5px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 55;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  background: linear-gradient(to right,#ffffff 0%,rgba(255,255,255,0) 100%);
}
.header-logo img {
  max-width: 100%;
  height: auto;
  margin-top: 95px;
  background: #fff;
  background: radial-gradient(ellipse at center,rgba(255,255,255,0.62) 0%,rgba(255,255,255,0) 68%);
}
.header {
  text-align: right;
  color: white;
  padding-bottom: 10px;
  padding-right: 20px;
  font-size: 14px;
}
.content-page .wrapper {
  display: none;
}
@media (min-width: ) {
  .header-wrapper {
    text-align: center;
  }
  .home-page .header-container-wrappings:before,
  .home-page .header-container-wrappings:after {
    display: block;
    clear: both;
    content: "";
  }
  .home-page .header-container-wrappings .header-wrappings img {
    transition: width 0.5s linear, height 0.5s linear;
  }
  .home-page .header-container-wrappings .header-wrappings .logo img {
    height: auto;
    padding: 2em;
  }
  .home-page .header-container-wrappings .header-wrappings .hospital-logo img {
    width: 167px;
    height: auto;
  }
  .home-page .header-container-wrappings.header-scrolled .header-wrappings .logo img {
    width: 250px;
    height: auto;
  }
  .home-page .header-container-wrappings.header-scrolled .header-wrappings .hospital-logo img {
    width: 102px;
    height: auto;
  }
  .hospital-logo-and-search {
    margin-left: auto;
    margin-right: 40px;
  }
}
@media (max-width: ) {
  .header-icons {
    display: none;
  }
}
@media (max-width: ) {
  .a2a_kit {
    text-align: center;
  }
  .content-page .hospital-logo-and-search {
    display: none;
  }
  .content-page .content-header-wrapper,
  .header-logo {
    display: none;
  }
  .header-wrappings .hospital-logo {
    margin-bottom: 0;
  }
  .header-wrappings {
    padding-bottom: 0;
  }
  .hospital-logo {
    margin-top: 20px;
  }
  .hospital-logo img {
    max-width: 100px;
    height: auto;
  }
  .hospital-logo-and-search {
    padding: 20px;
    text-align: center;
  }
}
.mobile-navbar,
.mobile-close-menu,
.mobile-search-box-wrappings,
.mobile-logo,
.mobile-search-box {
  display: none;
}
.mobile-close-menu {
  color: #fff;
  cursor: pointer;
  font-size: 1.5em;
  position: absolute;
  z-index: 99999;
  top: 10px;
  right: 10px;
}
.mobile-search-box-wrappings {
  position: relative;
  z-index: 99999;
  text-align: center;
  padding: 0;
}
.mobile-navbar {
  background: #0f416b;
  color: #fff;
  font-size: 1.5em;
  padding: 0.25em;
  border-top: 5px solid #6cbe4b;
}
.mobile-search-box-wrappings .fa,
.mobile-navbar .fa {
  padding: 0.25em;
  color: #fff;
}
.mobile-logo {
  display: none;
  position: relative;
  z-index: 99999;
  text-align: center;
  padding: 10px;
}
.mobile-logo img {
  max-width: 100%;
  height: auto;
}
.mobile-navbar .fa {
  cursor: pointer;
  padding: 0.25em;
  position: relative;
  z-index: 99999;
}
.mobile-navbar .show-menu {
  float: left;
}
.mobile-navbar .show-search {
  float: right;
}
table.job_form {
  max-width: 100%;
  text-align: left;
}
.showing-mobile-search .mobile-search-box-wrappings {
  background: #3b9fa8;
}
@media (max-width: 1600px) {
  .award-image {
    opacity: 0.4;
  }
}
@media (max-width: 1000px) {
  .award-image {
    display: none;
  }
}
@media (max-width: ) {
  .mobile-logo,
  .mobile-navbar,
  .mobile-search-box-wrappings {
    display: block;
  }
  .showing-mobile-search .mobile-search-box-wrappings {
    background: #6b88af;
    padding: 8px;
  }
  .mobile-close-menu {
    display: inline-block;
  }
  .header-search {
    display: none !important;
  }
  img[src="/docs/logo-services.png"] {
    display: none;
  }
}
tr.welcome-row {
  display: flex;
  align-items: center;
}
td.welcome-image {
  vertical-align: middle;
}
td.welcome-text {
  vertical-align: center !important;
  display: table-cell;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 60px;
}
.home-page-section-icon-containers {
  display: none;
}
.home-page-welcome-contained-wrapper {
  justify-content: center;
}
.information-container-wrappings {
  width: auto !important;
}
.header-address-content-wrapper + .header-address-content-wrapper,
.footer-columns-container-wrapper + .footer-columns-container-wrapper,
.content-menu-wrappings-1 + .content-menu-wrappings-1 {
  display: none !important;
}
.header-wrapper .fa-facebook-square:before {
  color: #4267B2;
}
a.family-clinic {
  text-align: center;
}
table.patient-portal {
  text-align: center;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}
.pageContent a.patient-portal-btn {
  font-size: 1.2rem;
  display: block;
  font-weight: bold;
  margin: 0;
  padding: 10px 5px;
  text-align: center;
  color: #fff;
  background-color: #6cbe4b;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  font-style: normal;
  text-decoration: none;
  border: 2px solid transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pageContent a.patient-portal-btn:hover {
  background-color: #173b70;
  transition: .4s;
}
.pageContent a.vcr-btn {
  font-size: 1.2rem;
  display: block;
  font-weight: bold;
  margin: 0;
  padding: 10px 5px;
  text-align: center;
  color: #fff;
  background-color: #6cbe4b;
  max-width: 500px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  font-style: normal;
  text-decoration: none;
  border: 2px solid transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pageContent a.vcr-btn:hover {
  background-color: #173b70;
  transition: .4s;
}
.pageContent a.billpay-btn {
  font-size: 1.2rem;
  display: block;
  font-weight: bold;
  margin: 0;
  padding: 10px 5px;
  text-align: center;
  color: #fff;
  background-color: #6cbe4b;
  max-width: 350px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  font-style: normal;
  text-decoration: none;
  border: 2px solid transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pageContent a.billpay-btn:hover {
  background-color: #173b70;
  transition: .4s;
}
.flex-direction-nav a {
  overflow: visible;
  width: 50px;
  height: 50px;
}
.alert-content {
  background: red;
  margin: 0 auto;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
}
.alert-content a,
.alert-content a:link,
.alert-content a:visited,
.alert-content a:active,
.alert-content a:hover,
.alert-content a:focus {
  color: #fff;
  font-size: 1.2em;
  margin: 0 auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.alert-content a:hover {
  text-decoration: underline;
  opacity: .8;
}
.flex-direction-nav a:before {
  font-size: 32px;
}
h1.nursing-title {
  font-weight: bold;
}
.nursing-title h1 a:hover {
  opacity: .8;
  transform: scale(1.1);
}
.food-menu-day {
  margin: 20px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}
.food-menu-day a,
.food-menu-day a:link,
.food-menu-day a:visited,
.food-menu-day a:hover,
.food-menu-day a:focus,
.food-menu-day a:active {
  text-decoration: none;
  color: #fff;
}
.food-menu-day a:hover {
  text-decoration: underline;
}
.fa-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 40px;
  font-size: 2em;
}
.fa-icon a:link,
a:focus,
a:active {
  color: #484275;
}
.fa-icon:hover {
  color: #08586e;
  transition: .4s;
  transform: scale(1.1);
}
.event-html-calendar-listing {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.calendar-food-menu {
  display: inline-block;
  margin: 0 20px;
  padding: 0;
  font-size: 1.3rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .calendar-food-menu {
    -moz-columns: 2;
    -webkit-columns: 2;
    columns: 2;
  }
}
@media only screen and (max-width: 767px) {
  .calendar-food-menu {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 360px) {
  .calendar-food-menu {
    font-size: 1.0rem;
  }
}
.calendar-food-menu li {
  margin-left: 30px;
  text-align: left;
}
.contact-bar-content {
  display: none;
}
.provider-images {
  z-index: 2300;
}
.provider-images .random-providers-listing img {
  transition: transform 0.4s;
}
.provider-images .random-providers-listing img:hover {
  transform: scale(1.4);
}
.navigation-menu .fa-home {
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  transition: transform 0.2s;
}
.navigation-menu .fa-home:hover {
  -moz-transform: translate3d(0,3px,0) scale(2);
  -o-transform: translate3d(0,3px,0) scale(2);
  -webkit-transform: translate3d(0,3px,0) scale(2);
  -ms-transform: translate3d(0,3px,0) scale(2);
  transform: translate3d(0,3px,0) scale(2);
}
.site-main-slideshow-container {
  position: relative;
}
.site-main-slideshow-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.doctor-listing-page {
  text-align: center;
}
.doctor-listing-page table {
  display: inline-table !important;
  text-align: left;
}
input.search-text {
  padding: 1px 1px 1px 6px;
}
.contact-bar-content {
  font-size: 16px;
  transition: font-size 0.3s;
}
.fh-info----news-item-image img:hover {
  tranform: scale(1.1);
  opacity: .6;
  transition: .4s;
}
.fh-info----news-item img:hover {
  transform: scale(1.2);
  opacity: .6;
  transition: .4s;
}
.fh-info----news-item-title a:link,
a:visted,
a:active {
  text-decoration: none;
}


