/*!------------------------------------------------------------------
[MAIN STYLESHEET]
-------------------------------------------------------------------*/
/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/hero.jpg");
  /* Set a specific height */
  height: 50%;
  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text p {
  color: white;
}

html {
  font-family: "Jost", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

body,
html {
  height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 576px) {
  body {
    font-size: 18px;
  }
}

main {
  display: block;
  height: 100vh;
}

.nav__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 0;
}
.nav__list .nav__item {
  margin: 0 2rem;
  list-style-type: none;
}
.nav__list .nav__item:hover {
  color: var(--brand-color);
}
.nav__list .nav__item a {
  text-decoration: none;
  font-weight: 600;
}

.logo {
  justify-content: center;
  display: flex;
}
.logo .logo__image {
  max-height: 150px;
}

ion-icon {
  font-size: 20px;
}

.clientportal__container {
  display: flex;
  align-items: center;
  gap: 8px;
}

a:link, a:visited {
  color: black;
}
a.active, a:hover {
  color: tan;
}

.content__frame {
  padding-top: 1em;
  padding-left: 10em;
  padding-right: 10em;
  text-align: center;
}

.about__container {
  display: flex;
}
.about__container .about__header {
  margin-top: 0;
}

#about__profile_pic {
  margin-top: 4em;
  margin-right: 3em;
}

.footer {
  display: flex;
  justify-content: center;
  height: 4em;
}

.content {
  overflow: scroll;
}

ul {
  list-style-type: none;
}
