/*** BRICOLAGE FONT FACE ***/
@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('/fonts/Bricolage/BricolageGrotesque-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('/fonts/Bricolage/BricolageGrotesque-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('/fonts/Bricolage/BricolageGrotesque-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('/fonts/Bricolage/BricolageGrotesque-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('/fonts/Bricolage/BricolageGrotesque-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/*** BRICOLAGE FONT FACE ***/

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

html{
    scroll-behavior: smooth;
}
html,body{
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    color: #1E0E20;
    background-color: #fcfaf7;
    background: #fcfaf7;
}
body{
    padding-bottom: 150px;
}

body.home{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding-top: 64px;
  padding-bottom: 0px;
}
body.not_logged_in{
    overflow: hidden;
}

body.not_logged_in #wrapper{
    filter: blur(25px);
}
body.not_logged_in #login{
    display: flex;
}

body #login{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
}
#login h4{
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 16px;
}
#login p{
    font-size: 16px;
}
#simple_login_form{
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#simple_login_form input, #simple_login_form button{
    width: 100%;
    padding: 16px;
    font-size: 32px;
    margin-bottom: 16px;
    background: none;
}
#simple_login_form label{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
}
#simple_login_form input{
    color: inherit;
    border: 2px solid;
    border-radius: 5px;
    outline: none;
    text-align: center;
}
#simple_login_form input:focus::placeholder, #simple_login_form input:active::placeholder{
    color: transparent;
}
#simple_login_form input::placeholder{
    color: inherit;
    font-size: 20px;
    line-height: 25px;
}
#simple_login_form button{
    color: inherit;
    cursor: pointer;
    border: 2px solid;
}
#simple_login_form button:hover{
    color: black;
}

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

h2{
    font-size: 55px;
    font-size: 46px;
    padding-top: 150px;
    margin-bottom: 32px;
    max-width: 720px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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: 860px;
    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: #00C37E;
    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: #232823;
    padding: 12px 24px;
    color: #FCFAF7;
    font-size: 24px;
    border-radius: 5px;
    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: #FCFAF7;
    padding: 20px 25px;
    margin-right: 15px;
    border-radius: 5px;
    border: 2px solid #232823;
}
#main-nav a{
    font-size: 24px;
    color: #232823;
    margin-right: 30px;
    text-decoration: none;
}
#main-nav a:last-of-type{
    margin-right: 0px;
}
#main-nav a.active{
    color: #00C37E;
    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 #1E0E20;
    background: #FCFAF7;
    margin-bottom: 10px;
    border-radius: 5px;
    color: inherit;
    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: #1E0E20;
    color: #FCFAF7;
}
.anchor-link.active{
    background: #1E0E20;
    color: #FCFAF7;
}
#home{
    pointer-events: all;
    position: relative;
    z-index: 999;
    display: flex;
    width: 160px;
    height: 50px;
    justify-content: center;
    align-items: center;
}
#home.small{
    width: 50px;
    height: 40px;
}
#home img{
    width: 100%;
    height: auto;
}
#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: 50vh;
    min-height: 550px;
}
header.home{
  height: 0px;
  min-height: 0px;
  padding-top: 0;
}
.header-content{
    padding: 50px 25px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.home .header-content{
    padding: 0px 0px;
}
.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;
}
.header_image{
    width: 100%;
    height: auto;
}
h1.page-title, p.page-intro{
    font-weight: 300;
    max-width: 920px;
}
h1.page-title{
    font-family: 'Bricolage Grotesque', sans-serif;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 50px;
    font-size: 56px;
    max-width: 520px;
    line-height: 70px;
    /* margin-bottom: 36px; */
}

span.playfair{
    font-family: 'Playfair Display';
}
span.bricolage{
    font-family: 'Bricolage Grotesque';
}
span.baskerville{
    font-family: 'Libre Baskerville';
}
span.text-big{
    font-size: 36px;
    line-height: 44px;
}
span.text-huge{
    font-size: 52px;
    line-height: 62px;
}

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: 640px;
    margin-top: 54px;
    margin-bottom: 54px;
}

#front_image{
    margin: 32px 0px;
    width: 100%;
    max-width: 500px;
}

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

#front-nav a:hover{
    background: #1E0E20;
    color: #FCFAF7;
    border: 2px solid #1E0E20;
}

main{
    padding: 50px 25px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
#main_header_img{
    position: absolute;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    transform: translateX(-18%) translateY(12%) scale(1.1);
}

.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-grid .grid-elem{
    display: flex;
    aspect-ratio: 1/1;
    /* justify-content: space-between; */
    line-height: 26px;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
    font-size: 16px;
}
.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%;
}
.print .grid-elem .hex{
    display: none;
}
.color-grid.screen .grid-elem .hex{
    user-select: none;
    cursor: pointer;
    padding-right: 22px;
    background-size: 16px;
    background-position: right center;
    background-repeat: no-repeat;
}
.hex.dark{
    background-image: url('/graphics/brandguide/copy_color-icon-dark.svg');
}
.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 .grid-elem .rgb{
    display: none;
}
.color-grid.screen.minified .grid-elem .rgb{
    display: none;
}
.color-grid.minified .grid-elem{
    height: 100px;
    aspect-ratio: none;
    width: 100%;
    justify-content: flex-start;
}
.color-grid.screen.minified .grid-elem .color-name{
    margin-bottom: 8px;
}

.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: #FCFAF7;
    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: 5px;
    cursor: pointer;
    margin-bottom: 5px;
}
.dl-elem-btn:hover{
    border: 2px solid #1E0E20;
}
.dl-elem-btn.active{
    background-image: url('/graphics/brandguide/dl-close.svg');
}
.dl-elem-list{
    background: #FCFAF7;
    padding: 15px 25px;
    border-radius: 5px;
    border: 2px solid #232823;
    display: none;
}
.dl-elem-list a{
    display: block;
    font-size: 20px;
    color: #232823;
    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;
    margin: 36px 0px;
}
.dl-group-toggle{
    position: relative;
}
.dl-group-btn{
    background-color: #FCFAF7;
    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: 5px;
    cursor: pointer;
    font-size: 22px;
    text-decoration: none;
    padding: 12px 24px;
    padding-left: 64px;
    user-select: none;
    border: 2px solid #1E0E20;
    color: inherit;
}
.dl-group-btn:hover{
    background-color: #1E0E20;
    background-image: url('/graphics/brandguide/dl-arrow-white.svg');
    color: #FCFAF7;
}
.dl-group-btn.active{
    background-image: url('/graphics/brandguide/dl-close.svg');
}
.dl-group-btn.active:hover{
    background-color: #1E0E20;
    background-image: url('/graphics/brandguide/dl-close-white.svg');
    color: #FCFAF7;
}
.dl-group-list{
    min-width: 380px;
    position: absolute;
    z-index: 99;
    top: 65px;
    display: none;
    background: #FCFAF7;
    padding: 25px;
    border-radius: 5px;
    border: 2px solid #232823;
    display: none;
}
.dl-group-list a{
    display: block;
    font-size: 20px;
    color: #232823;
    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;
  margin-bottom: 50px;
}
.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: 'Bricolage Grotesque', 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: 'Bricolage Grotesque', sans-serif;
  font-weight: normal;
  font-style: normal;

  border-radius: 0px;
  border: 2px solid #FCFAF7;
  outline: none;
}
#login-form .login-field input:focus, #login-form .login-field input:active{
  border: 2px solid #5F7567;
}
#login-form .login-field label{
  display: none;
}
/* #login-form .login-field label{
  opacity: 0;
  font-family: 'Apercu', 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: #232823;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: normal;
  font-style: normal;
}
#login-form button{
  font-family: 'Bricolage Grotesque', 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: #FFE60F;
  color: #232823;
  cursor: pointer;
  margin-bottom: 25px;

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

  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 25px;
}

#login-form p a{
  color: #232823;
  text-decoration: underline;
}
#login-form li{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #232823;
  margin-bottom: 25px;
}


@media only screen and (max-width: 1200px) {

  h1{
      font-size: 58px;
      font-size: 42px;
      line-height: 66px;
  }

  h2{
      font-size: 45px;
      font-size: 42px;
      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;
  }

  #main_header_img{
    display: none;
}
}

@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;
      font-size: 36px;
      line-height: 45px;
  }

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

  h3{
      font-size: 25px;
      font-size: 24px;
      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;
  }

  .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: 120px;
      height: 50px;
  }

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

  h1.page-title{
    font-size: 36px;
    line-height: 46px;
      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;
  }
}
