* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "GT-Flexa-Standard-Bold-Italic";
  src: url("../fonts/GT-Flexa/GT-Flexa-Standard-Bold-Italic.woff")
    format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "GT-Flexa-Standard-Bold";
  src: url("../fonts/GT-Flexa/GT-Flexa-Standard-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "GT-Flexa-Standard-Medium-Italic";
  src: url("../fonts/GT-Flexa/GT-Flexa-Standard-Medium-Italic.woff")
    format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "GT-Flexa-Standard-Medium";
  src: url("../fonts/GT-Flexa/GT-Flexa-Standard-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GT-Flexa-Standard-Regular-Italic";
  src: url("../fonts/GT-Flexa/GT-Flexa-Standard-Regular-Italic.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GT-Flexa-Standard-Regular";
  src: url("../fonts/GT-Flexa/GT-Flexa-Standard-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GT-Flexa-Standard-Light-Italic";
  src: url("../fonts/GT-Flexa/GT-Flexa-Standard-Light-Italic.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GT-Flexa-Standard-Light";
  src: url("../fonts/GT-Flexa/GT-Flexa-Standard-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  font-family: "GT-Flexa-Standard-Light", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  color: black;
}

body {
  padding-bottom: 100px;
}

h1 {
  font-size: 76px;
  line-height: 82px;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h2 {
  font-size: 55px;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  padding-top: 150px;
  margin-bottom: 32px;
  max-width: 720px;
}

h2.no-space-top {
  padding-top: 0px;
}

h3 {
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-size: 32px;
  line-height: 42px;
  max-width: 720px;
  margin-bottom: 25px;
  margin-top: 50px;
}

h3 strong {
  font-weight: bold;
}

p {
  font-size: 22px;
  font-weight: normal;
  line-height: 32px;
  max-width: 720px;
  margin-bottom: 24px;
}
p.image-text {
  left: 0;
  bottom: 0px;
  width: 100%;
  max-width: 100%;
  margin: 0px;
  padding-top: 10px;
}

p.grid-introduction {
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
}

p a {
  color: #1800ff;
  text-decoration: none;
}

p strong {
  font-weight: bold;
}

p em {
  font-style: italic;
}

p a:hover {
  text-decoration: underline;
}

.multi-col-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 920px;
}
.multi-col-text > div {
  max-width: calc(50% - 25px);
  min-width: 200px;
}
.multi-col-text > div > * {
  max-width: 100%;
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
ul li {
  font-size: 22px;
  font-weight: normal;
  line-height: 32px;
  margin-bottom: 2px;
}

#notification-bar {
  position: fixed;
  z-index: 99;
  width: 100%;
  padding: 25px 50px;
  user-select: none;
  pointer-events: none;
}
.notification {
  background: black;
  padding: 12px 24px;
  color: white;
  font-size: 24px;
  border-radius: 10px;
  margin: 25px auto;
  max-width: 370px;
  text-align: center;
}

nav {
  position: fixed;
  z-index: 98;
  width: 100%;
  left: 0;
  padding: 25px;
  top: 0;
  pointer-events: none;
}
#main-nav {
  position: absolute;
  height: 50px;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  pointer-events: all;
}
#nav-list {
  display: none;
  background-color: white;
  padding: 20px 25px;
  margin-right: 15px;
  border-radius: 10px;
  border: 2px solid black;
}
#main-nav a {
  font-size: 24px;
  color: black;
  margin-right: 30px;
  text-decoration: none;
}
#main-nav a:last-of-type {
  margin-right: 0px;
}
#main-nav a.active {
  color: #1800ff;
  text-decoration: underline;
}
#main-nav a:hover {
  text-decoration: underline;
}
#burger {
  pointer-events: all;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  background-image: url("/graphics/brandguide/menu.svg");
  background-size: 50px;
  background-position: center right -5px;
  background-repeat: no-repeat;
}
#burger.active {
  background-image: url("/graphics/brandguide/menu-close.svg");
}

#anchor-nav {
  pointer-events: all;
  position: absolute;
  right: 25px;
  top: 125px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#anchor-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* max-height: calc(100vh - 350px);
    overflow-y: scroll; */
}
#anchor-nav-title {
  font-size: 40px;
  padding: 12px 0px;
  margin-bottom: 12px;
  font-weight: 300;
  display: none;
}
.anchor-link {
  font-size: 24px;
  font-weight: normal;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid black;
  background: white;
  margin-bottom: 10px;
  border-radius: 10px;
  color: black;
  max-width: 340px;
}
.anchor-link.minified {
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 22px;
}
.anchor-link:last-of-type {
  margin-bottom: 0px;
}
.anchor-link:hover {
  background: black;
  color: white;
}
.anchor-link.active {
  background: black;
  color: white;
}
#home {
  pointer-events: all;
  position: relative;
  z-index: 999;
  display: block;
  width: 80px;
  height: 50px;
  background: none;
  background-color: none;
  background-image: url("/graphics/brandguide/ffs-logo-kaleidoskop.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#top {
  pointer-events: all;
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: none;
  width: 30px;
  height: 65px;
  background: none;
  background-color: none;
  background-image: url("/graphics/brandguide/arrow-up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 60vh;
  min-height: 550px;
}
header.home {
  height: auto;
  min-height: auto;
  padding-top: 150px;
}
.header-content {
  padding: 50px 25px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.header-break {
  min-height: 75vh;
  background-position: center;
  background-repeat: no-repeat;
}
.header-break.cover {
  background-size: cover;
  background-attachment: fixed;
}
.header-break.contain {
  background-size: contain;
}
h1.page-title,
p.page-intro {
  font-weight: 300;
  max-width: 920px;
}
h1.page-title {
  font-weight: bold;
  margin-bottom: 50px;
}

header.home p.page-intro {
  font-size: 25px;
  line-height: 35px;
}

#front-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin-bottom: 50px;
}

#front-nav a {
  font-size: 24px;
  font-weight: normal;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid black;
  background: white;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  color: black;
}

#front-nav a:hover {
  background: black;
  color: white;
}

main {
  padding: 50px 25px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-gap: 50px;
  margin: 75px 0px;
}
.grid.contrast {
  grid-gap: 10px;
}
.color-grid {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-gap: 10px;
  margin: 75px 0px;
}
.grid.col-4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.color-grid.col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.color-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.color-codes {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
.color-grid.print .grid-elem {
  height: 140px;
}
.color-grid.screen .grid-elem {
  height: 320px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.color-grid.print .grid-elem {
  justify-content: flex-start;
}
.color-grid.print .grid-elem .color-name {
  margin-bottom: 8px;
}
.color-grid.print .grid-elem.exclude {
  position: relative;
}
.color-grid.print .grid-elem.exclude::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/graphics/brandguide/excluded.png");
  background-position: center;
  background-repeat: no-repeat;

  background-size: 105% 105%;
}
.color-grid.screen .grid-elem .hex {
  user-select: none;
  margin-bottom: 8px;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("/graphics/brandguide/copy_color-icon-dark.svg");
  background-position: center right;
  background-size: 20px;
  background-repeat: no-repeat;
}
.color-grid.screen .grid-elem .hex.light {
  background-image: url("/graphics/brandguide/copy_color-icon-light.svg");
}
.color-grid.screen .grid-elem .hex:hover {
  text-decoration: underline;
}
.color-grid.screen.minified .grid-elem .hex {
  margin-bottom: 0px;
}
.color-grid.screen.minified .grid-elem .rgb {
  display: none;
}
.color-grid.screen.minified .grid-elem {
  height: 100px;
  justify-content: flex-start;
}
.color-grid.screen.minified .grid-elem .color-name {
  margin-bottom: 8px;
}

.color-grid .grid-elem {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px 15px;
  font-size: 18px;
}

.dl-elem {
  position: relative;
  padding-top: 25px;
}
.dl-elem-toggle {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
  right: -25px;
  top: -25px;
}
.dl-elem-btn {
  width: 50px;
  height: 50px;
  background-color: white;
  background-image: url("/graphics/brandguide/dl-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 5px;
}
.dl-elem-btn:hover {
  border: 2px solid black;
}
.dl-elem-btn.active {
  background-image: url("/graphics/brandguide/dl-close.svg");
}
.dl-elem-list {
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  border: 2px solid black;
  display: none;
}
.dl-elem-list a {
  display: block;
  font-size: 20px;
  color: black;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 15px;
  user-select: none;
}
.dl-elem-list a:last-of-type {
  margin-bottom: 0px;
}
.dl-elem-list a:hover {
  text-decoration: underline;
}

.dl-elem img,
.grid-elem img {
  width: 100%;
  height: auto;
}

.grid-elem {
  position: relative;
  /* padding-top: 25px; */
}
.grid-elem.span-4 {
  grid-column: span 4;
}
.grid-elem.span-3 {
  grid-column: span 3;
}
.grid-elem.span-2 {
  grid-column: span 2;
}
.grid-elem.span-1 {
  grid-column: span 1;
}

.dl-group-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 920px;
  margin: 20px 0px;
}
.dl-group-toggle {
  position: relative;
}
.dl-group-btn {
  background-color: white;
  background-image: url("/graphics/brandguide/dl-arrow.svg");
  background-position: center left 20px;
  background-repeat: no-repeat;
  background-size: 20px;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
  text-decoration: none;
  padding: 12px 24px;
  padding-left: 64px;
  user-select: none;
  border: 2px solid black;
}
.dl-group-btn:hover {
  background-color: black;
  background-image: url("/graphics/brandguide/dl-arrow-white.svg");
  color: white;
}
.dl-group-btn.active {
  background-image: url("/graphics/brandguide/dl-close.svg");
}
.dl-group-btn.active:hover {
  background-color: black;
  background-image: url("/graphics/brandguide/dl-close-white.svg");
  color: white;
}
.dl-group-list {
  min-width: 380px;
  position: absolute;
  z-index: 99;
  top: 65px;
  display: none;
  background: white;
  padding: 30px 30px;
  border-radius: 10px;
  border: 2px solid black;
  display: none;
}
.dl-group-list a {
  display: block;
  font-size: 20px;
  color: black;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 15px;
  user-select: none;
  padding-left: 30px;
  background-position: center left;
  background-size: 22px;
  background-repeat: no-repeat;
}
.dl-group-list a.zip {
  background-image: url("/graphics/brandguide/zip-icon.svg");
}
.dl-group-list a.singleFile {
  background-image: url("/graphics/brandguide/file-icon-2.svg");
}
.dl-group-list a:last-of-type {
  margin-bottom: 0px;
}
.dl-group-list a:hover {
  text-decoration: underline;
}

.file-container {
  display: flex;
}
.file-container .filegroup.screen {
  flex: 1;
}
.file-container .filegroup.print {
  flex: 1.4;
}
.file-container .filegroup-title {
  padding-left: 30px;
  margin-bottom: 15px;
}

.video-container {
  width: 100%;
  max-width: 920px;
  user-select: none;
  pointer-events: none;
}
.video_wrapper {
  position: relative;
}
.video_wrapper.sixteen_nine {
  padding-bottom: 56.25%;
}
.video_wrapper.one_one {
  padding-bottom: 100%;
}
.video_wrapper.four_three {
  padding-bottom: 75%;
}
.video_wrapper.three_two {
  padding-bottom: 66.66%;
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
1:1  - padding-bottom: 100%
16:9 - padding-bottom: 56.25%
4:3  - padding-bottom: 75%
3:2  - padding-bottom: 66.66%
8:5  - padding-bottom: 62.5%
*/

.custom-section {
  padding: 0px 50px;
  width: calc(100% + 100px);
  transform: translateX(-50px);
  padding-bottom: 50px;
}

.custom-text-clr > * {
  color: inherit;
}

#toggle-anchor {
  display: none;
  width: 40px;
  height: 40px;
  background-image: url("/graphics/brandguide/anchor-menu-v4.svg");
  background-size: 40px;
  background-position: center right -5px;
  background-repeat: no-repeat;
  position: absolute;
  left: -65px;
  top: 0px;
  visibility: hidden;
}

/****** LOGIN ******/
#login-form {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

#login-form h3 {
  margin-top: 0px;
  margin-bottom: 25px;
  font-family: "GT-Flexa-Standard-Regular", sans-serif;
  font-weight: bold;
  font-style: normal;
  text-align: center;
}

#login-form .login-field {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  max-width: 400px;
  min-width: 250px;
  margin-bottom: 20px;
}

#login-form .login-field input {
  width: 100%;
  font-size: 20px;
  padding: 20px;

  font-family: "GT-Flexa-Standard-Regular", sans-serif;
  font-weight: normal;
  font-style: normal;

  border-radius: 0px;
  border: 2px solid black;
  outline: none;
}
#login-form .login-field input:focus,
#login-form .login-field input:active {
  border: 2px solid #3e0599;
}
#login-form .login-field label {
  display: none;
}
/* #login-form .login-field label{
  opacity: 0;
  font-family: 'Basis Grotesque', sans-serif;
  font-weight: bold;
  font-style: normal;
  text-align: center;
}
#login-form .login-field input:valid + label{
  opacity: 1;
}
#login-form .login-field label{
  width: 100%;
  font-size: 18px;
  padding: 10px 20px;
} */
#login-form .login-field input::placeholder {
  color: black;
}
#login-form button {
  font-family: "GT-Flexa-Standard-Regular", sans-serif;
  font-weight: bold;
  font-style: normal;

  width: 100%;
  max-width: 400px;
  min-width: 250px;
  font-size: 20px;
  padding: 20px;
  border: none;
  outline: none;
  background-color: #ffef22;
  color: black;
  cursor: pointer;
  margin-bottom: 25px;

  border: 2px solid #ffef22;
}
/* #login-form button:hover{
  transform: scale(1.02);
} */
#login-form button:focus,
#login-form button:active {
  border: 2px solid #3e0599;
}
#login-form p {
  font-size: 18px;
  line-height: 30px;
  color: black;
  text-align: center;

  font-family: "GT-Flexa-Standard-Regular", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 25px;
}

#login-form li {
  font-family: "GT-Flexa-Standard-Regular", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: black;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 58px;
    line-height: 66px;
  }

  h2 {
    font-size: 45px;
    padding-top: 125px;
    margin-bottom: 25px;
    max-width: 720px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  p {
    font-size: 18px;
    line-height: 28px;
  }

  h1.page-title,
  p.page-intro {
    max-width: 760px;
  }

  p.grid-introduction {
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
  }

  .multi-col-text {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    max-width: 760px;
  }
  .multi-col-text > div {
    max-width: 100%;
    min-width: 200px;
  }
  .multi-col-text > div > * {
    max-width: 100%;
    color: inherit;
  }

  ul li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 2px;
  }

  header.home p.page-intro {
    font-size: 20px;
    line-height: 30px;
  }

  #burger {
    width: 40px;
    height: 40px;
    background-size: 40px;
  }

  #nav-list {
    padding: 15px 20px;
    margin-right: 10px;
  }
  #main-nav a {
    font-size: 18px;
    margin-right: 15px;
  }

  #front-nav a {
    font-size: 20px;
    padding: 10px 20px;
  }

  #anchor-nav {
    right: 25px;
    top: 100px;
  }

  #anchor-nav-title {
    font-size: 32px;
    padding: 10px 0px;
    margin-bottom: 10px;
  }
  .anchor-link {
    font-size: 22px;
    padding: 10px 20px;
  }
  .anchor-link.minified {
    padding: 10px 15px;
    margin-bottom: 5px;
    font-size: 18px;
  }

  .grid {
    max-width: 760px;
    grid-gap: 25px;
    margin: 50px 0px;
  }
  .color-grid {
    max-width: 760px;
    grid-gap: 10px;
    margin: 50px 0px;
  }

  .dl-group-container {
    max-width: 760px;
  }

  .dl-group-btn {
    background-position: center left 15px;
    background-size: 18px;
    font-size: 18px;
    padding: 10px 20px;
    padding-left: 45px;
  }

  .dl-group-list {
    min-width: 300px;
    position: absolute;
    top: 55px;
    padding: 20px 20px;
  }
  .dl-group-list a {
    font-size: 18px;
    margin-bottom: 15px;
    user-select: none;
    padding-left: 25px;
    background-size: 18px;
  }
  .file-container .filegroup-title {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .color-grid .grid-elem {
    padding: 20px 10px;
    font-size: 16px;
  }

  .color-grid.screen .grid-elem {
    height: 250px;
  }
}

@media only screen and (max-width: 1000px) {
  #toggle-anchor {
    visibility: visible;
  }
  #anchor-nav {
    transform: translateX(calc(100% + 25px));
  }
  #anchor-nav.visible {
    transform: translateX(0px);
  }
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2 {
    font-size: 30px;
    padding-top: 125px;
    margin-bottom: 25px;
    max-width: 720px;
  }

  h3 {
    font-size: 25px;
    line-height: 40px;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  #front-nav a {
    font-size: 18px;
    padding: 10px 20px;
    margin-right: 5px;
    margin-bottom: 5px;
  }

  #anchor-nav {
    right: 25px;
    top: 80px;
  }

  #anchor-nav-title {
    font-size: 25px;
    padding-top: 0px;
  }

  .anchor-link {
    font-size: 18px;
    padding: 8px 16px;
    margin-bottom: 5px;
  }
  .anchor-link.minified {
    padding: 8px 16px;
    margin-bottom: 5px;
    font-size: 16px;
  }

  .color-grid .grid-elem {
    padding: 10px 10px;
    font-size: 14px;
  }

  .color-grid.col-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.col-4 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
  .grid.col-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .color-grid.col-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.col-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .color-grid.screen .grid-elem {
    height: 140px;
  }
  .color-grid.print .grid-elem {
    height: 100px;
  }

  .color-grid.screen .grid-elem .hex {
    background-size: 16px;
    padding-right: 24px;
  }

  .multi-col-text {
    flex-direction: column;
  }

  .grid-elem.span-4 {
    grid-column: span 1;
  }
  .grid-elem.span-3 {
    grid-column: span 1;
  }
  .grid-elem.span-2 {
    grid-column: span 1;
  }
  .grid-elem.span-1 {
    grid-column: span 1;
  }

  .dl-group-btn {
    background-position: center left 15px;
    background-size: 16px;
    font-size: 16px;
    padding: 10px 15px;
    padding-left: 45px;
  }

  #nav-list {
    position: absolute;
    z-index: 9999;
    top: 0px;
    left: 50px;
    padding: 35px 25px;
    margin-right: 0px;
    width: calc(100% - 100px);
  }
  #main-nav {
    width: 100%;
  }
  #main-nav a {
    display: block;
    font-size: 22px;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  #main-nav a:last-of-type {
    margin-bottom: 0px;
  }

  #home {
    width: 60px;
    height: 50px;
  }

  #top {
    width: 25px;
    height: 45px;
  }

  h1.page-title {
    font-weight: bold;
    margin-bottom: 25px;
  }

  .dl-group-list {
    min-width: 100%;
    position: absolute;
    top: 50px;
    padding: 15px 15px;
  }

  header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 125px;
    height: auto;
    min-height: auto;
  }

  .header-break {
    min-height: auto;
    height: 350px;
  }
  .header-break.cover {
    background-size: cover;
    background-attachment: scroll;
  }
  .header-break.contain {
    background-size: contain;
  }
}
