/* Advisor Presentation Cards */
.profile-card {
  max-width: 340px;
}

.profile-card a {
  display: flex;
  justify-content: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.profile-img-container {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
}

.profile-img-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000, #000000);
  opacity: 0.4;
  z-index: 1;
  border-radius: 50%;
}

/* Home hero classes */
.hero-background {
  background: url("https://storage.googleapis.com/mg-public-assets/img/bg-woman-thoughful.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: auto;
  padding: 5em 0;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000000, #000000);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1; /* Nøkkelen for å få alt innholdet til å vises over */
}

.hero-logo {
  position: relative;
}

.hero-title {
  position: relative;
  color: #f5f5f5;
}

.hero-subtitle {
  position: relative;
  color: #f5f5f5;
}
