/* General Header Styling */
.header-container, .header-mini {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    z-index: 1;
    padding-top: 145px;
    color: #000;
    /*text-align: center;*/
}
.header-mini .right {
    width: 50vw;
    justify-content: flex-end;
    display: flex;
}
.header-mini .right .button:not(:last-child) {
    margin-right: 5px;
}
.no-header {
    min-height: 70px;
}
/* Mini Header */
.header-mini {
    min-height: 130px;
}
.header-title {
    color: #000;
    position: relative;
    height: 50px;
}
.header-container .header-title {
    padding-top: 125px;
    padding-bottom: 125px;
    margin-bottom: 1rem;
    padding-left: calc(24px + 0.390625vw);
}

.header-mini .header-title {
    padding-top: .5rem;
    margin-bottom: 1rem;
    padding-left: calc(24px + 0.390625vw);
}
.header-mini .bubble, .header-title .bubble {
    overflow: visible;
    font-family: "acumin-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.2rem;
    color: rgb(43, 43, 43);
    text-align: center;
    line-height: 1.5;
    border-radius: 0px;
    opacity: 1;
    align-self: flex-start;
    min-width: 200px;
    order: 1;
    min-height: 0px;
    height: max-content;
    flex-grow: 0;
    flex-shrink: 0;
    width: calc(100% + 0px);
    margin: 8px 0px 0px;
}
.header-mini .bubble:last-child, .header-title .bubble:last-child {
    padding-bottom: 10px;
}
.bubble span {
  font-size: .895rem;
  text-wrap: nowrap;
}
.article-category {
    text-align: left;
}
/*
 * BEGIN HERO CONTAINER
 */
.hero-container {
  background: linear-gradient(128deg, #fff 60%, #b6cfdb 100%);
  height: 100vh;
  padding: 120px 1rem 0 1rem;
  min-height: 945px;
}

.hero-content {
  max-width: 380px;
  text-align: center;
  margin: 0 auto;
}
.hero-subtitle {
  color: #5a5a5a;
  font-weight: 200;
  text-transform: uppercase;
}
.hero-title {
  color: #1a1a1a;
  line-height: 2.5rem;
  font-size: 2.5rem;
  font-weight: 400;
  padding: 1rem 0;
}
.hero-description {
  color: #1a1a1a;
  font-weight: 300;
  font-size: 1.2rem;
}
.hero-button {
  background-color: #b6cfdb;
  color: #fff;
  display: inline-block;
  margin: 20px auto;
  padding: 10px 40px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
}
.hero-button i {
  margin-left: 5px;
}
.hero-line-break {
    display: none;
}
.hero-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
/*
 * END HERO
 *
 * BEGIN ARTICLES / FOCUS
 *
 * Article headers and focus headers share a similar styling. Focus header is on the main page and displays the current focus.
 */
 
.article.header-container.row, .focus.header-container.row {
    background-size: cover;
    margin-top: 100px;
    color: white !important;
    box-sizing: border-box;
    overflow: hidden;
}
#ab.is_sticky {
    position: fixed;
    top: 100px;
    z-index: 38;
}
.article .header-mini, .focus .header-mini {
    background-color: unset;
    color: #fff;
}
.header-mini .bubble {
    color: #fff;
}
.article-category a {
    font-size: 14px;
    background-color: rgba(182, 207, 219, .75);
    font-weight: 400;
    padding: 1rem 2rem .5rem 2rem;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    top: -77px;
    left: 2rem;
    position: relative;
    color: var(--darker-primary-color);
    box-shadow: 1px 4px 10px rgba(0, 0, 0,.5);
    letter-spacing: 1px;
}

.article .bubble, .article h1 {
    background-color: rgba(0, 0, 0, .5);
    padding: 0;
    margin: 0;
    position: relative;
    /*left: -1.25rem;*/
    width: 100vw;
}
aside .bubble {
	text-align: left;
}
.article h1 {
    padding: 1rem 1rem 0 1rem;  
    font-size: 2rem;
}
@media only screen and (min-width: 768px) {
	.header-container, .header-mini {
		padding-top: 124px;
	}
    .hero-line-break {
        display: inline;
    }
      /* For desktop: */
      .header-container {
        min-height: 120px;
    }
    .hero-container {
        height: 80vh;
    }
      .hero-content {
        max-width: none;
        text-align: left;
      }
      .index-title.col-6, .index-title.col-4 {
      height: 100%;
      align-content: center;
    }
    .header-mini {
        text-align: center !important;
        min-height: 120px;
    }
    .header-mini .bubble:last-child, .header-title .bubble:last-child {
        padding-bottom: 30px;
    }
    .article .bubble, .article h1 {
        position: relative;
        left: -9.98%;
        width: 100vw;
    }
    .article-category a:hover {
        background-color: var(--primary-color);
        transform: scale(1.2);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    .article.header-container.row, .focus.header-container.row {
        margin-top: 120px;
    }
    #ab.is_sticky {
        top: 123px;
    }
    .article-category a {
        top: -107px;
        left: 0;
    }
}
