html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  body {
    font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background-color: #fefefe;
    margin: 0;
  }
  
  a {
    color: #157e91;
    text-decoration: none;
  }
  
  img  {
    max-width: 100%;
  }
  
  video {
    max-width: 100%;
    height: auto;
  }
  
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  
  textarea,
  input.text,
  input[type="text"],
  input[type="button"],
  input[type="submit"],
  .input-checkbox {
  -webkit-appearance: none;
  }
  
  .spacer {
    flex-grow: 1!important;
  }
  
  #navbar {
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: 0.1s all ease-out;
    z-index: 50;
    position: sticky;
    top: 0;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
  }
  
  #navbar.hidden-navbar {
    box-shadow: none;
    transform: translate3d(0, -100%, 0);
  }
  
  .nav-open #navbar {
    height: 100vh;
  }
  
  .navbar {
    z-index: 20;
    right: 0;
    height: 3.6rem;
    background-color: #fff;
    border-bottom: 1px solid #eaecef;
    padding: .7rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .navbar-masthead {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: #fff;
    max-height: 68px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
  }
  
  .navbar-links {
    display: none;
  }
  
  .user-login {
    display: none;
  }
  
  .navbar-masthead .search-box {
    position: absolute;
    right: 1rem;
    top: 9px;
  }
  
  .navbar-masthead a.logo svg {
    width: 230px;
    height: 100%;
  }
  
  amp-autocomplete div:first-of-type {
    width: 320px;
    right: 0;
    max-height: 60vh;
    color: #304455;
  }
  
  
  .drawer-content__sidebar {
    background: #fff;
    border-right: 1px solid rgba(0,0,0,.12);
    bottom: 0;
    font-size: 14px;
    overflow-y: auto;
    padding: 72px 0 40px;
    position: fixed;
    top: 58px;
    transform: translateX(-100%);
    transition: transform .15s cubic-bezier(.4,0,.2,1);
    width: 100%;
    z-index: 5;
  }
  
  svg.icon.closed {
    display: none;
  }
  
  .sidebar-button.open svg.icon.open {
    display: none;
  }
  
  .sidebar-button svg.icon.close {
    display: none;
  }
  
  .sidebar-button.open svg.icon.close {
    display: block;
  }
  
  .sidebar-button.open svg.icon.closed {
    display: block;
  }
  
  .sidebar-button {
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    top: .95rem;
    left: 1.2rem;
    cursor: pointer;
  }
  
  .navbar .site-name, .site-name__bold {
    font-size: 1.3rem;
    font-weight: 300;
    position: relative;
    text-transform: uppercase;
  }
  
  .navbar .site-name__bold {
    font-weight: 600;
  }
  
  .navbar .links {
    padding: 0 0 0 1rem;
    background-color: #fff;
    white-space: nowrap;
    font-size: .9rem;
    display: flex;
  }
  
  .navbar .links .search-box {
    flex: 0 0 auto;
    vertical-align: top;
  }
  
  .search-box input {
    cursor: text;
    flex: 1;
    width: 200px;
    color: #505050;
    display: inline-block;
    border: 1px solid #157e91;
    border-radius: 2rem;
    font-size: 1rem;
    line-height: 1.5;
    padding: .3rem .5rem .3rem 1.5rem;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-size: 1rem;
    transition: width .35s ease;
    background-color: transparent;
    background-position: .6rem .5rem;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13'%3E%3Cg stroke-width='2' stroke='%23aaa' fill='none'%3E%3Cpath d='M11.29 11.71l-4-4'/%3E%3Ccircle cx='5' cy='5' r='4'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  .autocomplete-input:focus,.autocomplete-input[aria-expanded=true] {
    border-color:rgba(0,0,0,.12);
    background-color:#fff;
    outline:none;
    box-shadow:0 2px 2px rgba(0,0,0,.16);
  }
  [data-position=below] .autocomplete-input[aria-expanded=true] {
    border-bottom-color:transparent;
    border-radius:8px 8px 0 0;
  }
  [data-position=above] .autocomplete-input[aria-expanded=true] {
    border-top-color:transparent;
    border-radius:0 0 8px 8px;
    z-index:2;
  }
  .autocomplete[data-loading=true]:after {
    content:"";
    border:3px solid rgba(0,0,0,.12);
    border-right-color:rgba(0,0,0,.48);
    border-radius:100%;
    width:20px;
    height:20px;
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);animation:rotate 1s linear infinite;
  }
  .autocomplete-result-list {
    margin:0;
    border:1px solid #157e91;
    padding:0;
    box-sizing:border-box;
    max-height:296px;
    overflow-y:auto;
    background:#fff;
    list-style:none;
    box-shadow:0 2px 2px rgba(0,0,0,.16);
  }
  [data-position=below] .autocomplete-result-list {
    margin-top:-1px;
    border-top-color:transparent;
    border-radius:0 0 8px 8px;
    padding-bottom:8px;
  }
  [data-position=above] .autocomplete-result-list {
    margin-bottom:-1px;
    border-bottom-color:transparent;
    border-radius:8px 8px 0 0;
    padding-top:8px;
  }
  .autocomplete-result {
    cursor: default;
    padding: .5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
  }
  .autocomplete-result:hover,.autocomplete-result[aria-selected=true]{
    background-color:rgba(0,0,0,.06);
  }
  
  @keyframes rotate{0%{transform:translateY(-50%) rotate(0deg)}to{transform:translateY(-50%) rotate(359deg)}}
  @keyframes spin {
    0% {
      transform:rotate(0deg)
    }
    to {
      transform:rotate(1turn)
    }
  }
  
  #search {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
  }
  
  .clear {
    display: none;
    position: absolute;
    right: .8rem;
    top: .4rem;
  }
  
  .autocomplete[data-has-value="true"] .clear {
    display: block;
  }
  
  .autocomplete[data-loading="true"] .clear {
    display: none;
  }
  
  .autocomplete-input-no-results.autocomplete-input-focused {
    border-bottom-color: transparent;
    border-radius: 8px 8px 0 0;
  }
  
  .autocomplete[data-loading="true"] .autocomplete-result-list {
    display: none;
  }
  
  .autocomplete-input-no-results:not(.autocomplete-input-focused) ~ .autocomplete-result-list {
    display: none;
  }
  
  .no-touch .nav-item:hover > .mega-menu {
    opacity: 1;
    height: auto;
    visibility: visible;
  }
  
  .no-touch .nav-item:hover .nav-link {
    border-bottom: 1px solid;
    color: #157e91;
  }
  
  .mega-menu {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    top: 61px;
    background: #F9F9F9;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all .35s ease-in-out;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  }
  
  .mega-menu__row {
    padding: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  
  a.mega-menu__heading {
    font-size: 1.3rem;
    text-transform: initial;
    font-weight: 700;
    color: #505050;
    text-decoration: none;
    margin-bottom: .8rem;
    display: inline-block;
    border-bottom: 2px solid #157e91;
    padding-bottom: .3rem;
  }
  
  .mega-menu__left {
    width: 50%;
  }
  
  .mega-menu__right {
    width: 50%;
    margin-left: 2%;
    position: relative;
  }
  
  .mega-menu__left ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  .mega-menu__feature {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
    transition: .3s;
    background: #fff;
    position: relative;
  }
  
  a.mega-menu__feature:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #157e91;
    transition: width .3s ease-in-out;
    z-index: 9999;
  }
  
  .no-touch a.mega-menu__feature:hover:after {
    width: 100%;
  }
  
  .mega-menu__feature-image {
    width: 40%;
    display: flex;
  }
  
  .mega-menu__feature-image img {
    object-fit: cover;
    height: 100%;
    border-radius: 4px 0 0 4px;
  }
  
  .mega-menu__feature-content {
    flex-basis: 60%;
    text-transform: initial;
    padding: 1rem;
  }
  
  .mega-menu__feature-content h3 {
    margin: 0;
    color: #505050;
  }
  
  .mega-menu__feature-content p {
    white-space: normal;
    font-size: .9rem;
    line-height: 1.5;
    margin-top: .6rem;
  }
  
  .mega-menu__read-more {
    position: absolute;
    bottom: 8px;
    right: 1.2rem;
    display: flex;
    align-items: center;
    background: #fa7676;
    padding: .2rem .1rem .2rem .5rem;
    border-radius: 4px;
    font-size: .8rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
  }
  
  .mega-menu__col {
    font-size: 1rem;
    width: 50%;
    box-sizing: border-box;
    line-height: 1.3;
    margin: .4rem 0;
  }
  
  .mega-menu__col a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    text-transform: none;
    transition: .4s;
    padding: .3rem .8rem .3rem 0;
    border: 1px solid transparent;
    border-radius: 8px;
    white-space: normal;
  }
  
  .no-touch .mega-menu__col a:hover {
    color: #157e91;
  }
  
  .search-box input:focus {
    cursor: auto;
    padding: .3rem .5rem .3rem 2.3rem;
    border-color: #157e91;
    background-color: #fff;
    background-position: .6rem .55rem;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13'%3E%3Cg stroke-width='2' stroke='%23aaa' fill='none'%3E%3Cpath d='M11.29 11.71l-4-4'/%3E%3Ccircle cx='5' cy='5' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 1rem;
    width: 300px;
  }
  
  a.list-group-item {
    color: inherit;
    text-decoration: none;
    padding: .5rem 1rem;
    display: block;
    white-space: normal;
  }
  
  .no-touch a.list-group-item:hover {
    background-color: #eee;
  }
  
  .search-result__entry-type {
    font-size: .8rem;
  }
  
  .search-result__title {
    font-weight: 700;
    font-size: .95rem;
  }
  
  .navbar .links .nav-links {
    flex: 1;
  }
  
  .nav-links {
    display: inline-block;
  }
  
  .nav-links .nav-item {
    display: inline-block;
    margin-left: 1.25rem;
    line-height: 19px;
    text-align: center;
  }
  
  .no-touch .nav-item:hover:after {
    content: '';
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    height: 24px;
  }

  .no-touch .nav-item.scrolled:hover:after {
    top: 44px;
  }
  
  a.nav-link {
    color: #505050;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: .85rem;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: .3s;
  }
  
  a.nav-link.active {
    border-bottom: 1px solid;
    color: #157e91;
    font-weight: 700;
  }
  
  .no-touch a.nav-link:hover {
    border-bottom: 2px solid;
  }
  
  a.nav-link span {
    color: #777;
    font-weight: 400;
    display: none;
    font-size: .75rem;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
    position: relative;
  }
  
  .header-logo, .header-nav__items {
    margin: 0 32px;
  }
  
  .search-box .srch-x {
  padding: .3rem;
  }
  
  a.logo {
    display: flex;
  }
  
  a.logo svg {
    width: 240px;
  }
  
  span.logo-thin {
    font-weight: 400;
    margin-right: -7px;
    color: #157e91;
  }
  
  .header-nav__items ul {
    display: flex;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .header-nav__items ul li {
    padding: 1rem 1.5rem;
    text-align: center;
  }
  
  .header-nav__items ul li span {
    display: block;
  }
  
  a.nav-item__link {
    text-decoration: none;
    color: inherit;
    line-height: 1.5;
  }
  
  span.site-name__subtle {
    font-weight: 300;
    color: #157e91;
    text-transform: uppercase;
  }
  
  span.site-name__highlight {
    font-weight: 600;
    color: #157e91;
    text-transform: uppercase;
  }
  
  .header button {
    border: 0;
    background-color: transparent;
    outline: 0;
  }
  
  .drawer-sidebar {
    width: 320px;
    background: #fff;
    padding: 1rem;
  
  }
  
  amp-sidebar amp-img {
    max-width: 75%;
    margin-top: 5px;
  }
  
  amp-sidebar button {
    position: absolute;
    right: 0;
    background: #fff;
    outline: 0;
    border: 0;
  }
  
  nav.drawer-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 3.6rem 1.2rem 5rem;
    z-index: 16;
    background-color: #fff;
    box-sizing: border-box;
  }
  
  .drawer-navigation.mainmenuopen {
  display: block;
  z-index: 40;
  overflow-y: auto;
  }
  
  nav.drawer-navigation.mainmenuopen~.app {
  max-width: 100vw;
  overflow-x: hidden;
  max-height: calc(100vh - 58px - 54px);
  }
  
  .covid-drawer {
    margin: -3px -1.2rem 0;
    background: rgba(10,179,201,.1);
    padding: 0 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .covid-drawer .drawer-find__links {
    border-bottom: 0;
  }
  
  .covid-drawer .drawer-find__header h4 {
    color: #157e91;
  }
  
  .covid-drawer .drawer-find__header svg {
    fill: #157e91;
  }
  
  .drawer-find__header {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #757573;
    padding: 1rem 0 .7rem;
  }
  
  .drawer-find__links {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
  }
  
  .drawer-find__header h4 {
    margin: 0
  }
  
  .drawer-find__links a {
    border: 1px solid #157e91;
    padding: .25rem .75rem;
    border-radius: 4px;
    font-size: .95rem;
    font-weight: 600;
    background: #fff;
    margin: 0 .75rem .75rem 0;
  }
  
  .drawer-find__header svg {
    margin-right: 4px;
  }
  
  .drawer-find__links {
    display: flex;
    flex-wrap: wrap;
  }
  
  .drawer-navigation li a {
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    color: inherit;
  }
  
  .drawer-navigation li {
    margin: 1rem .4rem 0;
    outline: 0;
    font-size: 1.2rem;
  }
  
  .drawer-navigation li.drawer-item ul.drawer-children {
    display: none;
  }
  
  .drawer-navigation li.drawer-item.open > ul.drawer-children {
    display: block;
    padding-left: 1.3rem;
  }
  
  .drawer-navigation .drawer-item__sub.open > ul.drawer-children {
    display: block;
    padding-left: 1.3rem;
  }
  
  nav.drawer-navigation header {
    font-weight: 700;
    margin: 1.5rem 0 0 .4rem;
  }
  
  ul.drawer-children {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
  }
  
  .drawer-navigation li.drawer-item__sub {
    font-size: 1rem;
    width: calc(50% - .8rem);
    box-sizing: border-box;
    line-height: 1.4;
  }
  
  
  .drawer-navigation li.drawer-item > span {
    display: inline-block;
    padding: 8px 0;
    width: 100%;
    outline: 0;
  }
  
  .drawer-navigation li.drawer-item__sub > span {
    display: inline-block;
    width: 100%;
    outline: 0;
  }
  
  .drawer-navigation li.drawer-item > span:after  {
    content: "expand_more";
    font-family: "Material Icons";
    font-size: 16px;
    margin-left: 1rem;
    vertical-align: middle;
  }
  
  .drawer-navigation li.drawer-item.open > span:after {
    content: "expand_less";
    font-family: "Material Icons";
    font-size: 16px;
    margin-left: 1rem;
    vertical-align: middle;
  }
  
  .drawer-navigation li.drawer-item__sub > span:after  {
    content: "expand_more";
    font-family: "Material Icons";
    font-size: 16px;
    margin-left: 1rem;
    vertical-align: middle;
  }
  
  .drawer-navigation li.drawer-item__sub.open > span:after {
    content: "expand_less";
    font-family: "Material Icons";
    font-size: 16px;
    margin-left: 1rem;
    vertical-align: middle;
  }
  
  a.drawer-sub__title {
    text-transform: uppercase;
  }
  
  a.drawer-login {
    padding: .25rem .75rem;
    border-radius: 4px;
    font-weight: 600;
    background: #157e91;
    text-align: center;
    display: block;
    color: #fff;
  }
  
  #app {
    background: #f9f9f9;
  }
  
  .group-banner {
    margin: 1rem 0;
  }
  
  .dfp-ad {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  body.nav-open {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
  }
  
  .hero-image.empty {
    min-height: auto;
  }
  
  .hero-image.empty .hero-text {
    display: block;
    padding: 2.5rem 1rem 1rem;
    position: relative;
    left: 0;
  }
  
  .hero-image {
    min-height: 280px;
    position: relative;
    z-index: 1;
    background-color: #157e91;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f7f7f7' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  .hero-image__container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  
  .hero-image__container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(to top,rgba(23,23,23,.7) 0,rgba(23,23,23,0) 70%);
  }
  
  #homepage .hero-image__container:after {
    background: linear-gradient(to top,rgba(23,23,23,.4) 0,rgba(23,23,23,0) 70%);
  }
  
  
  .hero-image__container img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    max-height: 100%;
    max-width: 100%;
    min-height: 100%;
    min-width: 100%;
  }
  
  .hero-copyright {
    position: absolute;
    bottom: 0;
    color: #fff;
    right: 0;
    z-index: 9;
    font-size: .75rem;
    padding: .25rem 1rem;
    opacity: .7;
  }
  
  .hero-text {
    color: #fff;
    left: 1%;
    right: 3%;
    bottom: 1%;
    position: absolute;
    display: inline-block;
    padding: 1rem;
    z-index: 50;
  }
  
  .hero-text h1 {
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
    font-weight: 600;
    margin: .5rem 0;
    line-height: 1.4;
  }
  
  .breadcrumbs {
    border-bottom: 1px solid #ccc;
  }
  
  .breadcrumb {
    margin-bottom: .6rem;
  }
  
  .breadcrumb a {
    color: #157e91;
  }
  
  .breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: .75rem 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    color: #777;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  .breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
  }
  
  #profile .breadcrumbs {
    border-bottom: 0;
  }
  
  .wrapper {
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .segment {
    padding: 16px;
  }
  
  .segment.flush {
    padding-top: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .main-content__sidebar {
    display: flex;
    flex-direction: column;
  }
  
  .more-in__nav {
    order: 1;
    border-bottom: 1px solid #ccc;
    margin: 0 -16px 16px;
    background: #eee;
    padding: .7rem 1rem;
  }
  
  #pages .more-in__nav {
    display: none;
  }
  
  .col__main {
    order: 2;
  }
  
  .col__sidebar {
    order: 3;
  }
  
  .profile__main {
    order: 3;
  }
  
  .profile__sidebar {
    order: 2;
  }
  
  .more-in__nav-heading {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    line-height: 1.4;
  }
  
  .more-in__nav-heading::after {
    content: "expand_more";
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .more-in__nav-heading.open::after {
    content: "expand_less";
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .has-children button {
    vertical-align: middle;
    outline: 0;
    background-color: transparent;
    border: 0;
  }
  
  .has-children button::after {
    content: "expand_more";
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .has-children button.open::after {
    content: "expand_less";
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .more-in__nav-heading h4 {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
  }
  
  .more-in__nav-heading h4 span {
    display: block;
    font-size: .9rem;
    font-weight: 300;
  }
  
  .more-in__subnav {
    margin-top: 16px;
  }
  
  .more-in__nav ul li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    margin-top: .5rem;
  }
  
  .more-in__nav .children li {
    font-size: .9rem
  }
  
  .more-in__nav ul li a {
    color: inherit;
    text-decoration: none;
    transition: .3s;
    font-weight: 400;
  }
  
  .more-in__nav ul li a:hover {
    color: #157e91;
  }
  
  .more-in__nav ul li a.active {
    font-weight: 700;
    color: #157e91;
  }
  
  .more-in__subnav li ul {
    padding-left: 1.1rem;
  }
  
  .more-in__subnav .has-children ul.children {
    display: none;
  }
  
  .has-children .subnav-collapse:after {
    content: "add";
    font-family: "Material Icons";
    font-size: 16px;
    right: 0;
    margin-left: 1rem;
    padding: 10px;
  }
  
  .has-children.open .subnav-collapse:after {
    content: "remove";
    font-family: "Material Icons";
    font-size: 16px;
    right: 0;
    margin-left: 1rem;
    padding: 10px;
  
  }
  
  .lead-intro p {
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.7;
  }
  
  body.no-scroll {
    overflow: hidden;
  }
  
  .map-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    overflow: hidden;
    background: transparent;
    height: 100vh;
  }
  
  .map-overlay.show {
    opacity: 1;
    z-index: 999;
    height: 100vh;
  }
  
  .custom-map {
    position: relative;
    margin: 1rem 0 1.25rem;
  }
  
  .custom-map__action {
    background: #304455;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    padding: .4rem 1rem;
    border-radius: 4px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
  }
  
  a.info-window, .info-window {
    display: block;
    padding: .5rem;
  }
  
  a.info-window h3, .info-window h3 {
    margin: 0 0 .3rem;
  }
  
  .info-window__address1 {
    font-size: .85rem;
    color: #777;
  }
  
  .info-window__contact {
    font-size: .85rem;
    margin: .3rem 0 0;
  }
  
  .info-window__address2 {
    margin: .2rem 0 0;
    font-size: .85rem;
    color: #777;
  }
  
  #map-overlay {
    height: calc(100vh - 91px);
  }
  
  #launch-map {
    cursor: pointer;
  }
  
  .map-overlay__header {
    background: #fff;
    z-index: 3;
    display: flex;
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
  }
  
  .map-overlay__header h3 {
    margin: 0 5% 0 0;
    line-height: 1.4;
    font-size: 1.4rem;
  }
  
  .map-overlay__close {
    display:flex;
    background: #157e91;
    padding: .75rem;
    line-height: 1;
    border-radius: 12px;
  }
  
  a.listing-box {
    display: block;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    text-decoration: none;
    color: inherit;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #dadada;
    transition: all .25s ease;
  }
  
  .listing-box:not(.no-touch):hover {
    background: #fbfbfb;
    transition: all .25s ease;
    box-shadow: 2px 2px 8px 0 transparent;
  }
  
  .listing-box div.inner-listing {
    padding: 25px 20px;
  }
  
  .listing-box h4 {
    margin-top: 0!important;
    font-size: 20px;
    color: #2E2E2E;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: solid 1px #E9E9E9;
  }
  
  .listing-box .go-to-profile {
    border-top: solid 1px #E9E9E9;
    padding: 1rem;
    color: #A4A4A4;
  }
  
  .infos-wr p {
    font-size: 1rem;
    font-weight: 400;
  }
  
  .listing-box div.infos-wr>span {
    display: block;
    font-size: 1rem;
  }
  
  .go-to-profile button {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: .9rem;
    color: #157e91;
    margin-left: auto;
  }

  .profile-block .content p a {
    font-weight: 600;
    color: #157e91;
    text-decoration: none;
  }
  
  .page-builder p {
    margin: 0 0 1rem;
  }
  
  .page-builder p a {
    font-weight: 600;
    color: #157e91;
    text-decoration: none;
  }
  
  .page-builder .dfp-ad {
    margin: 1.5rem auto;
  }
  
  .page-builder ul {
    list-style: inherit;
    margin: 0 0 1rem 2rem;
    list-style: disc;
  }
  
  .page-builder ul li {
    margin: 0 0 .5rem 0;
  }
  
  .page-builder ol {
    margin: 0 0 1rem 2rem;
    padding: 0;
    list-style: decimal;
  }
  
  .page-builder ol li {
    margin: 0 0 .5rem 0;
    padding-left: .5rem;
  }
  
  .page-builder h2 {
    line-height: 1.3;
    font-size: 1.35rem;
    color: #505050;
    margin: 1rem 0 .5rem;
  }
  
  .page-builder h3, .page-builder h4 {
    margin: 1rem 0 .3rem;
  }
  
  .page-builder .page-content__image {
    margin: 1rem 0;
    position: relative;
  }
  
  .page-content__image svg {
    position: absolute;
    z-index: 1;
    right: 0;
    width: 40px;
    height: 40px;
    fill: #fff;
    background: #3884cf;
    margin: 1rem;
    border-radius: 50%;
    padding: .5rem;
  }
  
  .page-builder .float-right {
    float: right;
    width: 45%;
    margin: 1rem 0 1rem 5%;
  }
  
  .page-builder .float-left {
    float: left;
    width: 45%;
    margin: 1rem 5% 1rem 0;
  }
  
  .page-builder figure {
    margin: 0;
  }
  
  #pages .flex-list__item {
    flex: 1 0 9rem;
    margin: .1rem 0 1rem;
    display: block;
  }
  
  #homepage .row h2, #landing .row h2 {
    font-size: 1.5rem;
    color: #505050;
    display: inline-block;
    border-bottom: 2px solid #157e91;
    margin: 0;
  }
  
  #homepage .row h2 a, #landing .row h2 a {
    color: inherit;
  }
  
  .heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 1rem 0;
  }
  
  .heading-row a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #157e91;
  }
  
  .heading-row__view-all {
    font-weight: 600;
  }
  
  .heading-row a i {
    margin-left: 5px;
  }
  
  .flex-list__item {
    margin: 10px;
    text-decoration: none;
    color: inherit;
    flex-basis: calc(50% - 20px);
  }
  
  a.flex-list__item .flex-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
  }
  
  .flex-card__image {
    overflow: hidden;
    border-radius: 4px 4px 0 0
  }
  
  .flex-card__image img {
    object-fit: cover;
    border-radius: 4px 4px 0 0;
    vertical-align: top;
    transition: .5s ease;
  }
  
  .flex-card__headline {
    padding: .9rem 1rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  a.flex-list__item .flex-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #157e91;
    transition: width .3s ease-in-out;
    z-index: 9999;
  }
  
  .no-touch a.flex-list__item .flex-card:hover:after {
    width: 100%;
  }
  
  .no-touch a.flex-list__item .flex-card:hover img {
    transform: scale(1.1);
  }
  
  .this-section .this-section__list.two-column {
    display: flex;
    flex-wrap: wrap;
    border-left: 0;
    padding-left: 0;
  }
  
  #pages .this-section__list.two-column a.flex-list__item {
    flex: 0;
    flex-basis: calc(50% - .5rem);
    margin: 0 1rem 1rem 0;
    min-width: 0;
  }
  
  #pages .this-section__list.two-column a.flex-list__item:nth-child(2n) {
    margin-right: 0;
  }
  
  .this-section h3 {
    display: inline-block;
    margin: 0 0 1.2rem;
    border-bottom: 2px solid #157e91;
    font-weight: 600;
  }
  
  #pages .this-section {
    margin: 1.5rem 0;
  }
  
  .this-section .this-section__list {
    border-left: 3px solid #157e91;
    padding-left: 1rem;
  }
  
  .this-section .flex-card {
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .07);
    padding: 1rem;
  }
  
  .this-section a.flex-list__item {
    padding: 0;
  }
  
  .this-section h4.flex-card__headline {
    padding: 0;
    margin: 0 0 .6rem;
  }
  
  .this-section p {
    margin: 0;
    font-size: 1rem;
  }
  
  .listing-banner {
    display: flex;
    padding: 1rem 1.25rem 0;
    margin-bottom: -.4rem;
  }
  
  #doctors .group-banner {
    background: #efefef;
    padding: 1.1rem 0;
    border-top: 1px solid #e7e7e8;
    border-bottom: 1px solid #e7e7e8;
    margin: 0 0 .5rem;
  }
  
  #doctors .group-banner:last-child {
    margin: 0;
    border-bottom: 0;
  }
  
  .selected-filter {
    margin: 1rem 0;
    order: 4;
    display: flex;
  }
  
  .selected-filter .clear-filter {
    border: 1px solid #304455;
    padding: .4rem .7rem;
    margin-right: .75rem;
    border-radius: 99999999px;
    background: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .selected-filter .clear-filter i {
    margin-left: 8px;
    font-size: 16px;
    color: #fff;
    background: #304455;
    border-radius: 50%;
  }
  
  .jobs-search__no-results {
    padding: 1rem;
  }
  
  .job-result__item-company {
    font-size: .8rem;
  }
  
  .job-result__item-list {
    font-weight: 700;
  }
  
  #job-search-form {
    box-sizing: border-box;
    position: relative;
  }
  
  #job-search-form input {
    box-sizing: border-box;
    height: 42px;
  }
  
  a.job-result__item-link {
    color: inherit;
    text-decoration: none;
    padding: .5rem 1rem;
    display: block;
    white-space: normal;
  }
  
  a.job-result__item-link:hover {
    background: #eee;
  }
  
  .jobs-nav__items {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: .9rem 1rem;
    align-items: center;
    font-size: 1rem;
  }
  
  .jobs-nav {
    background: #157e91
  }
  
  .jobs-nav__items ul li {
    display: inline-block;
    margin-right: 2rem;
    color: #fff;
    font-weight: 600;
  }
  
  a.post-job {
    text-decoration: none;
    border: 1px solid #157e91;;
    border-radius: 4px;
    padding: 8px 12px;
    background: #fff;
    font-weight: 600;
    line-height: 1;
    color: #157e91;;
  }
  
  .jobs-lightbox {
    background: #fff;
    padding: 2rem;
    position: relative;
    max-width: 70%;
  }
  
  .jobs-lightbox h3 {
    margin-top: 0;
  }
  
  .jobs-lightbox button {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 1rem;
  }
  
  .job-type__pricing {
    display: flex;
    flex-wrap: wrap;
  }
  
  .job-company-area {
    display: block;
  }
  
  .job-company__name span {
    font-weight: 600;
    font-size: 1rem;
  }
  
  .job-company__area i {
    vertical-align: middle;
  }
  
  .job-company__name {
    line-height: 1;
  }
  
  .job-company__area {
    font-size: .95rem;
    margin-top: .3rem;
  }
  
  .date-posted {
    display: flex;
  }
  
  .date-posted i {
    margin-right: 5px;
  }
  
  a.post-job.pricing {
    position: absolute;
    top: 30px;
    right: 70px;
  }
  
  .job-type__column {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .job-type__features i {
    vertical-align: middle;
    color: #157e91;
  }
  
  .job-type__features {
    font-size: .9rem;
    margin-top: .5rem;
  }
  
  .job-type__column p {
    font-size: 1rem;
    color: #777;
    text-align: center;
  }
  
  .job-type__column h3 {
    text-align: center;
    margin: 0;
  }
  
  .job-type__price {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
  }
  
  .jobs-lightbox button:after {
    content: 'close';
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .jobs-results__container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .flex-list {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: nowrap;
    width: auto;
  }
  
  .algolia-page .flex-list__item {
    flex: 1 0 17rem;
    margin: 1rem 0 .5rem .1rem;
    padding-right: 1rem;
  }
  
  .algolia-page a.flex-list__item .flex-card {
    flex-direction: row;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
  
  .algolia-page .flex-card__image {
    height: 100%;
    flex: 1;
    flex-basis: 40%;
    border-radius: 4px 0 0 4px;
  }
  
  .algolia-page .flex-card__image img {
    min-height: 100%;
    border-radius: 4px 0 0 4px;
  }
  
  .algolia-page .flex-card__headline {
    font-weight: 600;
    font-size: 1rem;
    padding: .8rem 1rem;
    flex-basis: 60%;
  }
  
  .algolia-page h1 {
    font-size: 2.2rem;
    margin: 0 0 .5rem;
    line-height: 1.3;
    text-align: center;
  }
  
  .algolia-page h2 {
    margin: 0;
    font-weight: 400;
    font-size: 1.1rem;
    text-align: center;
  }
  
  #jobs .more-in__nav, #doctors .more-in__nav, #clinics .more-in__nav {
    display: none;
  }
  
  .jobs-intro {
    width: 660px;
    margin: 0 auto;
    font-size: 1rem;
  }
  
  .job-filters {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 2rem 0 0;
  }
  
  .filters-select {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  
  .srch-wrap {
    position: relative;
  }
  
  /* clears the 'X' from Internet Explorer */
  input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
  input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }
  
  /* clears the 'X' from Chrome */
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration { display: none; }
  
  
  .search-results {
    width: 100%;
    max-width: 400px;
    margin-top: .5rem;
    border-radius: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  .autosuggest-container {
    position: absolute;
    width: calc(100vw - 2rem);
    z-index: 999;
    right: 0;
  }
  
  .srch-x {
    fill: rgb(119, 119, 119);
    position: absolute;
    right: 0px;
    line-height: 1;
    padding: 0.5rem;
    outline: 0px;
    z-index: 9999999;
  }
  
  .clear-icon {
    position: absolute;
    right: 12px;
    top: 9px;
    display: flex;
  }
  
  .clear-icon svg {
    fill: #757575;
  }
  
  .job-search__wrap {
    width: 100%;
    margin: 0 0 1rem;
  }
  
  .job-search__box input {
    width: 100%;
    border: 1px solid #ccc;
    cursor: text;
    border-radius: 4px;
    padding: .5rem 1rem .5rem 2.5rem;
    outline: none;
    transition: all .2s ease;
    background-color: #fff;
    background-position: .75rem .75rem;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13'%3E%3Cg stroke-width='2' stroke='%23aaa' fill='none'%3E%3Cpath d='M11.29 11.71l-4-4'/%3E%3Ccircle cx='5' cy='5' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 1rem;
    height: 42px;
    font-size: 1rem;
  }
  
  .list-count p {
    margin-top: 0;
  }
  
  .job-listing {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
    margin: 0 0 1rem;
    border-radius: 4px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
    margin: 1rem 0;
  }
  
  .job-listing:last-of-type {
    margin-bottom: 0;
  }
  
  .job-listing.featured__true {
    background: #fff9d9;
  }
  
  .job-listing__header {
    display: flex;
    padding: 1rem;
  }
  
  .job-listing__logo {
    margin-right: 3%;
  }
  
  .job-listing__logo img {
    object-fit: contain;
    height: auto;
    max-height: 80px;
    max-width: 80px;
    vertical-align: middle;
  }
  
  .job-listing__details {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .job-listing__details p {
    margin-top: 0;
  }
  
  .job-listing__title h3 {
    margin: 0 0 .3rem;
    font-size: 1.3rem;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
  
  .job-details__company span {
    font-weight: 600;
  }
  
  .job-listing__footer {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 1rem;
    font-size: .9rem;
    border-top: 1px solid #e9e9e9;
  }
  
  .job-listing__footer i {
    vertical-align: middle;
  }
  
  .job-listing__footer-industry {
    background: #157e91;
    padding: .4rem .8rem;
    border-radius: 25px;
    font-size: .9rem;
    line-height: 1;
    color: #fff;
    font-weight: 600;
  }
  
  .jobs-wrap.grid .job-listing__header {
    flex-direction: column;
  }
  
  .jobs-wrap.grid .job-listing__logo {
    width: 80px;
  }
  
  .jobs-wrap.grid .job-listing__title h3 {
    margin-top: .8rem;
    font-size: 1.2rem;
  }
  
  .jobs-wrap.grid .job-listing__footer > div {
    margin-top: 1rem;
  }
  
  .select-css {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3;
    padding: .4rem 2rem .4rem .8rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
  }
  .select-css::-ms-expand {
    display: none;
  }
  .select-css:hover {
    border-color: #888;
  }
  .select-css:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #333;
    outline: none;
  }
  .select-css option {
    font-weight:normal;
  }
  
  .job-filters__select {
    order: 2;
    width: 100%;
  }
  
  .filter-item {
    margin-bottom: 1rem;
    width: 48%;
  }
  
  .filter-item:first-of-type {
    width: 100%;
  }
  
  .filter-item label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem;
    display: block;
  }
  
  #doctors .job-listing__logo img {
    border-radius: 50%;
  }
  
  #jobs .filter-item {
    width: 48%;
    flex: 1;
    margin-right: 3%;
  }
  
  .job-search__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: 1;
    width: 100%;
  }
  
  .view-toggle__button {
    display: none;
  }
  
  .job-search__box form, amp-autocomplete {
    width: 100%;
  }
  
  .jobs-wrap.grid div[role="listitem"] {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
  }
  
  .jobs-wrap.grid .job-listing .job-logo {
    max-width: 100px;
    margin: 0 auto;
  }
  
  .jobs-wrap.grid .job-listing {
    width: calc(50% - 10px);
    margin-right: 1rem;
    display: block;
  }
  
  .jobs-wrap.grid .job-listing:nth-child(2n) {
    margin-right: 0
  }
  
  .view-toggle__button button {
    border-radius: 4px;
    font-size: 1rem;
    border: 1px solid #ccc;
    background: #fff;
    overflow: visible;
    color: inherit;
    display: inline-block;
    padding: 1.2rem;
    position: relative;
    outline: 0;
    height: 42px;
    cursor: pointer;
  }
  
  .view-toggle__button button.grid:after  {
    content: "view_module";
    font-family: "Material Icons";
    font-size: 26px;
    vertical-align: middle;
    position: absolute;
    top: 6px;
    right: 6px;
  }
  
  .view-toggle__button button.list:after  {
    content: "list";
    font-family: "Material Icons";
    font-size: 26px;
    vertical-align: middle;
    position: absolute;
    top: 6px;
    right: 6px;
  }
  
  .featured-listing {
    background: #e7e7e8;
    padding: .35rem 1rem;
    font-weight: 600;
    border-radius: 4px 4px 0 0;
    font-size: .9rem;
  }
  
  #jobs amp-autocomplete div:first-of-type {
    width: 100%;
  }
  
  
  .profile-list__item {
    margin: 1.5rem 0;
  }
  
  .profile-list__item-container {
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    border-radius: 8px;
  }
  
  .profile-actions.profile-list__item.slim {
    margin: 0;
  }
  
  .profile-actions.profile-list__item.slim .profile-list__item-container {
    background: none;
    box-shadow: none;
  }
  
  .profile-list__slim-row .profile-list__item-description {
    display: block;
    color: inherit;
    padding: 0 1rem 0;
  }
  
  .profile-list__item-container i {
    vertical-align: middle;
  }
  
  a.profile-list__item-main {
    padding: 1rem 1.25rem 0;
    color: inherit;
    display: block;
  }
  
  .profile-actions.profile-list__item.slim a.profile-list__item-main {
    padding: 0 1rem;
  }
  
  
  .profile-list__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .profile-actions.profile-list__item.slim .profile-list__item-header {
    display: block;
  }
  
  .profile-actions.profile-list__item.slim a.profile-list__item-main h3 {
    display: inline;
  }
  
  
  .profile-list__item-header svg {
    fill: #333;
    transition: all .3s ease;
    background: transparent;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .profile-actions.profile-list__item.slim .profile-list__item-header svg {
    display: inline;
    vertical-align: middle;
    margin-left: 4px;
  }
  
  
  .no-touch a.profile-list__item-main:hover .profile-list__item-header svg {
    transform: scale(1.3);
    background: #157e91;
    fill: #fff;
    border-radius: 50%;
  }
  
  a.profile-list__item-main h3 {
    margin: 0 0 .25rem;
    line-height: 1.3;
  }
  
  .profile-list__item-address, .profile-list__item-district {
    color: #666;
    font-size: .9rem;
    margin-bottom: .4rem;
  }
  
  .profile-list__item-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1.25rem 1rem;
    margin-top: .5rem;
  }
  
  a.profile-contact__cta {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background: #157e91;
    color: #fff;
    padding: .5rem 1.2rem;
    border-radius: 0 0 8px 8px;
    font-size: .95rem;
    font-weight: 600;
    width: 100%;
    line-height: 1.5;
    transition: .3s;
  }
  
  .no-touch a.profile-contact__cta:hover div + i {
    transform: translateX(8px);
  }
  
  a.profile-contact__cta i {
    margin-right: 10px;
    transition: .3s ease;
  }
  
  .profile-list__item-promo {
    position: relative;
    margin: -.5rem 0 0;
  }
  
  .profile-list__item-contact i {
    margin-right: 5px;
    font-size: 18px;
  }
  
  span.profile-contact__call {
    display: block;
  }
  
  span.profile-contact__phone {
    display: none;
  }
  
  .profile-list__item-contact a {
    text-decoration: none;
    color: #505050;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #157e91;
    padding: .5rem 1rem;
    font-size: .9rem;
    line-height: normal;
    transition: .4s;
    font-weight: 400;
    margin: 0 .75rem .3rem 0;
  }
  
  .profile-list__item-contact a:last-of-type {
    margin-right: 0;
  }
  
  .no-touch .profile-list__item-contact a:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
  }
  
  .profile-contact__message {
    background-color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: .9rem;
    color: inherit;
    padding: .5rem 1.3rem;
    outline: 0;
    border: 1px solid #157e91;
    border-radius: 4px;
    cursor: pointer;
    transition: .4s;
    font-weight: 400;
    font-family: inherit;
    margin: 0 .75rem .3rem 0;
  }
  
  .no-touch .profile-contact__message:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
  }
  
  .profile-list__item-content h3 {
    margin: 0 0 .4rem;
    font-size: 1.3rem;
  }
  
  .profile-list__item-content h3 a {
    color: inherit;
    text-decoration: none;
  }
  
  .profile-list__item-description p {
    margin: .5rem 0;
    font-size: 1rem;
  }
  
  .profile-list__slim-row .profile-list__item-description p {
    margin: 0.25rem 0 0.5rem;
  }
  
  .flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .pages-block {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    margin-bottom: 1rem;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
  }
  
  .pages-block a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }
  
  .pages-block a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background: #157e91;
      transition: width .3s ease-in-out;
      z-index: 9999;
  }
  
  .no-touch .pages-block a:hover:after {
      width: 100%;
  }
  
  .pages-block__content {
    width: 100%;
    order: 2;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  
  .pages-block__content h3 {
    margin: 0;
  }
  
  .pages-block__content p {
    font-weight: 400;
    font-size: 1rem;
    margin-top: .5rem;
  }
  
  .pages-block__image {
    width: 100%;
    order: 1;
    overflow: hidden;
  }
  
  .no-touch .pages-block a:hover img {
    transform: scale(1.2);
  }
  
  .pages-block__image img {
    object-fit: cover;
    width: 100%;
    border-radius: 4px 4px 0 0;
    vertical-align: top;
    transition: .5s ease;
    height: 100%;
  }
  
  span.more {
    color: #157e91;
    display: block;
    margin-top: 1rem;
  }
  
  h2.discover-more__heading {
      margin-top: 0;
  }
  
  /* Start of Profile style */
  
  .map-modal {
    display: none;
  }
  
  #profile-map {
    height: 300px;
    margin: .5rem -1rem 1rem;
  }
  
  .profile-map__container {
    padding: 1rem;
    max-width: 90%;
    background: #fff;
    position: relative;
    width: 550px;
    border-radius: 8px;
  }
  
  .profile-map__container h3 {
    margin: .5rem 0 0;
  }
  
  .profile-map__container .profile-intro__address {
    margin: .25rem 0 .75rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .profile-map__container .profile-intro__address a {
    background: #fa7676;
    color: #fff;
    text-align: center;
    display: flex;
    border-radius: 4px;
    padding: .4rem .75rem;
  }
  
  .profile-map__container .profile-intro__address a svg {
    fill: #fff;
    margin-right: 5px;
  }
  
  #profile .group-banner, #landing .group-banner {
    background: #efefef;
    padding: .8rem 0;
    border-top: 1px solid #e7e7e8;
    margin: 0
  }
  
  #profile .group-banner:last-child, #landing .group-banner:last-child {
    margin: 0;
    border-bottom: 0;
  }
  
  #profile .breadcrumbs {
    display: none;
  }
  
  .mobile-crumb a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }
  
  .mobile-crumb a i {
    font-size: 18px;
  }
  
  .profile__main {
    order: 3;
  }
  
  .profile__sidebar {
    order: 2;
    margin-bottom: .5rem;
  }
  
  #profile .segment.flush {
    padding: 0 0 1rem;
  }
  
  #profile .block-container {
    border-top: 1px solid #eaecef;
    border-bottom: 1px solid #eaecef;
  }
  
  #profile .profile-main__block {
    border-top: 1px solid #eaecef;
    border-bottom: 1px solid #eaecef;
  }
  
  .profile-block {
    margin: 1rem 0;
  }
  
  .profile-block:first-of-type {
    margin-top: 0;
  }
  
  .profile-block p:first-of-type {
    margin-top: 0;
  }
  
  .profile-block:last-of-type {
    margin-bottom: 0;
  }
  
  .profile-block .intrinsic {
    margin-top: 0;
  }
  
  .block-container {
    padding: .75rem 1rem;
    background: #fff;
    margin-bottom: .5rem;
  }
  
  .block-container h2 {
    font-size: 1.2rem;
    color: #505050;
    margin: 0;
    font-weight: 600;
  }
  
  #profile .block-container.affiliated {
    background: #ddeaea;
    border-top: 1px solid #bcd9de;
    border-bottom: 1px solid #bcd9de;
  }
  
  .block-container.affiliated h2 {
    margin-bottom: .3rem;
    color: #157e91;
  }
  
  .profile-intro__top {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
  }
  
  .profile-intro__image {
    display: flex;
    max-width: 100px;
  }
  
  .profile-intro__image img {
    border: 1px solid #eee;
    object-fit: cover;
  }
  
  .profile-intro__image.doctor-headshot img {
    border-radius: 50%;
    border: 0;
  }
  
  .profile-intro__image + .profile-intro__content {
    margin-left: 5%;
  }
  
  .profile-intro__content {
    flex-basis: 75%;
    flex: 1;
  }
  
  .profile-intro__content h1 {
    margin: 0;
    color: #505050;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    line-height: 1.1;
  }
  
  .profile-intro__content h1 span {
    font-size: .95rem;
    font-weight: 300;
    margin-left: 4px;
  }
  
  .profile-intro__block-heading {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    border-bottom: 2px solid #3667b6;
    display: inline-block;
    font-weight: 600;
  }
  
  .profile-intro__address {
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
  }
  
  .profile-intro__message {
    margin: 1rem 0;
  }
  
  .profile-intro__message .profile-button svg {
    margin-right: 8px;
  }
  
  .profile-intro__address a.map-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #157e91;
    font-weight: 600;
    cursor: pointer;
  }
  
  a.map-link svg {
    fill: #157e91;
  }
  
  .profile-intro__contact {
    display: flex;
    align-items: center;
    margin: 1rem -.75rem;
  }
  
  #profile span.profile-contact__phone {
    display: block;
  }
  
  .profile-intro__contact svg {
    fill: #157e91;
    margin-right: 6px;
  }
  
  .profile-intro__contact a {
    display: flex;
    flex-basis: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #505050;
    border: 1px solid #157e91;
    border-radius: 4px;
    padding: .4rem;
    font-size: 1rem;
    margin: 0 .75rem;
  }
  
  .profile-intro__contact a i {
    margin-right: 5px;
  }
  
  .profile-intro__address span {
    display: block;
  }
  
  .emergency-contact {
    font-size: 1rem;
    color: #ce2029;
    font-weight: 600;
    margin-top: 1rem;
    line-height: 1;
  }
  
  .emergency-contact a {
    color: #ce2029;
  }
  
  .block-container__label {
    display: flex;
    align-items: center;
  }
  
  .block-container__label i {
    margin-right: 5px;
    font-size: 18px;
  }
  
  .profile-hours p:last-of-type {
    margin: 0;
  }
  
  .profile-hours {
    margin-top: .3rem;
  }
  
  .profile-hours p {
    margin: 0 0 .3rem;
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .profile-hours p:last-of-type {
    margin: 0;
  }
  
  .block-container.profile-intro__hours h4 {
    margin: 0;
    font-weight: 500;
  }
  
  .block-container.profile-intro__hours > div:first-of-type {
    display: flex;
  }
  
  .block-container.profile-intro__hours > div:first-of-type i {
    margin-right: 1rem;
  }
  
  ul.insurance {
    display: flex;
    flex-wrap: wrap;
    margin-top: .3rem;
  }
  
  ul.insurance li {
    background: #f7f7f7;
    padding: .4rem .8rem;
    margin: .3rem .5rem .3rem 0;
    font-size: .9rem;
    line-height: 1;
    border: 1px solid #efefef;
    border-radius: 999999px;
  }
  
  .block-container.promotion p {
    font-size: .95rem;
    margin: .3rem 0;
  }
  
  a.profile-promotion {
    display: inline-flex;
    margin-top: .5rem;
    align-items: center;
    transition: .3s;
    color: #fa7676;
    border: 1px solid;
    padding: .3rem .75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: .9rem;
  }
  
  .featured-pages__heading {
    display: flex;
    align-items: center;
  }
  
  .featured-pages a {
    text-decoration: none;
    font-size: 1rem;
  }
  
  a.profile-promotion i, .featured-pages i {
    margin-right: .5rem;
  }
  
  .profile-intro__hours h4.all-hours:after {
    content: "expand_more";
    font-family: "Material Icons";
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -4px;
  }
  
  .profile-intro__hours h4.all-hours.open:after {
    content: "expand_less";
    font-family: "Material Icons";
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -4px;
  }
  
  a.profile-button {
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    background: #157e91;
    color: #fff;
    text-decoration: none;
    padding: .45rem 1.3rem;
    outline: 0;
    border-radius: 4px;
    display: flex;
    margin: .6rem 0;
  }
  
  a.profile-button:nth-child(2) {
    background: #157e91;
  }
  
  a.profile-button i {
    margin-right: 10px;
  }
  
  .profile-main__block h2 {
    font-size: 22px;
    color: #505050;
    display: inline-block;
    border-bottom: 2px solid #157e91;
    margin-bottom: 1rem;
  }
  
  .profile-main__block h2:first-of-type {
    margin-top: 0;
  }
  
  .profile-intro__location {
    color: #666;
    font-size: .95rem;
    margin-top: .4rem;
  }
  
  .profile-intro__location i {
    vertical-align: middle;
  }
  
  .profile-main__block {
    background: #fff;
    padding: 1rem;
    border: 1px solid #eaecef;
  }
  
  .school-details__heading {
    padding: .75rem 1rem;
    background: #eee;
    display: flex;
    align-items: center;
  }
  
  .school-details.good-know .school-details__heading {
    background: #eee;
    color: inherit;
  }
  
  .block-container.school-details {
    padding: 0;
  }
  
  .school-details__heading h3 {
    margin: 0;
    font-weight: 600;
  }
  
  .school-details__heading i {
    margin-right: 8px;
    font-size: 30px;
  }
  
  .school-details__content {
    padding: 1rem;
  }
  
  .school-details__content ul li {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-left: 24px;
    font-size: 1rem;
    margin-bottom: .25rem;
  }
  
  .school-details__content ul li.sibling-discount {
    font-size: .9rem;
    font-weight:700;
    padding: 0;
  }
  
  .school-details__content ul li.sibling-discount::before {
    content: none;
  }
  
  .school-details__content ul li:last-of-type {
    margin-bottom: 0rem;
  }
  
  .school-details__content ul li::before {
    content: "double_arrow";
    font-family: Material Icons;
    color: #157e91;
    position: absolute;
    left: 0;
  }
  
  .school-details.good-know .school-details__content ul li::before {
    color: inherit;
  }
  
  .school-details__content ul li span {
    font-weight: 700;
    white-space: pre;
  }
  
  .school-details__content ul li span:first-of-type {
    margin-left: 4px;
  }
  
  .school-details__content ul li span:not(:first-child):before {
    content: ",";
    font-weight: 400;
    margin-right: 4px;
  }
  
  .fees {
    display: flex;
    flex-wrap: wrap;
  }
  
  .fee {
    flex-basis: 100%;
    margin: 0 1rem 1rem 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  .fee h3 {
    margin: 0;
    line-height: 1;
    padding: .75rem 1rem;
    border-bottom: 1px solid #ccc;
    font-size: 1rem;
    font-weight: 600;
    background: #eee;
  }
  
  .fee span {
    font-weight: 400;
    display: block;
    font-size: .9rem;
  }
  
  .fee-content {
    padding: .5rem 1rem;
  }
  
  .fee-notes {
    font-size: .9rem;
    font-weight: 400;
  }
  
  .fee-price {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .5rem;
    display: flex;
    justify-content: space-between;
  }
  
  .fee-price:last-of-type {
    margin-bottom: 0;
  }
  
  .content p {
    margin: 0 0 1rem;
  }
  
  .block-container.specialty a {
    font-size: 1rem;
  }
  
  ul.language {
    display: flex;
    font-size: 1rem;
  }
  
  ul.language li {
    margin-right: 5px;
  }
  
  ul.insurance {
    display: flex;
    flex-wrap: wrap;
    margin-top: .3rem;
  }
  
  ul.insurance li {
    background: #f7f7f7;
    padding: .4rem .8rem;
    margin: .3rem .5rem .3rem 0;
    font-size: .9rem;
    line-height: 1;
    border: 1px solid #efefef;
    border-radius: 999999px;
  }
  
  a.practice-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0,0,0,.12);
    background: #fff;
    margin-bottom: .75rem;
    padding: .6rem 1rem;
  }
  
  a.practice-link:last-of-type {
    margin-bottom: 0;
  }
  
  .practice-logo {
    flex-basis: 50px;
    height: 50px;
  }
  
  .practice-logo img {
    border: 1px solid #eee;
    object-fit: contain;
  }
  
  a.practice-link h4 {
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 0 5%;
    font-weight: 600;
    font-size: 1rem;
  }
  
  .highlights ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  .highlights ul li {
    background: #eee;
    padding: .4rem 1rem;
    margin: 0 .75rem .75rem 0;
    font-size: .9rem;
    border-radius: 9999px;
    line-height: 1.4;
  }
  
  #profile .content ul {
    list-style: inherit;
    margin: 0 0 1rem 2rem;
  }
  
  #profile .content ul li {
    margin: 0 0 .4rem;
  }
  
  .map-container img {
    object-fit: cover;
    min-width: 100%;
  }
  
  .profile-block.map::before {
    display: block;
    content: " ";
    margin-top: -3.6rem;
    height: 3.6rem;
    visibility: hidden;
    pointer-events: none;
  }
  
  ul.profile-jobs {
    display: flex;
    flex-wrap: wrap;
  }
  
  ul.profile-jobs li {
    margin: 0 .5rem .5rem 0;
  }
  
  .profile-jobs li a {
    text-decoration: none;
    border: 1px solid;
    border-radius: 9999999px;
    padding: .25rem .75rem;
    display: block;
    font-size: 1rem;
  }
  
  ul.profile-camps {
    display: flex;
    flex-wrap: wrap;
  }
  
  ul.profile-camps li {
    margin: 0 .5rem .5rem 0;
  }
  
  .profile-camps li a {
    text-decoration: none;
    border: 1px solid #757575;
    color: #757575;
    border-radius: 4px;
    padding: .5rem .75rem;
    display: block;
    font-size: 1rem;
  }
  
  .physician-locations {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .physician-location {
    margin: 1rem 0;
  }
  
  .physician-location:last-of-type {
    margin-bottom: 0;
  }
  
  .physician-location__heading {
    display: flex;
    position: relative;
  }
  
  .physician-location__heading span {
    display: block;
    position: absolute;
    font-size: 1rem;
    color: #fff;
    z-index: 9;
    left: 10px;
    top: 0;
  }
  
  .physician-location h3 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.3;
  }
  
  .physician-location__address {
    padding-left: 30px;
    font-size: 1rem;
  }
  
  .physician-location__directions {
    display: inline-flex;
    align-items: center;
    border: 1px solid;
    border-radius: 4px;
    padding: .25rem .75rem;
    font-size: .9rem;
    margin-top: .5rem;
  }
  
  .physician-location__directions i {
    margin-right: 4px;
  }
  
  .featured-pages {
    display: flex;
    flex-wrap: wrap;
  }
  
  article.featured-in__page-card {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    margin: 0 0 1rem;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
  }
  
  .featured-pages a {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
  }
  
  .featured-in__pages-content {
    width: 100%;
    order: 1;
    padding: 1rem;
    flex-basis: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .featured-in__pages-image {
    width: 100%;
    order: 2;
    overflow: hidden;
    border-radius: 0 4px 4px 0;
    flex-basis: 30%;
    flex: 1;
  }
  
  .featured-in__pages-image img {
    min-height: 90px;
    display: flex;
    flex: 1;
    object-fit: cover;
  }
  
  h4.featured-page__title {
    margin: 0;
    font-weight: 600;
  }
  
  .profile-block.departments article.featured-in__page-card {
    background: #f3f3f3;
  }
  
  .profile-block.departments article.featured-in__page-card .featured-in__pages-content {
    flex-basis: 100%;
  }
  
  .profile-description button {
    text-align: center;
    display: flex;
    border: none;
    color: #157e91;
    align-items: center;
    font-size: 1rem;
    background: #fff;
    padding: 0;
    margin-top: 1rem;
    outline: 0;
  }
  
  .slick-item {
    position: relative;
  }
  
  .gallery-caption {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    z-index: 99;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    padding: .5rem 1rem;
    width: 100%;
    background: rgba(0,0,0,.5);
    font-size: .9rem;
  }
  
  .profile-people {
    display: flex;
    flex-wrap: wrap;
  }
  
  .person {
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    align-items: center;
    margin: 1rem 0;
    text-decoration: none;
    transition: .4s;
    overflow: hidden;
    transition: .4s;
  }
  
  .person img {
    height: 140px;
    width: 140px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
  
  .person-headshot {
    width: 45%;
    margin-right: 3%;
  }
  
  .person-details {
    flex-basis: 55%;
    text-align: center;
  }
  
  .person h4 {
    color: #304455;
    margin: 0;
  }
  
  .person span {
    font-size: 1rem;
    color: #304455;
    font-weight: 300;
  }
  
  .other-profile__wrapper {
    background: #fff;
    padding: .5rem 0 0;
    border-top: 1px solid #eaecef;
  }
  
  .other-profiles h2 {
    line-height: 1.3;
    margin: 0 0 1.25rem;
    font-size: 1.4rem;
    color: #505050;
    display: inline-block;
    padding-bottom: .3rem;
    border-bottom: 2px solid #157e91;
  }
  
  #profile .flex-list {
    flex-wrap: wrap;
  }
  
  #profile .flex-list__item {
    flex-basis: 100%;
    margin: 0 .1rem 1rem .1rem;
    display: flex;
  }
  
  #profile a.flex-list__item .flex-card {
    padding: 0;
  }
  
  #profile .flex-card {
    background: #fff;
    display: flex;
    flex: 1;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
  }
  
  #profile .flex-card a.other-profile__title {
    position: relative;
    color: #505050;
  }
  
  #profile .flex-card a.other-profile__title svg {
    position: absolute;
    right: 1rem;
    top: .8rem;
    fill: #505050;
  }
  
  #profile .flex-card__image {
    width: 40%;
    border-radius: 0;
  }
  
  #profile .flex-card__headline {
    border-radius: 8px 8px 0 0;
    padding: .8rem 1rem;
    margin: 0;
    background: #eee;
    font-size: 1.2rem;
  }
  
  #profile .flex-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  #profile .flex-card__body p {
    font-size: 1rem;
    margin: 0 0 .5rem;
    padding: .5rem 1rem 0;
  }
  
  #profile .flex-card__address {
    color: #505050;
    font-size: .95rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
  }
  
  #profile .flex-card__contacts {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1 0 auto;
    margin: .75rem 0;
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  #profile .flex-card__contacts a {
    color: #505050;
    border: 1px solid #157e91;
    display: inline-flex;
    font-size: .95rem;
    padding: .35rem .65rem;
    border-radius: 4px;
    align-items: center;
  }
  
  #profile .flex-card__contacts a + a {
    flex: 1;
    justify-content: center;
    margin-left: 4%;
  }
  
  #profile .flex-card__contacts a svg {
    margin-right: 5px;
    fill: #505050;
  }
  
  #profile .flex-card .profile-intro__message {
    margin: 0;
    font-size: 1rem;
  }
  
  #profile .flex-card .profile-intro__message a {
    margin: 0;
    background: #f9f9f9;
    color: #157e91;
    border-radius: 0 0 8px 8px;
    padding-top: .5rem;
  }
  
  #profile .flex-card__address i {
    font-size: 18px;
    margin-right: 5px;
  }
  
  .no-touch #profile a.flex-list__item .flex-card:hover img {
    transform: none;
  }
  
  #profile .other-profiles.doctors .flex-list__item {
    margin-top: .1rem;
  }
  
  a.other-doctors.other-profile__title {
    display: flex;
    padding: .7rem 1rem .5rem;
    background: #efefef;
    border-radius: 8px 8px 0 0;
  }
  
  .other-profile__image {
    flex: 1;
    margin-right: 4%;
  }
  
  .other-profile__image img {
    border-radius: 50%;
  }
  
  .other-profile__content {
    min-width: 0;
    flex-basis: 75%;
  }
  
  #profile a.other-doctors .other-profile__content .flex-card__headline {
    font-size: 1.3rem;
    background: none;
    padding: 0 1rem 0 0;
    line-height: 1.3;
  }
  
  span.other-doctors__credentials {
    font-size: .85rem;
    font-weight: 300;
    display: block;
    line-height: 1.3;
  }
  
  span.other-doctors__practice {
    font-size: .95rem;
    display: block;
    line-height: 1.3;
    margin-top: .25rem;
  }
  
  .social-media__icons {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .social-media__icons .fa {
    padding: 10px;
    width: 34px;
    height: 34px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-media__icons .fa-facebook {
    background: #3B5998;
    color: white;
  }

    .social-media__icons .fa-tiktok {
    background: #000000;
    color: white;
  }
  
  
  .social-media__icons .fa-twitter {
    background: #55ACEE;
    color: white;
  }
  
  .social-media__icons .fa-tripadvisor {
    background: #4fa781;
    color: white;
  }
  
  .social-media__icons .fa-houzz {
    background: #5dbc30;
    color: white;
  }
  
  .social-media__icons .fa-google {
    background: #dd4b39;
    color: white;
  }
  
  .social-media__icons .fa-linkedin {
    background: #007bb5;
    color: white;
  }
  
  .social-media__icons .fa-youtube {
    background: #bb0000;
    color: white;
  }
  
  .social-media__icons .fa-instagram {
    background: #125688;
    color: white;
  }
  
  .social-media__icons .fa-pinterest {
    background: #cb2027;
    color: white;
  }
  
  .social-media__icons .fa-snapchat-ghost {
    background: #fffc00;
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  }
  
  .social-media__icons .fa-skype {
    background: #00aff0;
    color: white;
  }
  
  .social-media__icons .fa-vimeo {
    background: #45bbff;
    color: white;
  }
  
  /* End of Profile style */
  
  .featured-pages__heading {
    display: flex;
    align-items: center;
  }
  
  .featured-pages a {
    text-decoration: none;
    font-size: 1rem;
  }
  
  .profile-intro__location {
    color: #666;
    font-size: .95rem;
    margin-top: .4rem;
  }
  
  .profile-intro__location i {
    vertical-align: middle;
  }
  
  .profile-main__block {
    background: #fff;
    padding: 1rem;
    border: 1px solid #eaecef;
  }
  
  .flex {
    display: flex;
    flex-wrap: wrap;
  }
  
  .map-container {
    flex-basis: 100%;
  }
  
  
  #pages .group-banner {
      background: #efefef;
      padding: .8rem 0;
      border-top: 1px solid #e7e7e8;
      border-bottom: 1px solid #e7e7e8;
      margin: 0 0 1.5rem;
  }
  
  .algolia-page .group-banner  {
      background: #efefef;
      padding: 1.1rem 0;
      border-top: 1px solid #e7e7e8;
      border-bottom: 1px solid #e7e7e8;
      margin: 0;
  }
  
  .algolia-page .group-banner:last-child {
    margin-top:  1rem;
    border-bottom: 0;
  }
  
  #pages .group-banner:last-child {
    margin: 0;
    border-bottom: 0;
  }
  
  a.crumb {
    text-decoration: none;
    display: block;
    font-weight: 600;
  }
  
  .algolia-page a.crumb {
    margin: 1rem 0;
  }
  
  a.crumb i {
    vertical-align: middle;
    font-size: 18px;
  }
  
  .byline .author-image {
    margin-right: 8px;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
  }
  
  .byline {
    display: flex;
    align-items: center;
    margin-top: .5rem;
  }
  
  .byline img {
    border-radius: 50%;
  }
  
  .by {
    font-weight: 400;
  }
  
  .byline-author {
    color: #505050;
    font-weight: 600;
    text-decoration: none;
  }
  
  .page-updated {
    font-size: .95rem;
    color: #777;
  }
  
  .more-in__nav {
    border-top: 1px solid #ccc;
  }
  
  .more-in__nav-heading {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    line-height: 1.4;
    outline: 0;
  }
  
  .more-in__nav-heading::after {
    content: "expand_more";
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .more-in__nav-heading.open::after {
    content: "expand_less";
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  span.subnav-collapse {
    outline: 0;
  }
  
  .has-children button {
    vertical-align: middle;
    outline: 0;
    background-color: transparent;
    border: 0;
  }
  
  .has-children button::after {
    content: "expand_more";
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .has-children button.open::after {
    content: "expand_less";
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .more-in__nav-heading h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
  }
  
  .more-in__nav-heading h4 a {
    color: #505050;
    transition: .3s;
  }
  
  .no-touch .more-in__nav-heading h4 a:hover {
    color: #157e91;
  }
  
  .more-in__subnav {
    margin-top: 1rem;
    display: none;
  }
  
  .more-in__subnav.open {
    display: block;
  }
  
  
  .more-in__nav ul li {
    font-size: 1rem;
    display: block;
    margin-top: .7rem;
    position: relative;
    line-height: 1.4;
  }
  
  .more-in__nav .children li {
    font-size: .9rem
  }
  
  .more-in__subnav .has-children ul.children {
    display: none;
  }
  
  .more-in__subnav .has-children.open ul.children {
    display: block;
  }
  
  .has-children .subnav-collapse:after {
    content: "add";
    font-family: "Material Icons";
    font-size: 16px;
    margin-left: 1rem;
    padding: 10px;
    vertical-align: middle;
  }
  
  .has-children.open .subnav-collapse:after {
    content: "remove";
    font-family: "Material Icons";
    font-size: 16px;
    margin-left: 1rem;
    padding: 10px;
    vertical-align: middle;
  }
  
  .sibling-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    font-size: .9rem;
  }
  
  .sibling-links__prev {
      width: 50%;
  }
  
  .sibling-links__prev a {
      text-align: left;
      justify-content: flex-start;
  }
  
  .sibling-links__next {
      width: 50%;
  }
  
  .sibling-links__next a {
      text-align: right;
      justify-content: flex-end;
  }
  
  .sibling-links a {
    text-decoration: none;
    line-height: 1.4;
    display: flex;
    color: #157e91;
    align-items: center;
    font-weight: 600;
  }
  
  .sibling-links i {
    vertical-align: middle;
  }
  
  .sponsors {
    background: #efefef;
    margin: 1rem auto;
    padding: 1rem 0 0;
  }
  
  .sponsors h3 {
    margin: 0;
  }
  
  a.scholarship-sponsor {
    flex: 1 0 9rem;
    margin: 1rem 0 1rem;
    padding-right: 1rem;
  }
  
  a.scholarship-sponsor img {
    border-radius: 50%;
  }
  
  .scholarship-list__header {
    margin: 1rem 0 .5rem;
  }
  
  .scholarship-title {
    text-decoration: none;
    line-height: 1.4;
  }
  
  .scholarship-essentials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: .6rem;
    font-weight: 600;
  }
  
  .scholarship-deadline, .scholarship-major {
    width: 50%;
    margin-bottom: .5rem;
  }
  
  .scholarship-apply, .scholarship-amount {
    width: 50%;
  }
  
  .scholarship-essentials span {
    color: #757575;
  }
  
  .scholarship-apply a {
    display: block;
    text-decoration: none;
    background: #157e91;
    padding: .35rem 1rem;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    text-align: center;
  }
  
  .scholarship-footer {
    padding: .5rem 1rem;
    border-top: 1px solid #e9e9e9;
  }
  
  .scholarship-more {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #757575;
  }
  
  .scholarship-footer .scholarship-more::after {
    content: "expand_more";
    font-family: "Material Icons";
    margin-left: 6px;
    font-size: 20px;
  }
  
  .more-scholarship__details-content {
    display: none;
  }
  
  .scholarship-footer.open .more-scholarship__details-content {
    display: block;
    font-size: 1rem;
  }
  
  .scholarship-special {
    display: flex;
    margin-bottom: .5rem;
  }
  
  .scholarship-special__label {
    min-width: 120px;
    font-weight: 600;
    margin-right: 1rem;
  }
  
  
  .scholarship-special.scholar-full {
    display: block;
  }
  
  .scholarship-special.scholar-full p:first-of-type {
    margin-top: .3rem;
  }
  
  
  .scholarship-footer.open .scholarship-more::after {
    content: "expand_less";
    font-family: "Material Icons";
    margin-left: 6px;
    font-size: 20px;
  }
  
  .scholarship-footer ul {
    list-style: inherit;
    margin: 0 0 1rem 2rem;
  }
  
  .scholarship-footer ul li {
    margin: 0 0 .5rem 0;
  }
  
  .scholarship-footer ol {
    margin: 0 0 1rem 2rem;
    padding: 0;
  }
  
  .scholarship-footer ol li {
    margin: 0 0 .5rem 0;
    padding-left: .5rem;
  }
  
  .intrinsic {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    margin: 1rem 0;
  }
  
  .intrinsic-2 {
    padding-bottom: 56.25%;
  }
  
  .intrinsic iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: none;
    overflow: hidden;
  }
  
  .profile-showcase__image .intrinsic iframe {
    border-radius: 6px;
  }
  
  .related-stories__container {
    margin: .4rem 0 1rem 0;
  }
  
  .related-stories {
    background: #efefef;
    padding: 1rem;
    border-radius: 4px;
  }
  
  .related-stories__heading {
    font-weight: 700;
    font-size: .9rem;
    line-height: 1;
    text-transform: uppercase;
    border-bottom: 1px solid;
    padding-bottom: .6rem;
  }
  
  .related-stories__heading span {
    display: block;
    color: #157e91;
    font-size: 1.2rem;
    margin-top: .4rem;
    font-weight: 900;
  }
  
  h3.related-story__title {
    font-size: 1rem;
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: .75rem 0;
  }
  
  .related-story__title:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }
  
  .related-story__title a {
    color: inherit;
  }
  
  .page-builder::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }
  
  h3.anchors-heading {
    text-transform: uppercase;
    font-size: 1rem;
    color: #757575;
    margin: 0 0 .5rem;
  }
  
  .builder-anchors ul {
    margin: 0 0 1rem;
  }
  
  .builder-anchors ul li {
    list-style: none;
    margin-bottom: .55rem;
    font-size: 1rem;
    line-height: 1.25rem;
  }
  
  span.professional-designations {
    display: inline-block;
    background: #fff;
    color: #157e91;
    border: 1px solid;
    border-radius: 9999px;
    margin-left: 6px;
    font-size: .8rem;
    font-weight: 600;
    padding: .225rem .5rem;
    vertical-align: middle;
    line-height: 1;
  }
  
  .builder-sponsored {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    margin: 1rem -1rem;
    background: #efefef;
    padding: 1rem;
  }
  
  .builder-sponsored.turquoise {
    border-top: 0;
    border-bottom: 0;
    background: #157e91;
    padding: 1rem;
    color: #fff;
  }
  
  .builder-sponsored__image {
    width: 35%;
  }
  
  .builder-sponsored__image img {
    max-height: 130px;
    width: 100%;
    object-fit: cover;
  }
  
  .builder-sponsored__content {
    margin-left: 4%;
    flex-basis: 65%;
  }
  
  .builder-sponsored__content span {
    text-transform: uppercase;
    font-weight: 300;
    font-size: .8rem;
    display: block;
    line-height: 1;
  }
  
  .builder-sponsored.turquoise .builder-sponsored__content span {
    font-weight: 400;
  }
  
  .builder-sponsored__content h3 {
    margin: 0 0 .75rem;
    line-height: 1.3;
    font-size: 1.2rem
  }
  
  .builder-sponsored__content h3 svg {
    vertical-align: middle;
    margin-left: 5px;
  }
  
  .builder-sponsored.turquoise .builder-sponsored__content h3 svg {
    fill: #fff;
  }
  
  h2.linked-heading a {
    text-decoration: none;
    color: inherit;
  }
  
  h2.linked-heading i {
    font-size: 30px;
    color: #157e91;
    vertical-align: middle;
  }
  
  a.linked-heading__read-more {
    padding: .5rem 3rem .5rem 1rem;
    margin-bottom: 1.3rem;
    display: block;
    max-width: 500px;
    color: #157e91;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    font-weight: 600;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: .3s;
  }
  
  a.linked-heading__read-more:after {
    content: "keyboard_arrow_right";
    font-family: "Material Icons";
    position: absolute;
    right: 1rem;
    font-size: 20px;
    top: 4px;
  }
  
  .slick-prev,
  .slick-next
  {
      font-size: 0;
      line-height: 0;
      position: absolute;
      top: 50%;
      display: block;
      width: 20px;
      height: 20px;
      padding: 0;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      cursor: pointer;
      color: transparent;
      border: none;
      outline: none;
      background: transparent;
  }
  
  .slick-prev:before,
  .slick-next:before
  {
      font-family: Material Icons;
      font-size: 40px;
      line-height: 1;
      font-weight: 900;
      color: #fff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
  
  .slick-prev {
    left: 0;
    z-index: 99;
  }
  
  .slick-prev::before {
    content: "chevron_left";
  }
  
  .slick-next {
    right: 24px;
    z-index: 99;
  }
  
  .slick-next::before {
    content: "chevron_right";
  }
  
  .slick-prev.slick-disabled::before, .slick-next.slick-disabled::before {
    opacity: .3;
  }
  
  .no-touch a.linked-heading__read-more:hover {
    background: #157e91;
    color: #fff;
    border-color: #157e91;
  }
  
  .pricing-tab-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 .5rem;
  }
  
  .pricing-tab > span {
      width: 50%;
      position: relative;
      z-index: 1;
      vertical-align: middle;
      box-sizing: border-box;
      text-align: center;
      font-size: 18px;
      cursor: pointer;
      transition: 0.5s all ease;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      outline: 0;
  }
  
  .pricing-tab > span.active.usd, .pricing-tab > span.active.cayman {
      color: #304455;
  }
  
  .pricing-tab > span.usd, .pricing-tab > span.cayman {
      color: rgba(0,0,0,0.3);
  }
  
  
  .pricing-tab > span.ztoggle-slide {
      width: 50px;
      display: inline-block;
      margin: 0 10px;
      background: #fff;
      border: 1px solid #157e91;
      border-radius: 20px;
      height: 25px;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      outline: 0;
  }
  
  
  .pricing-tab > span.ztoggle-slide em.toggle-btn {
      display: block;
      width: 18px;
      border-radius: 100%;
      background: #157e91;
      height: 18px;
      margin-left: 4px;
      margin-top: 2px;
      transition: 0.5s all ease;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      outline: 0;
  }
  
  .pricing-tab > span.ztoggle-slide.active em.toggle-btn {
      margin-left: 26px;
  }
  
  .table-container {
    overflow-x: auto;
    margin: 2rem 0;
  }
  
  .page-builder table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
  }
  
  .page-builder th {
    background: #157e91;
    color: #fff;
    font-size: 1.1rem;
    padding: .5rem .8rem;
  }
  
  .page-builder td {
    text-align: left;
    padding: .75rem 1rem;
    font-size: 1rem;
  }
  
  .page-builder tr:nth-child(even) {
    background-color: #f2f2f2
  }
  
  .page-builder tr:nth-child(odd) {
      background-color: #fff;
  }
  
  
  .page-builder table.comparison-table td {
    padding: .5rem 1rem;
  }
  
  .page-builder table.comparison-table td:first-child {
    width: 70%;
  }
  
  .page-builder table.comparison-table td:nth-child(2) {
    text-align: center;
  }
  
  .page-builder table.comparison-table th {
    padding: .6rem 0;
    line-height: 1;
  }
  
  .page-builder table.comparison-table th:first-child {
    text-align: left;
    padding-left: 1rem;
  }
  
  a.anchor-link__text {
    text-decoration: none;
    font-weight: 600;
  }
  
  .anchor-links__more-button {
    outline: 0;
    background: none;
    border: none;
    color: #757575;
  }
  
  .anchor-links__more-button::after {
    content: 'more_vert';
    font-family: 'Material Icons';
    font-size: 24px;
    padding: .8rem .5rem;
    margin: 0;
  }
  
  a.anchor-link__text.anchor-collapse.anchor-link__text-hidden {
    display: none;
  }
  
  .builder-anchors ul li.open .anchor-collapse {
    display: block;
  }
  
  .builder-anchors ul li.open button.anchor-links__more-button {
    display: none;
  }
  
  .page-builder h2.anchor-heading::before, .page-builder h3.anchor-heading::before {
    display: block;
    content: " ";
    margin-top: -3.6rem;
    height: 3.6rem;
    visibility: hidden;
    pointer-events: none;
  }
  
  .on-this-page {
    border: 1px solid #dadada;
    padding: 1rem 1rem 0;
    width: 100%;
    margin: 0 0 1rem;
    border-radius: 8px;
  }
  
  .profile-showcase__item {
    padding-bottom: 1.4rem;
    border-bottom: 1px dotted #ccc;
  }
  
  .profile-showcase__item + .profile-showcase__item  {
    padding-top: 1.4rem;
  }
  
  .profile-showcase__image img {
    border-radius: 6px;
    vertical-align: top;
  }
  
  .profile-showcase__header {
    margin: 1rem 0 .3rem;
  }
  
  .profile-showcase__header h3{
    margin: 0;
  }
  
  .profile-showcase__info {
    display: flex;
    justify-content: space-between;
    font-size: .95rem;
    margin: 0 0 1rem;
    color: #757575;
  }
  
  .profile-showcase__contact {
    text-align: right;
  }
  
  .profile-showcase__contact a {
    text-decoration: none;
    font-weight: 600;
    display: block;
  }
  
  .profile-showcase__description p {
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  a.showcase-link {
    display: block;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-reqeat;
    height: 200px;
    padding: 2rem;
    margin: 1.3rem 0;
    border-radius: 12px;
  }
  
  a.showcase-link h3 {
    color: #fff;
    font-weight: 800;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgb(0 0 0 / 50%);
  }
  
  .showcase-link__button {
    background: #157e91;
    padding: .3rem .75rem;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    margin-top: 1.1rem;
    display: inline-block;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .showcase-link__button span {
    vertical-align: middle;
    font-size: 20px;
    margin-right: 5px;
  }
  
  span.material-icons.showcase-link__arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #157e91;
    color: #fff;
    padding: .3rem;
    border-radius: 50%;
  }
  
  #articles .instagram-container {
    max-width: 600px;
    margin: 2rem auto;
  }
  
  .article-quote {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0;
    border-left: 3px solid #157e91;
    padding-left: 1rem;
  }

  .article-quote p {
    font-size: 1rem;
    margin: .65rem 0 0;
    font-weight: 500;
  }
  
  .caption {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-style: italic;
    color: #777;
  }
  
  .amp-flying-carpet-text-border {
    font-size: .8rem;
    color: #777;
    text-transform: uppercase;
    padding: .3rem;
    text-align: center;
  }
  
  
  a.listing-box {
    display: block;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    text-decoration: none;
    color: inherit;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #dadada;
    transition: all .25s ease;
  }
  
  .listing-box:not(.no-touch):hover {
    background: #fbfbfb;
    transition: all .25s ease;
    box-shadow: 2px 2px 8px 0 transparent;
  }
  
  .listing-box div.inner-listing {
    padding: 25px 20px;
  }
  
  .listing-box h4 {
    margin-top: 0;
    font-size: 20px;
    color: #2E2E2E;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: solid 1px #E9E9E9;
  }
  
  .listing-box .go-to-profile {
    border-top: solid 1px #E9E9E9;
    padding: 1rem;
    color: #A4A4A4;
  }
  
  .infos-wr p {
    font-size: 1rem;
    font-weight: 400;
  }
  
  .listing-box div.infos-wr>span {
    display: block;
    font-size: 1rem;
  }
  
  .go-to-profile button {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: .9rem;
    color: #157e91;
    margin-left: auto;
  }
  
  .profile-list__item {
    margin: 1.5rem 0;
  }
  
  .profile-list__item::before {
    content: "";
    display: table;
    clear: both;
  }
  
  .profile-list__item-container i {
    vertical-align: middle;
    font-size: 20px;
  }
  
  .incopy-banner {
    margin: 1rem -1rem;
    text-align: center;
    background: #efefef;
    padding: 1.25rem 0;
  }
  
  .chapter-banner {
    margin: 1.5rem -1rem;
    text-align: center;
    background: #efefef;
    padding: 1.25rem 0;
  }
  
  .profile-nav__item {
    width: 25%;
    border-right: 1px solid #fff;
    background-color: #eee;
    color: #444;
    display: inline-block;
    padding: .6rem 1rem;
    text-decoration: none;
    font-weight: 400;
    white-space: nowrap;
    font-size: 1rem;
  }
  
  .profile-nav__item:last-of-type {
    border-right: none;
  }
  
  .profile-people {
    display: flex;
    flex-wrap: wrap;
  }
  
  .person {
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    align-items: center;
    margin: 1rem 0;
    text-decoration: none;
    transition: .4s;
    overflow: hidden;
    transition: .4s;
  }
  
  .person img {
    height: 140px;
    width: 140px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .person picture {
    flex-basis: 45%;
  }
  
  .person-details {
    flex-basis: 55%;
    text-align: center;
  }
  
  .person h4 {
    color: #304455;
    margin: 0 0 .3rem;
  }
  
  .person span {
    font-size: 1rem;
    color: #304455;
    font-weight: 300;
  }
  
  footer .feedback-container {
    padding: .75rem;
    border-top: 1px solid #e7e7e8;
    border-bottom: 1px solid #e7e7e8;
    line-height: 1em;
    font-weight: 400;
    background: #fff;
  }
  
  .feedback-modal, .map-modal {
    display: none;
    position: fixed!important;
    z-index: 1000;
    top: 0!important;
    left: 0!important;
    bottom: 0!important;
    right: 0!important;
  }
  
  .lightbox {
    background: rgba(0,0,0,.8);
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 99;
    padding: 3rem 0;
  }
  
  .feedback-form {
    background: #fff;
    padding: 2rem;
    position: relative;
    max-width: 90%;
    width: 550px;
    border-radius: 8px;
  }
  
  .feedback-form__heading {
    margin: 0 0 1.5rem;
  }
  
  .feedback-form__heading h2 {
    margin: 0 0 .5rem;
    line-height: 1.3;
  }
  
  .feedback-form__heading p {
    font-size: 1rem;
    margin: 0 0 1rem;
  }
  
  .feedback-form button#feedback-close, button#map-close {
    position: absolute;
    top: 0;
    right: 0;
    background: 0 0;
    border: 0;
    outline: 0;
    padding: 1rem;
  }
  
  .feedback-form button#feedback-close::after, button#map-close::after {
    content: 'close';
    font-family: "Material Icons";
    font-size: 24px;
  }
  
  .feedback-form .field {
    margin: 0 0 1rem;
  }
  
  .feedback-form .input-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
  }
  
  .feedback-form .input-container select {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
    padding: .75rem 1rem;
    width: inherit;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    font-weight: 400;
  }
  
  .feedback-form .input-container select:focus {
    border-color: #157e91;
    outline: 0;
  }
  
  .feedback-form span.select-icon.global:after {
    color: #fa7676;
    font-family: "Material Icons";
    content: "keyboard_arrow_down";
    position: absolute;
    right: 10px;
    top: 1px;
    font-size: 27px;
    font-weight: 700;
    pointer-events: none;
  }
  
  .feedback-form .heading > label {
    font-weight: 700;
    margin: .75rem 0 .6rem;
    display: block;
    line-height: 1;
    font-size: 1rem;
  }
  
  .feedback-form .field input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 1px solid #ccc;
    padding: .75rem;
    font-size: .9rem;
    color: inherit;
    box-sizing: border-box;
    border-radius: 4px;
  }
  
  .feedback-form input:focus {
    outline: 0;
    border-color: #157e91;
  }
  
  textarea#feedback:focus {
    border-color: #157e91;
    outline: 0;
  }
  
  .feedback-form .field textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 1px solid #ccc;
    padding: .75rem;
    font-size: .9rem;
    color: inherit;
    box-sizing: border-box;
    border-radius: 4px;
    font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  }
  
  .feedback-form__submit {
    background: #157e91;
    border: 0;
    color: #fff;
    font-size: 1rem;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 600;
    padding: .5rem 2rem;
    line-height: 1.6;
    margin-top: 1rem;
    cursor: pointer;
  }
  
  button.feedback-form__submit span.spinner {
    animation: spin 2s linear infinite;
    display: none;
    line-height: 1;
  }
  
  span.spinner svg {
    height: 18px;
    fill: #fff;
    margin-right: 5px;
    vertical-align: middle;
  }
  
  button.feedback-form__submit.loading {
    opacity: .5;
  }
  
  button.feedback-form__submit.loading .spinner {
    display: inline-block;
  }
  
  .success {
    display: none;
  }
  
  .success.is-active {
    display: flex;
    margin-top: 1rem;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    position: relative;
  }
  
  .success p {
    padding: .6rem 1rem;
    font-size: 1rem;
    margin: 0;
    max-width: 90%;
  }
  
  .close-success {
    position: absolute;
    top: .5rem;
    right: .5rem;
  }
  
  .close-success svg {
    fill: #304455;
  }
  
  html.no-scroll {
    overflow-x: hidden!important;
    overflow-y: hidden!important;
  }
  
  .feedback-container__content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
  
  button#feedback-modal {
    text-decoration: underline;
    border: 0;
    background-color: transparent;
    font-size: .9rem;
    padding: .6rem 0;
    color: #157e91;
    font-weight: 700;
    border-radius: 5px;
    outline: 0;
    cursor: pointer;
  }
  
  .footer-middle {
    background: #efefef;
  }
  
  .footer-middle__container {
    border-bottom: 1px solid #e7e7e8;
  }
  
  .footer-middle__links a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-middle__links {
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    padding: 1rem 0;
  }
  
  .newsletter-container {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    padding: 1.5rem 1rem;
    color: #505050;
  }
  
  .newsletter-container .title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 22px;
  }
  
  
  #mc_embed_signup {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem 1.8rem;
  }
  
  #mc_embed_signup_scroll {
    border-radius: 4px;
    width: 100%;
    display: flex;
  }
  
  input#mce-EMAIL {
    font-size: 1rem;
    color: #7E7E7E;
    margin: 0;
    width: 70%;
    padding: .9rem;
    border-radius: 4px 0 0 4px;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    height: 47px;
    line-height: 1;
  }
  
  input#mc-embedded-subscribe {
    width: 30%;
    display: flex;
    justify-content: center;
    border: none;
    background: #fa7676;
    color: #fff;
    box-sizing: border-box;
    padding: .9rem 1rem;
    font-size: 1rem;
    border-radius: 0 4px 4px 0;
    outline: 0;
    cursor: pointer;
    height: 47px;
  }
  
  #mce-error-response {
    margin-top: .5rem;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    color: #ca3d4a;
    background-color: #ffdfe2;
    font-weight: 600;
  }
  
  #mce-error-response a {
    font-weight: 400;
    display: block;
  }
  
  #mce-success-response {
    margin-top: .5rem;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    color: #155724;
    background-color: #d4edda;
    font-weight: 600;
  }
  
  .footer-bottom {
    background: #157e91;
  }
  
  .footer-bottom .flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
  }
  
  .footer-bottom__left {
    align-items: center;
  }
  
  .footer-bottom__left a {
    display: block;
    line-height: 1;
    width: 240px;
  }
  
  .footer .copyright {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin: 6px 0 12px;
  }
  
  .footer-bottom__right a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: .4rem .8rem;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1;
  }
  
  .footer-bottom__right {
    display: flex;
    align-items: center;
  }
  
  .footer-bottom__right img {
    max-height: 20px;
    margin-right: 10px;
  }
  
  .chapter-sticky {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 4.5rem;
    z-index: 1;
  }
  
  
  @media (min-width: 480px) {
  
    .hero-text {
      left: 3%;
      max-width: 1200px;
      margin: 0 auto;
    }
  
    .profile-list__item-contact a {
      flex-direction: row;
    }
  
    .profile-list__slim-row {
        display: flex;
        padding: 0 1rem 1rem;
    }
  
    a.slim-phone {
      display: none;
    }
  
    a.slim-web i {
        display: none;
    }
  
    .no-touch .profile-list__slim-row .profile-list__item-contact a:hover {
      box-shadow: none;
      transform: none;
    }
  
    .profile-list__slim-row .profile-list__item-description {
        flex: 1;
        padding: 0;
    }
  
    .profile-list__slim-row .profile-list__item-contact {
        padding-bottom: 0;
        padding: 0;
        margin: 0 0 0 1.5rem;
    }
  
    .profile-list__slim-row .profile-list__item-contact a {
        flex-direction: column;
        color: #157e91;
        font-size: 1rem;
        margin-right: 0;
        font-weight: 600;
    }
  
    .profile-list__slim-row .profile-list__item-contact a i {
        margin: 0 0 .5rem
    }
  
    .algolia-page .flex-list__item {
      flex: 1 0 14rem;
    }
  
    .algolia-page a.flex-list__item .flex-card {
      flex-direction: column;
      display: block;
    }
  
    .algolia-page .flex-card__image {
      flex-basis: 100%;
      border-radius: 4px 4px 0 0;
      height: auto;
    }
  
    .algolia-page .flex-card__image img {
      border-radius: 4px 4px 0 0;
    }
  
    .algolia-page .flex-card__headline {
      flex-basis: 100%;
    }
  
    .profile-contact__message {
      flex-direction: row;
    }
  
    span.profile-contact__call {
      display: none;
    }
  
    span.profile-contact__phone {
      display: block;
    }
  
    .incopy-banner {
      margin: 1rem 0rem;
      text-align: center;
      background: none;
      padding: 0;
    }
  
    .fee {
      flex-basis: calc(33.33% - 11px);
      margin: 0 1rem 1rem 0;
      display: flex;
      flex-direction: column;
      background: #fff;
      position: relative;
      border-radius: 4px;
      border: 1px solid #ccc;
    }
  
    .fee:nth-child(3n) {
      margin-right: 0;
    }
  
    .fee-price {
      display: block;
    }
  
    .newsletter-container .title {
      font-size: 26px;
    }
  
  }
  
  @media (min-width: 600px) {

    .page-builder h2 {
      font-size: 1.45rem;
    }
  
    .navbar .links {
      padding: 0 2rem;
    }
  
    .autosuggest-container {
      position: absolute;
      width: 400px;
      z-index: 999;
      right: 0;
    }
  
    .main-content__sidebar {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
    }
  
    #profile .main-content__sidebar {
      flex-direction: column;
    }
  
    .col__main {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      -ms-flex-negative: 1;
      flex-shrink: 1;
      -ms-flex-preferred-size: 0;
      min-width: 0;
      order: 2;
    }
  
    .profile__main {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      -ms-flex-negative: 1;
      flex-shrink: 1;
      -ms-flex-preferred-size: 0;
      min-width: 0;
      order: 3;
    }
  
    .main-content__sidebar>:nth-child(3) {
      margin-left: 1.2rem;
    }
  
    .col__sidebar {
      -webkit-box-flex: 0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
      min-width: 0;
      order: 3;
    }
  
    .profile__sidebar {
      -webkit-box-flex: 0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      -ms-flex-preferred-size: 400px;
      flex-basis: 400px;
      flex: 1;
      min-width: 0;
      order: 2;
      margin-bottom: 0;
    }
  
    #profile .group-banner, #landing .group-banner {
      background: #efefef;
      padding: 1.1rem 0;
      border-top: 1px solid #e7e7e8;
      border-bottom: 1px solid #e7e7e8;
      margin: 0 0 1.5rem;
    }
  
    .profile-list__item-address, .profile-list__item-district {
      font-size: 1rem;
    }
  
    #profile .segment.flush {
      padding: 0 1rem 1rem;
    }
  
    #profile .block-container {
      border: 1px solid #eaecef;
    }
  
    #profile .profile-main__block {
      border: 1px solid #eaecef;
    }
  
    article.featured-in__page-card {
      width: calc(50% - .5rem);
      margin: 0 1rem 1rem 0;
    }
  
    article.featured-in__page-card:nth-child(2n) {
      margin-right: 0;
    }
  
    #profile .flex-list__item {
      width: calc(50% - 10px);
      flex: none;
      margin: 0 1rem 1rem .1rem;
    }
  
    .more-in__nav {
      -webkit-box-flex: 0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      -ms-flex-preferred-size: 300px;
      min-width: 210px;
      box-sizing: border-box;
      order: 1;
    }
  
    .profile-list__item-content p {
      font-size: 1rem;
    }
  
    .footer-bottom .flex {
      flex-direction: row;
    }
  
    .footer-bottom__left {
      margin-bottom: 0;
    }
  
    .profile-list__item-address, .profile-list__item-district {
      font-size: 1rem;
    }
  
    .hero-image {
      min-height: 360px;
    }
  
    .hero-text h1 {
      font-size: 2.5rem;
    }
  
    .hero-text p {
      font-size: 1.3rem;
    }
  
    .flex {
      flex-wrap: nowrap;
    }
  
    .filter-item {
      margin-bottom: 1rem;
      width: 32%;
    }
  
    .filter-item:first-of-type {
      width: 32%;
    }
  
    #jobs .filter-item {
      margin-right: 3%;
    }
  
    #jobs .filters-select {
      flex-wrap: nowrap;
  }
  
    #jobs .filter-item:last-of-type {
      margin-right: 0;
    }
  
    .hours {
      flex-basis: 50%;
      margin-top: 0;
    }
  
    .builder-sponsored {
      color: inherit;
      margin: 1rem 0;
      background: inherit;
      padding: 1rem 0;
    }
  
    .builder-sponsored.turquoise {
      border-radius: 4px;
    }
  
    .builder-sponsored__content h3 {
      margin: 0 0 1rem;
      line-height: 1.4;
      font-size: 1.3rem
    }
  
  }
  
  @media (min-width: 750px) {
  
    .navbar-links {
      background-color: #fff;
      padding: .5rem 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #navbar {
      position: relative;
      box-shadow: none;
      border-bottom: 1px solid #e7e7e8;
    }
  
    .sidebar-button {
      display: none;
    }
  
    .user-login {
      position: absolute;
      left: 3rem;
      display: flex;
    }
  
    .user-login a {
      color: inherit;
      text-decoration: none;
      font-size: 1rem;
      vertical-align: middle;
    }
  
    .navbar-masthead {
      border-bottom: 1px solid #ddd;
      box-shadow: none;
    }
  
    .navbar-masthead .search-box {
      right: 3rem;
      top: 1rem;
    }
  
    .navbar-masthead a.logo svg {
      width: 380px;
    }
  
    .nav-links .nav-item:first-of-type {
      margin-left: 0;
    }
  
    #profile .breadcrumbs {
      display: block;
    }
  
    #profile .breadcrumb {
      margin-bottom: 0;
    }
  
    #profile .mobile-crumb {
      display: none;
    }
  
  }

  @media (min-width: 768px) {
    .chapter-banner {
      margin: 0;
      background: transparent;
      padding: 0;
    }
  }
  
  @media (min-width: 880px) {
  
    a.logo svg {
      width: 300px;
    }
  
    a.nav-link {
      font-size: .925rem;
    }
  
    .nav-links .nav-item {
      margin-left: 1.5rem;
    }
  
    .main-content__sidebar>:nth-child(2) {
      margin-left: 1.2rem;
    }
  
    #profile .main-content__sidebar {
      flex-direction: row;
    }
  
    .profile__sidebar {
      flex: none;
      flex-basis: 400px;
    }
  
    .profile-intro__block.sticky {
      position: sticky;
      position: -webkit-sticky;
      position: -moz-sticky;
      position: -ms-sticky;
      position: -o-sticky;
      top: 30px;
    }
  
    .hero-copyright {
      padding: .5rem 2rem;
      opacity: .7;
    }
  
    .breadcrumb-container {
      flex-direction: row;
      align-items: center;
    }
  
    .breadcrumb {
      margin-bottom: 0;
    }
  
    .hero-text h1 {
      font-size: 3rem;
    }
  
    .algolia-page h1 {
      font-size: 3rem;
      text-align: center;
    }
  
    .algolia-page h2 {
      font-size: 1.4rem;
      text-align: center;
    }
  
    .algolia-page .flex-list__item:last-of-type {
      padding-right: 1rem;
    }
  
    .flex-list  {
        overflow-x: auto;
      }
  
    .profile-header__image {
      flex-basis: 15%;
    }
  
    .profile-header__content h1 {
      font-size: 3rem;
    }
  
    #profile .flex-list {
      overflow-x: hidden;
      flex-wrap: wrap;
    }
  
    #profile .flex-list__item {
      width: calc(33% - 10px);
      flex: none;
      margin: 0 1rem 1rem .1rem;
    }
  
    #profile .flex-list__item:nth-child(3n) {
      margin-right: 0;
    }
  
    .flex-list__item {
      flex-basis: calc(25% - 20px);
      flex: 1;
    }
  
    .flex-list__item:last-of-type {
      padding-right: .1rem;
    }
  
    #jobs .more-in__nav, #doctors .more-in__nav, #clinics .more-in__nav {
      display: block;
    }
  
    .hero-text p {
      font-size: 1.5rem;
    }
  
    .profile-header__image {
      flex-basis: 15%;
    }
  
    .profile-header__content h1 {
      font-size: 3rem;
    }
  
    #pages .more-in__nav {
      display: block;
    }
  
    .more-in__nav {
      border-right: 1px solid #ccc;
      background: #f9f9f9;
      border-top: 0;
      border-bottom: 0;
      max-width: 210px;
      padding: .5rem 1rem 0 0;
      margin: 0;
    }
  
    .more-in__nav-heading {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
      line-height: 1.4;
    }
  
    .more-in__subnav {
      display: block!important;
    }
  
    .more-in__nav-heading::after {
      display: none;
    }
  
    .more-in__nav ul li {
      display: block;
    }
  
    .more-in__subnav .has-children ul.children {
      display: block;
    }
  
    .has-children button::after {
      display: none;
    }
  
    .has-children button.open::after {
      display: none;
    }
  
    .has-children .subnav-collapse:after {
      display: none;
    }
  
    .has-children.open .subnav-collapse:after {
      display: none;
    }
  
    .pages-block {
      margin-right: 1rem;
    }
  
    .pages-block.two-column {
      width: calc(50% - 8px);
    }
  
    .pages-block.two-column:nth-child(2n) {
      margin-right: 0;
    }
  
    .pages-block.three-column {
      width: calc(33.3% - 11px);
    }
  
    .pages-block.three-column:nth-child(3n) {
      margin-right: 0;
    }
  
    .pages-block.four-column {
      width: calc(25% - 12px);
    }
  
    .pages-block.four-column:nth-child(4n) {
      margin-right: 0;
    }
  
    #profile .block-container.affiliated {
      border: 1px solid #bcd9de;
    }
  
    .footer-bottom__left {
      display: flex;
    }
  
    .footer-bottom__left a {
      margin-right: 1rem;
      width: 300px;
    }
  
    .footer .copyright {
      margin: 0;
    }
  
  }
  
  
  @media (max-width: 749px) {
  
    .navbar .can-hide {
      display: none;
    }
  
    .navbar {
      padding-left: 4rem;
    }
  }
  
  
  
  
  @media (max-width: 1024px) {
  .search-box input {
      cursor: pointer;
      width: 0;
      border-color: transparent;
      position: relative;
  }
  
  .search-box input:focus {
      cursor: text;
      left: 0;
  }
  
  }
  
  @media (min-width: 1025px) {
  .search-box input {
      padding: .3rem .5rem .3rem 2.3rem;
    }
  }
  
  @media (min-width: 600px) and (max-width: 879px) {
  
    .more-in__nav {
      display: none;
    }
  
    .person {
      flex-basis: calc(33% - 9px);
      margin: 1rem 1rem 1rem 0;
      flex-direction: column;
      justify-content: center;
    }
  
    .person-headshot {
      width: 130px;
      margin-right: 0;
    }
  
    .person:nth-child(3n) {
      margin-right: 0;
    }
  
    .person h4 {
      margin: 1rem 0 .3rem;
    }
  
    #profile .flex-list__item:nth-child(2n) {
      margin-right: 0;
    }
  }
  
  @media (min-width: 1005px) {
    .mega-menu__feature-image {
      height: 160px;
      display: block;
    }
  }
  
  @media (min-width: 1035px) {
  
    .on-this-page {
      width: 275px;
      float: right;
      margin: 0 0 1rem 1rem;
    }
  
    .related-stories__container {
      max-width: 40%;
      margin: .4rem 5% 1rem 0;
      float: left;
      clear: both;
    }
  
    .scholarship-essentials {
      flex-wrap: nowrap;
    }
  }
  
  @media (min-width: 1199px) {
    .sponsors {
      background: none;
      border-top: 1px solid #efefef;
      border-bottom: 1px solid #efefef;
    }
  }
  
  @media (min-width: 880px) and (max-width: 1080px) {
  
    .profile-list__slim-row {
      display: block;
    }
  
    .profile-list__slim-row .profile-list__item-contact {
      margin-left: 0;
    }
  
    .profile-list__slim-row .profile-list__item-contact a {
      flex-direction: row;
      border: 1px solid #157e91;
      font-size: .9rem;
      color: inherit;
      margin: 0 0.75rem 0.3rem 0;
    }
  
    .profile-list__slim-row .profile-list__item-contact a i {
      margin: 0 5px 0; 
    }
  
  }
  
  @media (min-width: 1000px) and (max-width: 1200px) {
    .person {
      flex-basis: calc(50% - 8px);
      margin: 1rem 1rem 1rem 0;
      flex-direction: column;
      justify-content: center;
    }
  
    .person-headshot {
      width: 130px;
      margin-right: 0;
    }
  
    .person:nth-child(2n) {
        margin-right: 0;
    }
  
    .person h4 {
      margin: 1rem 0 0;
    }
  }
  
  @media (min-width: 1201px) {
  
    .person {
      flex-basis: calc(33% - 9px);
      margin: 1rem 1rem 1rem 0;
      flex-direction: column;
      justify-content: center;
    }
  
    .person-headshot {
      width: 130px;
      margin-right: 0;
    }
  
    .person:nth-child(3n) {
      margin-right: 0;
    }
  
    .person h4 {
      margin: 1rem 0 0;
    }
  }
  