@import url(https://fonts.googleapis.com/css?family=Nunito);/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px); }
  100% {
    opacity: 0;
    transform: translateY(-40px); } }
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px); }
  100% {
    opacity: 0;
    transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30% {
    opacity: 1;
    transform: translateY(0px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30% {
    opacity: 1;
    transform: translateY(0px); } }
@-webkit-keyframes pulse {
  0% {
    transform: scale(1); }
  10% {
    transform: scale(1.1); }
  20% {
    transform: scale(1); } }
@keyframes pulse {
  0% {
    transform: scale(1); }
  10% {
    transform: scale(1.1); }
  20% {
    transform: scale(1); } }
.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
    .dropzone .dz-message .dz-button {
      background: none;
      color: inherit;
      border: none;
      padding: 0;
      font: inherit;
      cursor: pointer;
      outline: inherit; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      transform: scale(1.05, 1.05);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      -webkit-animation: pulse 6s ease infinite;
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{-webkit-animation-timing-function:cubic-bezier(.5,0,.14,1);animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:-webkit-grab;cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@-webkit-keyframes a{to{transform:rotate(1turn)}}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}@charset "UTF-8";
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
/* 
@font-face {
	font-family: 'champion-flyweight'; 
	src: url('../fonts/Champion-HTF-Flyweight.otf') format('opentype');
	font-style: normal;
	font-weight: 700; 
}
@font-face {
	font-family: 'champion-welterweight'; 
	src: url('../fonts/Champion-HTF-Welterweight.otf') format('opentype');
	font-style: normal;
	font-weight: 700; 
}
@font-face {
	font-family: 'champion-heavyweight'; 
	src: url('../fonts/Champion-HTF-Heavyweight.otf') format('opentype');
	font-style: normal;
	font-weight: 700; 
}
@font-face {
	font-family: 'champion-lightweight'; 
	src: url('../fonts/Champion-HTF-Lightweight.otf') format('opentype');
	font-style: normal;
	font-weight: 700; 
}


@font-face {
	font-family: 'knockout'; 
	src: url('../fonts/Knockout-HTF-FullLiteweight.otf') format('opentype');
	font-style: normal;
	font-weight: 700; 
}
 */
/* $font_flyweight: 'champion-flyweight', sans-serif;
$font_welterweight: 'champion-welterweight', sans-serif;
$font_heavyweight: 'champion-heavyweight', sans-serif;
$font_lightweight: 'champion-lightweight', sans-serif; */
/* $font_knockout: 'knockout', sans-serif;
$knockout: 'knockout', sans-serif; */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.pretty * {
  box-sizing: border-box;
}

.pretty input:not([type=checkbox]):not([type=radio]) {
  display: none;
}

.pretty {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  white-space: nowrap;
  line-height: 1;
}
.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.pretty .state label {
  position: initial;
  display: inline-block;
  font-weight: normal;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}
.pretty .state label:before, .pretty .state label:after {
  content: "";
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  background-color: transparent;
}
.pretty .state label:before {
  border-color: #bdc3c7;
}
.pretty .state.p-is-hover, .pretty .state.p-is-indeterminate {
  display: none;
}

@-webkit-keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
}
@-webkit-keyframes tada {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    transform: scale(7);
  }
  38% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
    transform: scale(1);
  }
  55% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: scale(1.5);
  }
  72% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: scale(1);
  }
  81% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: scale(1.24);
  }
  89% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: scale(1);
  }
  95% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: scale(1.04);
  }
  100% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: scale(1);
  }
}
@keyframes tada {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    transform: scale(7);
  }
  38% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
    transform: scale(1);
  }
  55% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: scale(1.5);
  }
  72% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: scale(1);
  }
  81% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: scale(1.24);
  }
  89% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: scale(1);
  }
  95% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: scale(1.04);
  }
  100% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    transform: scale(1);
  }
}
@-webkit-keyframes jelly {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes jelly {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    transform: translateZ(-200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) rotate(0);
  }
}
@keyframes rotate {
  0% {
    opacity: 0;
    transform: translateZ(-200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) rotate(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px #bdc3c7;
  }
  100% {
    box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px #bdc3c7;
  }
  100% {
    box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
  }
}
.pretty.p-default.p-fill .state label:after {
  transform: scale(1);
}

.pretty.p-default .state label:after {
  transform: scale(0.6);
}
.pretty.p-default input:checked ~ .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-default.p-thick .state label:before, .pretty.p-default.p-thick .state label:after {
  border-width: calc(1em / 7);
}
.pretty.p-default.p-thick .state label:after {
  transform: scale(0.4) !important;
}

.pretty.p-icon .state .icon {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}
.pretty.p-icon .state .icon:before {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.pretty.p-icon input:checked ~ .state .icon {
  opacity: 1;
}
.pretty.p-icon input:checked ~ .state label:before {
  border-color: #5a656b;
}

.pretty.p-svg .state .svg {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}
.pretty.p-svg .state svg {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.pretty.p-svg input:checked ~ .state .svg {
  opacity: 1;
}

.pretty.p-image .state img {
  opacity: 0;
  position: absolute;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  top: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  left: 0;
  z-index: 0;
  text-align: center;
  line-height: normal;
  transform: scale(0.8);
}
.pretty.p-image input:checked ~ .state img {
  opacity: 1;
}

.pretty.p-switch input {
  min-width: 2em;
}
.pretty.p-switch .state {
  position: relative;
}
.pretty.p-switch .state:before {
  content: "";
  border: 1px solid #bdc3c7;
  border-radius: 60px;
  width: 2em;
  box-sizing: unset;
  height: calc(1em + 2px);
  position: absolute;
  top: 0;
  top: calc((0% - (100% - 1em)) - 16%);
  z-index: 0;
  transition: all 0.5s ease;
}
.pretty.p-switch .state label {
  text-indent: 2.5em;
}
.pretty.p-switch .state label:before, .pretty.p-switch .state label:after {
  transition: all 0.5s ease;
  border-radius: 100%;
  left: 0;
  border-color: transparent;
  transform: scale(0.8);
}
.pretty.p-switch .state label:after {
  background-color: #bdc3c7 !important;
}
.pretty.p-switch input:checked ~ .state:before {
  border-color: #5a656b;
}
.pretty.p-switch input:checked ~ .state label:before {
  opacity: 0;
}
.pretty.p-switch input:checked ~ .state label:after {
  background-color: #5a656b !important;
  left: 1em;
}

.pretty.p-switch.p-fill input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}
.pretty.p-switch.p-fill input:checked ~ .state label:before {
  opacity: 0;
}
.pretty.p-switch.p-fill input:checked ~ .state label:after {
  background-color: #fff !important;
  left: 1em;
}

.pretty.p-switch.p-slim .state:before {
  height: 0.1em;
  background: #bdc3c7 !important;
  top: calc(50% - 0.1em);
}
.pretty.p-switch.p-slim input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-has-hover input:hover ~ .state:not(.p-is-hover) {
  display: none;
}
.pretty.p-has-hover input:hover ~ .state.p-is-hover {
  display: block;
}
.pretty.p-has-hover input:hover ~ .state.p-is-hover .icon {
  display: block;
}

.pretty.p-has-focus input:focus ~ .state label:before {
  box-shadow: 0px 0px 3px 0px #bdc3c7;
}

.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state:not(.p-is-indeterminate) {
  display: none;
}
.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state.p-is-indeterminate {
  display: block;
}
.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state.p-is-indeterminate .icon {
  display: block;
  opacity: 1;
}

.pretty.p-toggle .state.p-on {
  opacity: 0;
  display: none;
}
.pretty.p-toggle .state.p-off,
.pretty.p-toggle .state .icon,
.pretty.p-toggle .state .svg,
.pretty.p-toggle .state img {
  opacity: 1;
  display: inherit;
}
.pretty.p-toggle .state.p-off .icon {
  color: #bdc3c7;
}
.pretty.p-toggle input:checked ~ .state.p-on {
  opacity: 1;
  display: inherit;
}
.pretty.p-toggle input:checked ~ .state.p-off {
  opacity: 0;
  display: none;
}

.pretty.p-plain input:checked ~ .state label:before, .pretty.p-plain.p-toggle .state label:before {
  content: none;
}
.pretty.p-plain.p-plain .icon {
  transform: scale(1.1);
}

.pretty.p-round .state label:before, .pretty.p-round .state label:after {
  border-radius: 100%;
}
.pretty.p-round.p-icon .state .icon {
  border-radius: 100%;
  overflow: hidden;
}
.pretty.p-round.p-icon .state .icon:before {
  transform: scale(0.8);
}

.pretty.p-curve .state label:before, .pretty.p-curve .state label:after {
  border-radius: 20%;
}

.pretty.p-smooth label:before,
.pretty.p-smooth label:after,
.pretty.p-smooth .icon,
.pretty.p-smooth .svg {
  transition: all 0.5s ease;
}
.pretty.p-smooth input:checked + .state label:after {
  transition: all 0.3s ease;
}
.pretty.p-smooth input:checked + .state .icon,
.pretty.p-smooth input:checked + .state .svg,
.pretty.p-smooth input:checked + .state img {
  -webkit-animation: zoom 0.2s ease;
          animation: zoom 0.2s ease;
}
.pretty.p-smooth.p-default input:checked + .state label:after {
  -webkit-animation: zoom 0.2s ease;
          animation: zoom 0.2s ease;
}
.pretty.p-smooth.p-plain input:checked + .state label:before {
  content: "";
  transform: scale(0);
  transition: all 0.5s ease;
}

.pretty.p-tada:not(.p-default) input:checked + .state .icon,
.pretty.p-tada:not(.p-default) input:checked + .state .svg,
.pretty.p-tada:not(.p-default) input:checked + .state img,
.pretty.p-tada:not(.p-default) input:checked + .state label:before,
.pretty.p-tada:not(.p-default) input:checked + .state label:after {
  -webkit-animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
          animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state .icon,
.pretty.p-jelly:not(.p-default) input:checked + .state .svg,
.pretty.p-jelly:not(.p-default) input:checked + .state img,
.pretty.p-jelly:not(.p-default) input:checked + .state label:before,
.pretty.p-jelly:not(.p-default) input:checked + .state label:after {
  -webkit-animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}
.pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  border-color: transparent;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state .icon,
.pretty.p-rotate:not(.p-default) input:checked ~ .state .svg,
.pretty.p-rotate:not(.p-default) input:checked ~ .state img,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:after {
  -webkit-animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  border-color: transparent;
}

.pretty.p-pulse:not(.p-switch) input:checked ~ .state label:before {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
}

.pretty input[disabled] {
  cursor: not-allowed;
  display: none;
}
.pretty input[disabled] ~ * {
  opacity: 0.5;
}

.pretty.p-locked input {
  display: none;
  cursor: not-allowed;
}

.pretty input:checked ~ .state.p-primary label:after, .pretty.p-toggle .state.p-primary label:after {
  background-color: #428bca !important;
}
.pretty input:checked ~ .state.p-primary .icon,
.pretty input:checked ~ .state.p-primary .svg, .pretty.p-toggle .state.p-primary .icon,
.pretty.p-toggle .state.p-primary .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-primary-o label:before, .pretty.p-toggle .state.p-primary-o label:before {
  border-color: #428bca;
}
.pretty input:checked ~ .state.p-primary-o label:after, .pretty.p-toggle .state.p-primary-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-primary-o .icon,
.pretty input:checked ~ .state.p-primary-o .svg,
.pretty input:checked ~ .state.p-primary-o svg, .pretty.p-toggle .state.p-primary-o .icon,
.pretty.p-toggle .state.p-primary-o .svg,
.pretty.p-toggle .state.p-primary-o svg {
  color: #428bca;
  stroke: #428bca;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label:after {
  background-color: #428bca !important;
}
.pretty.p-switch input:checked ~ .state.p-primary:before {
  border-color: #428bca;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-primary:before {
  background-color: #428bca !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-primary:before {
  border-color: #245682;
  background-color: #245682 !important;
}
.pretty input:checked ~ .state.p-info label:after, .pretty.p-toggle .state.p-info label:after {
  background-color: #5bc0de !important;
}
.pretty input:checked ~ .state.p-info .icon,
.pretty input:checked ~ .state.p-info .svg, .pretty.p-toggle .state.p-info .icon,
.pretty.p-toggle .state.p-info .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-info-o label:before, .pretty.p-toggle .state.p-info-o label:before {
  border-color: #5bc0de;
}
.pretty input:checked ~ .state.p-info-o label:after, .pretty.p-toggle .state.p-info-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-info-o .icon,
.pretty input:checked ~ .state.p-info-o .svg,
.pretty input:checked ~ .state.p-info-o svg, .pretty.p-toggle .state.p-info-o .icon,
.pretty.p-toggle .state.p-info-o .svg,
.pretty.p-toggle .state.p-info-o svg {
  color: #5bc0de;
  stroke: #5bc0de;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-info-o label:after {
  background-color: #5bc0de !important;
}
.pretty.p-switch input:checked ~ .state.p-info:before {
  border-color: #5bc0de;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-info:before {
  background-color: #5bc0de !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-info:before {
  border-color: #2390b0;
  background-color: #2390b0 !important;
}
.pretty input:checked ~ .state.p-success label:after, .pretty.p-toggle .state.p-success label:after {
  background-color: #5cb85c !important;
}
.pretty input:checked ~ .state.p-success .icon,
.pretty input:checked ~ .state.p-success .svg, .pretty.p-toggle .state.p-success .icon,
.pretty.p-toggle .state.p-success .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-success-o label:before, .pretty.p-toggle .state.p-success-o label:before {
  border-color: #5cb85c;
}
.pretty input:checked ~ .state.p-success-o label:after, .pretty.p-toggle .state.p-success-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-success-o .icon,
.pretty input:checked ~ .state.p-success-o .svg,
.pretty input:checked ~ .state.p-success-o svg, .pretty.p-toggle .state.p-success-o .icon,
.pretty.p-toggle .state.p-success-o .svg,
.pretty.p-toggle .state.p-success-o svg {
  color: #5cb85c;
  stroke: #5cb85c;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-success-o label:after {
  background-color: #5cb85c !important;
}
.pretty.p-switch input:checked ~ .state.p-success:before {
  border-color: #5cb85c;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-success:before {
  background-color: #5cb85c !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-success:before {
  border-color: #357935;
  background-color: #357935 !important;
}
.pretty input:checked ~ .state.p-warning label:after, .pretty.p-toggle .state.p-warning label:after {
  background-color: #f0ad4e !important;
}
.pretty input:checked ~ .state.p-warning .icon,
.pretty input:checked ~ .state.p-warning .svg, .pretty.p-toggle .state.p-warning .icon,
.pretty.p-toggle .state.p-warning .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-warning-o label:before, .pretty.p-toggle .state.p-warning-o label:before {
  border-color: #f0ad4e;
}
.pretty input:checked ~ .state.p-warning-o label:after, .pretty.p-toggle .state.p-warning-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-warning-o .icon,
.pretty input:checked ~ .state.p-warning-o .svg,
.pretty input:checked ~ .state.p-warning-o svg, .pretty.p-toggle .state.p-warning-o .icon,
.pretty.p-toggle .state.p-warning-o .svg,
.pretty.p-toggle .state.p-warning-o svg {
  color: #f0ad4e;
  stroke: #f0ad4e;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-warning-o label:after {
  background-color: #f0ad4e !important;
}
.pretty.p-switch input:checked ~ .state.p-warning:before {
  border-color: #f0ad4e;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-warning:before {
  background-color: #f0ad4e !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-warning:before {
  border-color: #c77c11;
  background-color: #c77c11 !important;
}
.pretty input:checked ~ .state.p-danger label:after, .pretty.p-toggle .state.p-danger label:after {
  background-color: #d9534f !important;
}
.pretty input:checked ~ .state.p-danger .icon,
.pretty input:checked ~ .state.p-danger .svg, .pretty.p-toggle .state.p-danger .icon,
.pretty.p-toggle .state.p-danger .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-danger-o label:before, .pretty.p-toggle .state.p-danger-o label:before {
  border-color: #d9534f;
}
.pretty input:checked ~ .state.p-danger-o label:after, .pretty.p-toggle .state.p-danger-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-danger-o .icon,
.pretty input:checked ~ .state.p-danger-o .svg,
.pretty input:checked ~ .state.p-danger-o svg, .pretty.p-toggle .state.p-danger-o .icon,
.pretty.p-toggle .state.p-danger-o .svg,
.pretty.p-toggle .state.p-danger-o svg {
  color: #d9534f;
  stroke: #d9534f;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-danger-o label:after {
  background-color: #d9534f !important;
}
.pretty.p-switch input:checked ~ .state.p-danger:before {
  border-color: #d9534f;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-danger:before {
  background-color: #d9534f !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-danger:before {
  border-color: #a02622;
  background-color: #a02622 !important;
}

.pretty.p-bigger label:before,
.pretty.p-bigger label:after,
.pretty.p-bigger .icon,
.pretty.p-bigger .svg,
.pretty.p-bigger .img {
  font-size: 1.2em !important;
  top: calc((0% - (100% - 1em)) - 35%) !important;
}
.pretty.p-bigger label {
  text-indent: 1.7em;
}

@media print {
  .pretty .state:before,
.pretty .state label:before,
.pretty .state label:after,
.pretty .state .icon {
    color-adjust: exact;
    /* stylelint-disable */
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
span.select2-container--foundation {
  vertical-align: top;
}

span.select2-container--foundation .selection {
  margin: 0 0 1rem;
}

.select2-container--foundation {
  /**
   * Search field in the Select2 dropdown.
   */
  /**
   * No outline for all search fields - in the dropdown
   * and inline in multi Select2s.
   */
  /* Clear the selection. */
  /**
   * Address disabled Select2 styles.
   *
   * @see https://select2.github.io/examples.html#disabled
   * @see http://getbootstrap.com/css/#forms-control-disabled
   */
  /*------------------------------------*\
          #DROPDOWN
  \*------------------------------------*/
}

.select2-container--foundation .select2-selection {
  background-color: #fefefe;
  border: 1px solid #cacaca;
  border-radius: 0;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 1rem;
  background: #fefefe;
  outline: 0;
}

.select2-container--foundation .select2-search--dropdown .select2-search__field {
  background-color: #fefefe;
  border: 1px solid #cacaca;
  border-radius: 0;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 0;
}

.select2-container--foundation .select2-search__field {
  outline: 0;
  /* Firefox 18- */
  /**
   * Firefox 19+
   *
   * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox
   */
}

.select2-container--foundation .select2-search__field::-webkit-input-placeholder {
  color: #8a8a8a;
}

.select2-container--foundation .select2-search__field:-moz-placeholder {
  color: #8a8a8a;
}

.select2-container--foundation .select2-search__field::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

.select2-container--foundation .select2-search__field:-ms-input-placeholder {
  color: #8a8a8a;
}

.select2-container--foundation .select2-results__option {
  /**
   * Disabled results.
   *
   * @see https://select2.github.io/examples.html#disabled-results
   */
  /**
   * Hover state.
   */
  /**
   * Selected state.
   */
}

.select2-container--foundation .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--foundation .select2-results__option[role=group] strong {
  padding-left: 0.125rem;
}

.select2-container--foundation .select2-results__option[aria-disabled=true] {
  color: #8a8a8a;
  cursor: default;
}

.select2-container--foundation .select2-results__option--highlighted[aria-selected] {
  background-color: #2199e8;
  color: foreground(#2199e8);
}

.select2-container--foundation.select2-container--focus .select2-selection {
  border: 1px solid #8a8a8a;
}

.select2-container--foundation.select2-container--open .select2-selection {
  border: 1px solid #8a8a8a;
  border-radius: 0;
}

.select2-container--foundation.select2-container--open {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}

.select2-container--foundation.select2-container--open .select2-selection__arrow b {
  transform: rotate(180deg);
}

.select2-container--foundation .select2-choice {
  box-shadow: none;
  background-image: none;
}

.select2-container--foundation .select2-choice div {
  background-clip: padding-box;
}

.select2-container--foundation .select2-choice .select2-arrow {
  border: 0px;
  border-radius: 0px;
  background: transparent;
  background-image: none;
}

.select2-container--foundation *:focus {
  outline: 0px;
}

.select2-container--foundation .select2-selection__clear {
  color: #8a8a8a;
  cursor: pointer;
  float: left;
  font-weight: bold;
  margin-right: 0px;
}

.select2-container--foundation .select2-selection__clear:hover {
  color: #333;
}

.select2-container--foundation.select2-container--disabled .select2-selection {
  border: 1px solid #cacaca;
}

.select2-container--foundation.select2-container--disabled .select2-selection,
.select2-container--foundation.select2-container--disabled .select2-search__field {
  cursor: default;
}

.select2-container--foundation.select2-container--disabled .select2-selection,
.select2-container--foundation.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
  background-color: #e6e6e6;
  color: foreground(#e6e6e6);
}

.select2-container--foundation.select2-container--disabled .select2-selection__clear,
.select2-container--foundation.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove {
  display: none;
}

.select2-container--foundation .select2-dropdown {
  border: 1px solid #8a8a8a;
  border-top: 1px solid #cacaca;
  background: #fefefe;
  border-radius: 0;
  overflow-x: hidden;
  margin-top: -0.0625rem;
}

.select2-container--foundation .select2-dropdown--above {
  margin-top: 0.0625rem;
  border-radius: 0;
  border-top: 1px solid #8a8a8a;
  border-bottom: 1px solid #cacaca;
}

.select2-container--foundation .select2-results > .select2-results__options {
  /* Limit the dropdown height. */
  max-height: 200px;
  overflow-y: auto;
}

/**
 * Temporary fix for https://github.com/select2/select2-bootstrap-theme/issues/9
 *
 * Provides `!important` for certain properties of the class applied to the
 * original `<select>` element to hide it.
 *
 * @see https://github.com/select2/select2/pull/3301
 * @see https://github.com/fk/select2/commit/31830c7b32cb3d8e1b12d5b434dee40a6e753ada
 */
.form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}

/**
 * Display override for inline forms
 */
.input-group span.select2-container--foundation {
  margin: 0;
  vertical-align: middle;
}

.input-group span.select2-container--foundation .selection .select2-selection {
  vertical-align: middle;
  border-radius: 0;
}

/****** Single SCSS *******/
.select2-container--foundation .select2-selection--single,
.select2-container--foundation .selection .select2-selection--single {
  height: 2.4375rem;
  line-height: 1.5;
  padding: 0.5rem;
}

.select2-container--foundation .select2-selection--single .select2-selection__rendered,
.select2-container--foundation .selection .select2-selection--single .select2-selection__rendered {
  color: #0a0a0a;
}

.select2-container--foundation .select2-selection--single .select2-selection__arrow,
.select2-container--foundation .selection .select2-selection--single .select2-selection__arrow {
  height: 2.4375rem;
  position: absolute;
  top: 0;
  right: 1px;
  width: 20px;
}

.select2-container--foundation .select2-selection--single .select2-selection__arrow b,
.select2-container--foundation .selection .select2-selection--single .select2-selection__arrow b {
  border-color: #333 transparent transparent transparent;
  top: 50%;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  width: 0;
}

.select2-container--foundation .select2-selection--single .select2-selection__placeholder,
.select2-container--foundation .selection .select2-selection--single .select2-selection__placeholder {
  color: #8a8a8a;
}

.select2-container--foundation .select2-selection--single .select2-selection__clear,
.select2-container--foundation .selection .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

/****** Multiple SCSS *******/
.select2-container--foundation .select2-selection--multiple {
  /* Clear the selection.  */
}

.select2-container--foundation .select2-selection--multiple .select2-selection__choice__remove:hover {
  cursor: pointer;
}

.select2-container--foundation .select2-selection--multiple ul.select2-selection__rendered,
.select2-container--foundation .select2-selection--multiple .select2-selection__rendered {
  display: inherit;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--foundation .select2-selection--multiple .select2-selection__choice {
  border-radius: 0;
  padding: 0.1875rem 0.3125rem;
  cursor: default;
  float: left;
  margin-right: 0.3125rem;
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
  border: 1px solid #8a8a8a;
}

.select2-container--foundation .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 6px;
  margin-left: 6px;
  float: right;
}

.select2-container--foundation .select2-selection--multiple .select2-search--inline .select2-search__field {
  background: transparent;
  line-height: 1.5;
  border: 0;
  margin-top: 0;
  min-width: 5rem;
  height: 2.375rem;
  box-shadow: none;
  margin: 0;
  margin-right: -2rem;
}

.select2-container--foundation .select2-selection--multiple .select2-selection__choice__remove {
  color: #8a8a8a;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 0.25rem;
}

.select2-container--foundation .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--foundation .select2-selection--multiple .select2-selection__clear {
  margin-right: 0.1875rem;
  margin-top: 0.5rem;
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: effra, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

::-moz-placeholder {
  color: #cacaca;
}

:-ms-input-placeholder {
  color: #cacaca;
}

::placeholder {
  color: #cacaca;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb;
}
.is-invalid-input:not(:focus)::-moz-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus):-ms-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #cacaca;
}

h1, .h1 {
  font-size: 1.875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 1.375rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 2.375rem;
  }

  h2, .h2 {
    font-size: 1.625rem;
  }

  h3, .h3 {
    font-size: 1.25rem;
  }

  h4, .h4 {
    font-size: 1.125rem;
  }

  h5, .h5 {
    font-size: 1.125rem;
  }

  h6, .h6 {
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 64em) {
  h1, .h1 {
    font-size: 3rem;
  }

  h2, .h2 {
    font-size: 2rem;
  }

  h3, .h3 {
    font-size: 1.5rem;
  }

  h4, .h4 {
    font-size: 1.25rem;
  }

  h5, .h5 {
    font-size: 1.25rem;
  }

  h6, .h6 {
    font-size: 0.875rem;
  }
}
a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #1468a0;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

abbr, abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.cite-block, cite {
  display: block;
  color: #8a8a8a;
  font-size: 0.8125rem;
}
.cite-block:before, cite:before {
  content: "\2014   ";
}

.code-inline, code {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

.code-block {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }

  .medium-text-right {
    text-align: right;
  }

  .medium-text-center {
    text-align: center;
  }

  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }

  .large-text-right {
    text-align: right;
  }

  .large-text-center {
    text-align: center;
  }

  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    -webkit-print-color-adjust: economy;
            color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .show-for-print {
    display: block !important;
  }

  .hide-for-print {
    display: none !important;
  }

  table.show-for-print {
    display: table !important;
  }

  thead.show-for-print {
    display: table-header-group !important;
  }

  tbody.show-for-print {
    display: table-row-group !important;
  }

  tr.show-for-print {
    display: table-row !important;
  }

  td.show-for-print {
    display: table-cell !important;
  }

  th.show-for-print {
    display: table-cell !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  pre,
blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  .print-break-inside {
    page-break-inside: auto;
  }
}
.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.fluid {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0px;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 {
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0px;
    width: auto;
  }

  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }

  .grid-x > .medium-shrink {
    width: auto;
  }

  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }

  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }

  .grid-x > .medium-3 {
    width: 25%;
  }

  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }

  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }

  .grid-x > .medium-6 {
    width: 50%;
  }

  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }

  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }

  .grid-x > .medium-9 {
    width: 75%;
  }

  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }

  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }

  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0px;
    width: auto;
  }

  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }

  .grid-x > .large-shrink {
    width: auto;
  }

  .grid-x > .large-1 {
    width: 8.3333333333%;
  }

  .grid-x > .large-2 {
    width: 16.6666666667%;
  }

  .grid-x > .large-3 {
    width: 25%;
  }

  .grid-x > .large-4 {
    width: 33.3333333333%;
  }

  .grid-x > .large-5 {
    width: 41.6666666667%;
  }

  .grid-x > .large-6 {
    width: 50%;
  }

  .grid-x > .large-7 {
    width: 58.3333333333%;
  }

  .grid-x > .large-8 {
    width: 66.6666666667%;
  }

  .grid-x > .large-9 {
    width: 75%;
  }

  .grid-x > .large-10 {
    width: 83.3333333333%;
  }

  .grid-x > .large-11 {
    width: 91.6666666667%;
  }

  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.25rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.25rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.25rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.25rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.25rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.25rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.25rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.25rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x > .cell {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }

  .medium-up-2 > .cell {
    width: 50%;
  }

  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }

  .medium-up-4 > .cell {
    width: 25%;
  }

  .medium-up-5 > .cell {
    width: 20%;
  }

  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }

  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }

  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }

  .large-up-2 > .cell {
    width: 50%;
  }

  .large-up-3 > .cell {
    width: 33.3333333333%;
  }

  .large-up-4 > .cell {
    width: 25%;
  }

  .large-up-5 > .cell {
    width: 20%;
  }

  .large-up-6 > .cell {
    width: 16.6666666667%;
  }

  .large-up-7 > .cell {
    width: 14.2857142857%;
  }

  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.25rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.25rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.25rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.25rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.25rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.25rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.25rem);
}

@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }

  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }

  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }

  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }

  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }

  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }

  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }

  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }

  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }

  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }

  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 0.625rem);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 0.625rem);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 0.625rem);
}

.small-offset-3 {
  margin-left: 25%;
}

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 0.625rem);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 0.625rem);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 0.625rem);
}

.small-offset-6 {
  margin-left: 50%;
}

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 0.625rem);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 0.625rem);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 0.625rem);
}

.small-offset-9 {
  margin-left: 75%;
}

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 0.625rem);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 0.625rem);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 0.625rem);
}

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }

  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }

  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }

  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 0.9375rem);
  }

  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }

  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 0.9375rem);
  }

  .medium-offset-3 {
    margin-left: 25%;
  }

  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }

  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }

  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 0.9375rem);
  }

  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }

  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 0.9375rem);
  }

  .medium-offset-6 {
    margin-left: 50%;
  }

  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }

  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }

  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 0.9375rem);
  }

  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }

  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 0.9375rem);
  }

  .medium-offset-9 {
    margin-left: 75%;
  }

  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }

  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }

  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 0.9375rem);
  }

  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }

  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 0.9375rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }

  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }

  .large-offset-1 {
    margin-left: 8.3333333333%;
  }

  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 0.9375rem);
  }

  .large-offset-2 {
    margin-left: 16.6666666667%;
  }

  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 0.9375rem);
  }

  .large-offset-3 {
    margin-left: 25%;
  }

  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }

  .large-offset-4 {
    margin-left: 33.3333333333%;
  }

  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 0.9375rem);
  }

  .large-offset-5 {
    margin-left: 41.6666666667%;
  }

  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 0.9375rem);
  }

  .large-offset-6 {
    margin-left: 50%;
  }

  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }

  .large-offset-7 {
    margin-left: 58.3333333333%;
  }

  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 0.9375rem);
  }

  .large-offset-8 {
    margin-left: 66.6666666667%;
  }

  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 0.9375rem);
  }

  .large-offset-9 {
    margin-left: 75%;
  }

  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }

  .large-offset-10 {
    margin-left: 83.3333333333%;
  }

  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 0.9375rem);
  }

  .large-offset-11 {
    margin-left: 91.6666666667%;
  }

  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 0.9375rem);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 {
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y > .cell {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }

  .cell .medium-grid-frame {
    width: 100%;
  }

  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }

  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }

  .cell .large-grid-frame {
    width: 100%;
  }

  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }

  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button:hover, .button:focus {
  background-color: #14679e;
  color: #fefefe;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.primary:hover, .button.primary:focus {
  background-color: #126195;
  color: #fefefe;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #767676;
  color: #fefefe;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #1779ba;
}
.button.clear:hover, .button.clear:focus {
  color: #0c3d5d;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: #0c3d5d;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #3b3b3b;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  color: #157539;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: #805700;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: #67251a;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #ffffff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-grow: 1;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group::before, .button-group::after {
  display: none;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
  margin-right: 0;
}
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #126195;
  color: #fefefe;
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
  background-color: #767676;
  color: #fefefe;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus {
  background-color: #cc4b37;
  color: #fefefe;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus {
  background-color: transparent;
}
.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: #157539;
  color: #157539;
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: #1779ba;
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: #0c3d5d;
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
  color: #1779ba;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: #0c3d5d;
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
  color: #767676;
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
  color: #3b3b3b;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: #3adb76;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: #157539;
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: #805700;
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #cc4b37;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: #67251a;
}
.button-group.no-gaps .button {
  margin-right: -0.0625rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
  margin-right: 0;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.close-button {
  position: absolute;
  z-index: 10;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #0a0a0a;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1779ba;
  color: #fefefe;
}
.label.primary {
  background: #1779ba;
  color: #fefefe;
}
.label.secondary {
  background: #767676;
  color: #fefefe;
}
.label.success {
  background: #3adb76;
  color: #0a0a0a;
}
.label.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.label.alert {
  background: #cc4b37;
  color: #fefefe;
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca;
}
.progress.primary .progress-meter {
  background-color: #1779ba;
}
.progress.secondary .progress-meter {
  background-color: #767676;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #1779ba;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1779ba;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}
[data-whatinput=mouse] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #14679e;
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}

caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
}

thead {
  background: #f8f8f8;
  color: #0a0a0a;
}

tfoot {
  background: #f1f1f1;
  color: #0a0a0a;
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f1f1f1;
}

table.unstriped tbody {
  background-color: #fefefe;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe;
}

@media print, screen and (max-width: 63.99875em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
table.stack th,
table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f3f3f3;
}
table.hover tfoot tr:hover {
  background-color: #ececec;
}
table.hover tbody tr:hover {
  background-color: #f9f9f9;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec;
}

.table-scroll {
  overflow-x: auto;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #fefefe;
}
.badge.primary {
  background: #1779ba;
  color: #fefefe;
}
.badge.secondary {
  background: #767676;
  color: #fefefe;
}
.badge.success {
  background: #3adb76;
  color: #0a0a0a;
}
.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #0a0a0a;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cacaca;
}
.breadcrumbs a {
  color: #1779ba;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: white;
  color: #0a0a0a;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d7ecfa;
  color: #0a0a0a;
}
.callout.secondary {
  background-color: #eaeaea;
  color: #0a0a0a;
}
.callout.success {
  background-color: #e1faea;
  color: #0a0a0a;
}
.callout.warning {
  background-color: #fff3d9;
  color: #0a0a0a;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #0a0a0a;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #0a0a0a;
  font-size: 80%;
  color: #fefefe;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #0a0a0a;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #0a0a0a transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #0a0a0a;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #0a0a0a transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}

.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "\2013";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media print, screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    flex-wrap: wrap;
  }
}

.media-object-section {
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}
.media-object-section.main-section {
  flex: 1 1 0px;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #ffffff;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1673b1;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #fefefe;
  color: #1468a0;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #e6e6e6;
  color: #1779ba;
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #0a0a0a;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu .active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fefefe;
  box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  content: "";
}
.menu-icon:hover::after {
  background: #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #1f1f1f;
  box-shadow: 0 7px 0 #1f1f1f, 0 14px 0 #1f1f1f;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #1779ba;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(250px);
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-250px);
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(250px);
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-250px);
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
}

.off-canvas-content {
  transform: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
  transition: transform 0.5s ease;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }

  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }

  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }

  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }

  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }

  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }

  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }

  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }

  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: auto;
}

.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }

  .medium-flex-child-auto {
    flex: 1 1 auto;
  }

  .medium-flex-child-grow {
    flex: 1 0 auto;
  }

  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }

  .medium-flex-dir-row {
    flex-direction: row;
  }

  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }

  .medium-flex-dir-column {
    flex-direction: column;
  }

  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }

  .large-flex-child-auto {
    flex: 1 1 auto;
  }

  .large-flex-child-grow {
    flex: 1 0 auto;
  }

  .large-flex-child-shrink {
    flex: 0 1 auto;
  }

  .large-flex-dir-row {
    flex-direction: row;
  }

  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }

  .large-flex-dir-column {
    flex-direction: column;
  }

  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media print, screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
.hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
.hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
.show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
.show-for-portrait {
    display: block !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  line-height: 1;
  color: #777777;
  margin-bottom: 15px;
}
h1.ul, h2.ul, h3.ul, h4.ul, h5.ul, h6.ul {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
h1.ul:after, h2.ul:after, h3.ul:after, h4.ul:after, h5.ul:after, h6.ul:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 60px;
  height: 3px;
  background: #777777;
}
h1.ul--center, h2.ul--center, h3.ul--center, h4.ul--center, h5.ul--center, h6.ul--center {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
h1.ul--center:after, h2.ul--center:after, h3.ul--center:after, h4.ul--center:after, h5.ul--center:after, h6.ul--center:after {
  width: 40px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
}
h1.ul--short, h2.ul--short, h3.ul--short, h4.ul--short, h5.ul--short, h6.ul--short {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
h1.ul--short:after, h2.ul--short:after, h3.ul--short:after, h4.ul--short:after, h5.ul--short:after, h6.ul--short:after {
  width: 40px;
  height: 3px;
}
h1.ul--center-alt, h2.ul--center-alt, h3.ul--center-alt, h4.ul--center-alt, h5.ul--center-alt, h6.ul--center-alt {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
h1.ul--center-alt:after, h2.ul--center-alt:after, h3.ul--center-alt:after, h4.ul--center-alt:after, h5.ul--center-alt:after, h6.ul--center-alt:after {
  width: 60px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
}
h1.ul--low, h2.ul--low, h3.ul--low, h4.ul--low, h5.ul--low, h6.ul--low {
  padding-bottom: 30px;
  margin-bottom: 15px;
}
h1.ul--high, h2.ul--high, h3.ul--high, h4.ul--high, h5.ul--high, h6.ul--high {
  padding-bottom: 10px;
  margin-bottom: 15px;
}
h1.flyweight, h2.flyweight, h3.flyweight, h4.flyweight, h5.flyweight, h6.flyweight {
  font-family: "Champion Bantamwt A", "Champion Bantamwt B", sans-serif;
  font-style: normal;
  font-weight: 500;
}
h1.welterweight, h2.welterweight, h3.welterweight, h4.welterweight, h5.welterweight, h6.welterweight {
  font-family: "Champion Welterwt A", "Champion Welterwt B", sans-serif;
  font-style: normal;
  font-weight: 700;
}
h1.lightweight, h2.lightweight, h3.lightweight, h4.lightweight, h5.lightweight, h6.lightweight {
  font-family: "Champion Lightwt A", "Champion Lightwt B", sans-serif;
  font-style: normal;
  font-weight: 700;
}
h1.caps, h2.caps, h3.caps, h4.caps, h5.caps, h6.caps {
  text-transform: uppercase;
}
h1.capitalize, h2.capitalize, h3.capitalize, h4.capitalize, h5.capitalize, h6.capitalize {
  text-transform: capitalize;
}
h1.no-caps, h2.no-caps, h3.no-caps, h4.no-caps, h5.no-caps, h6.no-caps {
  text-transform: none;
}
h1.bold, h2.bold, h3.bold, h4.bold, h5.bold, h6.bold {
  font-weight: 700;
}

h1, h2 {
  text-transform: uppercase;
}

h1, h2, h3, h5, h6 {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 300;
}
h1 ~ h4, h2 ~ h4, h3 ~ h4, h5 ~ h4, h6 ~ h4 {
  margin-top: -12px;
}

h4 {
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  color: #777777;
  text-transform: none;
  margin-bottom: 0px;
}
h4 ~ h1, h4 ~ h2, h4 ~ h3, h4 ~ h5, h4 ~ h6 {
  margin-top: 3px;
}

div {
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
}

p, li {
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  color: #777777;
}

p.lg {
  font-size: 19px;
}

a {
  color: #3f6bb3;
  transition: all 0.25s ease;
}

.button {
  position: relative;
  display: inline-block;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 11px 25px 10px;
  color: #ffffff;
  background: #3f6bb3;
}
.button:hover {
  background-color: #32548d;
}
.button:visited {
  color: #ffffff;
}
.button:focus {
  outline: 0;
  background-color: #32548d;
}
.button--outline, .button--border {
  background: transparent;
  border: 2px solid #3f6bb3;
  color: #1f1f1f;
}
.button--outline:hover, .button--border:hover {
  color: #ffffff;
  background-color: #3f6bb3;
}
.button--outline:visited, .button--border:visited {
  color: #1f1f1f;
}
.button--outline:visited:hover, .button--border:visited:hover {
  color: #ffffff;
}
.button--sans {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
}
.button--white {
  background: #ffffff;
}
.button--white:hover {
  background-color: #e6e6e6;
}
.button--outline.button--white, .button--border.button--white {
  background: transparent;
  border: 3px solid #ffffff;
}
.button--outline.button--white:hover, .button--border.button--white:hover {
  background-color: #ffffff;
}
.button--light {
  background: #f8fafc;
}
.button--light:hover {
  background-color: #d4e1ed;
}
.button--outline.button--light, .button--border.button--light {
  background: transparent;
  border: 3px solid #f8fafc;
}
.button--outline.button--light:hover, .button--border.button--light:hover {
  background-color: #f8fafc;
}
.button--gold {
  background: #c09b57;
}
.button--gold:hover {
  background-color: #a6813e;
}
.button--outline.button--gold, .button--border.button--gold {
  background: transparent;
  border: 3px solid #c09b57;
}
.button--outline.button--gold:hover, .button--border.button--gold:hover {
  background-color: #c09b57;
}
.button--gold_lt {
  background: #c3b58f;
}
.button--gold_lt:hover {
  background-color: #b19f6e;
}
.button--outline.button--gold_lt, .button--border.button--gold_lt {
  background: transparent;
  border: 3px solid #c3b58f;
}
.button--outline.button--gold_lt:hover, .button--border.button--gold_lt:hover {
  background-color: #c3b58f;
}
.button--gold_xlt {
  background: #e8e0cd;
}
.button--gold_xlt:hover {
  background-color: #d8caaa;
}
.button--outline.button--gold_xlt, .button--border.button--gold_xlt {
  background: transparent;
  border: 3px solid #e8e0cd;
}
.button--outline.button--gold_xlt:hover, .button--border.button--gold_xlt:hover {
  background-color: #e8e0cd;
}
.button--red {
  background: #fb4348;
}
.button--red:hover {
  background-color: #fa1117;
}
.button--outline.button--red, .button--border.button--red {
  background: transparent;
  border: 3px solid #fb4348;
}
.button--outline.button--red:hover, .button--border.button--red:hover {
  background-color: #fb4348;
}
.button--blue_lt {
  background: #94acc4;
}
.button--blue_lt:hover {
  background-color: #7393b2;
}
.button--outline.button--blue_lt, .button--border.button--blue_lt {
  background: transparent;
  border: 3px solid #94acc4;
}
.button--outline.button--blue_lt:hover, .button--border.button--blue_lt:hover {
  background-color: #94acc4;
}
.button--blue {
  background: #3f6bb3;
}
.button--blue:hover {
  background-color: #32548d;
}
.button--outline.button--blue, .button--border.button--blue {
  background: transparent;
  border: 3px solid #3f6bb3;
}
.button--outline.button--blue:hover, .button--border.button--blue:hover {
  background-color: #3f6bb3;
}
.button--blue_md {
  background: #1d4277;
}
.button--blue_md:hover {
  background-color: #132b4e;
}
.button--outline.button--blue_md, .button--border.button--blue_md {
  background: transparent;
  border: 3px solid #1d4277;
}
.button--outline.button--blue_md:hover, .button--border.button--blue_md:hover {
  background-color: #1d4277;
}
.button--blue_dk {
  background: #072946;
}
.button--blue_dk:hover {
  background-color: #020e18;
}
.button--outline.button--blue_dk, .button--border.button--blue_dk {
  background: transparent;
  border: 3px solid #072946;
}
.button--outline.button--blue_dk:hover, .button--border.button--blue_dk:hover {
  background-color: #072946;
}
.button--k_blue {
  background: #3f6bb3;
}
.button--k_blue:hover {
  background-color: #32548d;
}
.button--outline.button--k_blue, .button--border.button--k_blue {
  background: transparent;
  border: 3px solid #3f6bb3;
}
.button--outline.button--k_blue:hover, .button--border.button--k_blue:hover {
  background-color: #3f6bb3;
}
.button--k_gold {
  background: #c3b58f;
}
.button--k_gold:hover {
  background-color: #b19f6e;
}
.button--outline.button--k_gold, .button--border.button--k_gold {
  background: transparent;
  border: 3px solid #c3b58f;
}
.button--outline.button--k_gold:hover, .button--border.button--k_gold:hover {
  background-color: #c3b58f;
}
.button--grey {
  background: #777777;
}
.button--grey:hover {
  background-color: #5e5e5e;
}
.button--outline.button--grey, .button--border.button--grey {
  background: transparent;
  border: 3px solid #777777;
}
.button--outline.button--grey:hover, .button--border.button--grey:hover {
  background-color: #777777;
}
.button--grey_dk {
  background: #4e544a;
}
.button--grey_dk:hover {
  background-color: #353932;
}
.button--outline.button--grey_dk, .button--border.button--grey_dk {
  background: transparent;
  border: 3px solid #4e544a;
}
.button--outline.button--grey_dk:hover, .button--border.button--grey_dk:hover {
  background-color: #4e544a;
}
.button--black {
  background: #1f1f1f;
}
.button--black:hover {
  background-color: #060606;
}
.button--outline.button--black, .button--border.button--black {
  background: transparent;
  border: 3px solid #1f1f1f;
}
.button--outline.button--black:hover, .button--border.button--black:hover {
  background-color: #1f1f1f;
}

.italic-link {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #4e544a;
}
.italic-link:visited {
  color: #4e544a;
}
.italic-link:hover {
  color: #3f6bb3;
}

ol {
  list-style-type: decimal-leading-zero;
}

@media screen and (min-width: 39em) {
  .list--2-col {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .list--2-col li {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    -moz-column-break-before: avoid;
         break-before: avoid;
    -moz-column-break-after: avoid;
         break-after: avoid;
  }
  .list--2-col li p {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    -moz-column-break-before: avoid;
         break-before: avoid;
    -moz-column-break-after: avoid;
         break-after: avoid;
  }
  .list--2-col--collapse {
    display: flex;
    -moz-column-count: initial;
         column-count: initial;
    -moz-column-gap: initial;
         column-gap: initial;
    flex-wrap: wrap;
  }
  .list--2-col--collapse li {
    display: block;
    margin-right: 40px !important;
    flex-shrink: 0;
    flex-grow: 1;
  }
}
@media screen and (min-width: 39em) {
  .list--3-col {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .list--3-col li {
    -moz-column-break-inside: avoid;
         break-inside: avoid-column;
  }
}
@media screen and (min-width: 64em) {
  .list--3-col {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.list--bold li {
  font-weight: 700;
}
.list--bullets, .image-copy .copy-wrap ul {
  position: relative;
  list-style-type: none;
  margin: 0px 0px 15px;
}
.list--bullets li, .image-copy .copy-wrap ul li {
  position: relative;
  display: grid;
  grid-template-columns: 20px auto;
  line-height: 1.25;
  margin: 2px 0px 8px;
}
.list--bullets li:before, .image-copy .copy-wrap ul li:before {
  content: "";
  position: relative;
  top: 5px;
  grid-column: 1;
  width: 8px;
  height: 8px;
  background: #3f6bb3;
}
.list--bullets li.no-bull:before, .image-copy .copy-wrap ul li.no-bull:before {
  opacity: 0;
}
.list--bullets li.lg, .image-copy .copy-wrap ul li.lg {
  line-height: 1.25;
  font-size: 20px;
}
.list--effra {
  font-family: effra, sans-serif;
}
.list--effra li {
  font-family: effra, sans-serif;
  font-size: 14px;
}
.list--effra li p {
  font-family: effra, sans-serif;
  font-size: 14px;
  font-weight: bold;
}
.list--caps {
  text-transform: uppercase;
}
.list--item-margins li {
  margin-bottom: 14px;
}

.overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.overlay--gradient:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.opacity--0 {
  opacity: 0;
}
.opacity--5 {
  opacity: 0.95;
}
.opacity--10 {
  opacity: 0.9;
}
.opacity--15 {
  opacity: 0.85;
}
.opacity--20 {
  opacity: 0.8;
}
.opacity--25 {
  opacity: 0.75;
}
.opacity--30 {
  opacity: 0.7;
}
.opacity--35 {
  opacity: 0.65;
}
.opacity--40 {
  opacity: 0.6;
}
.opacity--45 {
  opacity: 0.55;
}
.opacity--50 {
  opacity: 0.5;
}
.opacity--55 {
  opacity: 0.45;
}
.opacity--60 {
  opacity: 0.4;
}
.opacity--65 {
  opacity: 0.35;
}
.opacity--70 {
  opacity: 0.3;
}
.opacity--75 {
  opacity: 0.25;
}
.opacity--80 {
  opacity: 0.2;
}
.opacity--85 {
  opacity: 0.15;
}
.opacity--90 {
  opacity: 0.1;
}
.opacity--95 {
  opacity: 0.05;
}
.opacity--100 {
  opacity: 0;
}

.white {
  color: #ffffff !important;
}

svg.white {
  fill: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-white:hover {
    color: #ffffff !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-white:hover {
    background: #ffffff !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-white:hover {
    fill: #ffffff !important;
  }
}

.bg-white {
  background: #ffffff;
}
.bg-white--trans-5 {
  background: rgba(255, 255, 255, 0.05);
}
.bg-white--trans-10 {
  background: rgba(255, 255, 255, 0.1);
}
.bg-white--trans-15 {
  background: rgba(255, 255, 255, 0.15);
}
.bg-white--trans-20 {
  background: rgba(255, 255, 255, 0.2);
}
.bg-white--trans-25 {
  background: rgba(255, 255, 255, 0.25);
}
.bg-white--trans-30 {
  background: rgba(255, 255, 255, 0.3);
}
.bg-white--trans-35 {
  background: rgba(255, 255, 255, 0.35);
}
.bg-white--trans-40 {
  background: rgba(255, 255, 255, 0.4);
}
.bg-white--trans-45 {
  background: rgba(255, 255, 255, 0.45);
}
.bg-white--trans-50 {
  background: rgba(255, 255, 255, 0.5);
}
.bg-white--trans-55 {
  background: rgba(255, 255, 255, 0.55);
}
.bg-white--trans-60 {
  background: rgba(255, 255, 255, 0.6);
}
.bg-white--trans-65 {
  background: rgba(255, 255, 255, 0.65);
}
.bg-white--trans-70 {
  background: rgba(255, 255, 255, 0.7);
}
.bg-white--trans-75 {
  background: rgba(255, 255, 255, 0.75);
}
.bg-white--trans-80 {
  background: rgba(255, 255, 255, 0.8);
}
.bg-white--trans-85 {
  background: rgba(255, 255, 255, 0.85);
}
.bg-white--trans-90 {
  background: rgba(255, 255, 255, 0.9);
}
.bg-white--trans-95 {
  background: rgba(255, 255, 255, 0.95);
}
.bg-white--trans-100 {
  background: white;
}

.border-white {
  border-color: #ffffff !important;
}

.text--white {
  color: #ffffff;
}
.text--white p, .text--white li, .text--white div {
  color: inherit;
}
.text--link-white p a, .text--link-white li a, .text--link-white p > a, .text--link-white li > a, .text--link-white a:not(.button) {
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-white p a:hover, .text--link-hover-white li a:hover, .text--link-hover-white p > a:hover, .text--link-hover-white li > a:hover, .text--link-hover-white a:not(.button):hover {
    color: #ffffff;
  }
}

.list--white li:before {
  background: #ffffff;
}

h1.ul--white:after, h2.ul--white:after, h3.ul--white:after, h4.ul--white:after, h5.ul--white:after, h6.ul--white:after, .h1.ul--white:after, .h2.ul--white:after, .h3.ul--white:after, .h4.ul--white:after, .h5.ul--white:after, .h6.ul--white:after {
  background: #ffffff;
}

.title-wrap .title__ul--white:after, .title-wrap .pretitle__ul--white:after, .title-wrap .subtitle__ul--white:after {
  background: #ffffff;
}

.light {
  color: #f8fafc !important;
}

svg.light {
  fill: #f8fafc;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-light:hover {
    color: #f8fafc !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-light:hover {
    background: #f8fafc !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-light:hover {
    fill: #f8fafc !important;
  }
}

.bg-light {
  background: #f8fafc;
}
.bg-light--trans-5 {
  background: rgba(248, 250, 252, 0.05);
}
.bg-light--trans-10 {
  background: rgba(248, 250, 252, 0.1);
}
.bg-light--trans-15 {
  background: rgba(248, 250, 252, 0.15);
}
.bg-light--trans-20 {
  background: rgba(248, 250, 252, 0.2);
}
.bg-light--trans-25 {
  background: rgba(248, 250, 252, 0.25);
}
.bg-light--trans-30 {
  background: rgba(248, 250, 252, 0.3);
}
.bg-light--trans-35 {
  background: rgba(248, 250, 252, 0.35);
}
.bg-light--trans-40 {
  background: rgba(248, 250, 252, 0.4);
}
.bg-light--trans-45 {
  background: rgba(248, 250, 252, 0.45);
}
.bg-light--trans-50 {
  background: rgba(248, 250, 252, 0.5);
}
.bg-light--trans-55 {
  background: rgba(248, 250, 252, 0.55);
}
.bg-light--trans-60 {
  background: rgba(248, 250, 252, 0.6);
}
.bg-light--trans-65 {
  background: rgba(248, 250, 252, 0.65);
}
.bg-light--trans-70 {
  background: rgba(248, 250, 252, 0.7);
}
.bg-light--trans-75 {
  background: rgba(248, 250, 252, 0.75);
}
.bg-light--trans-80 {
  background: rgba(248, 250, 252, 0.8);
}
.bg-light--trans-85 {
  background: rgba(248, 250, 252, 0.85);
}
.bg-light--trans-90 {
  background: rgba(248, 250, 252, 0.9);
}
.bg-light--trans-95 {
  background: rgba(248, 250, 252, 0.95);
}
.bg-light--trans-100 {
  background: #f8fafc;
}

.border-light {
  border-color: #f8fafc !important;
}

.text--light {
  color: #f8fafc;
}
.text--light p, .text--light li, .text--light div {
  color: inherit;
}
.text--link-light p a, .text--link-light li a, .text--link-light p > a, .text--link-light li > a, .text--link-light a:not(.button) {
  color: #f8fafc;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-light p a:hover, .text--link-hover-light li a:hover, .text--link-hover-light p > a:hover, .text--link-hover-light li > a:hover, .text--link-hover-light a:not(.button):hover {
    color: #f8fafc;
  }
}

.list--light li:before {
  background: #f8fafc;
}

h1.ul--light:after, h2.ul--light:after, h3.ul--light:after, h4.ul--light:after, h5.ul--light:after, h6.ul--light:after, .h1.ul--light:after, .h2.ul--light:after, .h3.ul--light:after, .h4.ul--light:after, .h5.ul--light:after, .h6.ul--light:after {
  background: #f8fafc;
}

.title-wrap .title__ul--light:after, .title-wrap .pretitle__ul--light:after, .title-wrap .subtitle__ul--light:after {
  background: #f8fafc;
}

.gold {
  color: #c09b57 !important;
}

svg.gold {
  fill: #c09b57;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-gold:hover {
    color: #c09b57 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-gold:hover {
    background: #c09b57 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-gold:hover {
    fill: #c09b57 !important;
  }
}

.bg-gold {
  background: #c09b57;
}
.bg-gold--trans-5 {
  background: rgba(192, 155, 87, 0.05);
}
.bg-gold--trans-10 {
  background: rgba(192, 155, 87, 0.1);
}
.bg-gold--trans-15 {
  background: rgba(192, 155, 87, 0.15);
}
.bg-gold--trans-20 {
  background: rgba(192, 155, 87, 0.2);
}
.bg-gold--trans-25 {
  background: rgba(192, 155, 87, 0.25);
}
.bg-gold--trans-30 {
  background: rgba(192, 155, 87, 0.3);
}
.bg-gold--trans-35 {
  background: rgba(192, 155, 87, 0.35);
}
.bg-gold--trans-40 {
  background: rgba(192, 155, 87, 0.4);
}
.bg-gold--trans-45 {
  background: rgba(192, 155, 87, 0.45);
}
.bg-gold--trans-50 {
  background: rgba(192, 155, 87, 0.5);
}
.bg-gold--trans-55 {
  background: rgba(192, 155, 87, 0.55);
}
.bg-gold--trans-60 {
  background: rgba(192, 155, 87, 0.6);
}
.bg-gold--trans-65 {
  background: rgba(192, 155, 87, 0.65);
}
.bg-gold--trans-70 {
  background: rgba(192, 155, 87, 0.7);
}
.bg-gold--trans-75 {
  background: rgba(192, 155, 87, 0.75);
}
.bg-gold--trans-80 {
  background: rgba(192, 155, 87, 0.8);
}
.bg-gold--trans-85 {
  background: rgba(192, 155, 87, 0.85);
}
.bg-gold--trans-90 {
  background: rgba(192, 155, 87, 0.9);
}
.bg-gold--trans-95 {
  background: rgba(192, 155, 87, 0.95);
}
.bg-gold--trans-100 {
  background: #c09b57;
}

.border-gold {
  border-color: #c09b57 !important;
}

.text--gold {
  color: #c09b57;
}
.text--gold p, .text--gold li, .text--gold div {
  color: inherit;
}
.text--link-gold p a, .text--link-gold li a, .text--link-gold p > a, .text--link-gold li > a, .text--link-gold a:not(.button) {
  color: #c09b57;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-gold p a:hover, .text--link-hover-gold li a:hover, .text--link-hover-gold p > a:hover, .text--link-hover-gold li > a:hover, .text--link-hover-gold a:not(.button):hover {
    color: #c09b57;
  }
}

.list--gold li:before {
  background: #c09b57;
}

h1.ul--gold:after, h2.ul--gold:after, h3.ul--gold:after, h4.ul--gold:after, h5.ul--gold:after, h6.ul--gold:after, .h1.ul--gold:after, .h2.ul--gold:after, .h3.ul--gold:after, .h4.ul--gold:after, .h5.ul--gold:after, .h6.ul--gold:after {
  background: #c09b57;
}

.title-wrap .title__ul--gold:after, .title-wrap .pretitle__ul--gold:after, .title-wrap .subtitle__ul--gold:after {
  background: #c09b57;
}

.gold_lt {
  color: #c3b58f !important;
}

svg.gold_lt {
  fill: #c3b58f;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-gold_lt:hover {
    color: #c3b58f !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-gold_lt:hover {
    background: #c3b58f !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-gold_lt:hover {
    fill: #c3b58f !important;
  }
}

.bg-gold_lt {
  background: #c3b58f;
}
.bg-gold_lt--trans-5 {
  background: rgba(195, 181, 143, 0.05);
}
.bg-gold_lt--trans-10 {
  background: rgba(195, 181, 143, 0.1);
}
.bg-gold_lt--trans-15 {
  background: rgba(195, 181, 143, 0.15);
}
.bg-gold_lt--trans-20 {
  background: rgba(195, 181, 143, 0.2);
}
.bg-gold_lt--trans-25 {
  background: rgba(195, 181, 143, 0.25);
}
.bg-gold_lt--trans-30 {
  background: rgba(195, 181, 143, 0.3);
}
.bg-gold_lt--trans-35 {
  background: rgba(195, 181, 143, 0.35);
}
.bg-gold_lt--trans-40 {
  background: rgba(195, 181, 143, 0.4);
}
.bg-gold_lt--trans-45 {
  background: rgba(195, 181, 143, 0.45);
}
.bg-gold_lt--trans-50 {
  background: rgba(195, 181, 143, 0.5);
}
.bg-gold_lt--trans-55 {
  background: rgba(195, 181, 143, 0.55);
}
.bg-gold_lt--trans-60 {
  background: rgba(195, 181, 143, 0.6);
}
.bg-gold_lt--trans-65 {
  background: rgba(195, 181, 143, 0.65);
}
.bg-gold_lt--trans-70 {
  background: rgba(195, 181, 143, 0.7);
}
.bg-gold_lt--trans-75 {
  background: rgba(195, 181, 143, 0.75);
}
.bg-gold_lt--trans-80 {
  background: rgba(195, 181, 143, 0.8);
}
.bg-gold_lt--trans-85 {
  background: rgba(195, 181, 143, 0.85);
}
.bg-gold_lt--trans-90 {
  background: rgba(195, 181, 143, 0.9);
}
.bg-gold_lt--trans-95 {
  background: rgba(195, 181, 143, 0.95);
}
.bg-gold_lt--trans-100 {
  background: #c3b58f;
}

.border-gold_lt {
  border-color: #c3b58f !important;
}

.text--gold_lt {
  color: #c3b58f;
}
.text--gold_lt p, .text--gold_lt li, .text--gold_lt div {
  color: inherit;
}
.text--link-gold_lt p a, .text--link-gold_lt li a, .text--link-gold_lt p > a, .text--link-gold_lt li > a, .text--link-gold_lt a:not(.button) {
  color: #c3b58f;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-gold_lt p a:hover, .text--link-hover-gold_lt li a:hover, .text--link-hover-gold_lt p > a:hover, .text--link-hover-gold_lt li > a:hover, .text--link-hover-gold_lt a:not(.button):hover {
    color: #c3b58f;
  }
}

.list--gold_lt li:before {
  background: #c3b58f;
}

h1.ul--gold_lt:after, h2.ul--gold_lt:after, h3.ul--gold_lt:after, h4.ul--gold_lt:after, h5.ul--gold_lt:after, h6.ul--gold_lt:after, .h1.ul--gold_lt:after, .h2.ul--gold_lt:after, .h3.ul--gold_lt:after, .h4.ul--gold_lt:after, .h5.ul--gold_lt:after, .h6.ul--gold_lt:after {
  background: #c3b58f;
}

.title-wrap .title__ul--gold_lt:after, .title-wrap .pretitle__ul--gold_lt:after, .title-wrap .subtitle__ul--gold_lt:after {
  background: #c3b58f;
}

.gold_xlt {
  color: #e8e0cd !important;
}

svg.gold_xlt {
  fill: #e8e0cd;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-gold_xlt:hover {
    color: #e8e0cd !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-gold_xlt:hover {
    background: #e8e0cd !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-gold_xlt:hover {
    fill: #e8e0cd !important;
  }
}

.bg-gold_xlt {
  background: #e8e0cd;
}
.bg-gold_xlt--trans-5 {
  background: rgba(232, 224, 205, 0.05);
}
.bg-gold_xlt--trans-10 {
  background: rgba(232, 224, 205, 0.1);
}
.bg-gold_xlt--trans-15 {
  background: rgba(232, 224, 205, 0.15);
}
.bg-gold_xlt--trans-20 {
  background: rgba(232, 224, 205, 0.2);
}
.bg-gold_xlt--trans-25 {
  background: rgba(232, 224, 205, 0.25);
}
.bg-gold_xlt--trans-30 {
  background: rgba(232, 224, 205, 0.3);
}
.bg-gold_xlt--trans-35 {
  background: rgba(232, 224, 205, 0.35);
}
.bg-gold_xlt--trans-40 {
  background: rgba(232, 224, 205, 0.4);
}
.bg-gold_xlt--trans-45 {
  background: rgba(232, 224, 205, 0.45);
}
.bg-gold_xlt--trans-50 {
  background: rgba(232, 224, 205, 0.5);
}
.bg-gold_xlt--trans-55 {
  background: rgba(232, 224, 205, 0.55);
}
.bg-gold_xlt--trans-60 {
  background: rgba(232, 224, 205, 0.6);
}
.bg-gold_xlt--trans-65 {
  background: rgba(232, 224, 205, 0.65);
}
.bg-gold_xlt--trans-70 {
  background: rgba(232, 224, 205, 0.7);
}
.bg-gold_xlt--trans-75 {
  background: rgba(232, 224, 205, 0.75);
}
.bg-gold_xlt--trans-80 {
  background: rgba(232, 224, 205, 0.8);
}
.bg-gold_xlt--trans-85 {
  background: rgba(232, 224, 205, 0.85);
}
.bg-gold_xlt--trans-90 {
  background: rgba(232, 224, 205, 0.9);
}
.bg-gold_xlt--trans-95 {
  background: rgba(232, 224, 205, 0.95);
}
.bg-gold_xlt--trans-100 {
  background: #e8e0cd;
}

.border-gold_xlt {
  border-color: #e8e0cd !important;
}

.text--gold_xlt {
  color: #e8e0cd;
}
.text--gold_xlt p, .text--gold_xlt li, .text--gold_xlt div {
  color: inherit;
}
.text--link-gold_xlt p a, .text--link-gold_xlt li a, .text--link-gold_xlt p > a, .text--link-gold_xlt li > a, .text--link-gold_xlt a:not(.button) {
  color: #e8e0cd;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-gold_xlt p a:hover, .text--link-hover-gold_xlt li a:hover, .text--link-hover-gold_xlt p > a:hover, .text--link-hover-gold_xlt li > a:hover, .text--link-hover-gold_xlt a:not(.button):hover {
    color: #e8e0cd;
  }
}

.list--gold_xlt li:before {
  background: #e8e0cd;
}

h1.ul--gold_xlt:after, h2.ul--gold_xlt:after, h3.ul--gold_xlt:after, h4.ul--gold_xlt:after, h5.ul--gold_xlt:after, h6.ul--gold_xlt:after, .h1.ul--gold_xlt:after, .h2.ul--gold_xlt:after, .h3.ul--gold_xlt:after, .h4.ul--gold_xlt:after, .h5.ul--gold_xlt:after, .h6.ul--gold_xlt:after {
  background: #e8e0cd;
}

.title-wrap .title__ul--gold_xlt:after, .title-wrap .pretitle__ul--gold_xlt:after, .title-wrap .subtitle__ul--gold_xlt:after {
  background: #e8e0cd;
}

.red {
  color: #fb4348 !important;
}

svg.red {
  fill: #fb4348;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-red:hover {
    color: #fb4348 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-red:hover {
    background: #fb4348 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-red:hover {
    fill: #fb4348 !important;
  }
}

.bg-red {
  background: #fb4348;
}
.bg-red--trans-5 {
  background: rgba(251, 67, 72, 0.05);
}
.bg-red--trans-10 {
  background: rgba(251, 67, 72, 0.1);
}
.bg-red--trans-15 {
  background: rgba(251, 67, 72, 0.15);
}
.bg-red--trans-20 {
  background: rgba(251, 67, 72, 0.2);
}
.bg-red--trans-25 {
  background: rgba(251, 67, 72, 0.25);
}
.bg-red--trans-30 {
  background: rgba(251, 67, 72, 0.3);
}
.bg-red--trans-35 {
  background: rgba(251, 67, 72, 0.35);
}
.bg-red--trans-40 {
  background: rgba(251, 67, 72, 0.4);
}
.bg-red--trans-45 {
  background: rgba(251, 67, 72, 0.45);
}
.bg-red--trans-50 {
  background: rgba(251, 67, 72, 0.5);
}
.bg-red--trans-55 {
  background: rgba(251, 67, 72, 0.55);
}
.bg-red--trans-60 {
  background: rgba(251, 67, 72, 0.6);
}
.bg-red--trans-65 {
  background: rgba(251, 67, 72, 0.65);
}
.bg-red--trans-70 {
  background: rgba(251, 67, 72, 0.7);
}
.bg-red--trans-75 {
  background: rgba(251, 67, 72, 0.75);
}
.bg-red--trans-80 {
  background: rgba(251, 67, 72, 0.8);
}
.bg-red--trans-85 {
  background: rgba(251, 67, 72, 0.85);
}
.bg-red--trans-90 {
  background: rgba(251, 67, 72, 0.9);
}
.bg-red--trans-95 {
  background: rgba(251, 67, 72, 0.95);
}
.bg-red--trans-100 {
  background: #fb4348;
}

.border-red {
  border-color: #fb4348 !important;
}

.text--red {
  color: #fb4348;
}
.text--red p, .text--red li, .text--red div {
  color: inherit;
}
.text--link-red p a, .text--link-red li a, .text--link-red p > a, .text--link-red li > a, .text--link-red a:not(.button) {
  color: #fb4348;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-red p a:hover, .text--link-hover-red li a:hover, .text--link-hover-red p > a:hover, .text--link-hover-red li > a:hover, .text--link-hover-red a:not(.button):hover {
    color: #fb4348;
  }
}

.list--red li:before {
  background: #fb4348;
}

h1.ul--red:after, h2.ul--red:after, h3.ul--red:after, h4.ul--red:after, h5.ul--red:after, h6.ul--red:after, .h1.ul--red:after, .h2.ul--red:after, .h3.ul--red:after, .h4.ul--red:after, .h5.ul--red:after, .h6.ul--red:after {
  background: #fb4348;
}

.title-wrap .title__ul--red:after, .title-wrap .pretitle__ul--red:after, .title-wrap .subtitle__ul--red:after {
  background: #fb4348;
}

.blue_lt {
  color: #94acc4 !important;
}

svg.blue_lt {
  fill: #94acc4;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-blue_lt:hover {
    color: #94acc4 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-blue_lt:hover {
    background: #94acc4 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-blue_lt:hover {
    fill: #94acc4 !important;
  }
}

.bg-blue_lt {
  background: #94acc4;
}
.bg-blue_lt--trans-5 {
  background: rgba(148, 172, 196, 0.05);
}
.bg-blue_lt--trans-10 {
  background: rgba(148, 172, 196, 0.1);
}
.bg-blue_lt--trans-15 {
  background: rgba(148, 172, 196, 0.15);
}
.bg-blue_lt--trans-20 {
  background: rgba(148, 172, 196, 0.2);
}
.bg-blue_lt--trans-25 {
  background: rgba(148, 172, 196, 0.25);
}
.bg-blue_lt--trans-30 {
  background: rgba(148, 172, 196, 0.3);
}
.bg-blue_lt--trans-35 {
  background: rgba(148, 172, 196, 0.35);
}
.bg-blue_lt--trans-40 {
  background: rgba(148, 172, 196, 0.4);
}
.bg-blue_lt--trans-45 {
  background: rgba(148, 172, 196, 0.45);
}
.bg-blue_lt--trans-50 {
  background: rgba(148, 172, 196, 0.5);
}
.bg-blue_lt--trans-55 {
  background: rgba(148, 172, 196, 0.55);
}
.bg-blue_lt--trans-60 {
  background: rgba(148, 172, 196, 0.6);
}
.bg-blue_lt--trans-65 {
  background: rgba(148, 172, 196, 0.65);
}
.bg-blue_lt--trans-70 {
  background: rgba(148, 172, 196, 0.7);
}
.bg-blue_lt--trans-75 {
  background: rgba(148, 172, 196, 0.75);
}
.bg-blue_lt--trans-80 {
  background: rgba(148, 172, 196, 0.8);
}
.bg-blue_lt--trans-85 {
  background: rgba(148, 172, 196, 0.85);
}
.bg-blue_lt--trans-90 {
  background: rgba(148, 172, 196, 0.9);
}
.bg-blue_lt--trans-95 {
  background: rgba(148, 172, 196, 0.95);
}
.bg-blue_lt--trans-100 {
  background: #94acc4;
}

.border-blue_lt {
  border-color: #94acc4 !important;
}

.text--blue_lt {
  color: #94acc4;
}
.text--blue_lt p, .text--blue_lt li, .text--blue_lt div {
  color: inherit;
}
.text--link-blue_lt p a, .text--link-blue_lt li a, .text--link-blue_lt p > a, .text--link-blue_lt li > a, .text--link-blue_lt a:not(.button) {
  color: #94acc4;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-blue_lt p a:hover, .text--link-hover-blue_lt li a:hover, .text--link-hover-blue_lt p > a:hover, .text--link-hover-blue_lt li > a:hover, .text--link-hover-blue_lt a:not(.button):hover {
    color: #94acc4;
  }
}

.list--blue_lt li:before {
  background: #94acc4;
}

h1.ul--blue_lt:after, h2.ul--blue_lt:after, h3.ul--blue_lt:after, h4.ul--blue_lt:after, h5.ul--blue_lt:after, h6.ul--blue_lt:after, .h1.ul--blue_lt:after, .h2.ul--blue_lt:after, .h3.ul--blue_lt:after, .h4.ul--blue_lt:after, .h5.ul--blue_lt:after, .h6.ul--blue_lt:after {
  background: #94acc4;
}

.title-wrap .title__ul--blue_lt:after, .title-wrap .pretitle__ul--blue_lt:after, .title-wrap .subtitle__ul--blue_lt:after {
  background: #94acc4;
}

.blue {
  color: #3f6bb3 !important;
}

svg.blue {
  fill: #3f6bb3;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-blue:hover {
    color: #3f6bb3 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-blue:hover {
    background: #3f6bb3 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-blue:hover {
    fill: #3f6bb3 !important;
  }
}

.bg-blue {
  background: #3f6bb3;
}
.bg-blue--trans-5 {
  background: rgba(63, 107, 179, 0.05);
}
.bg-blue--trans-10 {
  background: rgba(63, 107, 179, 0.1);
}
.bg-blue--trans-15 {
  background: rgba(63, 107, 179, 0.15);
}
.bg-blue--trans-20 {
  background: rgba(63, 107, 179, 0.2);
}
.bg-blue--trans-25 {
  background: rgba(63, 107, 179, 0.25);
}
.bg-blue--trans-30 {
  background: rgba(63, 107, 179, 0.3);
}
.bg-blue--trans-35 {
  background: rgba(63, 107, 179, 0.35);
}
.bg-blue--trans-40 {
  background: rgba(63, 107, 179, 0.4);
}
.bg-blue--trans-45 {
  background: rgba(63, 107, 179, 0.45);
}
.bg-blue--trans-50 {
  background: rgba(63, 107, 179, 0.5);
}
.bg-blue--trans-55 {
  background: rgba(63, 107, 179, 0.55);
}
.bg-blue--trans-60 {
  background: rgba(63, 107, 179, 0.6);
}
.bg-blue--trans-65 {
  background: rgba(63, 107, 179, 0.65);
}
.bg-blue--trans-70 {
  background: rgba(63, 107, 179, 0.7);
}
.bg-blue--trans-75 {
  background: rgba(63, 107, 179, 0.75);
}
.bg-blue--trans-80 {
  background: rgba(63, 107, 179, 0.8);
}
.bg-blue--trans-85 {
  background: rgba(63, 107, 179, 0.85);
}
.bg-blue--trans-90 {
  background: rgba(63, 107, 179, 0.9);
}
.bg-blue--trans-95 {
  background: rgba(63, 107, 179, 0.95);
}
.bg-blue--trans-100 {
  background: #3f6bb3;
}

.border-blue {
  border-color: #3f6bb3 !important;
}

.text--blue {
  color: #3f6bb3;
}
.text--blue p, .text--blue li, .text--blue div {
  color: inherit;
}
.text--link-blue p a, .text--link-blue li a, .text--link-blue p > a, .text--link-blue li > a, .text--link-blue a:not(.button) {
  color: #3f6bb3;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-blue p a:hover, .text--link-hover-blue li a:hover, .text--link-hover-blue p > a:hover, .text--link-hover-blue li > a:hover, .text--link-hover-blue a:not(.button):hover {
    color: #3f6bb3;
  }
}

.list--blue li:before {
  background: #3f6bb3;
}

h1.ul--blue:after, h2.ul--blue:after, h3.ul--blue:after, h4.ul--blue:after, h5.ul--blue:after, h6.ul--blue:after, .h1.ul--blue:after, .h2.ul--blue:after, .h3.ul--blue:after, .h4.ul--blue:after, .h5.ul--blue:after, .h6.ul--blue:after {
  background: #3f6bb3;
}

.title-wrap .title__ul--blue:after, .title-wrap .pretitle__ul--blue:after, .title-wrap .subtitle__ul--blue:after {
  background: #3f6bb3;
}

.blue_md {
  color: #1d4277 !important;
}

svg.blue_md {
  fill: #1d4277;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-blue_md:hover {
    color: #1d4277 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-blue_md:hover {
    background: #1d4277 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-blue_md:hover {
    fill: #1d4277 !important;
  }
}

.bg-blue_md {
  background: #1d4277;
}
.bg-blue_md--trans-5 {
  background: rgba(29, 66, 119, 0.05);
}
.bg-blue_md--trans-10 {
  background: rgba(29, 66, 119, 0.1);
}
.bg-blue_md--trans-15 {
  background: rgba(29, 66, 119, 0.15);
}
.bg-blue_md--trans-20 {
  background: rgba(29, 66, 119, 0.2);
}
.bg-blue_md--trans-25 {
  background: rgba(29, 66, 119, 0.25);
}
.bg-blue_md--trans-30 {
  background: rgba(29, 66, 119, 0.3);
}
.bg-blue_md--trans-35 {
  background: rgba(29, 66, 119, 0.35);
}
.bg-blue_md--trans-40 {
  background: rgba(29, 66, 119, 0.4);
}
.bg-blue_md--trans-45 {
  background: rgba(29, 66, 119, 0.45);
}
.bg-blue_md--trans-50 {
  background: rgba(29, 66, 119, 0.5);
}
.bg-blue_md--trans-55 {
  background: rgba(29, 66, 119, 0.55);
}
.bg-blue_md--trans-60 {
  background: rgba(29, 66, 119, 0.6);
}
.bg-blue_md--trans-65 {
  background: rgba(29, 66, 119, 0.65);
}
.bg-blue_md--trans-70 {
  background: rgba(29, 66, 119, 0.7);
}
.bg-blue_md--trans-75 {
  background: rgba(29, 66, 119, 0.75);
}
.bg-blue_md--trans-80 {
  background: rgba(29, 66, 119, 0.8);
}
.bg-blue_md--trans-85 {
  background: rgba(29, 66, 119, 0.85);
}
.bg-blue_md--trans-90 {
  background: rgba(29, 66, 119, 0.9);
}
.bg-blue_md--trans-95 {
  background: rgba(29, 66, 119, 0.95);
}
.bg-blue_md--trans-100 {
  background: #1d4277;
}

.border-blue_md {
  border-color: #1d4277 !important;
}

.text--blue_md {
  color: #1d4277;
}
.text--blue_md p, .text--blue_md li, .text--blue_md div {
  color: inherit;
}
.text--link-blue_md p a, .text--link-blue_md li a, .text--link-blue_md p > a, .text--link-blue_md li > a, .text--link-blue_md a:not(.button) {
  color: #1d4277;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-blue_md p a:hover, .text--link-hover-blue_md li a:hover, .text--link-hover-blue_md p > a:hover, .text--link-hover-blue_md li > a:hover, .text--link-hover-blue_md a:not(.button):hover {
    color: #1d4277;
  }
}

.list--blue_md li:before {
  background: #1d4277;
}

h1.ul--blue_md:after, h2.ul--blue_md:after, h3.ul--blue_md:after, h4.ul--blue_md:after, h5.ul--blue_md:after, h6.ul--blue_md:after, .h1.ul--blue_md:after, .h2.ul--blue_md:after, .h3.ul--blue_md:after, .h4.ul--blue_md:after, .h5.ul--blue_md:after, .h6.ul--blue_md:after {
  background: #1d4277;
}

.title-wrap .title__ul--blue_md:after, .title-wrap .pretitle__ul--blue_md:after, .title-wrap .subtitle__ul--blue_md:after {
  background: #1d4277;
}

.blue_dk {
  color: #072946 !important;
}

svg.blue_dk {
  fill: #072946;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-blue_dk:hover {
    color: #072946 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-blue_dk:hover {
    background: #072946 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-blue_dk:hover {
    fill: #072946 !important;
  }
}

.bg-blue_dk {
  background: #072946;
}
.bg-blue_dk--trans-5 {
  background: rgba(7, 41, 70, 0.05);
}
.bg-blue_dk--trans-10 {
  background: rgba(7, 41, 70, 0.1);
}
.bg-blue_dk--trans-15 {
  background: rgba(7, 41, 70, 0.15);
}
.bg-blue_dk--trans-20 {
  background: rgba(7, 41, 70, 0.2);
}
.bg-blue_dk--trans-25 {
  background: rgba(7, 41, 70, 0.25);
}
.bg-blue_dk--trans-30 {
  background: rgba(7, 41, 70, 0.3);
}
.bg-blue_dk--trans-35 {
  background: rgba(7, 41, 70, 0.35);
}
.bg-blue_dk--trans-40 {
  background: rgba(7, 41, 70, 0.4);
}
.bg-blue_dk--trans-45 {
  background: rgba(7, 41, 70, 0.45);
}
.bg-blue_dk--trans-50 {
  background: rgba(7, 41, 70, 0.5);
}
.bg-blue_dk--trans-55 {
  background: rgba(7, 41, 70, 0.55);
}
.bg-blue_dk--trans-60 {
  background: rgba(7, 41, 70, 0.6);
}
.bg-blue_dk--trans-65 {
  background: rgba(7, 41, 70, 0.65);
}
.bg-blue_dk--trans-70 {
  background: rgba(7, 41, 70, 0.7);
}
.bg-blue_dk--trans-75 {
  background: rgba(7, 41, 70, 0.75);
}
.bg-blue_dk--trans-80 {
  background: rgba(7, 41, 70, 0.8);
}
.bg-blue_dk--trans-85 {
  background: rgba(7, 41, 70, 0.85);
}
.bg-blue_dk--trans-90 {
  background: rgba(7, 41, 70, 0.9);
}
.bg-blue_dk--trans-95 {
  background: rgba(7, 41, 70, 0.95);
}
.bg-blue_dk--trans-100 {
  background: #072946;
}

.border-blue_dk {
  border-color: #072946 !important;
}

.text--blue_dk {
  color: #072946;
}
.text--blue_dk p, .text--blue_dk li, .text--blue_dk div {
  color: inherit;
}
.text--link-blue_dk p a, .text--link-blue_dk li a, .text--link-blue_dk p > a, .text--link-blue_dk li > a, .text--link-blue_dk a:not(.button) {
  color: #072946;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-blue_dk p a:hover, .text--link-hover-blue_dk li a:hover, .text--link-hover-blue_dk p > a:hover, .text--link-hover-blue_dk li > a:hover, .text--link-hover-blue_dk a:not(.button):hover {
    color: #072946;
  }
}

.list--blue_dk li:before {
  background: #072946;
}

h1.ul--blue_dk:after, h2.ul--blue_dk:after, h3.ul--blue_dk:after, h4.ul--blue_dk:after, h5.ul--blue_dk:after, h6.ul--blue_dk:after, .h1.ul--blue_dk:after, .h2.ul--blue_dk:after, .h3.ul--blue_dk:after, .h4.ul--blue_dk:after, .h5.ul--blue_dk:after, .h6.ul--blue_dk:after {
  background: #072946;
}

.title-wrap .title__ul--blue_dk:after, .title-wrap .pretitle__ul--blue_dk:after, .title-wrap .subtitle__ul--blue_dk:after {
  background: #072946;
}

.k_blue {
  color: #3f6bb3 !important;
}

svg.k_blue {
  fill: #3f6bb3;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-k_blue:hover {
    color: #3f6bb3 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-k_blue:hover {
    background: #3f6bb3 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-k_blue:hover {
    fill: #3f6bb3 !important;
  }
}

.bg-k_blue {
  background: #3f6bb3;
}
.bg-k_blue--trans-5 {
  background: rgba(63, 107, 179, 0.05);
}
.bg-k_blue--trans-10 {
  background: rgba(63, 107, 179, 0.1);
}
.bg-k_blue--trans-15 {
  background: rgba(63, 107, 179, 0.15);
}
.bg-k_blue--trans-20 {
  background: rgba(63, 107, 179, 0.2);
}
.bg-k_blue--trans-25 {
  background: rgba(63, 107, 179, 0.25);
}
.bg-k_blue--trans-30 {
  background: rgba(63, 107, 179, 0.3);
}
.bg-k_blue--trans-35 {
  background: rgba(63, 107, 179, 0.35);
}
.bg-k_blue--trans-40 {
  background: rgba(63, 107, 179, 0.4);
}
.bg-k_blue--trans-45 {
  background: rgba(63, 107, 179, 0.45);
}
.bg-k_blue--trans-50 {
  background: rgba(63, 107, 179, 0.5);
}
.bg-k_blue--trans-55 {
  background: rgba(63, 107, 179, 0.55);
}
.bg-k_blue--trans-60 {
  background: rgba(63, 107, 179, 0.6);
}
.bg-k_blue--trans-65 {
  background: rgba(63, 107, 179, 0.65);
}
.bg-k_blue--trans-70 {
  background: rgba(63, 107, 179, 0.7);
}
.bg-k_blue--trans-75 {
  background: rgba(63, 107, 179, 0.75);
}
.bg-k_blue--trans-80 {
  background: rgba(63, 107, 179, 0.8);
}
.bg-k_blue--trans-85 {
  background: rgba(63, 107, 179, 0.85);
}
.bg-k_blue--trans-90 {
  background: rgba(63, 107, 179, 0.9);
}
.bg-k_blue--trans-95 {
  background: rgba(63, 107, 179, 0.95);
}
.bg-k_blue--trans-100 {
  background: #3f6bb3;
}

.border-k_blue {
  border-color: #3f6bb3 !important;
}

.text--k_blue {
  color: #3f6bb3;
}
.text--k_blue p, .text--k_blue li, .text--k_blue div {
  color: inherit;
}
.text--link-k_blue p a, .text--link-k_blue li a, .text--link-k_blue p > a, .text--link-k_blue li > a, .text--link-k_blue a:not(.button) {
  color: #3f6bb3;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-k_blue p a:hover, .text--link-hover-k_blue li a:hover, .text--link-hover-k_blue p > a:hover, .text--link-hover-k_blue li > a:hover, .text--link-hover-k_blue a:not(.button):hover {
    color: #3f6bb3;
  }
}

.list--k_blue li:before {
  background: #3f6bb3;
}

h1.ul--k_blue:after, h2.ul--k_blue:after, h3.ul--k_blue:after, h4.ul--k_blue:after, h5.ul--k_blue:after, h6.ul--k_blue:after, .h1.ul--k_blue:after, .h2.ul--k_blue:after, .h3.ul--k_blue:after, .h4.ul--k_blue:after, .h5.ul--k_blue:after, .h6.ul--k_blue:after {
  background: #3f6bb3;
}

.title-wrap .title__ul--k_blue:after, .title-wrap .pretitle__ul--k_blue:after, .title-wrap .subtitle__ul--k_blue:after {
  background: #3f6bb3;
}

.k_gold {
  color: #c3b58f !important;
}

svg.k_gold {
  fill: #c3b58f;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-k_gold:hover {
    color: #c3b58f !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-k_gold:hover {
    background: #c3b58f !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-k_gold:hover {
    fill: #c3b58f !important;
  }
}

.bg-k_gold {
  background: #c3b58f;
}
.bg-k_gold--trans-5 {
  background: rgba(195, 181, 143, 0.05);
}
.bg-k_gold--trans-10 {
  background: rgba(195, 181, 143, 0.1);
}
.bg-k_gold--trans-15 {
  background: rgba(195, 181, 143, 0.15);
}
.bg-k_gold--trans-20 {
  background: rgba(195, 181, 143, 0.2);
}
.bg-k_gold--trans-25 {
  background: rgba(195, 181, 143, 0.25);
}
.bg-k_gold--trans-30 {
  background: rgba(195, 181, 143, 0.3);
}
.bg-k_gold--trans-35 {
  background: rgba(195, 181, 143, 0.35);
}
.bg-k_gold--trans-40 {
  background: rgba(195, 181, 143, 0.4);
}
.bg-k_gold--trans-45 {
  background: rgba(195, 181, 143, 0.45);
}
.bg-k_gold--trans-50 {
  background: rgba(195, 181, 143, 0.5);
}
.bg-k_gold--trans-55 {
  background: rgba(195, 181, 143, 0.55);
}
.bg-k_gold--trans-60 {
  background: rgba(195, 181, 143, 0.6);
}
.bg-k_gold--trans-65 {
  background: rgba(195, 181, 143, 0.65);
}
.bg-k_gold--trans-70 {
  background: rgba(195, 181, 143, 0.7);
}
.bg-k_gold--trans-75 {
  background: rgba(195, 181, 143, 0.75);
}
.bg-k_gold--trans-80 {
  background: rgba(195, 181, 143, 0.8);
}
.bg-k_gold--trans-85 {
  background: rgba(195, 181, 143, 0.85);
}
.bg-k_gold--trans-90 {
  background: rgba(195, 181, 143, 0.9);
}
.bg-k_gold--trans-95 {
  background: rgba(195, 181, 143, 0.95);
}
.bg-k_gold--trans-100 {
  background: #c3b58f;
}

.border-k_gold {
  border-color: #c3b58f !important;
}

.text--k_gold {
  color: #c3b58f;
}
.text--k_gold p, .text--k_gold li, .text--k_gold div {
  color: inherit;
}
.text--link-k_gold p a, .text--link-k_gold li a, .text--link-k_gold p > a, .text--link-k_gold li > a, .text--link-k_gold a:not(.button) {
  color: #c3b58f;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-k_gold p a:hover, .text--link-hover-k_gold li a:hover, .text--link-hover-k_gold p > a:hover, .text--link-hover-k_gold li > a:hover, .text--link-hover-k_gold a:not(.button):hover {
    color: #c3b58f;
  }
}

.list--k_gold li:before {
  background: #c3b58f;
}

h1.ul--k_gold:after, h2.ul--k_gold:after, h3.ul--k_gold:after, h4.ul--k_gold:after, h5.ul--k_gold:after, h6.ul--k_gold:after, .h1.ul--k_gold:after, .h2.ul--k_gold:after, .h3.ul--k_gold:after, .h4.ul--k_gold:after, .h5.ul--k_gold:after, .h6.ul--k_gold:after {
  background: #c3b58f;
}

.title-wrap .title__ul--k_gold:after, .title-wrap .pretitle__ul--k_gold:after, .title-wrap .subtitle__ul--k_gold:after {
  background: #c3b58f;
}

.grey {
  color: #777777 !important;
}

svg.grey {
  fill: #777777;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-grey:hover {
    color: #777777 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-grey:hover {
    background: #777777 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-grey:hover {
    fill: #777777 !important;
  }
}

.bg-grey {
  background: #777777;
}
.bg-grey--trans-5 {
  background: rgba(119, 119, 119, 0.05);
}
.bg-grey--trans-10 {
  background: rgba(119, 119, 119, 0.1);
}
.bg-grey--trans-15 {
  background: rgba(119, 119, 119, 0.15);
}
.bg-grey--trans-20 {
  background: rgba(119, 119, 119, 0.2);
}
.bg-grey--trans-25 {
  background: rgba(119, 119, 119, 0.25);
}
.bg-grey--trans-30 {
  background: rgba(119, 119, 119, 0.3);
}
.bg-grey--trans-35 {
  background: rgba(119, 119, 119, 0.35);
}
.bg-grey--trans-40 {
  background: rgba(119, 119, 119, 0.4);
}
.bg-grey--trans-45 {
  background: rgba(119, 119, 119, 0.45);
}
.bg-grey--trans-50 {
  background: rgba(119, 119, 119, 0.5);
}
.bg-grey--trans-55 {
  background: rgba(119, 119, 119, 0.55);
}
.bg-grey--trans-60 {
  background: rgba(119, 119, 119, 0.6);
}
.bg-grey--trans-65 {
  background: rgba(119, 119, 119, 0.65);
}
.bg-grey--trans-70 {
  background: rgba(119, 119, 119, 0.7);
}
.bg-grey--trans-75 {
  background: rgba(119, 119, 119, 0.75);
}
.bg-grey--trans-80 {
  background: rgba(119, 119, 119, 0.8);
}
.bg-grey--trans-85 {
  background: rgba(119, 119, 119, 0.85);
}
.bg-grey--trans-90 {
  background: rgba(119, 119, 119, 0.9);
}
.bg-grey--trans-95 {
  background: rgba(119, 119, 119, 0.95);
}
.bg-grey--trans-100 {
  background: #777777;
}

.border-grey {
  border-color: #777777 !important;
}

.text--grey {
  color: #777777;
}
.text--grey p, .text--grey li, .text--grey div {
  color: inherit;
}
.text--link-grey p a, .text--link-grey li a, .text--link-grey p > a, .text--link-grey li > a, .text--link-grey a:not(.button) {
  color: #777777;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-grey p a:hover, .text--link-hover-grey li a:hover, .text--link-hover-grey p > a:hover, .text--link-hover-grey li > a:hover, .text--link-hover-grey a:not(.button):hover {
    color: #777777;
  }
}

.list--grey li:before {
  background: #777777;
}

h1.ul--grey:after, h2.ul--grey:after, h3.ul--grey:after, h4.ul--grey:after, h5.ul--grey:after, h6.ul--grey:after, .h1.ul--grey:after, .h2.ul--grey:after, .h3.ul--grey:after, .h4.ul--grey:after, .h5.ul--grey:after, .h6.ul--grey:after {
  background: #777777;
}

.title-wrap .title__ul--grey:after, .title-wrap .pretitle__ul--grey:after, .title-wrap .subtitle__ul--grey:after {
  background: #777777;
}

.grey_dk {
  color: #4e544a !important;
}

svg.grey_dk {
  fill: #4e544a;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-grey_dk:hover {
    color: #4e544a !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-grey_dk:hover {
    background: #4e544a !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-grey_dk:hover {
    fill: #4e544a !important;
  }
}

.bg-grey_dk {
  background: #4e544a;
}
.bg-grey_dk--trans-5 {
  background: rgba(78, 84, 74, 0.05);
}
.bg-grey_dk--trans-10 {
  background: rgba(78, 84, 74, 0.1);
}
.bg-grey_dk--trans-15 {
  background: rgba(78, 84, 74, 0.15);
}
.bg-grey_dk--trans-20 {
  background: rgba(78, 84, 74, 0.2);
}
.bg-grey_dk--trans-25 {
  background: rgba(78, 84, 74, 0.25);
}
.bg-grey_dk--trans-30 {
  background: rgba(78, 84, 74, 0.3);
}
.bg-grey_dk--trans-35 {
  background: rgba(78, 84, 74, 0.35);
}
.bg-grey_dk--trans-40 {
  background: rgba(78, 84, 74, 0.4);
}
.bg-grey_dk--trans-45 {
  background: rgba(78, 84, 74, 0.45);
}
.bg-grey_dk--trans-50 {
  background: rgba(78, 84, 74, 0.5);
}
.bg-grey_dk--trans-55 {
  background: rgba(78, 84, 74, 0.55);
}
.bg-grey_dk--trans-60 {
  background: rgba(78, 84, 74, 0.6);
}
.bg-grey_dk--trans-65 {
  background: rgba(78, 84, 74, 0.65);
}
.bg-grey_dk--trans-70 {
  background: rgba(78, 84, 74, 0.7);
}
.bg-grey_dk--trans-75 {
  background: rgba(78, 84, 74, 0.75);
}
.bg-grey_dk--trans-80 {
  background: rgba(78, 84, 74, 0.8);
}
.bg-grey_dk--trans-85 {
  background: rgba(78, 84, 74, 0.85);
}
.bg-grey_dk--trans-90 {
  background: rgba(78, 84, 74, 0.9);
}
.bg-grey_dk--trans-95 {
  background: rgba(78, 84, 74, 0.95);
}
.bg-grey_dk--trans-100 {
  background: #4e544a;
}

.border-grey_dk {
  border-color: #4e544a !important;
}

.text--grey_dk {
  color: #4e544a;
}
.text--grey_dk p, .text--grey_dk li, .text--grey_dk div {
  color: inherit;
}
.text--link-grey_dk p a, .text--link-grey_dk li a, .text--link-grey_dk p > a, .text--link-grey_dk li > a, .text--link-grey_dk a:not(.button) {
  color: #4e544a;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-grey_dk p a:hover, .text--link-hover-grey_dk li a:hover, .text--link-hover-grey_dk p > a:hover, .text--link-hover-grey_dk li > a:hover, .text--link-hover-grey_dk a:not(.button):hover {
    color: #4e544a;
  }
}

.list--grey_dk li:before {
  background: #4e544a;
}

h1.ul--grey_dk:after, h2.ul--grey_dk:after, h3.ul--grey_dk:after, h4.ul--grey_dk:after, h5.ul--grey_dk:after, h6.ul--grey_dk:after, .h1.ul--grey_dk:after, .h2.ul--grey_dk:after, .h3.ul--grey_dk:after, .h4.ul--grey_dk:after, .h5.ul--grey_dk:after, .h6.ul--grey_dk:after {
  background: #4e544a;
}

.title-wrap .title__ul--grey_dk:after, .title-wrap .pretitle__ul--grey_dk:after, .title-wrap .subtitle__ul--grey_dk:after {
  background: #4e544a;
}

.black {
  color: #1f1f1f !important;
}

svg.black {
  fill: #1f1f1f;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-black:hover {
    color: #1f1f1f !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.hover-bg-black:hover {
    background: #1f1f1f !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  svg.hover-black:hover {
    fill: #1f1f1f !important;
  }
}

.bg-black {
  background: #1f1f1f;
}
.bg-black--trans-5 {
  background: rgba(31, 31, 31, 0.05);
}
.bg-black--trans-10 {
  background: rgba(31, 31, 31, 0.1);
}
.bg-black--trans-15 {
  background: rgba(31, 31, 31, 0.15);
}
.bg-black--trans-20 {
  background: rgba(31, 31, 31, 0.2);
}
.bg-black--trans-25 {
  background: rgba(31, 31, 31, 0.25);
}
.bg-black--trans-30 {
  background: rgba(31, 31, 31, 0.3);
}
.bg-black--trans-35 {
  background: rgba(31, 31, 31, 0.35);
}
.bg-black--trans-40 {
  background: rgba(31, 31, 31, 0.4);
}
.bg-black--trans-45 {
  background: rgba(31, 31, 31, 0.45);
}
.bg-black--trans-50 {
  background: rgba(31, 31, 31, 0.5);
}
.bg-black--trans-55 {
  background: rgba(31, 31, 31, 0.55);
}
.bg-black--trans-60 {
  background: rgba(31, 31, 31, 0.6);
}
.bg-black--trans-65 {
  background: rgba(31, 31, 31, 0.65);
}
.bg-black--trans-70 {
  background: rgba(31, 31, 31, 0.7);
}
.bg-black--trans-75 {
  background: rgba(31, 31, 31, 0.75);
}
.bg-black--trans-80 {
  background: rgba(31, 31, 31, 0.8);
}
.bg-black--trans-85 {
  background: rgba(31, 31, 31, 0.85);
}
.bg-black--trans-90 {
  background: rgba(31, 31, 31, 0.9);
}
.bg-black--trans-95 {
  background: rgba(31, 31, 31, 0.95);
}
.bg-black--trans-100 {
  background: #1f1f1f;
}

.border-black {
  border-color: #1f1f1f !important;
}

.text--black {
  color: #1f1f1f;
}
.text--black p, .text--black li, .text--black div {
  color: inherit;
}
.text--link-black p a, .text--link-black li a, .text--link-black p > a, .text--link-black li > a, .text--link-black a:not(.button) {
  color: #1f1f1f;
}
@media (hover: hover) and (pointer: fine) {
  .text--link-hover-black p a:hover, .text--link-hover-black li a:hover, .text--link-hover-black p > a:hover, .text--link-hover-black li > a:hover, .text--link-hover-black a:not(.button):hover {
    color: #1f1f1f;
  }
}

.list--black li:before {
  background: #1f1f1f;
}

h1.ul--black:after, h2.ul--black:after, h3.ul--black:after, h4.ul--black:after, h5.ul--black:after, h6.ul--black:after, .h1.ul--black:after, .h2.ul--black:after, .h3.ul--black:after, .h4.ul--black:after, .h5.ul--black:after, .h6.ul--black:after {
  background: #1f1f1f;
}

.title-wrap .title__ul--black:after, .title-wrap .pretitle__ul--black:after, .title-wrap .subtitle__ul--black:after {
  background: #1f1f1f;
}

.cmohs-form {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  margin-left: -5px;
  margin-right: -5px;
  /* Yoshiko */
}
.cmohs-form .input-wrap label {
  position: absolute;
  opacity: 0;
}
.cmohs-form .input-wrap input {
  height: 40px;
}
.cmohs-form .ul-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #4e544a;
  height: 40px;
}
.cmohs-form .ul-wrap > label {
  position: relative;
  display: inline-block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  margin-right: 15px;
  color: #777777;
  line-height: 1;
}
.cmohs-form .ul-wrap .pretty {
  margin-right: 0px;
}
.cmohs-form .ul-wrap .pretty label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  grid-column-gap: 5px;
  text-indent: 0px;
  margin-right: 15px;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #4e544a;
  font-size: 14px;
}
.cmohs-form .ul-wrap .pretty label:before, .cmohs-form .ul-wrap .pretty label:after {
  top: 0px !important;
  grid-row: 1;
  grid-column: 1;
}
.cmohs-form .ul-wrap .pretty label:before {
  border-color: #4e544a;
  background: #ffffff;
}
.cmohs-form .ul-wrap .pretty label:after {
  transition: all 0.25s ease;
}
.cmohs-form .ul-wrap .pretty label span {
  position: relative;
  line-height: 1;
  font-size: 14px;
  padding: 2px 0px;
  grid-row: 1;
  grid-column: 2;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}
.cmohs-form .ul-wrap .pretty.p-default input:checked ~ .state label:after {
  background-color: #3f6bb3 !important;
}
.cmohs-form .ul-wrap--stack {
  flex-flow: column;
  align-items: unset;
  border-bottom: none;
  text-align: left;
  height: auto;
}
.cmohs-form .ul-wrap--stack > label {
  padding-bottom: 5px;
  margin-bottom: 15px;
  margin-right: 0px;
  border-bottom: 1px solid #4e544a;
}
.cmohs-form .ul-wrap--stack .checkbox--list {
  display: grid;
  grid-row-gap: 10px;
}
.cmohs-form input, .cmohs-form textarea {
  box-shadow: none;
  border: 1px solid #4e544a;
  outline: none;
  margin: 0px;
  transition: all 0.25s ease;
  color: #1f1f1f;
}
.cmohs-form input:focus, .cmohs-form textarea:focus {
  border-color: #3f6bb3;
  box-shadow: none;
}
.cmohs-form textarea {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #777777;
}
.cmohs-form .row {
  position: relative;
  flex: 1 1 100%;
  display: flex;
  flex-flow: row wrap;
}
.cmohs-form input::-moz-placeholder, .cmohs-form textarea::-moz-placeholder {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: #777777;
}
.cmohs-form input:-ms-input-placeholder, .cmohs-form textarea:-ms-input-placeholder {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: #777777;
}
.cmohs-form input::placeholder, .cmohs-form textarea::placeholder {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: #777777;
}
.cmohs-form .select2.select2-container .select2-selection {
  background: #ffffff;
  border: 1px solid #1f1f1f;
  display: flex;
  align-items: center;
  height: 40px;
}
.cmohs-form .select2-container--foundation .select2-selection--single .select2-selection__rendered, .cmohs-form .select2-container--foundation .selection .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
  text-transform: uppercase;
  color: #777777;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 0px;
}
.cmohs-form .col {
  position: relative;
  display: flex;
  flex-flow: column;
  flex: 1 1 100%;
  padding: 5px 5px 10px;
}
.cmohs-form .col--1 {
  flex: 1;
}
.cmohs-form .col--auto {
  flex: 0 1 auto;
}
.cmohs-form .col--auto-fill {
  flex: 1 1 auto;
}
.cmohs-form .col--50, .cmohs-form .col--2 {
  flex: 0 1 50%;
}
.cmohs-form .col--30, .cmohs-form .col--33, .cmohs-form .col--3 {
  flex: 0 1 33.33%;
}
.cmohs-form .col--4 {
  flex: 0 1 25%;
}
.cmohs-form .col--5 {
  flex: 0 1 20%;
}
.cmohs-form .col--100 {
  flex: 1 1 100%;
}
.cmohs-form .input {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 15px 0px;
  width: 100%;
  vertical-align: top;
}
.cmohs-form .input__field {
  position: relative;
  display: block;
  float: right;
  padding: 0.8em;
  width: 60%;
  border: none;
  border-radius: 0;
  color: #777777;
  height: 40px;
  margin-bottom: 0px;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */
}
.cmohs-form .input__field::placeholder, .cmohs-form .input__field::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out 0.25s;
  transition: opacity 0.25s ease-out 0.25s;
}
.cmohs-form .input__field:focus {
  outline: none;
}
.cmohs-form .input__field:focus::placeholder, .cmohs-form .input__field:focus::-webkit-input-placeholder {
  opacity: 1;
}
.cmohs-form .input__label {
  display: inline-block;
  float: right;
  padding: 0 1em;
  width: 40%;
  color: #777777;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cmohs-form .input__label-content {
  position: relative;
  display: block;
  padding: 1.6em 0;
  width: 100%;
}
.cmohs-form .input__field--moh {
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #1f1f1f;
  transition: background-color 0.25s, border-color 0.25s;
}
.cmohs-form .input__label--moh {
  width: 100%;
  text-align: left;
  position: absolute;
  bottom: calc(100% + 2px);
  pointer-events: none;
  overflow: hidden;
  padding: 0 10px;
  height: 40px;
  transform: translate3d(0, 42px, 0);
  transition: transform 0.25s ease;
  transition-timing-function: ease;
}
.cmohs-form .input__label-content--moh {
  color: #777777;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 0px;
  height: 100%;
  transition: transform 0.25s ease;
  transition-timing-function: ease;
}
.cmohs-form .input__label-content--moh::after {
  content: attr(data-content);
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  color: #777777;
  padding: 0;
  font-size: 11px;
}
.cmohs-form .input__field--moh:focus + .input__label--moh,
.cmohs-form .input--filled .input__label--moh {
  transform: translate3d(0, 0, 0);
}
.cmohs-form .input__field--moh:focus + .input__label--moh .input__label-content--moh,
.cmohs-form .input--filled .input__label-content--moh {
  transform: translate3d(0, 100%, 0);
}
.cmohs-form .input__field--moh:focus + .input__field--moh,
.cmohs-form .input--filled .input__field--moh {
  background-color: transparent;
  border-color: #3f6bb3;
}
.cmohs-form span.counter {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: right;
  display: block;
  width: 100%;
}
.cmohs-form span.counter.under-limit {
  color: #e84c3d;
}
.cmohs-form span.counter.near-limit {
  color: #f39c11;
}
.cmohs-form span.counter.over-limit {
  color: #e84c3d;
}
.cmohs-form .media-upload-label {
  display: flex !important;
  align-items: flex-end;
  width: 100%;
}
.cmohs-form .media-upload-label span {
  flex-shrink: 0;
  flex-grow: 1;
  padding-bottom: 10px;
}
.cmohs-form .media-upload-label button {
  flex-grow: 0;
  flex-shrink: 1;
}

.file-upload-reveal {
  overflow: visible;
}
.file-upload-reveal .fancybox-close-small {
  top: -50px;
  color: #ffffff;
}
.file-upload-reveal form.dropzone {
  border-style: dashed;
}
.file-upload-reveal form.dropzone.disabled {
  cursor: not-allowed;
  opacity: 0.25;
}
.file-upload-reveal h2.errors {
  background-color: #e84c3d;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  margin: 10px 0;
  padding: 10px;
  text-transform: none;
  line-height: 1.25;
}

.dz-message svg {
  display: block;
  max-width: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.dz-message svg .fill-lines {
  fill: #777777;
}

.image-list {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #777777;
}
.image-list h3, .image-list p {
  margin-bottom: 0;
}

.has-tip {
  cursor: pointer;
}

.tooltip {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 5px;
}

p.field-notes {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
}

body {
  position: relative;
}
body.menu_open {
  overflow: hidden;
}

.site-wrapper {
  position: relative;
}

div.spacer {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0px;
  height: 40px;
}
div.spacer--5 {
  height: 5px;
}
div.spacer--10 {
  height: 10px;
}
div.spacer--15 {
  height: 15px;
}
div.spacer--20 {
  height: 20px;
}
div.spacer--25 {
  height: 25px;
}
div.spacer--30 {
  height: 30px;
}
div.spacer--35 {
  height: 35px;
}
div.spacer--40 {
  height: 40px;
}
div.spacer--45 {
  height: 45px;
}
div.spacer--50 {
  height: 50px;
}
div.spacer--55 {
  height: 55px;
}
div.spacer--60 {
  height: 60px;
}
div.spacer--65 {
  height: 65px;
}
div.spacer--70 {
  height: 70px;
}
div.spacer--75 {
  height: 75px;
}
div.spacer--80 {
  height: 80px;
}
div.spacer--85 {
  height: 85px;
}
div.spacer--90 {
  height: 90px;
}
div.spacer--95 {
  height: 95px;
}
div.spacer--100 {
  height: 100px;
}
div.spacer.hide-laptop-down, div.spacer.hide-mobile, div.spacer.hide-phablet-down {
  display: none;
}
@media screen and (min-width: 29.25em) {
  div.spacer.hide-mobile {
    display: block;
  }
}
@media screen and (min-width: 40.5em) {
  div.spacer.hide-phablet-down {
    display: block;
  }
}
@media screen and (min-width: 40.5em) {
  div.spacer.hide-phablet-up {
    display: none;
  }
}
@media screen and (min-width: 54.25em) {
  div.spacer.hide-laptop-down {
    display: block;
  }
}
@media screen and (min-width: 54.25em) {
  div.spacer.hide-laptop-up {
    display: none;
  }
}

.content-wrapper {
  position: relative;
}
.content-wrapper.dark {
  background: #1f1f1f;
}

.site-alert-banner {
  position: relative;
  width: 100%;
  background: #c3b58f;
  padding: 15px;
}
.site-alert-banner .copy-wrap {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}
.site-alert-banner .copy-wrap .copy {
  position: relative;
  line-height: 1;
}
.site-alert-banner .copy-wrap span {
  color: #1f1f1f;
  position: relative;
  display: inline;
}
.site-alert-banner .copy-wrap p {
  display: inline;
  line-height: 1;
  margin: 0px;
}
.site-alert-banner .copy-wrap .main {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 13px;
  margin-right: 3px;
}
.site-alert-banner .copy-wrap .desc, .site-alert-banner .copy-wrap .desc > p {
  font-family: adobe-garamond-pro, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #1f1f1f;
}
.site-alert-banner .copy-wrap .desc a, .site-alert-banner .copy-wrap .desc > p a {
  color: #1f1f1f;
  text-decoration: underline;
  transition: all 0.25s ease;
}
.site-alert-banner .copy-wrap .desc a:hover, .site-alert-banner .copy-wrap .desc > p a:hover {
  color: #3f6bb3;
}
.site-alert-banner .copy-wrap .chev {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.015em;
  font-size: 17px;
  margin-left: 3px;
  line-height: 0;
}

.site-header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  display: grid;
  z-index: 100;
  grid-template-rows: 30px 60px;
}
.site-header .block {
  position: relative;
  display: grid;
  width: 100%;
}
.site-header .block__aux .site-header__content {
  display: none;
  justify-content: flex-end;
}
.site-header .block__main {
  background: #1f1f1f;
  border-top: 5px solid #c3b58f;
  border-bottom: 5px solid #c3b58f;
}
.site-header .block__main .site-header__content {
  justify-content: space-between;
  grid-auto-flow: column;
  align-items: center;
  height: 50px;
}
.site-header .has_subnav > a.is_open, .site-header .has_subnav > a.is-current {
  color: #ffffff;
}
.site-header .has_subnav > a.is_open:after, .site-header .has_subnav > a.is-current:after {
  opacity: 1;
}
.site-header .has_subnav .subnav {
  display: none;
  position: absolute;
  width: 260px;
  top: 100%;
  left: -50px;
  background: #1f1f1f !important;
  border-top: none;
  border-left: 5px solid #c3b58f;
  border-right: 5px solid #c3b58f;
  border-bottom: 5px solid #c3b58f;
  padding: 0px 0px 10px;
}
.site-header .has_subnav .subnav > li {
  display: block;
  font-size: 0px;
  margin: 0px;
  opacity: 0;
  transition: all 0.15s linear;
}
.site-header .has_subnav .subnav > li a {
  display: block;
  font-size: 12px;
  line-height: 1.1;
  padding: 12px 30px 10px !important;
}
.site-header .has_subnav .subnav > li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 76.5em) {
  .site-header .has_subnav .subnav > li a {
    font-size: 13px;
  }
}
.site-header .has_subnav .subnav.is_open > li {
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(1) {
  transition: all 0.35s ease-in-out 0.055s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(2) {
  transition: all 0.35s ease-in-out 0.11s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(3) {
  transition: all 0.35s ease-in-out 0.165s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(4) {
  transition: all 0.35s ease-in-out 0.22s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(5) {
  transition: all 0.35s ease-in-out 0.275s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(6) {
  transition: all 0.35s ease-in-out 0.33s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(7) {
  transition: all 0.35s ease-in-out 0.385s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(8) {
  transition: all 0.35s ease-in-out 0.44s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(9) {
  transition: all 0.35s ease-in-out 0.495s;
}
.site-header .has_subnav .subnav.is_open > li:nth-child(10) {
  transition: all 0.35s ease-in-out 0.55s;
}
.site-header .has_subsubnav {
  position: relative;
}
.site-header .has_subsubnav > a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 40px;
}
.site-header .has_subsubnav > a svg {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  transform: translateY(-50%);
  transition: all 0.25s ease;
}
.site-header .has_subsubnav > a svg path {
  fill: #e8e0cd;
  transition: all 0.25s ease;
}
.site-header .has_subsubnav > a:hover svg path {
  fill: #ffffff;
}
.site-header .has_subsubnav > a.is_open {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.site-header .has_subsubnav > a.is_open svg {
  transform: translateY(-50%) scaleY(-1);
}
.site-header .has_subsubnav > a.is_open svg path {
  fill: #ffffff;
}
.site-header .has_subsubnav .subsubnav {
  display: none;
  margin: 0px;
  background: #454545 !important;
  border: none;
  list-style: none;
}
.site-header .has_subsubnav .subsubnav > li {
  margin: 0px;
  width: 100%;
  opacity: 0;
  transition: all 0.15s linear;
}
.site-header .has_subsubnav .subsubnav > li a {
  padding-left: 40px !important;
  font-size: 12px;
  font-weight: 400;
}
.site-header .has_subsubnav .subsubnav.is_open > li {
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
  opacity: 1;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(1) {
  transition: all 0.35s ease-in-out 0.055s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(2) {
  transition: all 0.35s ease-in-out 0.11s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(3) {
  transition: all 0.35s ease-in-out 0.165s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(4) {
  transition: all 0.35s ease-in-out 0.22s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(5) {
  transition: all 0.35s ease-in-out 0.275s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(6) {
  transition: all 0.35s ease-in-out 0.33s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(7) {
  transition: all 0.35s ease-in-out 0.385s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(8) {
  transition: all 0.35s ease-in-out 0.44s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(9) {
  transition: all 0.35s ease-in-out 0.495s;
}
.site-header .has_subsubnav .subsubnav.is_open > li:nth-child(10) {
  transition: all 0.35s ease-in-out 0.55s;
}
.site-header__content {
  position: relative;
  display: flex;
  width: 100vw;
  max-width: 1460px;
  padding: 0px 25px;
  margin: 0px auto;
}
.site-header__nav {
  position: relative;
}
.site-header__nav li {
  position: relative;
  margin: 0px 4px;
}
.site-header__nav li:last-child {
  margin-right: 0px;
}
.site-header__nav a {
  position: relative;
  font-family: effra, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}
.site-header__nav--aux > ul {
  margin: 0px;
  list-style-type: none;
  display: flex;
}
.site-header__nav--aux > ul > li {
  margin: 0px 4px;
}
.site-header__nav--aux .has_subnav {
  z-index: 10;
}
.site-header__nav--aux .has_subnav > a {
  z-index: 10;
}
.site-header__nav--aux .has_subnav > a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  opacity: 0;
  border-color: #3f6bb3 transparent transparent transparent;
  transition: all 0.15s ease;
}
.site-header__nav--aux .has_subnav > a.is_open:after {
  opacity: 1;
}
.site-header__nav--aux .has_subnav .subnav {
  background: #ffffff !important;
  border: none;
  width: 160px;
  left: 50%;
  margin-left: -80px;
  top: calc(100% + 2px);
  padding: 10px 0px;
}
.site-header__nav--aux .has_subnav .subnav > li {
  margin: 0px !important;
}
.site-header__nav--aux .has_subnav .subnav > li a {
  color: #4e544a;
  text-shadow: none;
  font-size: 11px !important;
  margin: 0px !important;
  padding: 12px 20px 10px !important;
}
.site-header__nav--aux .has_subnav .subnav > li a:hover {
  color: #3f6bb3;
  background: rgba(63, 107, 179, 0.1);
}
.site-header__nav--aux a {
  color: #ffffff;
  text-shadow: 1px 1px 10px black;
  font-size: 11px;
  padding: 2px 6px 1px;
  margin: 0px 2px;
  transition: all 0.25s ease;
}
.site-header__nav--aux a:last-child {
  margin-right: 0px;
}
.site-header__nav--aux a:visited {
  color: #ffffff;
}
.site-header__nav--aux a:hover, .site-header__nav--aux a.is_open {
  background: #3f6bb3;
  color: #ffffff;
}
.site-header__nav--main {
  display: none;
  height: 100%;
}
.site-header__nav--main > ul > li > a:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 15px;
  width: 100%;
  height: 2px;
  background: #3f6bb3;
  opacity: 0;
  transition: all 0.25s ease;
}
.site-header__nav--main > ul > li > a:visited {
  color: #e8e0cd;
}
.site-header__nav--main > ul > li > a:hover {
  color: #ffffff;
}
.site-header__nav--main > ul > li > a:hover:after {
  opacity: 1;
}
.site-header__nav--main a {
  color: #e8e0cd;
  font-size: 12px;
  padding: 6px 5px 5px !important;
  font-weight: 500;
  display: flex;
  height: 100%;
  align-items: center;
  transition: all 0.3s ease;
}
.site-header__nav--main a:visited {
  color: #e8e0cd;
}
.site-header__nav--main a:hover {
  color: #ffffff;
}
.site-header__nav--main li ul {
  background: #1f1f1f !important;
  border-top: none;
  border-left: 5px solid #c3b58f;
  border-right: 5px solid #c3b58f;
  border-bottom: 5px solid #c3b58f;
}
.site-header .donate {
  position: relative;
  display: flex;
  height: 105px;
  top: 50px;
  margin-top: -64px;
}
.site-header .donate span {
  position: relative;
  display: flex;
  height: 60px;
  top: -8px;
  align-items: center;
  letter-spacing: 0.025em;
  z-index: 1;
}
.site-header .donate span:before, .site-header .donate span:after {
  content: "";
  position: absolute;
  width: 112px;
  height: 2px;
  left: -31px;
  background: #c3b58f;
}
.site-header .donate span:before {
  top: 11px;
}
.site-header .donate span:after {
  bottom: 14px;
}
.site-header .donate svg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.site-header .donate svg #outer polygon {
  fill: #072946 !important;
  transition: all 0.3s ease;
}
.site-header .donate svg polygon {
  stroke: #c3b58f !important;
}
.site-header .donate a {
  padding: 0px 45px !important;
}
.site-header .donate a:after {
  display: none;
}
.site-header .donate a:hover svg #outer polygon {
  fill: #3f6bb3 !important;
}
.site-header .logo {
  position: relative;
  display: flex;
  width: 110px;
  height: 110px;
  top: 50%;
  margin-top: -55px;
}
.site-header .menu-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 32px;
  height: 30px;
  padding: 5px;
  outline: none;
  background: transparent !important;
  border: none !important;
  border-radius: 0px !important;
  cursor: pointer;
}
.site-header .menu-toggle .burger {
  position: relative;
  width: 100%;
  height: 3px;
  background: #e8e0cd;
  transition: background 0.35s ease;
}
.site-header .menu-toggle .burger:before, .site-header .menu-toggle .burger:after {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  height: 3px;
  background: #e8e0cd;
  transform: rotate(0deg) translate3d(0, 0, 0);
  transition: background 0.35s ease, top 0.25s ease 0.15s, transform 0.25s ease;
}
.site-header .menu-toggle .burger:before {
  top: -7px;
}
.site-header .menu-toggle .burger:after {
  top: 7px;
}
.site-header .menu-toggle:hover .burger {
  background: #ffffff;
}
.site-header .menu-toggle:hover .burger:before, .site-header .menu-toggle:hover .burger:after {
  background: #ffffff;
}
.site-header .menu-toggle.is_active .burger {
  background: transparent;
}
.site-header .menu-toggle.is_active .burger:before, .site-header .menu-toggle.is_active .burger:after {
  top: 0px;
  background: #e8e0cd;
  transition: background 0.35s ease, top 0.25s ease, transform 0.25s ease 0.15s;
}
.site-header .menu-toggle.is_active .burger:before {
  transform: rotate(45deg) translate3d(0, 0, 0);
}
.site-header .menu-toggle.is_active .burger:after {
  transform: rotate(-45deg) translate3d(0, 0, 0);
}
@media (hover: hover) and (pointer: fine) {
  .site-header .menu-toggle.is_active:hover .burger:before, .site-header .menu-toggle.is_active:hover .burger:after {
    background: #ffffff;
  }
}
@media screen and (min-width: 64em) {
  .site-header {
    grid-template-rows: 50px 70px;
  }
  .site-header__content {
    padding: 0px 15px;
  }
  .site-header .block__aux {
    display: grid;
    align-items: center;
  }
  .site-header .block__aux .site-header__content {
    display: flex;
  }
  .site-header .block__main .site-header__content {
    height: 60px;
  }
  .site-header__nav--main {
    display: flex;
  }
  .site-header .logo {
    width: 105px;
    height: 105px;
    top: 50%;
    margin-top: -55px;
  }
  .site-header .menu-toggle {
    display: none;
  }
}
@media screen and (min-width: 70.25em) {
  .site-header .logo {
    width: 120px;
    height: 120px;
    margin-top: -60px;
  }
}
@media screen and (min-width: 76.5em) {
  .site-header {
    grid-template-rows: 60px 70px;
  }
  .site-header__nav li {
    margin: 0px 7px;
  }
  .site-header__nav--aux a {
    font-size: 12px;
  }
  .site-header__nav--main a {
    font-size: 13px;
  }
  .site-header .logo {
    width: 150px;
    height: 150px;
    margin-top: -75px;
  }
  .site-header .donate span:before, .site-header .donate span:after {
    width: 115px;
    height: 2px;
    left: -31px;
  }
  .site-header .donate a {
    padding: 0px 45px !important;
  }
}
@media screen and (min-width: 78em) {
  .site-header__content {
    padding: 0px 25px;
  }
}

.site-menu {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100vw;
  max-width: 420px;
  min-width: 320px;
  height: 100vh;
  max-height: 100vh;
  z-index: 99;
  overflow: hidden;
  display: none;
}
.site-menu .scroll-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: scroll;
}
.site-menu__content {
  position: relative;
  display: flex;
  flex-flow: column;
  width: 100%;
  min-height: 100%;
  background: #2c2c2c;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.35s ease 0.15s;
  padding: 120px 15px;
}
.site-menu .accordion {
  background: transparent;
  border: none;
}
.site-menu .accordion .accordion-item.is-active .accordion-title {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.site-menu .accordion .accordion-item.is-active .accordion-title:after {
  border-color: #ffffff transparent transparent transparent;
  transform: scaleY(-1);
}
.site-menu .accordion .accordion-title {
  border: none;
  display: block;
  font-size: 15px;
  letter-spacing: 0.025em;
  padding-right: 30px;
}
.site-menu .accordion .accordion-title:before {
  display: none;
}
.site-menu .accordion .accordion-title:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #e8e0cd transparent transparent transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3px;
  transition: all 0.25s ease;
}
.site-menu .accordion .accordion-title:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.site-menu .accordion .accordion-title:hover:after {
  border-color: #ffffff transparent transparent transparent;
}
.site-menu .accordion .accordion-content {
  border: none;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 25px;
}
.site-menu .accordion ul {
  list-style-type: none;
  margin: 0px;
}
.site-menu .accordion ul a {
  display: block;
  line-height: 1.1;
  color: #ffffff;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.025em;
  padding: 6px 0px;
  margin: 4px 0px;
}
.site-menu .accordion ul a:after {
  display: none;
}
.site-menu .accordion ul a:hover {
  color: #e8e0cd;
}
.site-menu .links {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column;
  margin: 0px;
}
.site-menu .links li {
  position: relative;
  font-size: 0px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.15s linear;
}
.site-menu .links a {
  position: relative;
  display: inline-block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #e8e0cd;
  text-transform: uppercase;
  transition: all 0.35s ease;
}
.site-menu .links__main, .site-menu .links__aux {
  list-style-type: none;
  margin: 0px;
}
.site-menu .links__main li, .site-menu .links__aux li {
  font-size: 14px;
}
.site-menu .links__main a, .site-menu .links__aux a {
  position: relative;
}
.site-menu .links__main {
  margin-bottom: 30px;
}
.site-menu .links__main > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-menu .links__main > li:last-child {
  border-bottom: 0px;
}
.site-menu .links__main > li > a {
  border: none;
  display: block;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.025em;
  padding: 14px 15px 12px;
}
.site-menu .links__main > li > a:hover {
  color: #ffffff;
}
.site-menu .links__aux {
  flex: 0 1 auto;
  margin: 20px 15px 0px;
  width: auto;
  padding-top: 30px;
}
.site-menu .links__aux:before {
  content: "";
  height: 1px;
  position: absolute;
  top: 0px;
  left: -15px;
  right: -15px;
  background: #777777;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.15s linear;
}
.site-menu .links__aux > li > a {
  border: none;
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.025em;
  padding: 14px 0px 12px;
  color: #c3b58f;
}
.site-menu .links__aux > li > a:hover {
  color: #ffffff;
}
.site-menu.is_active .site-menu__content {
  transform: scaleX(1);
}
.site-menu.is_active .links__main li, .site-menu.is_active .links__aux li {
  opacity: 1;
  transform: translateX(0px) translate3d(0, 0, 0);
}
.site-menu.is_active .links__main li:nth-child(1), .site-menu.is_active .links__aux li:nth-child(1) {
  transition: all 0.35s ease-in-out 0.45s;
}
.site-menu.is_active .links__main li:nth-child(2), .site-menu.is_active .links__aux li:nth-child(2) {
  transition: all 0.35s ease-in-out 0.525s;
}
.site-menu.is_active .links__main li:nth-child(3), .site-menu.is_active .links__aux li:nth-child(3) {
  transition: all 0.35s ease-in-out 0.6s;
}
.site-menu.is_active .links__main li:nth-child(4), .site-menu.is_active .links__aux li:nth-child(4) {
  transition: all 0.35s ease-in-out 0.675s;
}
.site-menu.is_active .links__main li:nth-child(5), .site-menu.is_active .links__aux li:nth-child(5) {
  transition: all 0.35s ease-in-out 0.75s;
}
.site-menu.is_active .links__main li:nth-child(6), .site-menu.is_active .links__aux li:nth-child(6) {
  transition: all 0.35s ease-in-out 0.825s;
}
.site-menu.is_active .links__main li:nth-child(7), .site-menu.is_active .links__aux li:nth-child(7) {
  transition: all 0.35s ease-in-out 0.9s;
}
.site-menu.is_active .links__main li:nth-child(8), .site-menu.is_active .links__aux li:nth-child(8) {
  transition: all 0.35s ease-in-out 0.975s;
}
.site-menu.is_active .links__main li:nth-child(9), .site-menu.is_active .links__aux li:nth-child(9) {
  transition: all 0.35s ease-in-out 1.05s;
}
.site-menu.is_active .links__main li:nth-child(10), .site-menu.is_active .links__aux li:nth-child(10) {
  transition: all 0.35s ease-in-out 1.125s;
}
.site-menu.is_active .links__main li, .site-menu.is_active .links__aux li {
  opacity: 1;
  transform: translateX(0px) translate3d(0, 0, 0);
}
.site-menu.is_active .links__main li:nth-child(1), .site-menu.is_active .links__aux li:nth-child(1) {
  transition: all 0.35s ease-in-out 0.6s;
}
.site-menu.is_active .links__main li:nth-child(2), .site-menu.is_active .links__aux li:nth-child(2) {
  transition: all 0.35s ease-in-out 0.675s;
}
.site-menu.is_active .links__main li:nth-child(3), .site-menu.is_active .links__aux li:nth-child(3) {
  transition: all 0.35s ease-in-out 0.75s;
}
.site-menu.is_active .links__main li:nth-child(4), .site-menu.is_active .links__aux li:nth-child(4) {
  transition: all 0.35s ease-in-out 0.825s;
}
.site-menu.is_active .links__main li:nth-child(5), .site-menu.is_active .links__aux li:nth-child(5) {
  transition: all 0.35s ease-in-out 0.9s;
}
.site-menu.is_active .links__main li:nth-child(6), .site-menu.is_active .links__aux li:nth-child(6) {
  transition: all 0.35s ease-in-out 0.975s;
}
.site-menu.is_active .links__main li:nth-child(7), .site-menu.is_active .links__aux li:nth-child(7) {
  transition: all 0.35s ease-in-out 1.05s;
}
.site-menu.is_active .links__main li:nth-child(8), .site-menu.is_active .links__aux li:nth-child(8) {
  transition: all 0.35s ease-in-out 1.125s;
}
.site-menu.is_active .links__main li:nth-child(9), .site-menu.is_active .links__aux li:nth-child(9) {
  transition: all 0.35s ease-in-out 1.2s;
}
.site-menu.is_active .links__main li:nth-child(10), .site-menu.is_active .links__aux li:nth-child(10) {
  transition: all 0.35s ease-in-out 1.275s;
}
.site-menu.is_active .links__main:before, .site-menu.is_active .links__aux:before {
  transform: scaleX(1);
  transition: all 0.35s ease-in-out 0.525s;
}
.site-footer {
  position: relative;
}
.site-footer__top {
  position: relative;
  background: #1f1f1f;
  border-top: 5px solid #c3b58f;
  border-bottom: 5px solid #c3b58f;
}
.site-footer__bottom {
  position: relative;
  text-align: center;
}
.site-footer__bottom span {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  color: #777777;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  padding: 20px 30px 10px;
}
.site-footer__content {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1460px;
  margin: 0px auto;
  padding: 10px 30px;
  justify-content: center;
  grid-gap: 20px;
  align-items: center;
}
.site-footer .block__links {
  list-style-type: none;
  position: relative;
  margin: 0px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  max-width: 650px;
}
.site-footer .block__links li {
  position: relative;
  font-size: 0px;
  margin: 2px 5px;
}
.site-footer .block__links a {
  position: relative;
  line-height: 1;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: #c3b58f;
  text-transform: uppercase;
  padding: 2px 5px;
  transition: all 0.25s ease;
}
.site-footer .block__links a:hover {
  color: #ffffff;
}
.site-footer .block__buttons {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  grid-gap: 10px;
}
.site-footer .block__buttons a {
  position: relative;
  margin: 0px;
}
@media screen and (max-width: 548px) {
  .site-footer .block__buttons {
    grid-auto-flow: row;
  }
}
.site-footer .block__social {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 15px;
  font-size: 0px;
  justify-content: center;
  margin: 0px 10px;
}
.site-footer .block__social svg {
  width: 18px;
  fill: #c3b58f;
  transition: all 0.25s ease;
}
.site-footer .block__social a:hover svg {
  fill: #ffffff;
}
@media screen and (min-width: 60.5em) {
  .site-footer__content {
    justify-content: space-between;
    align-items: center;
    grid-auto-flow: column;
  }
  .site-footer .block__links {
    justify-content: unset;
  }
  .site-footer .block__buttons {
    grid-row: 1/span 2;
    grid-column: 2;
  }
  .site-footer .block__social {
    grid-row: 2;
    grid-column: 1;
    justify-content: flex-start;
  }
}

.header {
  padding: 1rem 0;
  position: relative;
}
.header__logo img {
  max-width: 100px;
}
.header__nav-container {
  display: flex;
  flex-direction: column;
}
.header__nav {
  display: flex;
}
.header__nav a {
  display: block;
  padding: 0.125rem 0.4rem;
  font-family: effra, sans-serif;
}
.header__nav--primary {
  justify-content: flex-end;
  position: relative;
}
.header__nav--primary ul > li > a {
  text-transform: uppercase;
  color: #e8e0cd;
  font-weight: 500;
  letter-spacing: 0.04rem;
  font-size: 0.9rem;
  transform: translateY(3px);
}
.header__nav--primary ul > li > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #3f6bb3;
  margin: 0 auto;
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
}
.header__nav--primary ul > li > a.is-current:after, .header__nav--primary ul > li > a:hover:after, .header__nav--primary ul > li > a:focus:after {
  transform: scaleX(1);
}
@media print, screen and (min-width: 64em) {
  .header__nav--primary {
    order: 2;
    padding: 1rem 0;
    margin: 0rem 0 1rem;
  }
}
.header__nav--secondary {
  text-align: right;
  justify-content: flex-end;
}
.header__nav--secondary a {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #ffffff;
}
@media print, screen and (min-width: 64em) {
  .header__nav--secondary {
    order: 1;
  }
}
@media print, screen and (min-width: 64em) {
  .header:after {
    content: "";
    position: absolute;
    top: 29%;
    right: 0;
    left: 0;
    bottom: 23%;
    background-color: #1f1f1f;
    z-index: -1;
    border-top: 2px solid #c3b58f;
    border-bottom: 2px solid #c3b58f;
  }
}
.header .is-dropdown-submenu {
  background: #1f1f1f;
  border: 0;
  border-right: 2px solid #c3b58f;
  border-bottom: 2px solid #c3b58f;
  border-left: 2px solid #c3b58f;
  margin-top: calc(1rem - 2px);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.medals-intro {
  position: relative;
  width: 100%;
  display: grid;
}
.medals-intro__background, .medals-intro__content {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.medals-intro__background .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  min-height: 100%;
  overflow: hidden;
  background: #315991;
}
.medals-intro__background .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}
.medals-intro__content {
  padding-top: 90px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: auto auto;
  width: 100%;
  max-width: 1500px;
  margin: 0px auto;
}
.medals-intro .block {
  position: relative;
  display: flex;
  flex-flow: column;
}
.medals-intro .block__nav {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 80px 60px 80px 0px;
}
.medals-intro .block__medal {
  margin-top: -130px;
  display: grid;
  align-items: center;
}
.medals-intro .block__medal .medal-image {
  grid-row: 1;
  grid-column: 1;
}
.medals-intro .block__copy {
  display: grid;
  align-items: center;
}
.medals-intro .block__copy .medal-copy {
  grid-row: 1;
  grid-column: 1;
}
.medals-intro .medal-nav {
  position: relative;
  min-width: 200px;
  padding-left: 40px;
}
@media screen and (min-width: 64em) {
  .medals-intro .medal-nav {
    max-width: 200px;
  }
}
.medals-intro .medal-nav .title {
  position: relative;
  display: inline-block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.medals-intro .medal-nav .title:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #3f6bb3;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.medals-intro .medal-nav ul {
  list-style-type: none;
  margin: 0px;
}
.medals-intro .medal-nav li {
  margin: 1.5em 0px;
}
.medals-intro .medal-nav a {
  padding: 10px 0px;
}
.medals-intro .medal-nav a .mobile {
  display: none;
  position: relative;
  line-height: 1;
  color: #94acc4;
  font-family: "Champion Heavywt A", "Champion Heavywt B", sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.25s ease;
}
.medals-intro .medal-nav a svg {
  position: relative;
  overflow: visible;
}
.medals-intro .medal-nav a svg text {
  font-family: "Champion Heavywt A", "Champion Heavywt B", sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  fill: #94acc4;
  transform: scale(0.75) translate3d(0, 0, 0);
  transition: all 0.25s ease;
}
.medals-intro .medal-nav a:hover svg text {
  fill: #ffffff;
}
.medals-intro .medal-nav a.current svg text {
  fill: #ffffff;
  transform: scale(1.15) translateY(-35%) translate3d(0, 0, 0);
}
.medals-intro .medal-image {
  position: relative;
  display: grid;
  width: 100%;
  opacity: 0;
  z-index: -10;
  transform: translateY(-20px);
  transition: z-index 0.25s step-end, opacity 0.15s linear, transform 0.3s ease;
}
.medals-intro .medal-image.current {
  opacity: 1;
  z-index: 1;
  transform: translateY(0px);
  transition: z-index 0.15s step-start, opacity 0.3s ease 0.75s, transform 0.3s ease 0.75s;
}
.medals-intro .medal-image .image, .medals-intro .medal-image .points {
  position: relative;
  grid-row: 1;
  grid-column: 1;
}
.medals-intro .medal-image .points {
  display: none;
}
.medals-intro .medal-image .image {
  pointer-events: none;
}
.medals-intro .medal-image .image svg {
  overflow: visible;
}
.medals-intro .medal-image .lines .l1, .medals-intro .medal-image .lines .l2, .medals-intro .medal-image .lines .l3 {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
.medals-intro .medal-image .lines .l1 {
  transition: all 0.15s linear 0.3s;
}
.medals-intro .medal-image .lines .l2 {
  stroke-dasharray: 370;
  stroke-dashoffset: 370;
  transition: all 0.15s linear 0.15s;
}
.medals-intro .medal-image .lines .l3 {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  transition: all 0.15s linear 0s;
}
.medals-intro .medal-image .lines .lt, .medals-intro .medal-image .lines .lb {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: all 0.15s linear 0s;
}
.medals-intro .medal-image .lines.current .l1, .medals-intro .medal-image .lines.current .l2, .medals-intro .medal-image .lines.current .l3 {
  stroke-dashoffset: 0;
}
.medals-intro .medal-image .lines.current .l1 {
  transition: all 0.3s ease-in 0s;
}
.medals-intro .medal-image .lines.current .l2 {
  transition: all 0.3s ease-in-out 0.25s;
}
.medals-intro .medal-image .lines.current .l3 {
  transition: all 0.3s ease-out 0.5s;
}
.medals-intro .medal-image .lines.current .lt, .medals-intro .medal-image .lines.current .lb {
  stroke-dashoffset: 0;
  transition: all 0.3s ease-in-out 0.75s;
}
.medals-intro .medal-image .point {
  cursor: pointer;
  pointer-events: bounding-box;
}
.medals-intro .medal-image .point circle {
  transition: fill 0.25s ease;
}
.medals-intro .medal-image .point:hover circle {
  fill: #ffffff !important;
}
.medals-intro .medal-image .point.current circle {
  fill: #ffffff !important;
}
.medals-intro .medal-copy {
  position: relative;
  display: grid;
  padding: 30px;
  max-width: 460px;
  opacity: 0;
  z-index: -10;
  transform: translateY(20px);
  transition: z-index 0.25s step-end, opacity 0.15s linear, transform 0.3s ease;
}
.medals-intro .medal-copy.current {
  opacity: 1;
  z-index: 1;
  transform: translateY(0px);
  transition: z-index 0.15s step-start, opacity 0.3s ease 0.75s, transform 0.3s ease 0.75s;
}
.medals-intro .medal-copy .copy-wrap, .medals-intro .medal-copy .intro-wrap {
  position: relative;
  padding-left: 30px;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  z-index: -1;
  opacity: 0;
  transform: translateY(20px);
  transition: z-index 0.15s step-end, opacity 0.15s linear, transform 0.3s ease;
}
.medals-intro .medal-copy .copy-wrap.current, .medals-intro .medal-copy .intro-wrap.current {
  opacity: 1;
  z-index: 1;
  transform: translateY(0px);
  transition: z-index 0.15s step-start, opacity 0.3s ease 0.75s, transform 0.3s ease 0.75s;
}
.medals-intro .medal-copy .intro-wrap {
  opacity: 1;
  z-index: 1;
  transform: translateY(0px);
  transition: z-index 0.15s step-start, opacity 0.3s ease 0.75s, transform 0.3s ease 0.75s;
}
.medals-intro .medal-copy .intro-wrap.active {
  opacity: 1;
  z-index: 1;
  transform: translateY(0px);
  transition: z-index 0.15s step-end, opacity 0.15s linear, transform 0.3s ease;
}
.medals-intro .medal-copy .intro-wrap.inactive {
  z-index: -1;
  opacity: 0;
  transform: translateY(20px);
  transition: z-index 0.15s step-end, opacity 0.15s linear, transform 0.3s ease;
}
.medals-intro .medal-copy h3 {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.medals-intro .medal-copy h3:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 80px;
  height: 2px;
  background: #3f6bb3;
}
.medals-intro .medal-copy p {
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .medals-intro .block__nav {
    grid-row: 2;
    grid-column: 1/-1;
    padding: 10px;
    background: #1d4277;
    margin-top: 20px;
  }
  .medals-intro .medal-nav {
    padding: 0px;
  }
  .medals-intro .medal-nav .title {
    display: none;
  }
  .medals-intro .medal-nav ul {
    list-style-type: none;
    margin: 0px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
  }
  .medals-intro .medal-nav li {
    margin: 0px;
  }
  .medals-intro .medal-nav a {
    position: relative;
    display: block;
    padding: 10px 15px;
    text-align: center;
  }
  .medals-intro .medal-nav a .mobile {
    display: block;
    font-size: 15px;
  }
  .medals-intro .medal-nav a svg {
    display: none;
  }
  .medals-intro .medal-nav a:hover .mobile {
    color: #ffffff;
  }
  .medals-intro .medal-nav a.current .mobile {
    color: #ffffff;
  }
}
@media screen and (min-width: 64em) {
  .medals-intro__content {
    padding-top: 130px;
    grid-template-columns: auto 1fr 0.75fr;
    padding-bottom: 60px;
  }
  .medals-intro__background {
    z-index: 0;
  }
  .medals-intro__background .image-wrap {
    -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 78.5%, 0px 100%);
            clip-path: polygon(0px 0px, 100% 0px, 100% 78.5%, 0px 100%);
    max-height: 1100px;
  }
  .medals-intro__background:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 4.5%;
    z-index: -1;
    background: repeating-linear-gradient(80deg, #3f6bb3, #3f6bb3 12px, #3c65aa 12px, #3c65aa 14px);
    transform: skewY(-5deg);
  }
  .medals-intro__background .shape {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0px;
    display: grid;
    grid-template-columns: 1fr 15px;
    grid-column-gap: 20px;
    z-index: -1;
    transform: skewY(-1.5deg);
  }
  .medals-intro__background .shape:before, .medals-intro__background .shape:after {
    content: "";
  }
  .medals-intro__background .shape:before {
    grid-column: 1;
    background: #1f1f1f;
    -webkit-clip-path: polygon(0px 0px, 100% 0px, calc(100% - 60px) 80%, 0px 100%);
            clip-path: polygon(0px 0px, 100% 0px, calc(100% - 60px) 80%, 0px 100%);
    width: 100%;
    height: 180px;
  }
  .medals-intro__background .shape:after {
    grid-column: 2;
    background: #fb4348;
    -webkit-clip-path: polygon(60px 0px, 100% 0px, 100% 80%, 0px 80%);
            clip-path: polygon(60px 0px, 100% 0px, 100% 80%, 0px 80%);
    width: calc(100% + 60px);
    height: 180px;
    margin-left: -60px;
    margin-top: -15px;
  }
}
@media screen and (min-width: 89em) {
  .medals-intro .block__nav {
    padding: 80px 40% 80px 0px;
  }
  .medals-intro .medal-nav a svg text {
    transform: scale(0.75) translate3d(0, 0, 0);
  }
  .medals-intro .medal-nav a.current svg text {
    fill: #ffffff;
    transform: scale(1.5) translateY(-42.5%) translate3d(0, 0, 0);
  }
}

.hero {
  position: relative;
  width: 100%;
}
.hero .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  min-height: 100%;
  overflow: hidden;
}
.hero .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.hero .caption-wrap {
  position: relative;
  width: 100%;
  text-align: right;
  width: calc(100% - 40px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.hero .caption-wrap span {
  position: relative;
  display: inline-block;
  line-height: 1;
  color: #ffffff;
  font-size: 11px;
  margin-bottom: 6px;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 48em) {
  .hero .caption-wrap {
    width: calc(100% - 60px);
  }
}
.hero__copy {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.hero__copy .copy-wrap {
  position: relative;
  text-align: center;
  padding: 80px 30px;
}
.hero__copy .button-wrap {
  padding-top: 40px;
}
.hero__image {
  position: relative;
  width: 100%;
}
.hero--content-left {
  display: grid;
  grid-template-rows: 90px auto !important;
  padding-bottom: 10px;
}
.hero--content-left .hero__copy {
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  grid-row: 2;
  grid-column: 1;
}
.hero--content-left .hero__copy .copy-wrap {
  position: relative;
  text-align: left;
  padding: 100px 30px;
  max-width: 580px;
}
.hero--content-left .hero__copy .copy-wrap h1.flyweight {
  font-size: 55px;
  letter-spacing: 0.015em;
  margin-bottom: 0px;
}
@media screen and (min-width: 48em) {
  .hero--content-left .hero__copy .copy-wrap h1.flyweight {
    font-size: 65px;
  }
}
@media screen and (min-width: 64em) {
  .hero--content-left .hero__copy .copy-wrap h1.flyweight {
    font-size: 85px;
  }
}
@media screen and (min-width: 76.5em) {
  .hero--content-left .hero__copy .copy-wrap h1.flyweight {
    font-size: 100px;
  }
}
.hero--content-left .hero__copy .copy-wrap h4 {
  font-size: 22px !important;
}
.hero--content-left .hero__copy .copy-wrap h5 {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
}
.hero--content-left .hero__copy .copy-wrap h5 span {
  position: relative;
  display: inline-block;
  padding: 0px 10px;
}
.hero--content-left .hero__image {
  grid-row: 1/span 2 !important;
  grid-column: 1;
  min-height: 0px;
}
.hero--content-left .hero__image .image-wrap {
  padding-bottom: 55%;
}
@media screen and (min-width: 54.25em) {
  .hero--content-left {
    grid-template-rows: 130px auto !important;
  }
}
.hero--content-right .hero__copy {
  align-items: flex-end;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.hero--content-right .hero__copy.no-copy {
  height: 100px;
}
.hero--content-right .hero__copy .copy-wrap {
  position: relative;
  text-align: left;
  padding: 100px 30px;
}
.hero--content-right .hero__copy .copy-wrap h1.flyweight {
  font-size: 60px;
  letter-spacing: 0.015em;
  margin-bottom: 0px;
}
@media screen and (min-width: 48em) {
  .hero--content-right .hero__copy .copy-wrap h1.flyweight {
    font-size: 75px;
  }
}
@media screen and (min-width: 64em) {
  .hero--content-right .hero__copy .copy-wrap h1.flyweight {
    font-size: 90px;
  }
}
.hero--content-right .hero__copy .copy-wrap h5 {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
}
.hero--content-right .hero__copy .copy-wrap h5 span {
  position: relative;
  display: inline-block;
  padding: 0px 10px;
}
.hero--short {
  display: grid;
  grid-template-rows: 90px auto;
}
.hero--short .hero__image {
  grid-row: 1/span 3;
  grid-column: 1;
}
.hero--short .hero__image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 5px;
  background: #c09b57;
}
.hero--short .hero__image .image-wrap {
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 92.5%, 0px 100%);
          clip-path: polygon(0px 0px, 100% 0px, 100% 92.5%, 0px 100%);
}
.hero--short.no-angle .hero__image .image-wrap {
  -webkit-clip-path: unset;
          clip-path: unset;
}
.hero--short.no-angle .hero__image:before {
  display: none;
}
.hero--short .hero__copy {
  grid-row: 2;
  grid-column: 1;
}
.hero--short .hero__copy .copy-wrap {
  padding: 100px 30px;
  max-width: 1000px;
  margin: 0px auto;
}
.hero--short.hero--angle .hero__image .image-wrap {
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 87.5%, 0px 100%);
          clip-path: polygon(0px 0px, 100% 0px, 100% 87.5%, 0px 100%);
}
.hero--short.hero--angle .hero__image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  background: #c09b57;
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 92.5%, 0px 100%);
          clip-path: polygon(0px 0px, 100% 0px, 100% 92.5%, 0px 100%);
}
@media screen and (min-width: 54.25em) {
  .hero--short {
    grid-template-rows: 130px auto;
  }
}
.hero--extra-short .hero__copy .copy-wrap {
  padding: 60px 30px;
}
.hero--angle .hero__image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  background: #c09b57;
  z-index: -1;
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 90%, 0px 100%);
          clip-path: polygon(0px 0px, 100% 0px, 100% 90%, 0px 100%);
}
.hero--angle .image-wrap {
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 87.5%, 0px 100%);
          clip-path: polygon(0px 0px, 100% 0px, 100% 87.5%, 0px 100%);
}
.hero--overlap {
  display: grid;
  grid-template-rows: 90px auto 100px;
}
.hero--overlap .hero__image {
  grid-row: 1/span 4;
  grid-column: 1;
}
.hero--overlap .hero__copy {
  grid-row: 2;
  grid-column: 1;
}
.hero--overlap .hero__copy .copy-wrap {
  padding: 100px 30px;
  max-width: 1000px;
  margin: 0px auto;
}
.hero--overlap ~ .overlap-content {
  margin-top: -100px;
  min-height: 100px;
}
@media screen and (min-width: 54.25em) {
  .hero--overlap {
    grid-template-rows: 130px auto 340px;
  }
  .hero--overlap ~ .overlap-content {
    margin-top: -340px;
    min-height: 340px;
  }
}
.hero--overlap-short {
  display: grid;
  grid-template-rows: 90px auto 80px;
}
.hero--overlap-short .hero__image {
  grid-row: 1/span 4;
  grid-column: 1;
}
.hero--overlap-short .hero__copy {
  grid-row: 2;
  grid-column: 1;
}
.hero--overlap-short .hero__copy .copy-wrap {
  padding: 100px 30px;
  max-width: 1000px;
  margin: 0px auto;
}
.hero--overlap-short ~ .overlap-content {
  margin-top: -100px;
  min-height: 100px;
}
@media screen and (min-width: 54.25em) {
  .hero--overlap-short {
    grid-template-rows: 130px auto 160px;
  }
  .hero--overlap-short ~ .overlap-content {
    margin-top: -160px;
    min-height: 160px;
  }
}
.hero--overlap-extra-short {
  display: grid;
  grid-template-rows: 90px auto 40px;
}
.hero--overlap-extra-short .hero__image {
  grid-row: 1/span 4;
  grid-column: 1;
}
.hero--overlap-extra-short .hero__copy {
  grid-row: 2;
  grid-column: 1;
}
.hero--overlap-extra-short .hero__copy .copy-wrap {
  padding: 70px 30px;
  max-width: 1000px;
  margin: 0px auto;
}
.hero--overlap-extra-short ~ .overlap-content {
  margin-top: -35px;
  min-height: 35px;
}
@media screen and (min-width: 54.25em) {
  .hero--overlap-extra-short {
    grid-template-rows: 130px auto 40px;
  }
}
.hero--overlap-content-sidebar {
  display: grid;
  grid-template-rows: 90px auto 80px;
}
.hero--overlap-content-sidebar .hero__image {
  grid-row: 1/span 4;
  grid-column: 1;
}
.hero--overlap-content-sidebar .hero__copy {
  grid-row: 2;
  grid-column: 1;
}
.hero--overlap-content-sidebar ~ .content-sidebar .block__main {
  margin-top: -100px;
  min-height: 100px;
}
@media screen and (min-width: 54.25em) {
  .hero--overlap-content-sidebar {
    grid-template-rows: 130px auto 160px;
  }
  .hero--overlap-content-sidebar ~ .overlap-content {
    margin-top: -160px;
    min-height: 160px;
  }
}
.hero.red-angle .hero__image:before {
  background: #fb4348;
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 95%, 0px 90%);
          clip-path: polygon(0px 0px, 100% 0px, 100% 95%, 0px 90%);
}

.overlap-content {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  background: #ffffff;
  width: calc(100% - 40px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.overlap-content > section {
  position: relative;
  width: 100%;
  max-width: 1220px;
}
.overlap-content hr {
  width: 75%;
}
.overlap-content.narrow {
  max-width: 680px;
}
@media screen and (min-width: 48em) {
  .overlap-content {
    width: calc(100% - 60px);
  }
}

.width-content {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.width-content > section:not(.callout-banner) {
  position: relative;
  width: 100%;
  max-width: 1220px;
}

.basic-intro {
  position: relative;
  width: 100%;
  padding: 0px 25px;
}
@media screen and (min-width: 48em) {
  .basic-intro {
    padding: 0px 30px;
  }
}
.basic-intro .copy-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0px auto;
}

.column-intro {
  position: relative;
  width: 100%;
  padding: 0px 25px;
}
@media screen and (min-width: 48em) {
  .column-intro {
    padding: 0px 30px;
  }
}
.column-intro .button-wrap {
  position: relative;
  padding: 10px 0px 15px;
}
@media screen and (min-width: 54.25em) {
  .column-intro .copy-wrap {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .column-intro .column-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 35px;
  }
}

.image-copy {
  position: relative;
  display: grid;
  align-items: center;
  padding: 0px 25px;
  grid-gap: 35px;
}
@media screen and (min-width: 48em) {
  .image-copy {
    padding: 0px 30px;
  }
}
.image-copy.align-top {
  align-items: flex-start;
}
.image-copy .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 72.5%;
  overflow: hidden;
}
.image-copy .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.image-copy .image-wrap.sq {
  padding-bottom: 85%;
}
.image-copy .caption-wrap {
  position: relative;
  width: 100%;
  padding: 5px 10px;
}
.image-copy .caption-wrap span {
  font-size: 15px;
  color: #4e544a;
  position: relative;
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
}
.image-copy .caption-wrap span:before {
  content: "";
  position: relative;
  margin-right: 10px;
  top: 3px;
  border-style: solid;
  border-width: 0 5px 10px 5px;
  border-color: transparent transparent #3f6bb3 transparent;
}
.image-copy .copy-wrap {
  position: relative;
}
.image-copy .copy-wrap .button-wrap {
  padding-top: 15px;
}
.image-copy .copy-wrap q {
  position: relative;
  display: block;
  font-size: 22px;
  color: #4e544a;
  line-height: 1.2;
}
.image-copy .copy-wrap ul li {
  font-weight: bolder;
}
.image-copy .copy-wrap ul li:before {
  background: #c09b57;
}
.image-copy--intro {
  align-items: flex-start;
}
.image-copy--intro .image-wrap {
  padding-bottom: 60%;
}
@media screen and (min-width: 54.25em) {
  .image-copy {
    grid-template-columns: 1.15fr 1fr;
  }
  .image-copy--right {
    grid-template-columns: 1fr 1.15fr;
  }
  .image-copy--right .block {
    grid-row: 1;
  }
  .image-copy--right .block__image {
    grid-column: 2;
  }
  .image-copy--intro {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
  .image-copy--intro .copy-wrap {
    padding: 30px 0px;
  }
  .image-copy--alt {
    grid-template-columns: 1.75fr 1fr;
  }
  .image-copy--alt.image-copy--right {
    grid-template-columns: 1fr 1.75fr;
  }
}

.angle-image-copy {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  display: grid;
  padding: 0px 25px;
  grid-gap: 35px;
}
@media screen and (min-width: 48em) {
  .angle-image-copy {
    padding: 0px 30px;
  }
}
.angle-image-copy.align-top {
  align-items: flex-start;
}
.angle-image-copy .block {
  position: relative;
  display: flex;
  flex-flow: column;
}
.angle-image-copy .block__copy {
  padding: 60px 0px 40px;
  justify-content: center;
}
.angle-image-copy .block__image {
  min-width: 0px;
}
.angle-image-copy .block__image * {
  min-width: 0px;
}
.angle-image-copy .block__image a.slide {
  position: relative;
  outline: none;
  border-radius: 0px;
  padding-bottom: 15px;
}
.angle-image-copy .block__image a.slide:hover .image:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.angle-image-copy .block__image a.slide:hover .image:after {
  opacity: 0.75;
}
.angle-image-copy .block__image a.slide:hover .image-wrap:before {
  background: #fb4348;
  transform: skewY(9deg);
}
.angle-image-copy .block__image .image {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 100%;
  overflow: hidden;
  -webkit-clip-path: polygon(5% 0%, 100% 5%, 100% 100%, 0% 100%);
          clip-path: polygon(5% 0%, 100% 5%, 100% 100%, 0% 100%);
}
.angle-image-copy .block__image .image:before {
  content: "View Recipient";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  color: #ffffff;
  z-index: 2;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1;
  padding: 11px 15px 8px;
  border: 2px solid #ffffff;
  opacity: 0;
  transition: all 0.25s ease;
}
.angle-image-copy .block__image .image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #1d4277;
  opacity: 0;
  transition: all 0.25s ease;
}
.angle-image-copy .block__image .image-wrap:before {
  content: "";
  position: absolute;
  bottom: -38px;
  right: 0px;
  width: 300px;
  height: 80px;
  background: #3f6bb3;
  transform-origin: right;
  transform: skewY(7.5deg);
  transition: all 0.25s ease;
}
.angle-image-copy .block__image .caption-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 10px;
  padding-top: 5px;
}
.angle-image-copy .block__image .caption-wrap:before {
  content: "";
  width: 10px;
  height: 10px;
  position: relative;
  display: flex;
  background: #fb4348;
  grid-row: 1;
  grid-column: 1;
  margin-top: 6px;
}
.angle-image-copy .block__image .caption-wrap span {
  position: relative;
  grid-row: 1;
  grid-column: 2;
  color: #1f1f1f;
}
.angle-image-copy .image-wrap {
  position: relative;
}
.angle-image-copy .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.angle-image-copy .copy-wrap {
  position: relative;
}
.angle-image-copy .copy-wrap .button-wrap {
  padding-top: 15px;
}
@media screen and (min-width: 54.25em) {
  .angle-image-copy {
    grid-template-columns: 1.2fr 1fr;
  }
  .angle-image-copy .image-wrap {
    min-height: 100%;
  }
  .angle-image-copy .block__image {
    margin-top: -25%;
    margin-right: -60px;
  }
}

.image-copy-grid {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.image-copy-grid .block {
  position: relative;
  display: flex;
  flex-flow: column;
  text-align: center;
  padding: 0px 15px 15px;
}
.image-copy-grid .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 55%;
  overflow: hidden;
}
.image-copy-grid .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.image-copy-grid .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #1d4277;
  opacity: 0;
  transition: all 0.25s ease;
}
.image-copy-grid--alt .image-wrap {
  padding-bottom: 65%;
}
.image-copy-grid--alt .copy-wrap .ul {
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.image-copy-grid .copy-wrap {
  position: relative;
  padding: 20px 0px;
}
.image-copy-grid .copy-wrap h2 {
  font-size: 22px;
  transition: all 0.25s ease;
}
.image-copy-grid .copy-wrap .caps {
  text-transform: uppercase;
}
.image-copy-grid a.block:hover .copy-wrap h2 {
  color: #3f6bb3;
}
.image-copy-grid a.block:hover .image-wrap:after {
  opacity: 0.75;
}
@media screen and (min-width: 35.5em) {
  .image-copy-grid .block {
    flex: 0 1 50%;
  }
}
@media screen and (min-width: 54.25em) {
  .image-copy-grid .block {
    flex: 0 1 33.33%;
  }
  .image-copy-grid .copy-wrap h2 {
    font-size: 25px;
  }
}

.donor-layout {
  position: relative;
  max-width: 1220px;
  margin: 0px auto;
  padding: 0px 30px;
  padding: 0px 25px;
}
.donor-layout__title {
  position: relative;
  display: block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  padding: 13px 20px 10px;
  margin-bottom: 20px;
  background: #3f6bb3;
}

.donor-grid {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.donor-grid .block {
  position: relative;
  display: flex;
  flex-flow: column;
  text-align: center;
  padding: 0px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.donor-grid .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 65%;
  overflow: hidden;
}
.donor-grid .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.donor-grid .logo-wrap {
  padding: 40px 0px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donor-grid .logo-wrap img {
  max-height: 80px;
}
.donor-grid .copy-wrap {
  position: relative;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
}
.donor-grid .copy-wrap h2 {
  font-size: 18px;
  color: #1f1f1f;
  margin-bottom: 0;
}
.donor-grid .button-wrap {
  margin-top: auto;
}
@media screen and (min-width: 35.5em) {
  .donor-grid .block {
    flex: 0 1 50%;
  }
}
@media screen and (min-width: 54.25em) {
  .donor-grid--lg .block {
    padding-left: 40px;
    padding-right: 40px;
    flex: 0 1 33.33%;
  }
  .donor-grid--md .block {
    flex: 0 1 25%;
  }
  .donor-grid--sm .block {
    flex: 0 1 20%;
  }
  .donor-grid .copy-wrap h2 {
    font-size: 18px;
  }
}

.gallery-copy {
  position: relative;
  display: grid;
  grid-column-gap: 50px;
  padding: 0px 40px;
}
.gallery-copy .gallery-wrap {
  position: relative;
  display: grid;
  grid: "a a" auto "b c" auto "x c" auto/1fr 1fr;
}
.gallery-copy .gallery-wrap .image--a {
  grid-area: a;
  margin-right: 8%;
}
.gallery-copy .gallery-wrap .image--a .image-wrap {
  padding-bottom: 70%;
}
.gallery-copy .gallery-wrap .image--b {
  grid-area: b;
  margin-top: -40%;
  margin-left: 10%;
  margin-right: -20%;
}
.gallery-copy .gallery-wrap .image--b .image-wrap {
  padding-bottom: 120%;
}
.gallery-copy .gallery-wrap .image--c {
  grid-area: c;
  margin-top: -8%;
}
.gallery-copy .gallery-wrap .image--c .image-wrap {
  padding-bottom: 140%;
}
.gallery-copy .gallery-wrap .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  overflow: hidden;
  border: 5px solid #ffffff;
}
.gallery-copy .gallery-wrap .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.gallery-copy .block {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.gallery-copy--intro .block__copy {
  justify-content: flex-start;
}
.gallery-copy--right .gallery-wrap {
  grid: "a b" auto "c c" auto/1fr 1fr;
}
.gallery-copy--right .gallery-wrap .image--a .image-wrap, .gallery-copy--right .gallery-wrap .image--b .image-wrap {
  padding-bottom: 70%;
  min-height: 100%;
}
.gallery-copy--right .gallery-wrap .image--a {
  margin-top: 8%;
  margin-right: -15%;
  transform: rotate(5deg);
}
.gallery-copy--right .gallery-wrap .image--b {
  margin-top: 0%;
  margin-left: -20%;
  margin-right: 0%;
  transform: rotate(8deg);
}
.gallery-copy--right .gallery-wrap .image--c {
  margin-top: -10%;
  margin-right: 5%;
  margin-left: 8%;
  margin-bottom: 10%;
  transform: rotate(-8deg);
}
.gallery-copy--right .gallery-wrap .image--c .image-wrap {
  padding-bottom: 85%;
}
.gallery-copy--right .gallery-wrap--alt {
  grid: "a" auto "b" auto/1fr;
}
.gallery-copy--right .gallery-wrap--alt .image--a .image-wrap, .gallery-copy--right .gallery-wrap--alt .image--b .image-wrap {
  padding-bottom: 60%;
  min-height: 100%;
}
.gallery-copy--right .gallery-wrap--alt .image--a {
  margin-top: 10%;
  margin-right: 20%;
  transform: rotate(6deg);
}
.gallery-copy--right .gallery-wrap--alt .image--b {
  margin-top: -10%;
  margin-left: 20%;
  margin-right: 10%;
  transform: rotate(5deg);
}
@media screen and (min-width: 64em) {
  .gallery-copy--right .gallery-wrap--alt .image--a {
    margin-top: -10%;
    margin-right: 0%;
    transform: rotate(6deg);
  }
  .gallery-copy--right .gallery-wrap--alt .image--b {
    margin-top: -20%;
    margin-left: 20%;
    margin-right: -5%;
    transform: rotate(5deg);
  }
}
@media screen and (min-width: 64em) {
  .gallery-copy {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-copy .block__copy {
    grid-row: 1;
    grid-column: 2;
  }
  .gallery-copy .block__gallery {
    grid-row: 1;
    grid-column: 1;
  }
  .gallery-copy--intro {
    padding-top: 60px;
  }
  .gallery-copy--intro .block__copy {
    justify-content: flex-start;
  }
  .gallery-copy--intro .block__gallery {
    margin-top: -30px;
  }
  .gallery-copy--intro .copy-wrap {
    max-width: 500px;
  }
  .gallery-copy--right .block__copy {
    grid-column: 1;
  }
  .gallery-copy--right .block__gallery {
    grid-column: 2;
  }
}

.teaser-list {
  position: relative;
  display: grid;
  padding: 0px 25px;
}
@media screen and (min-width: 48em) {
  .teaser-list {
    padding: 0px 30px;
  }
}
.teaser-list .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 40%;
  min-height: 100%;
  overflow: hidden;
  grid-row: 1/span 2;
  grid-column: 1;
}
.teaser-list .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.teaser-list .image-wrap:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #1f1f1f;
  opacity: 0.75;
  mix-blend-mode: multiply;
}
.teaser-list .image-wrap:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  background: #3f6bb3;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-clip-path: polygon(0px 0px, 10px 0px, 100% 50%, 10px 100%, 0px 100%);
          clip-path: polygon(0px 0px, 10px 0px, 100% 50%, 10px 100%, 0px 100%);
}
.teaser-list .copy-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 40px 30px 20px 60px;
  grid-row: 1;
  grid-column: 1;
}
.teaser-list .copy-wrap h2 {
  position: relative;
  padding-top: 15px;
  font-size: 60px;
  letter-spacing: 0.025em;
  color: #ffffff;
}
.teaser-list .copy-wrap h2:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 2px;
  background: #ffffff;
}
@media screen and (min-width: 48em) {
  .teaser-list .copy-wrap h2 {
    font-size: 75px;
  }
}
.teaser-list .button-wrap {
  position: relative;
  grid-row: 2;
  grid-column: 1;
  display: grid;
  align-items: center;
  align-self: center;
  grid-gap: 15px;
  padding: 20px 30px 40px 60px;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
}
.teaser-list .button-wrap .button {
  margin: 0px;
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (min-width: 29.25em) {
  .teaser-list .button-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 76.5em) {
  .teaser-list .button-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 60.5em) {
  .teaser-list {
    grid-template-columns: 1fr 1.15fr;
  }
  .teaser-list .image-wrap {
    position: relative;
    display: flex;
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .teaser-list .copy-wrap, .teaser-list .button-wrap {
    grid-row: 1;
  }
  .teaser-list .copy-wrap {
    grid-column: 1;
    padding: 40px 20px 40px 60px;
  }
  .teaser-list .button-wrap {
    grid-column: 2;
    padding: 40px 30px 40px 20px;
  }
}

.teaser-grid {
  position: relative;
  display: grid;
  grid-gap: 20px;
  padding: 0px 25px;
}
@media screen and (min-width: 48em) {
  .teaser-grid {
    padding: 0px 30px;
  }
}
.teaser-grid .block {
  position: relative;
  display: grid;
  padding: 5px;
}
.teaser-grid .block:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 0 0 60px;
  border-color: transparent transparent transparent #072946;
  position: absolute;
  left: 0px;
  bottom: 0px;
  transition: all 0.3s ease;
}
.teaser-grid .block .image-wrap, .teaser-grid .block .label-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.teaser-grid .block .image-wrap {
  width: 100%;
  height: 0px;
  overflow: hidden;
  min-height: 100%;
  padding-bottom: 150%;
}
.teaser-grid .block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.teaser-grid .block .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(7, 41, 70, 0.35);
  transition: all 0.3s ease;
}
.teaser-grid .block .label-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 40px 10px;
}
.teaser-grid .block .label-wrap span {
  position: relative;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  min-width: 75%;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  padding: 11px 20px 10px;
  background: #072946;
  transition: all 0.3s ease;
}
.teaser-grid .block:hover:after {
  border-color: transparent transparent transparent #3f6bb3;
  transform: translate(5px, -5px) translate3d(0, 0, 0);
}
.teaser-grid .block:hover .image-wrap:after {
  opacity: 0.5;
}
.teaser-grid .block:hover .label-wrap span {
  background: #3f6bb3;
}
@media screen and (min-width: 41.75em) {
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 64em) {
  .teaser-grid {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

.lesson-layout {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1460px;
  margin: 0px auto;
  padding: 0px 25px;
}
@media screen and (min-width: 48em) {
  .lesson-layout {
    padding: 0px 30px;
  }
}
.lesson-layout .sticky-sidebar {
  padding-top: 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
}
.lesson-layout__nav {
  position: relative;
  margin-bottom: 50px;
}
.lesson-layout__nav ol {
  position: relative;
  list-style-type: none;
  margin: 0px;
}
.lesson-layout__nav ol li {
  position: relative;
  counter-increment: step-counter;
  margin-bottom: 5px;
}
.lesson-layout__nav ol li a {
  position: relative;
  padding: 5px 0px;
  display: grid;
  grid: "number text" auto/auto 1fr;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #777777;
  transition: all 0.25s ease;
}
.lesson-layout__nav ol li a:before {
  content: counter(step-counter, decimal-leading-zero) ".";
  position: relative;
  grid-area: number;
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}
.lesson-layout__nav ol li a:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -15px;
  width: 5px;
  height: 35px;
  background: #3f6bb3;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.15s linear, color 0.25s ease;
}
.lesson-layout__nav ol li a:hover {
  color: #3f6bb3;
}
.lesson-layout__nav ol li a.current {
  color: #3f6bb3;
}
.lesson-layout__nav ol li a.current:after {
  transform: scaleY(1);
}
.lesson-layout__main {
  position: relative;
}
.lesson-layout__main .lesson-content {
  position: relative;
  display: grid;
  grid-row-gap: 30px;
  margin: 0px;
  list-style-type: none;
}
.lesson-layout__main .lesson-content > li {
  position: relative;
  counter-increment: step-counter;
  padding-top: 20px;
  display: grid;
  grid: "banner number" auto "content content" auto/1fr auto;
}
.lesson-layout__main .lesson-content > li:last-child {
  margin-bottom: calc(100vh - 50%);
}
.lesson-layout__main .lesson-content > li:before {
  content: counter(step-counter, decimal-leading-zero);
  position: relative;
  grid-area: number;
  display: flex;
  flex-flow: column;
  padding: 2px 20px 0px;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
  background: #3f6bb3;
}
.lesson-layout__main .lesson-content > li .title {
  grid-area: banner;
  position: relative;
  line-height: 1;
  padding: 0.5em 40px 0.375em 20px;
  font-size: 22px;
  background: #3f6bb3;
  margin: 0px;
}
.lesson-layout__main .lesson-content > li .title small {
  text-transform: capitalize;
  color: #ffffff;
  font-size: 70%;
}
.lesson-layout__main .lesson-content > li .title span {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 3px;
  height: 101%;
  transform: skew(-12deg);
  background: #ffffff;
}
.lesson-layout__main .lesson-content > li .title span:before, .lesson-layout__main .lesson-content > li .title span:after {
  content: "";
  position: absolute;
  top: 0px;
  width: 3px;
  height: 100%;
  background: #ffffff;
}
.lesson-layout__main .lesson-content > li .title span:before {
  left: -12px;
}
.lesson-layout__main .lesson-content > li .title span:after {
  left: 12px;
}
@media screen and (min-width: 48em) {
  .lesson-layout__main .lesson-content > li .title {
    font-size: 25px;
  }
}
@media screen and (min-width: 76.5em) {
  .lesson-layout__main .lesson-content > li .title {
    font-size: 28px;
  }
}
.lesson-layout__main .lesson-content.no-spacing-below > li:last-child {
  margin-bottom: 0;
}
.lesson-layout__main .copy-wrap {
  position: relative;
  grid-area: content;
  padding-top: 25px;
}
.lesson-layout__main .copy-wrap .list li > p {
  margin-bottom: 0px;
}
.lesson-layout__main .video-teaser {
  margin-top: 10px;
  grid-column: 2/-1;
}
.lesson-layout__main .icon-links {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-start;
  grid-gap: 20px;
  padding: 15px 0px;
  grid-column: 2;
}
.lesson-layout__main .end {
  position: relative;
  display: block;
  text-align: center;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #3f6bb3;
  padding-bottom: 40px;
}
.lesson-layout__sidebar {
  position: relative;
}
.lesson-layout__sidebar .block {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #c4c4c4;
}
.lesson-layout__sidebar .block:last-child {
  border-bottom: none;
}
.lesson-layout__sidebar .block__stat {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.lesson-layout__sidebar .block__stat .stat {
  font-family: "Champion Welterwt A", "Champion Welterwt B", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 70px;
  color: #3f6bb3;
}
.lesson-layout__sidebar .block__stat .stat--middle-and-high-school {
  font-size: 60px;
}
.lesson-layout__sidebar .block__stat .text {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #777777;
  text-transform: uppercase;
  position: relative;
  display: block;
  line-height: 1;
}
.lesson-layout__sidebar .block__buttons {
  position: relative;
  display: grid;
  grid-gap: 10px;
}
.lesson-layout__sidebar .block__buttons a, .lesson-layout__sidebar .block__buttons button {
  margin: 0px;
}
.lesson-layout__sidebar .block__details > div {
  padding-bottom: 20px;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #c09b57;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.25;
}
.lesson-layout__sidebar .block__details > div a:not(.button) {
  color: #c09b57;
  transition: all 0.25s ease;
}
.lesson-layout__sidebar .block__details > div a:not(.button):hover {
  color: #3f6bb3;
}
.lesson-layout__sidebar .block__details > div > span {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #777777;
  display: block;
  line-height: 1.25;
  margin-bottom: 2px;
}
.lesson-layout__sidebar .block__details > div .button {
  margin-top: 10px;
  margin-bottom: 0px;
  padding: 8px 20px 6px;
}
.lesson-layout__sidebar .block__details > div:last-child {
  padding-bottom: 0px;
}
@media screen and (min-width: 64em) {
  .lesson-layout {
    grid-template-columns: 210px 1fr 200px;
    grid-column-gap: 25px;
  }
  .lesson-layout__main .copy-wrap p, .lesson-layout__main .copy-wrap li {
    font-size: 20px;
    max-width: 100%;
  }
  .lesson-layout__main .copy-wrap li:before {
    top: 7px;
  }
}
@media screen and (min-width: 76.5em) {
  .lesson-layout {
    grid-template-columns: 240px 1fr 200px;
    grid-column-gap: 40px;
  }
}
.lesson-layout--preview .lesson-content > li:last-child {
  margin-bottom: 300px !important;
}
.lesson-layout--preview .preview-overlay {
  position: absolute;
  top: 300px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  padding-bottom: 200px;
}
.lesson-layout--preview .preview-overlay:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  display: block;
  width: 100%;
  height: 80px;
  background: white;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.lesson-layout--preview .preview-overlay__text-content {
  background: #ffffff;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  transform: translateY(-50px);
  padding: 40px;
  border: 1px solid #c3b58f;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 150px;
}
.lesson-layout .lesson-navigation-links {
  margin-bottom: calc(100vh - 50%);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lesson-layout .lesson-navigation-links.no-prev {
  justify-content: flex-end;
}
.lesson-layout .lesson-navigation {
  display: block;
  flex: 1;
  max-width: 50%;
}
.lesson-layout .lesson-navigation span.subhead {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  color: #1f1f1f;
}
.lesson-layout .lesson-navigation span.title {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}
.lesson-layout .lesson-navigation span.title:after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background-color: #3f6bb3;
  margin: 5px 0 13px;
}
.lesson-layout .lesson-navigation__next-lesson {
  text-align: right;
}
.lesson-layout .lesson-navigation__next-lesson span.title:after {
  margin: 5px 0 13px auto;
}

.icon-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.icon-link span {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  max-width: 200px;
  margin-left: 10px;
  color: #3f6bb3;
  transition: all 0.3s ease;
}
.icon-link svg {
  position: relative;
  height: 40px;
}
.icon-link svg path, .icon-link svg rect, .icon-link svg polygon {
  fill: #3f6bb3;
  transition: all 0.3s ease;
}
.icon-link.tall svg {
  height: 50px;
}
.icon-link:hover span {
  color: #c09b57;
}
.icon-link:hover svg path, .icon-link:hover svg rect, .icon-link:hover svg polygon {
  fill: #c09b57;
}

.video-teaser {
  position: relative;
  width: 100%;
}
.video-teaser__thumbnail {
  position: relative;
  display: grid;
  margin-bottom: 20px;
}
.video-teaser__thumbnail .copy-wrap, .video-teaser__thumbnail .image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.video-teaser__thumbnail .image-wrap {
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  min-height: 100%;
  overflow: hidden;
}
.video-teaser__thumbnail .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.video-teaser__thumbnail .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.video-teaser__thumbnail .copy-wrap {
  padding: 30px 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  justify-self: flex-end;
  transition: all 0.3s ease;
  max-width: 480px;
}
.video-teaser__thumbnail .copy-wrap h4.ul {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.video-teaser__thumbnail .copy-wrap .flyweight {
  font-size: 80px;
}
@media screen and (min-width: 64em) {
  .video-teaser__thumbnail .copy-wrap .flyweight {
    font-size: 90px;
  }
}
.video-teaser__thumbnail:hover .copy-wrap {
  transform: translateX(-10px);
}
.video-teaser__links {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-start;
  grid-gap: 20px;
  padding: 15px 0px;
}

.stat-teaser-grid {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 25px;
  display: grid;
  grid-gap: 30px;
}
@media screen and (min-width: 48em) {
  .stat-teaser-grid {
    padding: 0px 30px;
  }
}
.stat-teaser-grid .block {
  position: relative;
  display: grid;
}
.stat-teaser-grid .block .copy-wrap, .stat-teaser-grid .block .image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.stat-teaser-grid .block .image-wrap {
  width: 100%;
  height: 0px;
  padding-bottom: 75%;
  min-height: 100%;
  overflow: hidden;
}
.stat-teaser-grid .block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.stat-teaser-grid .block .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  transition: all 0.25s ease;
}
.stat-teaser-grid .block .copy-wrap {
  padding: 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.stat-teaser-grid .block .copy-wrap h4.ul {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.stat-teaser-grid .block .copy-wrap .flyweight {
  font-size: 80px;
}
@media screen and (min-width: 64em) {
  .stat-teaser-grid .block .copy-wrap .flyweight {
    font-size: 90px;
  }
}
.stat-teaser-grid .block .title-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 0px 60px;
}
.stat-teaser-grid .block .stat-wrap {
  position: relative;
  text-align: center;
  justify-self: flex-end;
  transition: all 0.25s ease;
}
.stat-teaser-grid .block .stat-wrap span {
  position: relative;
  display: block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #3f6bb3;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.stat-teaser-grid .block .stat-wrap .number {
  font-size: 60px;
  letter-spacing: -0.025em;
  line-height: 0.8;
}
.stat-teaser-grid .block .stat-wrap .text {
  font-size: 12px;
  letter-spacing: 0.05em;
  max-width: 130px;
}
.stat-teaser-grid .block .button-wrap {
  position: relative;
  justify-self: flex-end;
}
.stat-teaser-grid .block .button-wrap span {
  position: relative;
  display: flex;
  align-items: center;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #94acc4;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.stat-teaser-grid .block .button-wrap span:after {
  content: "";
  position: relative;
  height: 0px;
  margin-bottom: 1px;
  width: 0px;
  margin-left: 6px;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #94acc4;
  transition: all 0.25s ease;
}
.stat-teaser-grid .block:hover .stat-wrap {
  transform: translate(5px, -5px);
}
.stat-teaser-grid .block:hover .stat-wrap span {
  color: #94acc4;
}
.stat-teaser-grid .block:hover .image-wrap:after {
  background: rgba(7, 41, 70, 0.75);
}
.stat-teaser-grid .block:hover .button-wrap span::after {
  transform: translateX(5px);
}
.stat-teaser-grid--1-col {
  grid-template-columns: 1fr !important;
}
.stat-teaser-grid--1-col .block .image-wrap {
  padding-bottom: 40%;
}
.stat-teaser-grid--alt .block .copy-wrap {
  grid-template-rows: 1fr auto;
}
.stat-teaser-grid--alt .block .title-wrap {
  padding: 60px 0px 40px;
}
@media screen and (min-width: 48em) {
  .stat-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-teaser-grid--3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-teaser-grid--3-col .block:last-child {
    grid-column: 1/-1;
  }
  .stat-teaser-grid--3-col .block:last-child .image-wrap {
    padding-bottom: 40%;
  }
}
@media screen and (min-width: 54.25em) {
  .stat-teaser-grid--3-col {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-teaser-grid--3-col .block:last-child {
    grid-column: unset;
  }
  .stat-teaser-grid--3-col .block .image-wrap {
    padding-bottom: 115%;
  }
}

.feature-teaser-grid {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 25px;
  display: grid;
  grid-gap: 30px;
}
@media screen and (min-width: 48em) {
  .feature-teaser-grid {
    padding: 0px 30px;
  }
}
.feature-teaser-grid .block {
  position: relative;
  display: grid;
}
.feature-teaser-grid .block .copy-wrap, .feature-teaser-grid .block .image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.feature-teaser-grid .block .image-wrap {
  width: 100%;
  height: 0px;
  padding-bottom: 110%;
  min-height: 100%;
  overflow: hidden;
}
.feature-teaser-grid .block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.feature-teaser-grid .block .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  transition: all 0.25s ease;
}
.feature-teaser-grid .block .copy-wrap {
  padding: 30px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.feature-teaser-grid .block .copy-wrap h4.ul {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.feature-teaser-grid .block .copy-wrap .flyweight {
  font-size: 80px;
  text-transform: uppercase;
}
@media screen and (min-width: 64em) {
  .feature-teaser-grid .block .copy-wrap .flyweight {
    font-size: 90px;
  }
}
.feature-teaser-grid .block .copy-wrap p {
  max-width: 275px;
}
.feature-teaser-grid .block .copy-wrap .button-wrap {
  padding-top: 15px;
}
.feature-teaser-grid .block:hover .image-wrap:after {
  background: rgba(7, 41, 70, 0.75);
}
@media screen and (min-width: 54.25em) {
  .feature-teaser-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .feature-teaser-grid--2-col {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-teaser-grid {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 25px;
  display: grid;
  grid-gap: 30px;
}
@media screen and (min-width: 48em) {
  .faq-teaser-grid {
    padding: 0px 30px;
  }
}
.faq-teaser-grid .block {
  position: relative;
  display: grid;
}
.faq-teaser-grid .block .copy-wrap, .faq-teaser-grid .block .image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.faq-teaser-grid .block .image-wrap {
  width: 100%;
  height: 0px;
  padding-bottom: 110%;
  min-height: 100%;
  overflow: hidden;
}
.faq-teaser-grid .block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.faq-teaser-grid .block .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  transition: all 0.25s ease;
}
.faq-teaser-grid .block .copy-wrap {
  padding: 30px;
  display: grid;
  grid-template-rows: 1fr auto;
}
.faq-teaser-grid .block .copy-wrap h4.ul {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.faq-teaser-grid .block .copy-wrap .flyweight {
  font-size: 80px;
}
@media screen and (min-width: 64em) {
  .faq-teaser-grid .block .copy-wrap .flyweight {
    font-size: 90px;
  }
}
.faq-teaser-grid .block .title-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0px 0px 100px;
}
.faq-teaser-grid .block .stat-wrap {
  position: relative;
  text-align: center;
  justify-self: center;
  transition: all 0.25s ease;
  z-index: 1;
}
.faq-teaser-grid .block .stat-wrap span {
  position: relative;
  display: block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.faq-teaser-grid .block .stat-wrap .number {
  font-size: 75px;
  letter-spacing: -0.025em;
  line-height: 0.8;
  color: #ffffff;
}
@media screen and (min-width: 64em) {
  .faq-teaser-grid .block .stat-wrap .number {
    font-size: 95px;
  }
}
.faq-teaser-grid .block .stat-wrap .text {
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #3f6bb3;
}
.faq-teaser-grid .block:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0px;
  left: 0px;
  background: #c09b57;
  -webkit-clip-path: polygon(0px 10px, 50% 0px, 100% 10px, 100% 100%, 0px 100%);
          clip-path: polygon(0px 10px, 50% 0px, 100% 10px, 100% 100%, 0px 100%);
  transform-origin: bottom;
  transition: all 0.25s ease;
}
.faq-teaser-grid .block:hover .stat-wrap {
  transform: translateY(-5px);
}
.faq-teaser-grid .block:hover .stat-wrap span {
  color: #94acc4;
}
.faq-teaser-grid .block:hover .image-wrap:after {
  background: rgba(7, 41, 70, 0.75);
}
.faq-teaser-grid .block:hover .button-wrap span::after {
  transform: translateX(5px);
}
.faq-teaser-grid .block:hover:after {
  transform: scaleY(1.25);
}
.faq-teaser-grid--alt .block .image-wrap {
  padding-bottom: 70%;
}
.faq-teaser-grid--alt .block .copy-wrap {
  padding: 30px;
  display: grid;
  grid-template-rows: auto 1fr;
}
.faq-teaser-grid--alt .block .title-wrap, .faq-teaser-grid--alt .block .stat-wrap {
  padding: 0px 0px 80px;
}
@media screen and (min-width: 54.25em) {
  .faq-teaser-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .faq-teaser-grid--2-col {
    grid-template-columns: 1fr 1fr;
  }
}

.ribbon-teaser-grid {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 30px;
  padding: 0px 25px;
  display: grid;
  grid-gap: 30px;
}
.ribbon-teaser-grid .block {
  position: relative;
  display: grid;
  align-items: flex-end;
  -webkit-animation: fadeIn 0.25s ease-out 0s 1 forwards;
          animation: fadeIn 0.25s ease-out 0s 1 forwards;
}
.ribbon-teaser-grid .block .copy-wrap, .ribbon-teaser-grid .block .image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.ribbon-teaser-grid .block .image-wrap {
  width: 100%;
  height: 0px;
  padding-bottom: 120%;
  min-height: 100%;
  overflow: hidden;
}
.ribbon-teaser-grid .block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.ribbon-teaser-grid .block .copy-wrap {
  padding: 0px;
  display: grid;
  margin: 80px 0px 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.65);
  border-top: 5px solid #c3b58f;
  transition: all 0.25s ease;
}
.ribbon-teaser-grid .block .title-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 15px 20px 10px;
}
.ribbon-teaser-grid .block .title-wrap h2 {
  color: #ffffff;
  margin: 0px;
  line-height: 1.1;
}
.ribbon-teaser-grid .block .title-wrap h3 {
  color: #c3b58f;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0px;
  line-height: 1.1;
}
.ribbon-teaser-grid .block .ribbon-wrap {
  position: relative;
  display: grid;
  align-items: flex-end;
  grid-template-columns: 30px 1fr 30px;
  margin-bottom: -15px;
}
.ribbon-teaser-grid .block .ribbon-wrap span {
  grid-row: 1;
  grid-column: 2;
  position: relative;
  display: block;
  text-align: center;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  color: #1f1f1f;
  padding: 10px 15px 8px;
  background: #c3b58f;
}
.ribbon-teaser-grid .block .ribbon-wrap span:before, .ribbon-teaser-grid .block .ribbon-wrap span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
}
.ribbon-teaser-grid .block .ribbon-wrap span:before {
  bottom: -7px;
  left: 0px;
  border-width: 0 7px 7px 0;
  border-color: transparent #1f1f1f transparent transparent;
}
.ribbon-teaser-grid .block .ribbon-wrap span:after {
  bottom: -7px;
  right: 0px;
  border-width: 7px 7px 0 0;
  border-color: #1f1f1f transparent transparent transparent;
}
.ribbon-teaser-grid .block .ribbon-wrap:before, .ribbon-teaser-grid .block .ribbon-wrap:after {
  content: "";
  position: relative;
  width: calc(100% + 7px);
  height: 22px;
  background: #c3b58f;
  transform: translateY(7px);
}
.ribbon-teaser-grid .block .ribbon-wrap:before {
  grid-column: 1;
  left: 0px;
}
.ribbon-teaser-grid .block .ribbon-wrap:after {
  grid-column: 3;
  right: 7px;
}
.ribbon-teaser-grid .block:hover .copy-wrap {
  border-top-color: #3f6bb3;
  transform: translateY(-5px);
}
.ribbon-teaser-grid.list-view {
  grid-template-columns: 1fr !important;
  background: #1f1f1f;
}
.ribbon-teaser-grid.list-view .block {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-column-gap: 40px;
  align-items: center;
}
.ribbon-teaser-grid.list-view .block:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.25;
  left: 0;
  bottom: -15px;
}
.ribbon-teaser-grid.list-view .block .copy-wrap {
  display: grid;
  grid: "title button" auto "ribbon button" auto/1fr auto;
  grid-column: 2;
  grid-row: 1;
  margin: 0px;
  text-align: left;
  background: transparent;
  border-top: none;
}
.ribbon-teaser-grid.list-view .block .copy-wrap:after {
  content: "Learn More";
  grid-area: button;
  align-self: center;
  position: relative;
  display: inline-block;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 11px 25px 10px;
  color: #ffffff;
  background: #c09b57;
}
.ribbon-teaser-grid.list-view .block .copy-wrap .title-wrap {
  grid-area: title;
  text-align: left;
  background: transparent;
  border-top: none;
  padding: 0px;
}
.ribbon-teaser-grid.list-view .block .copy-wrap .title-wrap h2 {
  transition: all 0.25s ease;
}
.ribbon-teaser-grid.list-view .block .copy-wrap .title-wrap h3 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
}
.ribbon-teaser-grid.list-view .block .copy-wrap .title-wrap h3:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 60px;
  height: 3px;
  background: #e8e0cd;
}
.ribbon-teaser-grid.list-view .block .copy-wrap .ribbon-wrap {
  grid-area: ribbon;
  display: block;
  margin-bottom: 0px;
}
.ribbon-teaser-grid.list-view .block .copy-wrap .ribbon-wrap:before, .ribbon-teaser-grid.list-view .block .copy-wrap .ribbon-wrap:after {
  display: none;
}
.ribbon-teaser-grid.list-view .block .copy-wrap .ribbon-wrap span {
  text-align: left;
  display: block;
  color: #ffffff;
  font-size: 18px;
  background: transparent;
  padding: 0px;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
}
.ribbon-teaser-grid.list-view .block .copy-wrap .ribbon-wrap span:before, .ribbon-teaser-grid.list-view .block .copy-wrap .ribbon-wrap span:after {
  display: none;
}
.ribbon-teaser-grid.list-view .block:hover .copy-wrap {
  border-top-color: unset;
  transform: translateY(0px);
}
.ribbon-teaser-grid.list-view .block:hover .copy-wrap .title-wrap h2 {
  color: #c09b57;
}
@media screen and (min-width: 41.75em) {
  .ribbon-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 54.25em) {
  .ribbon-teaser-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 54.25em) {
  .ribbon-teaser-grid--2-up {
    grid-template-columns: 1fr 1fr;
  }
}
.ribbon-teaser-grid.is-loading .block {
  -webkit-animation: gridItemOut 0.25s ease-out 0s 1 forwards;
          animation: gridItemOut 0.25s ease-out 0s 1 forwards;
}

.recipient-toggle-buttons {
  width: calc(100% - 50px) !important;
  max-width: 1160px !important;
}
.recipient-toggle-buttons .button-wrap {
  position: relative;
  display: flex;
  margin: 0px -5px;
}
.recipient-toggle-buttons .button-wrap .button {
  margin: 5px;
}

.large-teaser {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 30px;
  padding: 0px 25px;
}
.large-teaser .block {
  position: relative;
  display: grid;
  border-left: 15px solid #3f6bb3;
}
.large-teaser .block .copy-wrap, .large-teaser .block .image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.large-teaser .block .image-wrap {
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  min-height: 100%;
  overflow: hidden;
}
.large-teaser .block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.large-teaser .block .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.large-teaser .block .copy-wrap {
  padding: 30px 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  justify-self: flex-end;
  transition: all 0.3s ease;
  max-width: 550px;
}
.large-teaser .block .copy-wrap h4.ul {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.large-teaser .block .copy-wrap .flyweight {
  font-size: 80px;
}
@media screen and (min-width: 64em) {
  .large-teaser .block .copy-wrap .flyweight {
    font-size: 90px;
  }
}
.large-teaser .block:hover .copy-wrap {
  transform: translateX(-10px);
}

.large-teaser-slider {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 30px;
  padding: 0px 25px;
  height: 100%;
}
.large-teaser-slider .arrow {
  position: absolute;
  top: 0px;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.large-teaser-slider .arrow button {
  width: 30px;
  outline: none;
  cursor: pointer;
}
.large-teaser-slider .arrow button svg {
  fill: #ffffff;
  transition: all 0.25s ease;
}
.large-teaser-slider .arrow button:hover svg {
  fill: #fb4348;
}
.large-teaser-slider .arrow--next {
  right: 40px;
}
.large-teaser-slider .arrow--prev {
  left: 40px;
  transform: scaleX(-1);
}
.large-teaser-slider * {
  min-width: 0px;
}
.large-teaser-slider .slick-list {
  height: 100%;
}
.large-teaser-slider .slick-track {
  height: 100%;
  display: flex;
}
.large-teaser-slider .slick-track .slick-slide {
  height: auto;
  min-height: 100%;
}
.large-teaser-slider .slick-track .slick-slide > div {
  height: 100%;
  min-height: 100%;
}
.large-teaser-slider .block {
  position: relative;
  display: grid !important;
  min-height: 100%;
  height: 100%;
}
.large-teaser-slider .block .copy-block, .large-teaser-slider .block .image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.large-teaser-slider .block .image-wrap {
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  min-height: 100%;
  overflow: hidden;
}
.large-teaser-slider .block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.large-teaser-slider .block .copy-block {
  position: relative;
  display: grid;
  width: 100%;
}
.large-teaser-slider .block .copy-block:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.large-teaser-slider .block .copy-wrap {
  position: relative;
  padding: 40px 60px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  justify-self: flex-end;
  transition: all 0.3s ease;
  max-width: 580px;
}
.large-teaser-slider .block .copy-wrap p {
  color: #ffffff;
}
.large-teaser-slider .block .copy-wrap h4.ul {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.large-teaser-slider .block .copy-wrap .button {
  margin-bottom: 0px;
}
.large-teaser-slider .block .copy-wrap .flyweight {
  font-size: 60px;
}
@media screen and (min-width: 48em) {
  .large-teaser-slider .block .copy-wrap .flyweight {
    font-size: 75px;
  }
}
@media screen and (min-width: 64em) {
  .large-teaser-slider .block .copy-wrap .flyweight {
    font-size: 90px;
  }
}

.callout-banner {
  position: relative;
  width: 100%;
  padding: 3px 0px;
  border-top: 4px solid #1d4277;
  border-bottom: 4px solid #1d4277;
  margin-bottom: 20px;
}
.callout-banner .copy-wrap {
  position: relative;
  text-align: center;
  background: repeating-linear-gradient(to right, #3f6bb3, #3f6bb3 2px, #3860a0 2px, #3860a0 4px);
}
.callout-banner .copy-wrap .title {
  margin-bottom: 0px;
  line-height: 1;
  padding: 20px 30px 25px;
  letter-spacing: 0.025em;
}
.callout-banner .button-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -15px;
}
.callout-banner .button-wrap a {
  margin: 0px;
}

.accordion-grid {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0px auto;
  padding: 0px 30px;
  padding: 0px 25px;
}
.accordion-grid .accordion {
  border-bottom: 1px solid #1f1f1f;
}
.accordion-grid .accordion-item.is-active .accordion-title {
  background: transparent;
}
.accordion-grid .accordion-item.is-active .accordion-title span:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.accordion-grid .accordion-title {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 25px;
  grid-gap: 20px;
  align-items: center;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #1f1f1f;
  border-color: #777777;
  border-bottom: none !important;
  padding-left: 20px;
  padding-right: 20px;
}
.accordion-grid .accordion-title:before {
  display: none;
}
.accordion-grid .accordion-title span {
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-grid .accordion-title span:before, .accordion-grid .accordion-title span:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #777777;
}
.accordion-grid .accordion-title span:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-grid .accordion-title span:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.175s ease;
}
@media screen and (min-width: 64em) {
  .accordion-grid .accordion-title {
    font-size: 22px;
  }
}
.accordion-grid .accordion-content {
  position: relative;
  border-top: none;
  border-bottom: none !important;
  border-color: #777777;
  padding-left: 20px;
  padding-right: 20px;
}
.accordion-grid .accordion-content:before {
  content: "";
  width: 160px;
  height: 1px;
  background: #777777;
  position: absolute;
  top: 0px;
  left: 20px;
}
.accordion-grid .accordion-content p {
  font-size: 18px;
  color: #1f1f1f;
}
.accordion-grid .accordion-content .list-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 20px 10px;
}
.accordion-grid .accordion-content .list-wrap .list {
  margin: 0px;
}
.accordion-grid.alt .accordion {
  border-bottom: none;
}
.accordion-grid.alt .accordion-item.is-active .accordion-title {
  background: #c09b57;
}
.accordion-grid.alt .accordion-item.is-active .accordion-title span:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.accordion-grid.alt .accordion-title {
  font-size: 16px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #3f6bb3;
  border: none !important;
}
.accordion-grid.alt .accordion-title:before {
  display: none;
}
.accordion-grid.alt .accordion-title span {
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-grid.alt .accordion-title span:before, .accordion-grid.alt .accordion-title span:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #ffffff;
}
.accordion-grid.alt .accordion-title span:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-grid.alt .accordion-title span:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.175s ease;
}
@media screen and (min-width: 64em) {
  .accordion-grid.alt .accordion-title {
    font-size: 20px;
  }
}
.accordion-grid.alt .accordion-content {
  border: none !important;
  background: #e8e0cd;
}
.accordion-grid.alt .accordion-content:before {
  display: none;
}
.accordion-grid.alt .accordion-content p, .accordion-grid.alt .accordion-content li {
  font-size: 18px;
  color: #4e544a;
}

.read-more-accordion {
  position: relative;
  width: 100%;
}
.read-more-accordion .accordion-item.is-active .accordion-title {
  background: transparent;
}
.read-more-accordion .accordion-item.is-active .accordion-title .text {
  color: rgba(192, 155, 87, 0);
  transition: all 0.15s linear;
}
.read-more-accordion .accordion-item.is-active .accordion-title .text:after {
  color: #c09b57;
  opacity: 1;
  transform: translateY(-100%);
  transition: all 0.25s ease;
}
.read-more-accordion .accordion-item.is-active .accordion-title .arrow {
  transform: scaleY(-1);
}
.read-more-accordion .accordion-item.is-active .accordion-title:hover .text:after {
  color: #3f6bb3;
}
.read-more-accordion .accordion-title {
  position: relative;
  background: transparent !important;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 10px;
  align-items: center;
  justify-content: flex-start;
  border: none !important;
  padding: 0px !important;
}
.read-more-accordion .accordion-title .text {
  position: relative;
  display: flex;
  flex-flow: column;
  color: #c09b57;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  padding: 0px;
  margin: 15px 0px 10px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.read-more-accordion .accordion-title .text:after {
  content: "Read Less";
  position: absolute;
  top: 100%;
  left: 0px;
  opacity: 0;
  transition: all 0.15s linear;
}
.read-more-accordion .accordion-title .arrow {
  position: relative;
  top: 1px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #c09b57 transparent transparent transparent;
  transition: all 0.25s ease;
}
.read-more-accordion .accordion-title:before {
  display: none;
}
.read-more-accordion .accordion-title:hover .text {
  color: #3f6bb3;
}
.read-more-accordion .accordion-title:hover .arrow {
  border-color: #3f6bb3 transparent transparent transparent;
}
.read-more-accordion .accordion-content {
  position: relative;
  border: none;
  border-bottom: none !important;
  padding: 10px 0px 20px;
}

.angle-title-bar {
  position: relative;
  width: 100%;
  max-width: 1220px;
  padding: 0px 30px;
  padding: 0px 25px;
  margin: 0px auto 30px;
}
.angle-title-bar .copy-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f1f;
  padding: 20px 20px 12px;
}
.angle-title-bar .copy-wrap:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: calc(100% + 10px);
  background: #3f6bb3;
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 10px, 50% 100%, 0px 10px);
          clip-path: polygon(0px 0px, 100% 0px, 100% 10px, 50% 100%, 0px 10px);
}
.angle-title-bar h2 {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  margin: 0px;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.025em;
}

.filter-bar {
  position: relative;
  padding: 0px;
  margin: 0px;
}
.filter-bar__content {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0px auto;
  padding: 0px 25px;
}
.filter-bar__content.mobile {
  display: block;
  padding: 0px 0px;
}
.filter-bar__content.desktop {
  display: none;
}
@media screen and (min-width: 64em) {
  .filter-bar__content.desktop {
    display: block;
  }
  .filter-bar__content.mobile {
    display: none;
  }
}
.filter-bar__form, .filter-bar__video-form {
  display: grid;
  grid-auto-flow: column;
  width: 100%;
}
.filter-bar__form input, .filter-bar__form select, .filter-bar__video-form input, .filter-bar__video-form select {
  border: none;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  outline: none;
  box-shadow: none;
  margin: 0px;
}
.filter-bar__form #search, .filter-bar__video-form #search {
  min-width: 225px;
  width: 100%;
}
.filter-bar__form input::-moz-placeholder, .filter-bar__video-form input::-moz-placeholder {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  color: #777777;
}
.filter-bar__form input:-ms-input-placeholder, .filter-bar__video-form input:-ms-input-placeholder {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  color: #777777;
}
.filter-bar__form input::placeholder, .filter-bar__video-form input::placeholder {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  color: #777777;
}
.filter-bar__form select, .filter-bar__video-form select {
  background: none;
  background: transparent;
  color: #ffffff;
  height: 100%;
  margin: 0px;
  width: 100%;
  padding: 0px 20px;
}
.filter-bar__form > .accordion, .filter-bar__video-form > .accordion {
  margin: 0px;
}
.filter-bar__form > .accordion > .accordion-item, .filter-bar__video-form > .accordion > .accordion-item {
  position: relative;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-title, .filter-bar__video-form > .accordion > .accordion-item > .accordion-title {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  display: flex;
  height: 65px;
  align-items: center;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-title:before, .filter-bar__video-form > .accordion > .accordion-item > .accordion-title:before {
  display: none;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-title .icon, .filter-bar__video-form > .accordion > .accordion-item > .accordion-title .icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-title .icon:before, .filter-bar__form > .accordion > .accordion-item > .accordion-title .icon:after, .filter-bar__video-form > .accordion > .accordion-item > .accordion-title .icon:before, .filter-bar__video-form > .accordion > .accordion-item > .accordion-title .icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffffff;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-title .icon:before, .filter-bar__video-form > .accordion > .accordion-item > .accordion-title .icon:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.filter-bar__form > .accordion > .accordion-item > .accordion-title .icon:after, .filter-bar__video-form > .accordion > .accordion-item > .accordion-title .icon:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.175s ease;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-content, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content {
  position: absolute;
  width: 100%;
  top: 100%;
  z-index: 90;
  transform-origin: center top;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-content .accordion-title, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content .accordion-title {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-content .accordion-title:before, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content .accordion-title:before {
  display: none;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-content .accordion-title .icon, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content .accordion-title .icon {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-content .accordion-title .icon:before, .filter-bar__form > .accordion > .accordion-item > .accordion-content .accordion-title .icon:after, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content .accordion-title .icon:before, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content .accordion-title .icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffffff;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-content .accordion-title .icon:before, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content .accordion-title .icon:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.filter-bar__form > .accordion > .accordion-item > .accordion-content .accordion-title .icon:after, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content .accordion-title .icon:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.175s ease;
}
.filter-bar__form > .accordion > .accordion-item > .accordion-content .is-active > .accordion-title .icon:after, .filter-bar__video-form > .accordion > .accordion-item > .accordion-content .is-active > .accordion-title .icon:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.filter-bar__form > .accordion > .accordion-item.is-active > .accordion-title .icon:after, .filter-bar__video-form > .accordion > .accordion-item.is-active > .accordion-title .icon:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.filter-bar__form > .accordion .block__search-wrap, .filter-bar__video-form > .accordion .block__search-wrap {
  position: relative;
  display: flex;
  flex-flow: row;
  align-items: center;
  width: 100%;
  padding-top: 20px;
}
.filter-bar__form > .accordion .block__search-wrap .block__search, .filter-bar__video-form > .accordion .block__search-wrap .block__search {
  flex: 1;
}
.filter-bar .dropdown-pane {
  background: #1f1f1f;
  outline: none;
  border: none;
  padding: 0px;
  /* Firefox */
}
.filter-bar .dropdown-pane .content {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 40px 30px;
}
.filter-bar .dropdown-pane button, .filter-bar .dropdown-pane a, .filter-bar .dropdown-pane p, .filter-bar .dropdown-pane li, .filter-bar .dropdown-pane input, .filter-bar .dropdown-pane label {
  color: #ffffff;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.filter-bar .dropdown-pane button, .filter-bar .dropdown-pane a {
  outline: none;
}
.filter-bar .dropdown-pane .ul-button {
  position: relative;
  display: inline-block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 5px 0px;
  cursor: pointer;
  letter-spacing: 0.025em;
  transition: all 0.25s ease;
}
.filter-bar .dropdown-pane .ul-button:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 2px;
  bottom: 0px;
  left: 0px;
  background: #3f6bb3;
  transition: all 0.25s ease;
}
.filter-bar .dropdown-pane .ul-button:hover {
  color: #3f6bb3;
}
.filter-bar .dropdown-pane .ul-button:hover:after {
  width: 100px;
}
.filter-bar .dropdown-pane .title {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.025em;
  padding: 5px 0px;
  margin: 0px;
  margin-bottom: 15px;
}
.filter-bar .dropdown-pane .title:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 2px;
  bottom: 0px;
  left: 0px;
  background: #ffffff;
}
.filter-bar .dropdown-pane .checkbox--list {
  position: relative;
  display: grid;
  width: 100%;
  grid-row-gap: 12px;
}
.filter-bar .dropdown-pane .checkbox--grid {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, 75px);
  grid-row-gap: 12px;
}
.filter-bar .dropdown-pane .checkbox--grid.wide {
  grid-template-columns: 1fr 1fr;
}
.filter-bar .dropdown-pane .pretty {
  margin-right: 0px;
  white-space: unset;
}
.filter-bar .dropdown-pane .pretty label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  grid-column-gap: 5px;
  text-indent: 0px;
}
.filter-bar .dropdown-pane .pretty label:before, .filter-bar .dropdown-pane .pretty label:after {
  top: 0px !important;
  grid-row: 1;
  grid-column: 1;
}
.filter-bar .dropdown-pane .pretty label:before {
  border-color: #ffffff;
  background: #ffffff;
}
.filter-bar .dropdown-pane .pretty label:after {
  transition: all 0.25s ease;
}
.filter-bar .dropdown-pane .pretty label span {
  position: relative;
  line-height: 1;
  font-size: 14px;
  padding: 2px 0px;
  grid-row: 1;
  grid-column: 2;
}
.filter-bar .dropdown-pane .pretty.p-default input:checked ~ .state label:after {
  background-color: #3f6bb3 !important;
}
.filter-bar .dropdown-pane.gray {
  background: #e6e6e6;
}
.filter-bar .dropdown-pane.gray button, .filter-bar .dropdown-pane.gray a, .filter-bar .dropdown-pane.gray p, .filter-bar .dropdown-pane.gray li, .filter-bar .dropdown-pane.gray input, .filter-bar .dropdown-pane.gray label {
  color: #1f1f1f;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.filter-bar .dropdown-pane.gray input[type=text] {
  background-color: transparent;
  border: 1px solid #cacaca;
}
.filter-bar .dropdown-pane.x-large {
  min-width: 600px;
}
.filter-bar .dropdown-pane .action-slider-input {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  height: auto;
  line-height: 1;
}
.filter-bar .dropdown-pane input::-webkit-outer-spin-button,
.filter-bar .dropdown-pane input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filter-bar .dropdown-pane input[type=number] {
  -moz-appearance: textfield;
}
.filter-bar .dropdown-pane .slider {
  margin-bottom: 0.5rem;
}
.filter-bar .dropdown-pane .slider .slider-handle {
  background: #e6e6e6;
  border: 2px solid #1f1f1f;
  border-radius: 50%;
  z-index: 4;
  transition: none;
}
.filter-bar .dropdown-pane .slider .slider-handle:focus, .filter-bar .dropdown-pane .slider .slider-handle:active {
  border-radius: 50%;
  border-color: #3f6bb3;
  outline: 0;
}
.filter-bar .dropdown-pane .slider .slider-fill {
  height: 2px;
  top: 3px;
  background: #1f1f1f;
  z-index: 3;
  transition: none;
}
.filter-bar .dropdown-pane .slider:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  background-color: #cacaca;
  height: 2px;
  z-index: 1;
}
.filter-bar .dropdown-pane .slider-date-ends {
  color: #8a8a8a;
  margin-bottom: 1rem;
}
.filter-bar .block {
  position: relative;
  display: flex;
  flex-flow: column;
}
.filter-bar .block__label, .filter-bar .block__separator {
  justify-content: center;
  color: #ffffff;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  padding-top: 4px;
}
.filter-bar .block__label {
  font-style: italic;
  padding-right: 30px;
  line-height: 1;
}
.filter-bar .block__label + .block__select {
  border-left: 1px solid #5f5f5f;
}
.filter-bar .block__separator {
  align-items: center;
  padding: 4px 20px 0px;
}
.filter-bar .block__reset {
  position: absolute;
  bottom: 100%;
  right: 0px;
  width: 150px;
  height: 30px;
  display: flex;
  z-index: 1;
}
.filter-bar .block__reset button {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 9px 10px;
  margin: 0px;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  line-height: 1.2;
  justify-content: space-between;
  background: #fb4348;
  outline: none;
  border-radius: 0px !important;
  transition: background 0.25s ease;
}
.filter-bar .block__reset button.filter-changing {
  cursor: wait !important;
}
.filter-bar .block__reset button span {
  position: absolute;
  top: 15px;
  right: 5px;
  font-size: 25px;
  line-height: 0;
  font-weight: 800;
}
.filter-bar .block__reset button:hover, .filter-bar .block__reset button:focus {
  background: #fa1117;
}
.filter-bar .block__select {
  height: 65px;
  border-right: 1px solid #5f5f5f;
}
.filter-bar .block__select--trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #ffffff;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  height: 100%;
  margin: 0px;
  padding: 0px 20px;
  padding-top: 2px;
  outline: none;
  z-index: 11;
  cursor: pointer;
  transition: all 0.25s ease;
}
@media screen and (min-width: 76.5em) {
  .filter-bar .block__select--trigger {
    font-size: 12px;
  }
}
.filter-bar .block__select--trigger:after {
  content: "";
  position: relative;
  margin-left: 10px;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #ffffff transparent transparent transparent;
  transition: all 0.25s ease;
}
.filter-bar .block__select--trigger:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -10px;
  border-style: solid;
  border-width: 16px 15px 0px 15px;
  border-color: #3f6bb3 transparent transparent transparent;
  transition: all 0.25s ease;
  transform-origin: top;
  transform: scaleY(0);
}
.filter-bar .block__select--trigger:hover {
  background: #072946;
}
.filter-bar .block__select--trigger.hover {
  background: #3f6bb3;
}
.filter-bar .block__select--trigger.hover:after {
  transform: scaleY(-1);
}
.filter-bar .block__select--trigger.hover:before {
  transform: scaleY(1);
}
.filter-bar .block__select__badge {
  position: absolute;
  top: 10px;
  right: 14px;
}
.filter-bar .block__select__badge span {
  position: relative;
  display: block;
  margin-top: -2px;
  z-index: 2;
  color: #ffffff;
}
.filter-bar .block__select__badge:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #3f6bb3;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  z-index: 1;
}
.filter-bar .block__search {
  justify-content: center;
}
.filter-bar--lessons, .filter-bar--citizens {
  background: #1f1f1f;
}
.filter-bar--lessons form, .filter-bar--citizens form {
  margin: 0px;
}
.filter-bar--lessons form #search, .filter-bar--citizens form #search {
  color: #1f1f1f;
  border: 1px solid #4e544a;
}
.filter-bar--lessons form input, .filter-bar--lessons form select, .filter-bar--citizens form input, .filter-bar--citizens form select {
  color: #1f1f1f;
}
.filter-bar--lessons form input::-moz-placeholder, .filter-bar--citizens form input::-moz-placeholder {
  color: #4e544a;
}
.filter-bar--lessons form input:-ms-input-placeholder, .filter-bar--citizens form input:-ms-input-placeholder {
  color: #4e544a;
}
.filter-bar--lessons form input::placeholder, .filter-bar--citizens form input::placeholder {
  color: #4e544a;
}
.filter-bar--lessons form button, .filter-bar--lessons form a, .filter-bar--lessons form p, .filter-bar--lessons form li, .filter-bar--lessons form input, .filter-bar--lessons form label, .filter-bar--citizens form button, .filter-bar--citizens form a, .filter-bar--citizens form p, .filter-bar--citizens form li, .filter-bar--citizens form input, .filter-bar--citizens form label {
  color: #1f1f1f;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.filter-bar--lessons form input[type=text], .filter-bar--citizens form input[type=text] {
  border: 1px solid #1f1f1f;
}
.filter-bar--lessons form .pretty, .filter-bar--citizens form .pretty {
  margin-right: 0px;
}
.filter-bar--lessons form .pretty label:before, .filter-bar--citizens form .pretty label:before {
  border-color: #1f1f1f;
}
.filter-bar--lessons form .select2.select2-container .select2-selection, .filter-bar--citizens form .select2.select2-container .select2-selection {
  background: transparent;
  border: 2px solid #8a8a8a;
  display: flex;
  align-items: center;
}
.filter-bar--lessons form .select2-container--foundation .select2-selection--single .select2-selection__rendered, .filter-bar--lessons form .select2-container--foundation .selection .select2-selection--single .select2-selection__rendered, .filter-bar--citizens form .select2-container--foundation .select2-selection--single .select2-selection__rendered, .filter-bar--citizens form .select2-container--foundation .selection .select2-selection--single .select2-selection__rendered {
  color: #4e544a;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 0px;
}
.filter-bar--lessons form .select2.select2-container .select2-selection, .filter-bar--citizens form .select2.select2-container .select2-selection {
  height: initial;
}
.filter-bar--lessons form .select2-container--foundation .select2-selection--multiple .select2-selection__choice, .filter-bar--citizens form .select2-container--foundation .select2-selection--multiple .select2-selection__choice {
  line-height: 1.55;
  padding-left: 0.55rem;
  padding-bottom: 0;
  padding-top: 6px;
  color: #ffffff;
  background: #072946;
  border: 0;
}
.filter-bar--lessons form .select2-container--foundation .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove, .filter-bar--citizens form .select2-container--foundation .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}
.filter-bar--lessons form .select2-selection__rendered, .filter-bar--citizens form .select2-selection__rendered {
  display: block !important;
}
.filter-bar--lessons form .checkbox--list, .filter-bar--citizens form .checkbox--list {
  position: relative;
  display: grid;
  width: 100%;
  grid-row-gap: 12px;
}
.filter-bar--lessons form .checkbox--grid, .filter-bar--citizens form .checkbox--grid {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, 75px);
  grid-row-gap: 12px;
}
.filter-bar--lessons form .checkbox--grid.wide, .filter-bar--citizens form .checkbox--grid.wide {
  grid-template-columns: 1fr 1fr;
}
.filter-bar--lessons form .pretty, .filter-bar--citizens form .pretty {
  margin-right: 0px;
  white-space: unset;
}
.filter-bar--lessons form .pretty label, .filter-bar--citizens form .pretty label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  grid-column-gap: 5px;
  text-indent: 0px;
}
.filter-bar--lessons form .pretty label:before, .filter-bar--lessons form .pretty label:after, .filter-bar--citizens form .pretty label:before, .filter-bar--citizens form .pretty label:after {
  top: 0px !important;
  grid-row: 1;
  grid-column: 1;
}
.filter-bar--lessons form .pretty label:before, .filter-bar--citizens form .pretty label:before {
  border-color: #ffffff;
  background: #ffffff;
}
.filter-bar--lessons form .pretty label:after, .filter-bar--citizens form .pretty label:after {
  transition: all 0.25s ease;
}
.filter-bar--lessons form .pretty label span, .filter-bar--citizens form .pretty label span {
  position: relative;
  line-height: 1;
  font-size: 14px;
  padding: 2px 0px;
  grid-row: 1;
  grid-column: 2;
}
.filter-bar--lessons form .pretty.p-default input:checked ~ .state label:after, .filter-bar--citizens form .pretty.p-default input:checked ~ .state label:after {
  background-color: #3f6bb3 !important;
}
.filter-bar--lessons form .pretty, .filter-bar--citizens form .pretty {
  margin-right: 0px;
}
.filter-bar--lessons form .pretty label:before, .filter-bar--citizens form .pretty label:before {
  border-color: #1f1f1f;
}
.filter-bar--lessons form .select2.select2-container .select2-selection, .filter-bar--citizens form .select2.select2-container .select2-selection {
  background: transparent;
  border: 2px solid #8a8a8a;
  display: flex;
  align-items: center;
}
.filter-bar--lessons form .select2-container--foundation .select2-selection--single .select2-selection__rendered, .filter-bar--lessons form .select2-container--foundation .selection .select2-selection--single .select2-selection__rendered, .filter-bar--citizens form .select2-container--foundation .select2-selection--single .select2-selection__rendered, .filter-bar--citizens form .select2-container--foundation .selection .select2-selection--single .select2-selection__rendered {
  color: #4e544a;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 0px;
}
.filter-bar--lessons form .select2.select2-container .select2-selection, .filter-bar--citizens form .select2.select2-container .select2-selection {
  height: initial;
}
.filter-bar--lessons form .select2-container--foundation .select2-selection--multiple .select2-selection__choice, .filter-bar--citizens form .select2-container--foundation .select2-selection--multiple .select2-selection__choice {
  line-height: 1.55;
  padding-left: 0.55rem;
  padding-bottom: 0;
  padding-top: 6px;
  color: #ffffff;
  background: #072946;
  border: 0;
}
.filter-bar--lessons form .select2-container--foundation .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove, .filter-bar--citizens form .select2-container--foundation .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}
.filter-bar--lessons form .select2-selection__rendered, .filter-bar--citizens form .select2-selection__rendered {
  display: block !important;
}
.filter-bar--lessons form > .accordion, .filter-bar--citizens form > .accordion {
  margin: 0px;
}
.filter-bar--lessons form > .accordion > .accordion-item, .filter-bar--citizens form > .accordion > .accordion-item {
  position: relative;
}
.filter-bar--lessons form > .accordion > .accordion-item > .accordion-title, .filter-bar--citizens form > .accordion > .accordion-item > .accordion-title {
  background: #1f1f1f;
  color: #ffffff;
  border: none;
  display: flex;
  padding: 0px 20px;
  justify-content: space-between;
}
.filter-bar--lessons form > .accordion > .accordion-item > .accordion-title .icon:before, .filter-bar--lessons form > .accordion > .accordion-item > .accordion-title .icon:after, .filter-bar--citizens form > .accordion > .accordion-item > .accordion-title .icon:before, .filter-bar--citizens form > .accordion > .accordion-item > .accordion-title .icon:after {
  background: #ffffff;
}
.filter-bar--lessons form > .accordion > .accordion-item > .accordion-title:hover, .filter-bar--citizens form > .accordion > .accordion-item > .accordion-title:hover {
  background: #072946;
}
.filter-bar--lessons form > .accordion > .accordion-item > .accordion-content, .filter-bar--citizens form > .accordion > .accordion-item > .accordion-content {
  background: #1d4277;
  border: none;
}
.filter-bar--lessons form > .accordion .accordion-content .accordion-title, .filter-bar--citizens form > .accordion .accordion-content .accordion-title {
  background: #072946;
  border: none;
  color: #ffffff;
  border-top: 2px solid #1d4277;
}
.filter-bar--lessons form > .accordion .accordion-content .accordion-title .icon:before, .filter-bar--lessons form > .accordion .accordion-content .accordion-title .icon:after, .filter-bar--citizens form > .accordion .accordion-content .accordion-title .icon:before, .filter-bar--citizens form > .accordion .accordion-content .accordion-title .icon:after {
  background: #ffffff;
}
.filter-bar--news {
  background: #1f1f1f;
}
.filter-bar--news #search {
  border-radius: 0px !important;
  padding: 5px 10px !important;
}
.filter-bar--news .block__select--trigger {
  background: transparent;
  border: none;
}
.filter-bar--news .block__select--trigger:hover {
  background: #072946;
}
.filter-bar--news .block__select--trigger.hover {
  background: #3f6bb3;
}
.filter-bar--recipients {
  background: #ffffff;
  width: calc(100% - 50px) !important;
  max-width: 1160px !important;
}
@media screen and (min-width: 64em) {
  .filter-bar--recipients {
    border: 1px solid #777777;
  }
}
.filter-bar--recipients .filter-bar__content {
  padding-left: 0px;
}
.filter-bar--recipients .filter-bar__content.mobile .block__living-button {
  align-items: center;
  margin-top: 20px;
  margin-left: 0px;
}
.filter-bar--recipients .filter-bar__content.mobile .block__living-button button {
  margin: 0px;
  padding: 11px 15px 10px;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.filter-bar--recipients .select-wrap {
  position: relative;
  display: grid;
  grid-auto-flow: column;
}
.filter-bar--recipients .dropdown-pane {
  background: #e6e6e6;
  max-height: 360px;
  overflow-y: scroll;
}
.filter-bar--recipients .dropdown-pane.dropdown-all-filters {
  max-height: initial;
  overflow-y: initial;
}
.filter-bar--recipients .dropdown-pane button, .filter-bar--recipients .dropdown-pane a, .filter-bar--recipients .dropdown-pane p, .filter-bar--recipients .dropdown-pane li, .filter-bar--recipients .dropdown-pane input, .filter-bar--recipients .dropdown-pane label {
  color: #1f1f1f;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.filter-bar--recipients .dropdown-pane input[type=text] {
  border: 1px solid #1f1f1f;
}
.filter-bar--recipients .dropdown-pane .pretty {
  margin-right: 0px;
}
.filter-bar--recipients .dropdown-pane .pretty label:before {
  border-color: #1f1f1f;
}
.filter-bar--recipients .dropdown-pane .select2.select2-container .select2-selection {
  background: transparent;
  border: 2px solid #8a8a8a;
  display: flex;
  align-items: center;
}
.filter-bar--recipients .dropdown-pane .select2-container--foundation .select2-selection--single .select2-selection__rendered, .filter-bar--recipients .dropdown-pane .select2-container--foundation .selection .select2-selection--single .select2-selection__rendered {
  color: #4e544a;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 0px;
}
.filter-bar--recipients .dropdown-pane .select2.select2-container .select2-selection {
  height: initial;
}
.filter-bar--recipients .dropdown-pane .select2-container--foundation .select2-selection--multiple .select2-selection__choice {
  line-height: 1.55;
  padding-left: 0.55rem;
  padding-bottom: 0;
  padding-top: 6px;
  color: #ffffff;
  background: #072946;
  border: 0;
}
.filter-bar--recipients .dropdown-pane .select2-container--foundation .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}
.filter-bar--recipients .dropdown-pane .select2-selection__rendered {
  display: block !important;
}
.filter-bar--recipients form {
  margin: 0px;
}
.filter-bar--recipients form #search {
  color: #1f1f1f;
  border: 1px solid #4e544a;
}
.filter-bar--recipients form input, .filter-bar--recipients form select {
  color: #1f1f1f;
}
.filter-bar--recipients form input::-moz-placeholder {
  color: #4e544a;
}
.filter-bar--recipients form input:-ms-input-placeholder {
  color: #4e544a;
}
.filter-bar--recipients form input::placeholder {
  color: #4e544a;
}
.filter-bar--recipients form button, .filter-bar--recipients form a, .filter-bar--recipients form p, .filter-bar--recipients form li, .filter-bar--recipients form input, .filter-bar--recipients form label {
  color: #1f1f1f;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.filter-bar--recipients form input[type=text] {
  border: 1px solid #1f1f1f;
}
.filter-bar--recipients form .pretty {
  margin-right: 0px;
}
.filter-bar--recipients form .pretty label:before {
  border-color: #1f1f1f;
}
.filter-bar--recipients form .select2.select2-container .select2-selection {
  background: transparent;
  border: 2px solid #8a8a8a;
  display: flex;
  align-items: center;
}
.filter-bar--recipients form .select2-container--foundation .select2-selection--single .select2-selection__rendered, .filter-bar--recipients form .select2-container--foundation .selection .select2-selection--single .select2-selection__rendered {
  color: #4e544a;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 0px;
}
.filter-bar--recipients form .select2.select2-container .select2-selection {
  height: initial;
}
.filter-bar--recipients form .select2-container--foundation .select2-selection--multiple .select2-selection__choice {
  line-height: 1.55;
  padding-left: 0.55rem;
  padding-bottom: 0;
  padding-top: 6px;
  color: #ffffff;
  background: #072946;
  border: 0;
}
.filter-bar--recipients form .select2-container--foundation .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}
.filter-bar--recipients form .select2-selection__rendered {
  display: block !important;
}
.filter-bar--recipients form .checkbox--list {
  position: relative;
  display: grid;
  width: 100%;
  grid-row-gap: 12px;
}
.filter-bar--recipients form .checkbox--grid {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, 75px);
  grid-row-gap: 12px;
}
.filter-bar--recipients form .checkbox--grid.wide {
  grid-template-columns: 1fr 1fr;
}
.filter-bar--recipients form .pretty {
  margin-right: 0px;
  white-space: unset;
}
.filter-bar--recipients form .pretty label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  grid-column-gap: 5px;
  text-indent: 0px;
}
.filter-bar--recipients form .pretty label:before, .filter-bar--recipients form .pretty label:after {
  top: 0px !important;
  grid-row: 1;
  grid-column: 1;
}
.filter-bar--recipients form .pretty label:before {
  border-color: #ffffff;
  background: #ffffff;
}
.filter-bar--recipients form .pretty label:after {
  transition: all 0.25s ease;
}
.filter-bar--recipients form .pretty label span {
  position: relative;
  line-height: 1;
  font-size: 14px;
  padding: 2px 0px;
  grid-row: 1;
  grid-column: 2;
}
.filter-bar--recipients form .pretty.p-default input:checked ~ .state label:after {
  background-color: #3f6bb3 !important;
}
.filter-bar--recipients form .pretty {
  margin-right: 0px;
}
.filter-bar--recipients form .pretty label:before {
  border-color: #1f1f1f;
}
.filter-bar--recipients form .select2.select2-container .select2-selection {
  background: transparent;
  border: 2px solid #8a8a8a;
  display: flex;
  align-items: center;
}
.filter-bar--recipients form .select2-container--foundation .select2-selection--single .select2-selection__rendered, .filter-bar--recipients form .select2-container--foundation .selection .select2-selection--single .select2-selection__rendered {
  color: #4e544a;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 0px;
}
.filter-bar--recipients form .select2.select2-container .select2-selection {
  height: initial;
}
.filter-bar--recipients form .select2-container--foundation .select2-selection--multiple .select2-selection__choice {
  line-height: 1.55;
  padding-left: 0.55rem;
  padding-bottom: 0;
  padding-top: 6px;
  color: #ffffff;
  background: #072946;
  border: 0;
}
.filter-bar--recipients form .select2-container--foundation .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}
.filter-bar--recipients form .select2-selection__rendered {
  display: block !important;
}
.filter-bar--recipients form > .accordion {
  margin: 0px;
}
.filter-bar--recipients form > .accordion > .accordion-item {
  position: relative;
  border: 1px solid #1f1f1f;
}
.filter-bar--recipients form > .accordion > .accordion-item > .accordion-title {
  color: #1f1f1f;
  border: none;
  display: flex;
  padding: 0px 20px;
  justify-content: space-between;
}
.filter-bar--recipients form > .accordion > .accordion-item > .accordion-title .icon:before, .filter-bar--recipients form > .accordion > .accordion-item > .accordion-title .icon:after {
  background: #1f1f1f;
}
.filter-bar--recipients form > .accordion > .accordion-item > .accordion-content {
  top: calc(100% + 1px);
}
.filter-bar--recipients .block__label {
  color: #1f1f1f;
}
.filter-bar--recipients .block__separator {
  color: #1f1f1f;
}
.filter-bar--recipients .block__select {
  border-right: 1px solid #777777;
}
.filter-bar--recipients .block__select.view-all {
  border-right: none;
}
.filter-bar--recipients .block__select.view-all .block__select--trigger:after {
  display: none;
}
.filter-bar--recipients .block__select--trigger {
  color: #4e544a;
}
.filter-bar--recipients .block__select--trigger:after {
  border-top-color: #4e544a;
}
.filter-bar--recipients .block__select--trigger:before {
  border-color: #c3b58f transparent transparent transparent;
}
.filter-bar--recipients .block__select--trigger:hover {
  background: #e8e0cd;
}
.filter-bar--recipients .block__select--trigger.hover {
  background: #c3b58f;
}
.filter-bar--recipients .block__select__badge:after {
  background-color: #c3b58f;
}
.filter-bar--recipients .block__living-button {
  justify-content: center;
  margin-left: 20px;
}
.filter-bar--recipients .block__living-button button {
  margin: 0px;
  padding: 11px 15px 10px;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.filter-bar--citizen-honors {
  background: #3f6bb3;
}
.filter-bar--citizen-honors .block__select__badge:after {
  background: #1d4277;
}
.filter-bar--citizen-honors .block__label {
  font-style: italic;
  padding-right: 30px;
}
.filter-bar--citizen-honors .block__label + .block__select {
  border-left: 1px solid #ffffff;
}
.filter-bar--citizen-honors .block__select {
  height: 65px;
  border-right: 1px solid #ffffff;
}
.filter-bar--citizen-honors .block__select--trigger:before {
  border-color: #1d4277 transparent transparent transparent;
}
.filter-bar--citizen-honors .block__select--trigger:hover {
  background: #072946;
}
.filter-bar--citizen-honors .block__select--trigger.hover {
  background: #1d4277;
}
.filter-bar--video {
  position: relative;
  border: 1px solid #1f1f1f;
}
.filter-bar--video .filter-bar__content {
  padding: 0px 20px;
}
.filter-bar--video form {
  margin: 0px !important;
  display: flex;
  flex-flow: row;
}
.filter-bar--video form .selects, .filter-bar--video form .end-wrap {
  position: relative;
  display: flex;
  flex-flow: row;
}
.filter-bar--video form .selects {
  flex: 1;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 15px;
}
.filter-bar--video .block__select {
  border-right: none;
  position: relative;
}
.filter-bar--video .block__separator {
  padding: 4px 10px 0px;
  color: #1f1f1f;
}
.filter-bar--video .block__search input {
  height: 35px;
  border-radius: 0px;
  border: 1px solid #1f1f1f;
  color: #1f1f1f;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 200px;
}
.filter-bar--video .block__search input::-moz-placeholder {
  color: #1f1f1f;
}
.filter-bar--video .block__search input:-ms-input-placeholder {
  color: #1f1f1f;
}
.filter-bar--video .block__search input::placeholder {
  color: #1f1f1f;
}
.filter-bar--video .go-wrap {
  position: relative;
  display: flex;
  flex-flow: row;
  align-items: center;
}
.filter-bar--video .go-wrap input {
  height: 35px;
  padding: 0px 15px;
  background: #3f6bb3;
  color: #ffffff;
  font-weight: bolder;
  border: none;
  border-radius: 0px;
  margin-left: -10px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-bar--video .go-wrap input:hover, .filter-bar--video .go-wrap input:focus {
  background: #fb4348;
}
.filter-bar--video .select-wrap {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
}
.filter-bar--video .select-wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -3px;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #3f6bb3 transparent transparent transparent;
}
.filter-bar--video select {
  position: relative;
  height: 35px;
  border: 1px solid #1f1f1f;
  background: #ffffff;
  color: #1f1f1f;
  padding: 0px 25px 0px 10px;
  text-overflow: ellipsis;
}
.filter-bar--video select option {
  color: #1f1f1f;
}
@media screen and (max-width: 768px) {
  .filter-bar--video form {
    display: grid;
    grid-auto-flow: unset;
  }
  .filter-bar--video form .selects {
    flex-flow: column;
  }
  .filter-bar--video .go-wrap {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
  }
  .filter-bar--video .go-wrap input {
    margin-left: 0px;
  }
}
@media screen and (max-width: 968px) {
  .filter-bar--video .filter-bar__content {
    padding: 20px;
  }
  .filter-bar--video form {
    display: grid;
    grid-auto-flow: unset;
    row-gap: 20px;
  }
  .filter-bar--video .block__select {
    height: auto;
  }
  .filter-bar--video .block__select.first {
    flex: 1;
  }
  .filter-bar--video .block__search {
    flex: 1;
  }
}

.video-filter-wrap {
  position: relative;
  max-width: 1280px;
  margin: auto;
  padding: 0px 30px;
}

.video-grid-wrap {
  position: relative;
  max-width: 1280px;
  margin: auto;
  padding: 0px 30px;
}

.video-library-grid {
  position: relative;
  display: grid;
  grid-row-gap: 35px;
  grid-column-gap: 20px;
}
.video-library-grid .block {
  position: relative;
  display: flex;
  flex-flow: column;
}
.video-library-grid .block .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 20px;
}
.video-library-grid .block .image-wrap > div {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}
.video-library-grid .block .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(63, 107, 179, 0.85);
  opacity: 0;
  transition: all 0.35s ease;
}
.video-library-grid .block .image-wrap:before {
  content: "Watch Video";
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #ffffff;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}
.video-library-grid .block button {
  border: none;
}
.video-library-grid .block:hover .image-wrap:after, .video-library-grid .block:focus .image-wrap:after {
  opacity: 1;
}
.video-library-grid .block:hover .image-wrap:before, .video-library-grid .block:focus .image-wrap:before {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (min-width: 48em) {
  .video-library-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 76.5em) {
  .video-library-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.empty-results {
  grid-column-end: span 3;
  text-align: center;
}

.ul-button-bar {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0px auto;
  padding: 20px 0px;
  display: flex;
  justify-content: flex-end;
}
.ul-button-bar .button-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 15px;
  grid-column-gap: 20px;
  padding: 0px 30px;
  padding: 0px 25px;
}
.ul-button-bar .button-wrap a {
  position: relative;
  padding: 5px 2px;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #777777;
  transition: all 0.25s ease;
}
.ul-button-bar .button-wrap a:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: #3f6bb3;
}
.ul-button-bar .button-wrap a:hover {
  color: #3f6bb3;
}

.cmohs-grid, .lessons-grid {
  position: relative;
  width: 100%;
  max-width: 1220px;
  padding: 0px 30px;
  padding: 0px 25px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 60px;
  grid-column-gap: 30px;
}
.cmohs-grid .block, .lessons-grid .block {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.cmohs-grid .block article, .lessons-grid .block article {
  max-width: 400px;
}
.cmohs-grid .block article > a, .lessons-grid .block article > a {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  -webkit-animation: fadeIn 0.25s ease-out 0s 1 forwards;
          animation: fadeIn 0.25s ease-out 0s 1 forwards;
}
.cmohs-grid .block article > a h3, .lessons-grid .block article > a h3 {
  color: #777777;
  transition: all 0.25s ease;
}
.cmohs-grid .block article > a h3 small, .lessons-grid .block article > a h3 small {
  display: block;
  font-size: 12px;
  line-height: 1;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.45em;
}
.cmohs-grid .block article > a p, .cmohs-grid .block article > a strong, .cmohs-grid .block article > a span, .lessons-grid .block article > a p, .lessons-grid .block article > a strong, .lessons-grid .block article > a span {
  color: #777777 !important;
  max-width: 350px;
}
.cmohs-grid .block article > a .button-wrap, .lessons-grid .block article > a .button-wrap {
  padding-top: 15px;
}
.cmohs-grid .block article > a:hover h3, .lessons-grid .block article > a:hover h3 {
  color: #3f6bb3;
}
@media screen and (min-width: 48em) {
  .cmohs-grid, .lessons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .cmohs-grid, .lessons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cmohs-grid.is-loading article > a, .lessons-grid.is-loading article > a {
  -webkit-animation: gridItemOut 0.25s ease-out 0s 1 forwards;
          animation: gridItemOut 0.25s ease-out 0s 1 forwards;
}

.citizen-honors-grid .block article > a, .citizen-honors-grid .block article > div, .educator-awards-grid .block article > a, .educator-awards-grid .block article > div {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.citizen-honors-grid .block article > a h3, .citizen-honors-grid .block article > div h3, .educator-awards-grid .block article > a h3, .educator-awards-grid .block article > div h3 {
  color: #777777;
  font-size: 24px;
  transition: all 0.25s ease;
}
.citizen-honors-grid .block article > a h3 small, .citizen-honors-grid .block article > div h3 small, .educator-awards-grid .block article > a h3 small, .educator-awards-grid .block article > div h3 small {
  display: block;
  font-size: 12px;
  line-height: 1;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.45em;
}
.citizen-honors-grid .block article > a h3.ul, .citizen-honors-grid .block article > div h3.ul, .educator-awards-grid .block article > a h3.ul, .educator-awards-grid .block article > div h3.ul {
  margin-bottom: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 48em) {
  .citizen-honors-grid .block article > a h3, .citizen-honors-grid .block article > div h3, .educator-awards-grid .block article > a h3, .educator-awards-grid .block article > div h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 64em) {
  .citizen-honors-grid .block article > a h3, .citizen-honors-grid .block article > div h3, .educator-awards-grid .block article > a h3, .educator-awards-grid .block article > div h3 {
    font-size: 32px;
  }
}
.citizen-honors-grid .block article > a p, .citizen-honors-grid .block article > a strong, .citizen-honors-grid .block article > a span, .citizen-honors-grid .block article > div p, .citizen-honors-grid .block article > div strong, .citizen-honors-grid .block article > div span, .educator-awards-grid .block article > a p, .educator-awards-grid .block article > a strong, .educator-awards-grid .block article > a span, .educator-awards-grid .block article > div p, .educator-awards-grid .block article > div strong, .educator-awards-grid .block article > div span {
  color: #777777 !important;
  max-width: 350px;
}
.citizen-honors-grid .block article > a .button-wrap, .citizen-honors-grid .block article > div .button-wrap, .educator-awards-grid .block article > a .button-wrap, .educator-awards-grid .block article > div .button-wrap {
  padding-top: 15px;
}
.citizen-honors-grid .block article > a:hover h3, .citizen-honors-grid .block article > div:hover h3, .educator-awards-grid .block article > a:hover h3, .educator-awards-grid .block article > div:hover h3 {
  color: #3f6bb3;
}
.citizen-honors-grid .block article > a .school-name, .citizen-honors-grid .block article > div .school-name, .educator-awards-grid .block article > a .school-name, .educator-awards-grid .block article > div .school-name {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0;
}

.cmohs-pagination .lessons-pagination, .cmohs-pagination .pagination {
  position: relative;
  margin-top: 80px;
  padding: 0px 30px;
  padding: 0px 25px;
  display: flex;
  justify-content: center;
}
.cmohs-pagination .lessons-pagination .pagination, .cmohs-pagination .lessons-pagination .page-numbers, .cmohs-pagination .pagination .pagination, .cmohs-pagination .pagination .page-numbers {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  margin: 0px;
  list-style: none;
}
.cmohs-pagination .lessons-pagination .pagination span.page-link, .cmohs-pagination .lessons-pagination .pagination a, .cmohs-pagination .lessons-pagination .pagination li a, .cmohs-pagination .lessons-pagination .pagination li a.page-numbers, .cmohs-pagination .lessons-pagination .page-numbers span.page-link, .cmohs-pagination .lessons-pagination .page-numbers a, .cmohs-pagination .lessons-pagination .page-numbers li a, .cmohs-pagination .lessons-pagination .page-numbers li a.page-numbers, .cmohs-pagination .pagination .pagination span.page-link, .cmohs-pagination .pagination .pagination a, .cmohs-pagination .pagination .pagination li a, .cmohs-pagination .pagination .pagination li a.page-numbers, .cmohs-pagination .pagination .page-numbers span.page-link, .cmohs-pagination .pagination .page-numbers a, .cmohs-pagination .pagination .page-numbers li a, .cmohs-pagination .pagination .page-numbers li a.page-numbers {
  position: relative;
  display: block;
  padding: 7px 10px;
}
.cmohs-pagination .lessons-pagination .pagination span.page-link:after, .cmohs-pagination .lessons-pagination .pagination a:after, .cmohs-pagination .lessons-pagination .pagination li a:after, .cmohs-pagination .lessons-pagination .pagination li a.page-numbers:after, .cmohs-pagination .lessons-pagination .page-numbers span.page-link:after, .cmohs-pagination .lessons-pagination .page-numbers a:after, .cmohs-pagination .lessons-pagination .page-numbers li a:after, .cmohs-pagination .lessons-pagination .page-numbers li a.page-numbers:after, .cmohs-pagination .pagination .pagination span.page-link:after, .cmohs-pagination .pagination .pagination a:after, .cmohs-pagination .pagination .pagination li a:after, .cmohs-pagination .pagination .pagination li a.page-numbers:after, .cmohs-pagination .pagination .page-numbers span.page-link:after, .cmohs-pagination .pagination .page-numbers a:after, .cmohs-pagination .pagination .page-numbers li a:after, .cmohs-pagination .pagination .page-numbers li a.page-numbers:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -13px;
  width: 26px;
  height: 3px;
  bottom: 0px;
  background: #c4c4c4;
  transition: all 0.25s ease;
}
.cmohs-pagination .lessons-pagination .pagination a, .cmohs-pagination .lessons-pagination .pagination li a, .cmohs-pagination .lessons-pagination .page-numbers a, .cmohs-pagination .lessons-pagination .page-numbers li a, .cmohs-pagination .pagination .pagination a, .cmohs-pagination .pagination .pagination li a, .cmohs-pagination .pagination .page-numbers a, .cmohs-pagination .pagination .page-numbers li a {
  transition: all 0.25s ease;
}
.cmohs-pagination .lessons-pagination .pagination a:hover, .cmohs-pagination .lessons-pagination .pagination li a:hover, .cmohs-pagination .lessons-pagination .page-numbers a:hover, .cmohs-pagination .lessons-pagination .page-numbers li a:hover, .cmohs-pagination .pagination .pagination a:hover, .cmohs-pagination .pagination .pagination li a:hover, .cmohs-pagination .pagination .page-numbers a:hover, .cmohs-pagination .pagination .page-numbers li a:hover {
  color: #3f6bb3;
  background-color: transparent;
  background: transparent;
}
.cmohs-pagination .lessons-pagination .pagination a:hover:after, .cmohs-pagination .lessons-pagination .pagination li a:hover:after, .cmohs-pagination .lessons-pagination .page-numbers a:hover:after, .cmohs-pagination .lessons-pagination .page-numbers li a:hover:after, .cmohs-pagination .pagination .pagination a:hover:after, .cmohs-pagination .pagination .pagination li a:hover:after, .cmohs-pagination .pagination .page-numbers a:hover:after, .cmohs-pagination .pagination .page-numbers li a:hover:after {
  background: #3f6bb3;
}
.cmohs-pagination .lessons-pagination .pagination li, .cmohs-pagination .lessons-pagination .pagination .page-item, .cmohs-pagination .lessons-pagination .pagination .current, .cmohs-pagination .lessons-pagination .page-numbers li, .cmohs-pagination .lessons-pagination .page-numbers .page-item, .cmohs-pagination .lessons-pagination .page-numbers .current, .cmohs-pagination .pagination .pagination li, .cmohs-pagination .pagination .pagination .page-item, .cmohs-pagination .pagination .pagination .current, .cmohs-pagination .pagination .page-numbers li, .cmohs-pagination .pagination .page-numbers .page-item, .cmohs-pagination .pagination .page-numbers .current {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0px;
  min-width: 36px;
  line-height: 1;
  font-size: 16px;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #777777;
}
.cmohs-pagination .lessons-pagination .pagination li:first-child, .cmohs-pagination .lessons-pagination .pagination li:last-child, .cmohs-pagination .lessons-pagination .pagination .page-item:first-child, .cmohs-pagination .lessons-pagination .pagination .page-item:last-child, .cmohs-pagination .lessons-pagination .pagination .current:first-child, .cmohs-pagination .lessons-pagination .pagination .current:last-child, .cmohs-pagination .lessons-pagination .page-numbers li:first-child, .cmohs-pagination .lessons-pagination .page-numbers li:last-child, .cmohs-pagination .lessons-pagination .page-numbers .page-item:first-child, .cmohs-pagination .lessons-pagination .page-numbers .page-item:last-child, .cmohs-pagination .lessons-pagination .page-numbers .current:first-child, .cmohs-pagination .lessons-pagination .page-numbers .current:last-child, .cmohs-pagination .pagination .pagination li:first-child, .cmohs-pagination .pagination .pagination li:last-child, .cmohs-pagination .pagination .pagination .page-item:first-child, .cmohs-pagination .pagination .pagination .page-item:last-child, .cmohs-pagination .pagination .pagination .current:first-child, .cmohs-pagination .pagination .pagination .current:last-child, .cmohs-pagination .pagination .page-numbers li:first-child, .cmohs-pagination .pagination .page-numbers li:last-child, .cmohs-pagination .pagination .page-numbers .page-item:first-child, .cmohs-pagination .pagination .page-numbers .page-item:last-child, .cmohs-pagination .pagination .page-numbers .current:first-child, .cmohs-pagination .pagination .page-numbers .current:last-child {
  font-size: 28px;
}
.cmohs-pagination .lessons-pagination .pagination li:first-child span:after, .cmohs-pagination .lessons-pagination .pagination li:first-child a:after, .cmohs-pagination .lessons-pagination .pagination li:last-child span:after, .cmohs-pagination .lessons-pagination .pagination li:last-child a:after, .cmohs-pagination .lessons-pagination .pagination .page-item:first-child span:after, .cmohs-pagination .lessons-pagination .pagination .page-item:first-child a:after, .cmohs-pagination .lessons-pagination .pagination .page-item:last-child span:after, .cmohs-pagination .lessons-pagination .pagination .page-item:last-child a:after, .cmohs-pagination .lessons-pagination .pagination .current:first-child span:after, .cmohs-pagination .lessons-pagination .pagination .current:first-child a:after, .cmohs-pagination .lessons-pagination .pagination .current:last-child span:after, .cmohs-pagination .lessons-pagination .pagination .current:last-child a:after, .cmohs-pagination .lessons-pagination .page-numbers li:first-child span:after, .cmohs-pagination .lessons-pagination .page-numbers li:first-child a:after, .cmohs-pagination .lessons-pagination .page-numbers li:last-child span:after, .cmohs-pagination .lessons-pagination .page-numbers li:last-child a:after, .cmohs-pagination .lessons-pagination .page-numbers .page-item:first-child span:after, .cmohs-pagination .lessons-pagination .page-numbers .page-item:first-child a:after, .cmohs-pagination .lessons-pagination .page-numbers .page-item:last-child span:after, .cmohs-pagination .lessons-pagination .page-numbers .page-item:last-child a:after, .cmohs-pagination .lessons-pagination .page-numbers .current:first-child span:after, .cmohs-pagination .lessons-pagination .page-numbers .current:first-child a:after, .cmohs-pagination .lessons-pagination .page-numbers .current:last-child span:after, .cmohs-pagination .lessons-pagination .page-numbers .current:last-child a:after, .cmohs-pagination .pagination .pagination li:first-child span:after, .cmohs-pagination .pagination .pagination li:first-child a:after, .cmohs-pagination .pagination .pagination li:last-child span:after, .cmohs-pagination .pagination .pagination li:last-child a:after, .cmohs-pagination .pagination .pagination .page-item:first-child span:after, .cmohs-pagination .pagination .pagination .page-item:first-child a:after, .cmohs-pagination .pagination .pagination .page-item:last-child span:after, .cmohs-pagination .pagination .pagination .page-item:last-child a:after, .cmohs-pagination .pagination .pagination .current:first-child span:after, .cmohs-pagination .pagination .pagination .current:first-child a:after, .cmohs-pagination .pagination .pagination .current:last-child span:after, .cmohs-pagination .pagination .pagination .current:last-child a:after, .cmohs-pagination .pagination .page-numbers li:first-child span:after, .cmohs-pagination .pagination .page-numbers li:first-child a:after, .cmohs-pagination .pagination .page-numbers li:last-child span:after, .cmohs-pagination .pagination .page-numbers li:last-child a:after, .cmohs-pagination .pagination .page-numbers .page-item:first-child span:after, .cmohs-pagination .pagination .page-numbers .page-item:first-child a:after, .cmohs-pagination .pagination .page-numbers .page-item:last-child span:after, .cmohs-pagination .pagination .page-numbers .page-item:last-child a:after, .cmohs-pagination .pagination .page-numbers .current:first-child span:after, .cmohs-pagination .pagination .page-numbers .current:first-child a:after, .cmohs-pagination .pagination .page-numbers .current:last-child span:after, .cmohs-pagination .pagination .page-numbers .current:last-child a:after {
  display: none;
}
.cmohs-pagination .lessons-pagination .pagination li.active a, .cmohs-pagination .lessons-pagination .pagination li.active span, .cmohs-pagination .lessons-pagination .pagination .page-item.active a, .cmohs-pagination .lessons-pagination .pagination .page-item.active span, .cmohs-pagination .lessons-pagination .pagination .current.active a, .cmohs-pagination .lessons-pagination .pagination .current.active span, .cmohs-pagination .lessons-pagination .page-numbers li.active a, .cmohs-pagination .lessons-pagination .page-numbers li.active span, .cmohs-pagination .lessons-pagination .page-numbers .page-item.active a, .cmohs-pagination .lessons-pagination .page-numbers .page-item.active span, .cmohs-pagination .lessons-pagination .page-numbers .current.active a, .cmohs-pagination .lessons-pagination .page-numbers .current.active span, .cmohs-pagination .pagination .pagination li.active a, .cmohs-pagination .pagination .pagination li.active span, .cmohs-pagination .pagination .pagination .page-item.active a, .cmohs-pagination .pagination .pagination .page-item.active span, .cmohs-pagination .pagination .pagination .current.active a, .cmohs-pagination .pagination .pagination .current.active span, .cmohs-pagination .pagination .page-numbers li.active a, .cmohs-pagination .pagination .page-numbers li.active span, .cmohs-pagination .pagination .page-numbers .page-item.active a, .cmohs-pagination .pagination .page-numbers .page-item.active span, .cmohs-pagination .pagination .page-numbers .current.active a, .cmohs-pagination .pagination .page-numbers .current.active span {
  color: #3f6bb3;
}
.cmohs-pagination .lessons-pagination .pagination li.active a:after, .cmohs-pagination .lessons-pagination .pagination li.active span:after, .cmohs-pagination .lessons-pagination .pagination .page-item.active a:after, .cmohs-pagination .lessons-pagination .pagination .page-item.active span:after, .cmohs-pagination .lessons-pagination .pagination .current.active a:after, .cmohs-pagination .lessons-pagination .pagination .current.active span:after, .cmohs-pagination .lessons-pagination .page-numbers li.active a:after, .cmohs-pagination .lessons-pagination .page-numbers li.active span:after, .cmohs-pagination .lessons-pagination .page-numbers .page-item.active a:after, .cmohs-pagination .lessons-pagination .page-numbers .page-item.active span:after, .cmohs-pagination .lessons-pagination .page-numbers .current.active a:after, .cmohs-pagination .lessons-pagination .page-numbers .current.active span:after, .cmohs-pagination .pagination .pagination li.active a:after, .cmohs-pagination .pagination .pagination li.active span:after, .cmohs-pagination .pagination .pagination .page-item.active a:after, .cmohs-pagination .pagination .pagination .page-item.active span:after, .cmohs-pagination .pagination .pagination .current.active a:after, .cmohs-pagination .pagination .pagination .current.active span:after, .cmohs-pagination .pagination .page-numbers li.active a:after, .cmohs-pagination .pagination .page-numbers li.active span:after, .cmohs-pagination .pagination .page-numbers .page-item.active a:after, .cmohs-pagination .pagination .page-numbers .page-item.active span:after, .cmohs-pagination .pagination .page-numbers .current.active a:after, .cmohs-pagination .pagination .page-numbers .current.active span:after {
  background: #3f6bb3;
}
.cmohs-pagination .lessons-pagination .pagination li span.current, .cmohs-pagination .lessons-pagination .pagination .page-item span.current, .cmohs-pagination .lessons-pagination .pagination .current span.current, .cmohs-pagination .lessons-pagination .page-numbers li span.current, .cmohs-pagination .lessons-pagination .page-numbers .page-item span.current, .cmohs-pagination .lessons-pagination .page-numbers .current span.current, .cmohs-pagination .pagination .pagination li span.current, .cmohs-pagination .pagination .pagination .page-item span.current, .cmohs-pagination .pagination .pagination .current span.current, .cmohs-pagination .pagination .page-numbers li span.current, .cmohs-pagination .pagination .page-numbers .page-item span.current, .cmohs-pagination .pagination .page-numbers .current span.current {
  color: #3f6bb3;
}
.cmohs-pagination .lessons-pagination .pagination li span.current:after, .cmohs-pagination .lessons-pagination .pagination .page-item span.current:after, .cmohs-pagination .lessons-pagination .pagination .current span.current:after, .cmohs-pagination .lessons-pagination .page-numbers li span.current:after, .cmohs-pagination .lessons-pagination .page-numbers .page-item span.current:after, .cmohs-pagination .lessons-pagination .page-numbers .current span.current:after, .cmohs-pagination .pagination .pagination li span.current:after, .cmohs-pagination .pagination .pagination .page-item span.current:after, .cmohs-pagination .pagination .pagination .current span.current:after, .cmohs-pagination .pagination .page-numbers li span.current:after, .cmohs-pagination .pagination .page-numbers .page-item span.current:after, .cmohs-pagination .pagination .page-numbers .current span.current:after {
  background: #3f6bb3;
}

.page-nav-bar {
  top: 0px;
  width: 100%;
  max-width: 100% !important;
  background: #3f6bb3;
  z-index: 10;
}
.page-nav-bar nav {
  position: relative;
  display: flex;
  justify-content: center;
}
.page-nav-bar .desktop {
  display: none;
  position: relative;
  margin: 0px;
  min-height: 60px;
  list-style-type: none;
}
.page-nav-bar .desktop a:not(.button) {
  position: relative;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 20px 15px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.025em;
  color: #ffffff;
  min-height: 100%;
}
@media screen and (min-width: 70.25em) {
  .page-nav-bar .desktop a:not(.button) {
    font-size: 13px;
  }
}
.page-nav-bar .desktop .button {
  margin: 0px;
  padding: 11px 15px 10px;
}
.page-nav-bar .desktop .button-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 10px;
  align-items: center;
  padding-left: 30px;
}
.page-nav-bar .desktop li {
  border-left: 1px solid #ffffff;
}
.page-nav-bar .mobile {
  display: block;
  width: 100%;
  margin-bottom: 0px;
}
.page-nav-bar .mobile .accordion-title {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 25px;
  grid-gap: 20px;
  align-items: center;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  background: #3f6bb3;
  border: none !important;
  padding-left: 20px;
  padding-right: 20px;
}
.page-nav-bar .mobile .accordion-title:before {
  display: none;
}
.page-nav-bar .mobile .accordion-title span {
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-nav-bar .mobile .accordion-title span:before, .page-nav-bar .mobile .accordion-title span:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #ffffff;
}
.page-nav-bar .mobile .accordion-title span:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-nav-bar .mobile .accordion-title span:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.175s ease;
}
.page-nav-bar .mobile .accordion-item.is-active .accordion-title span:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.page-nav-bar .mobile .accordion-content {
  position: absolute;
  width: 100%;
  background: #1d4277;
  border: none !important;
  z-index: 9;
  padding: 30px 25px 20px;
}
.page-nav-bar .mobile .accordion-content ul {
  list-style-type: none;
  margin: 0px;
}
.page-nav-bar .mobile .accordion-content li {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.page-nav-bar .mobile .accordion-content li a:not(.button) {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.075em;
  transition: all 0.25s ease;
}
.page-nav-bar .mobile .accordion-content li a:not(.button):hover {
  color: #7194cd;
}
.page-nav-bar .mobile .accordion-content li .button {
  margin-bottom: 0px;
}
.page-nav-bar .mobile .accordion-content .button-wrap {
  padding-top: 10px;
  font-size: 0px;
  display: flex;
  flex-flow: row wrap;
}
.page-nav-bar .mobile .accordion-content .button-wrap .button {
  margin-right: 10px;
}
@media screen and (min-width: 64em) {
  .page-nav-bar .desktop {
    display: flex;
  }
  .page-nav-bar .mobile {
    display: none;
  }
}

.programs-grid {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.programs-grid--alt h2, .programs-grid--alt h3 {
  line-height: 1.2;
}
.programs-grid--alt h2 small, .programs-grid--alt h3 small {
  position: relative;
  display: block;
  line-height: 1;
  margin-top: 0.25em;
  font-size: 78.5%;
  color: #777777;
}
.programs-grid .block {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.programs-grid .block article {
  max-width: 400px;
  margin-bottom: 40px;
}
.programs-grid .block article > a {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.programs-grid .block article > a h3 {
  color: #777777;
  transition: all 0.25s ease;
}
.programs-grid .block article > a p, .programs-grid .block article > a strong, .programs-grid .block article > a span {
  color: #777777 !important;
  max-width: 350px;
}
.programs-grid .block article > a .button-wrap {
  padding-top: 15px;
}
.programs-grid .block article > a:hover h3 {
  color: #3f6bb3;
}
.programs-grid .block .icon-link {
  text-align: left;
  margin: 0px auto;
  align-items: center;
  color: #3f6bb3;
  cursor: pointer;
}
.programs-grid .block .icon-link span {
  font-size: 18px;
  color: #3f6bb3 !important;
}
.programs-grid .block .icon-link:hover span {
  color: #c09b57 !important;
}
@media screen and (min-width: 48em) {
  .programs-grid .block {
    flex: 0 1 50%;
  }
  .programs-grid--dense .block {
    flex: 0 1 33.33%;
  }
  .programs-grid--alt .block {
    flex: 0 1 40%;
  }
}

.board-grid {
  position: relative;
  display: grid;
  width: 100%;
  grid-gap: 40px;
  max-width: 1060px;
  margin: 0px auto;
}
.board-grid .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 110%;
  overflow: hidden;
  margin-bottom: 20px;
}
.board-grid .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.board-grid .block {
  position: relative;
  display: flex;
  flex-flow: column;
}
.board-grid .block h2 {
  font-family: "Champion Bantamwt A", "Champion Bantamwt B", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  color: #4e544a;
  margin: 0px;
}
.board-grid .block h3 {
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #c09b57;
  margin: 0px 0px 5px;
}
.board-grid .block p, .board-grid .block a {
  font-size: 18px;
  line-height: 1.2;
}
.board-grid .block a {
  color: #3f6bb3;
  font-size: 18px;
}
.board-grid .block a:hover {
  color: #072946;
}
@media screen and (min-width: 48em) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .board-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
  }
  .board-grid .block .copy-wrap {
    max-width: 300px;
  }
  .board-grid .block h2 {
    font-size: 55px;
  }
}

.foundation-layout {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1460px;
  margin: 0px auto;
  padding: 0px 30px;
  padding: 0px 25px;
}
.foundation-layout__title {
  position: relative;
  display: block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  color: #4e544a;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #4e544a;
}
.foundation-layout__title.short-ul {
  border-bottom: none;
}
.foundation-layout__title.short-ul:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 130px;
  height: 1px;
  background: #dddddd;
}
.foundation-layout q {
  position: relative;
  display: block;
  font-size: 22px;
  color: #4e544a;
  line-height: 1.2;
}
.foundation-layout--main, .foundation-layout--sidebar {
  position: relative;
}
@media screen and (min-width: 60.5em) {
  .foundation-layout {
    grid-template-columns: 1fr auto;
    grid-gap: 50px;
  }
  .foundation-layout--sidebar nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
  }
  .foundation-layout--sidebar nav li a {
    font-weight: 700;
    color: #3f6bb3;
  }
  .foundation-layout--sidebar nav li a:hover {
    color: #c09b57;
  }
}

.resources-layout {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 30px;
  padding: 0px 25px;
}
.resources-layout__title {
  position: relative;
  display: block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  color: #3f6bb3;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #3f6bb3;
}
.resources-layout--main, .resources-layout--sidebar {
  position: relative;
}
.resources-layout .copy-block {
  position: relative;
  padding: 0px 0px 30px;
}
.resources-layout .list--links {
  position: relative;
  list-style-type: none;
  margin: 0px;
}
.resources-layout .list--links li {
  position: relative;
  display: block;
  margin: 10px 0px 15px;
}
.resources-layout .list--links a:not(.button) {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.025em;
  line-height: 1;
  padding: 5px 0px;
  text-transform: uppercase;
  color: #4e544a;
}
.resources-layout .list--links a:not(.button):hover {
  color: #3f6bb3;
}
.resources-layout .button-wrap {
  position: relative;
  padding-top: 10px;
  padding-bottom: 15px;
  margin: 0px -5px;
}
.resources-layout .button-wrap .button {
  position: relative;
  display: inline-block;
  margin: 5px;
}
@media screen and (min-width: 60.5em) {
  .resources-layout {
    grid-template-columns: auto auto;
    grid-gap: 50px;
    justify-content: space-evenly;
  }
  .resources-layout--main, .resources-layout--sidebar {
    max-width: 420px;
  }
  .resources-layout--sidebar nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
  }
  .resources-layout--sidebar nav li a {
    font-weight: 700;
    color: #3f6bb3;
  }
  .resources-layout--sidebar nav li a:hover {
    color: #c09b57;
  }
}

.ed-donors {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 30px;
  padding: 0px 25px;
  text-align: center;
}
.ed-donors__title {
  position: relative;
  display: inline-block;
  max-width: 520px;
  margin: 0px auto;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.025em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #3f6bb3;
}
.ed-donors__title:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  background: #3f6bb3;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.ed-donors__grid {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.ed-donors__grid > div {
  position: relative;
  flex: 0 1 50%;
  padding: 10px;
}
@media screen and (min-width: 41.75em) {
  .ed-donors__grid > div {
    flex: 0 1 33.33%;
  }
}
@media screen and (min-width: 48em) {
  .ed-donors__grid > div {
    flex: 0 1 25%;
  }
}
@media screen and (min-width: 60.5em) {
  .ed-donors__grid > div {
    flex: 0 1 20%;
  }
}

.timeline {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 10px auto;
  overflow: hidden;
}
.timeline .title {
  font-family: "Champion Bantamwt A", "Champion Bantamwt B", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10vw;
  text-transform: uppercase;
  line-height: 0.75;
  padding-top: 0.15em;
  display: block;
  color: #f1f1f2;
}
.timeline .content {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1fr;
}
.timeline .intro-wrap {
  position: relative;
}
.timeline .intro-wrap:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #1f1f1f;
  position: absolute;
  top: 0px;
  left: 0px;
}
.timeline .intro-wrap .copy-wrap {
  position: relative;
  padding: 70px 30px 50px;
  max-width: 400px;
  margin: 0px auto;
}
.timeline .slider-wrap {
  position: relative;
  display: grid;
  grid-template-rows: 70px auto;
}
.timeline--controls {
  position: relative;
  display: grid;
  justify-content: flex-end;
  align-items: center;
  grid-auto-flow: column;
  grid-column-gap: 15px;
  padding: 0px 20px;
  width: 100%;
  height: 70px;
}
.timeline--controls:before {
  content: "";
  width: 1px;
  height: 70px;
  background: #1f1f1f;
  position: absolute;
  top: 0px;
  left: 0px;
}
.timeline--controls:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #1f1f1f;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.timeline--controls .arrow {
  position: relative;
  display: flex;
  align-items: center;
}
.timeline--controls .arrow button {
  outline: none;
  position: relative;
  display: flex;
  cursor: pointer;
}
.timeline--controls .arrow button span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 22px;
  border-color: transparent transparent transparent #3f6bb3;
  transition: all 0.25s ease;
}
.timeline--controls .arrow button.slick-prev {
  transform: scaleX(-1);
}
.timeline--controls .arrow button:hover span {
  border-left-color: #c09b57;
}
.timeline--controls .arrow.slick-disabled {
  opacity: 0.5;
}
.timeline--controls .arrow.slick-disabled button {
  cursor: default;
  pointer-events: none;
}
.timeline--slider {
  position: relative;
  display: flex;
  min-width: 0px;
}
.timeline--slider * {
  min-width: 0px;
}
.timeline--slider .slick-track {
  position: relative;
  display: flex;
  height: 100%;
}
.timeline--slider .slick-slide {
  position: relative;
  display: flex !important;
  flex-flow: column;
  flex: 1;
  min-height: 100% !important;
  height: auto !important;
}
.timeline--slider .slick-slide > div {
  position: relative;
  display: flex !important;
  flex-flow: column;
  flex: 1;
  min-height: 100% !important;
  height: auto !important;
}
.timeline--slider .slick-slide:nth-child(odd) > div {
  justify-content: flex-end;
}
.timeline--slider .slide {
  position: relative;
  display: flex !important;
  flex-flow: column;
  padding: 70px 20px 30px;
}
.timeline--slider .slide .border {
  position: absolute;
  left: 50%;
  height: calc(100% + 70px);
  bottom: calc(100% - 50px);
  width: 1px;
  background: #1f1f1f;
}
.timeline--slider .slide .border:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: black;
  bottom: 0px;
  left: -3px;
}
.timeline--slider .slide .title-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid #1f1f1f;
}
.timeline--slider .slide .title-wrap span {
  display: block;
  position: relative;
}
.timeline--slider .slide .title-wrap span.day {
  display: grid;
  grid-template-columns: 45px 1fr 45px;
  grid-column-gap: 15px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 1;
  color: #3f6bb3;
  max-width: 240px;
  margin: 0px auto;
}
.timeline--slider .slide .title-wrap span.day:before {
  content: "";
  grid-row: 1;
  grid-column: 1;
  width: 45px;
  height: 20px;
  background-image: url("/images/public/icon-wing.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.timeline--slider .slide .title-wrap span.day:after {
  content: "";
  grid-row: 1;
  grid-column: 3;
  width: 45px;
  height: 20px;
  background-image: url("/images/public/icon-wing.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}
.timeline--slider .slide .title-wrap span.year {
  position: relative;
  text-align: center;
  font-family: "Champion Welterwt A", "Champion Welterwt B", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 80px;
  color: #1f1f1f;
  line-height: 1.1;
  padding-top: 5px;
}
.timeline--slider .slide .title-wrap span.year.sm {
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .timeline .content {
    grid-template-columns: 1fr;
  }
  .timeline .title {
    font-size: 100px;
  }
  .timeline .intro-wrap .copy-wrap {
    max-width: 600px;
  }
}

.content-sidebar {
  position: relative;
  display: grid;
  grid: "main" auto "sidebar" auto "teasers" auto/1fr;
  width: calc(100% - 60px);
  max-width: 1280px;
  padding: 0px 30px;
  padding: 0px 25px;
  margin-left: auto;
  margin-right: auto;
}
.content-sidebar__title {
  position: relative;
  display: block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  color: #4e544a;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #4e544a;
}
.content-sidebar__title.short-ul {
  border-bottom: none;
}
.content-sidebar__title.short-ul:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 130px;
  height: 1px;
  background: #dddddd;
}
.content-sidebar__title-bar {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #4e544a;
}
.content-sidebar__title-bar h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px;
  color: #4e544a;
  letter-spacing: 0.025em;
}
.content-sidebar__title-bar a {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 1;
  color: #4e544a;
}
.content-sidebar__title-bar a:visited {
  color: #4e544a;
}
.content-sidebar__title-bar a:hover {
  color: #3f6bb3;
}
.content-sidebar__title-bar-single {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 8px;
  margin-bottom: 20px;
  margin-right: 30px;
  border-bottom: 1px solid #4e544a;
}
.content-sidebar__title-bar-single span {
  position: relative;
  display: inline-block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px;
  color: #4e544a;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.025em;
}
.content-sidebar__title-bar-single a {
  color: #3f6bb3;
}
.content-sidebar__title-bar-single a:visited {
  color: #3f6bb3;
}
.content-sidebar__title-bar-single a:hover {
  color: #1d4277;
}
.content-sidebar .block {
  position: relative;
}
.content-sidebar .block__main {
  grid-area: main;
  display: flex;
  flex-flow: column;
}
.content-sidebar .block__sidebar {
  grid-area: sidebar;
  display: flex;
  flex-flow: column;
}
.content-sidebar .block__teasers {
  grid-area: teasers;
  display: flex;
  flex-flow: column;
}
.content-sidebar .block__title {
  grid-area: title;
}
.content-sidebar .block__title--date {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-sidebar .block__title__title {
  flex-grow: 1;
  flex-shrink: 1;
}
.content-sidebar .block__title__date {
  flex-grow: 0;
  flex-shrink: 1;
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  transform: translateY(-12px);
  margin-right: 15px;
}
.content-sidebar .block__title__date span {
  position: relative;
  display: block;
  line-height: 1;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #3f6bb3;
  text-transform: uppercase;
}
.content-sidebar .block__title__date .day {
  font-size: 38px;
  margin-bottom: -0.05em;
}
.content-sidebar .block__title__date .month {
  font-size: 18px;
  margin-top: -0.05em;
}
.content-sidebar .sidebar-block {
  position: relative;
  margin-bottom: 40px;
}
.content-sidebar .lessons-grid {
  padding: 0px;
}
.content-sidebar .title-copy {
  position: relative;
  padding: 0px 0px 50px;
}
.content-sidebar .title-copy h1.flyweight {
  font-size: 60px;
  letter-spacing: 0.015em;
  margin-bottom: 0px;
}
@media screen and (min-width: 48em) {
  .content-sidebar .title-copy h1.flyweight {
    font-size: 75px;
  }
}
@media screen and (min-width: 64em) {
  .content-sidebar .title-copy h1.flyweight {
    font-size: 90px;
  }
}
.content-sidebar .title-copy h5 {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
}
.content-sidebar .title-copy h5 span {
  position: relative;
  display: inline-block;
  padding: 0px 10px;
}
.content-sidebar--overlap .block__main {
  background: #ffffff;
  padding: 40px 30px;
}
.content-sidebar--news-single {
  grid: "title" auto "main" auto "sidebar" auto "teasers" auto/1fr;
}
.content-sidebar--news-single .upcoming {
  position: relative;
  display: inline-block;
  padding: 5px 10px 3px;
  margin-bottom: 8px;
  background: #fb4348;
  color: #ffffff;
  line-height: 1;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 64em) {
  .content-sidebar {
    grid: "main sidebar" auto "teasers teasers" auto/1fr 320px;
    grid-column-gap: 40px;
  }
  .content-sidebar--overlap .block__main {
    padding: 40px;
  }
  .content-sidebar--overlap .block__sidebar {
    padding-top: 30px;
  }
  .content-sidebar--overlap .block__teasers {
    padding-left: 40px;
  }
  .content-sidebar--news {
    grid-column-gap: 40px !important;
  }
  .content-sidebar--news-single {
    grid: "title x" auto "main sidebar" auto "teasers teasers" auto/1fr 320px;
  }
}
@media screen and (min-width: 76.5em) {
  .content-sidebar {
    grid-column-gap: 80px;
  }
}
.content-sidebar .copy-wrap p:first-of-type > img {
  min-width: 100%;
}

.gallery-thumb-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.gallery-thumb-grid a {
  position: relative;
  display: block;
  font-size: 0px;
  overflow: hidden;
}
.gallery-thumb-grid a img {
  position: relative;
  display: block;
  width: 100%;
}
.gallery-thumb-grid a:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #1d4277;
  opacity: 0;
  transition: all 0.25s ease;
}
.gallery-thumb-grid a:hover:after {
  opacity: 0.75;
}

.video-thumb-grid {
  position: relative;
  display: grid;
  grid-gap: 20px;
}
.video-thumb-grid a.video-block {
  position: relative;
  display: block;
  font-size: 0px;
  overflow: hidden;
}
.video-thumb-grid a.video-block .image-wrap {
  position: relative;
  overflow: hidden;
  font-size: 0px;
  margin-bottom: 15px;
  height: 0px;
  padding-bottom: 56.25%;
}
.video-thumb-grid a.video-block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.video-thumb-grid a.video-block .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #1d4277;
  opacity: 0;
  transition: all 0.25s ease;
}
.video-thumb-grid a.video-block h3 {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 0px;
  transition: all 0.25s ease;
  color: #4e544a;
}
.video-thumb-grid a.video-block:hover .image-wrap:after {
  opacity: 0.75;
}
.video-thumb-grid a.video-block:hover h3 {
  color: #1d4277;
}

.news-grid {
  position: relative;
  display: grid;
  grid-gap: 60px;
}
.news-grid__feature {
  position: relative;
}
.news-grid__feature .content-sidebar__title {
  border-bottom: none;
  margin-bottom: 0px;
}
.news-grid__feature .image-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 100%;
  overflow: hidden;
}
.news-grid__feature .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.news-grid__feature .image-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #1d4277;
  opacity: 0;
  transition: all 0.25s ease;
}
.news-grid__feature h3 {
  color: #4e544a;
  margin-bottom: 5px;
  transition: all 0.25s ease;
}
.news-grid__feature .meta-wrap {
  margin-bottom: 15px;
}
.news-grid__feature p {
  line-height: 1.2;
}
.news-grid__feature button {
  border: none !important;
}
.news-grid__feature a {
  position: relative;
  display: grid;
  grid-gap: 25px;
}
.news-grid__feature a:hover h3 {
  color: #3f6bb3;
}
.news-grid__feature a:hover .image-wrap:after {
  opacity: 0.75;
}
.news-grid__feature a:hover .meta-wrap span {
  color: #3f6bb3;
}
@media screen and (min-width: 35.5em) {
  .news-grid__feature a {
    grid-template-columns: 1fr 1.25fr;
  }
}
@media screen and (min-width: 48em) {
  .news-grid {
    grid-template-columns: 1.65fr 1fr;
  }
  .news-grid__feature:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 130px;
    right: -30px;
    top: 50%;
    margin-top: -65px;
    background: #dddddd;
  }
}

.news-list {
  margin: 0px;
  position: relative;
  list-style-type: none;
}
.news-list li {
  position: relative;
  margin: 0px 0px 25px;
}
.news-list .meta-wrap {
  margin-bottom: 5px;
}
.news-list h3 {
  color: #4e544a;
  transition: all 0.25s ease;
  font-size: 20px;
}
@media screen and (min-width: 64em) {
  .news-list h3 {
    font-size: 22px;
  }
}
.news-list a:hover h3 {
  color: #3f6bb3;
}
.news-list a:hover .meta-wrap span {
  color: #3f6bb3;
}

.event-list, .ecs-event-list {
  margin: 0px;
  position: relative;
  list-style-type: none;
}
.event-list li, .ecs-event-list li {
  position: relative;
  margin: 0px 0px 25px;
}
.event-list .date, .ecs-event-list .date {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.event-list .date span, .ecs-event-list .date span {
  position: relative;
  display: block;
  line-height: 1;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #3f6bb3;
  text-transform: uppercase;
}
.event-list .date .day, .ecs-event-list .date .day {
  font-size: 38px;
  margin-bottom: -0.05em;
}
.event-list .date .month, .ecs-event-list .date .month {
  font-size: 18px;
  margin-top: -0.05em;
}
.event-list h3, .ecs-event-list h3 {
  color: #4e544a;
  font-weight: 700;
  margin: 0px;
  transition: all 0.25s ease;
  font-size: 20px;
}
@media screen and (min-width: 64em) {
  .event-list h3, .ecs-event-list h3 {
    font-size: 22px;
  }
}
.event-list a, .ecs-event-list a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 10px;
  align-items: center;
}
.event-list a:hover h3, .ecs-event-list a:hover h3 {
  color: #3f6bb3;
}
.event-list a:hover .meta-wrap span, .ecs-event-list a:hover .meta-wrap span {
  color: #3f6bb3;
}

.meta-wrap {
  position: relative;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #4e544a;
  transition: all 0.25s ease;
}
.meta-wrap span {
  position: relative;
  display: inline-block;
}

.insta-feed {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  grid-gap: 20px;
}
@media screen and (min-width: 54.25em) {
  .insta-feed {
    grid-template-columns: repeat(4, 1fr);
  }
}

.recipient-layout {
  position: relative;
  padding: 0px 30px;
  padding: 0px 25px;
  width: 100%;
  max-width: 1400px !important;
  margin: 0px auto;
}
.recipient-layout__primary-image {
  display: block;
  width: 100%;
}
.recipient-layout--bio {
  display: flex;
  flex-flow: row wrap;
}
.recipient-layout--bio .block {
  position: relative;
  display: flex;
  flex-flow: column;
  flex: 1 1 100%;
}
.recipient-layout--bio h1.flyweight {
  font-size: 60px;
}
@media screen and (min-width: 48em) {
  .recipient-layout--bio h1.flyweight {
    font-size: 80px;
  }
}
@media screen and (min-width: 64em) {
  .recipient-layout--bio h1.flyweight {
    font-size: 100px;
  }
}
.recipient-layout--bio .copy-wrap {
  position: relative;
  padding: 0px 25px;
}
.recipient-layout--bio .image-wrap {
  position: relative;
  margin-bottom: 50px;
}
.recipient-layout--bio .image-wrap figcaption {
  position: relative;
  color: #ffffff;
  display: flex;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 500;
  justify-content: flex-end;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  background: #fb4348;
  padding: 5px 30px 3px;
}
.recipient-layout--bio .quote-wrap {
  position: relative;
  padding: 0px 25px;
}
.recipient-layout--bio .quote-wrap q {
  font-size: 28px;
  line-height: 1.2;
  color: #1d4277;
}
.recipient-layout--bio .quote-wrap cite {
  position: relative;
  font-style: normal;
  color: #1f1f1f;
  text-align: right;
  margin-top: 10px;
}
.recipient-layout--info {
  display: grid;
  grid-gap: 30px;
}
.recipient-layout--media {
  display: grid;
  grid-gap: 30px;
}
.recipient-layout--lessons .lessons-grid {
  padding: 0px;
  margin: 0px;
  max-width: 100%;
}
.recipient-layout--lessons .lessons-grid a {
  align-items: flex-start !important;
}
.recipient-layout__title {
  position: relative;
  display: block;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  color: #4e544a;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #4e544a;
}
.recipient-layout__title.short-ul {
  border-bottom: none;
}
.recipient-layout__title.short-ul:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 130px;
  height: 1px;
  background: #dddddd;
}
.recipient-layout__more-info h2 {
  font-size: 16px;
  color: #4e544a;
  text-transform: uppercase;
}
.recipient-layout__more-info h3 {
  color: #4e544a;
  transition: all 0.25s ease;
  font-size: 20px;
}
@media screen and (min-width: 64em) {
  .recipient-layout__more-info h3 {
    font-size: 22px;
  }
}
.recipient-layout__more-info .view-all-posts {
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #4e544a;
}
.recipient-layout__more-info a:hover h3 {
  color: #3f6bb3;
}
.recipient-layout__more-info a:hover .meta-wrap span {
  color: #3f6bb3;
}
.recipient-layout__more-info .posts-separator {
  border-bottom: 1px solid #4e544a;
  margin-top: 0;
}
@media screen and (min-width: 48em) {
  .recipient-layout--info {
    grid-column-gap: 60px;
    grid-template-columns: 1fr 220px;
  }
  .recipient-layout--media {
    grid-column-gap: 60px;
    grid-template-columns: 400px 400px 1fr;
  }
  .recipient-layout--lessons > * {
    max-width: calc(100% - 280px) !important;
  }
}
@media screen and (min-width: 60.5em) {
  .recipient-layout {
    padding: 0px 30px;
    padding: 0px 25px;
  }
  .recipient-layout--bio .block {
    position: relative;
    display: flex;
    flex-flow: column;
  }
  .recipient-layout--bio .block__copy {
    flex: 1;
  }
  .recipient-layout--bio .block__image {
    flex: 0 1 45%;
    margin-right: -30px;
  }
  .recipient-layout--bio .copy-wrap {
    padding: 0px;
    padding-right: 40px;
  }
  .recipient-layout--bio .copy-wrap p {
    color: #1f1f1f;
  }
  .recipient-layout--bio .quote-wrap {
    padding: 0px 30px;
    padding: 0px 25px;
  }
}
@media screen and (min-width: 64em) {
  .recipient-layout {
    padding: 0px 60px;
  }
  .recipient-layout--bio .block__image {
    flex: 0 1 45%;
    margin-right: -60px;
  }
  .recipient-layout--bio .copy-wrap {
    padding-right: 60px;
  }
  .recipient-layout--bio .quote-wrap {
    padding: 0px 60px;
  }
}

.listing-grid {
  position: relative;
  display: grid;
  grid-gap: 40px;
}
.listing-grid .block {
  position: relative;
  display: grid;
  grid-gap: 20px;
  align-items: center;
}
.listing-grid .block .copy-wrap {
  position: relative;
  text-align: left;
  width: 100%;
}
.listing-grid .block .copy-wrap h3 {
  transition: all 0.25s ease;
}
.listing-grid .block .copy-wrap p {
  margin: 0px;
}
.listing-grid .block .image-wrap {
  position: relative;
  align-self: flex-start;
  max-width: 140px;
  display: none;
}
.listing-grid .block .image-wrap .image {
  position: relative;
  width: 100%;
  height: 0px;
  overflow: hidden;
  padding-bottom: 100%;
}
.listing-grid .block .image-wrap .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.listing-grid .block .image-wrap .image:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #1d4277;
  opacity: 0;
  transition: all 0.25s ease;
}
.listing-grid .block .button-wrap {
  position: relative;
}
.listing-grid .block .button-wrap .button {
  margin: 0px;
}
.listing-grid .block:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #777777;
  opacity: 0.25;
  left: 0px;
  bottom: -20px;
}
.listing-grid .block:hover .copy-wrap h3 {
  color: #3f6bb3;
}
.listing-grid .block:hover .image-wrap .image:after {
  opacity: 0.75;
}
.listing-grid--articles .block {
  padding: 20px 0px;
}
.listing-grid--articles .block .copy-wrap h3 {
  margin: 0px;
}
.listing-grid--date .block {
  padding: 20px 0px;
}
.listing-grid--date .block .copy-wrap h3 {
  margin: 0px;
}
.listing-grid--date .block .copy-wrap .upcoming {
  position: relative;
  display: inline-block;
  padding: 5px 10px 3px;
  margin-bottom: 8px;
  background: #fb4348;
  color: #ffffff;
  line-height: 1;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}
.listing-grid--date .date-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.listing-grid--date .date-wrap span {
  position: relative;
  display: block;
  line-height: 1;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #3f6bb3;
  text-transform: uppercase;
}
.listing-grid--date .date-wrap .day {
  font-size: 38px;
  margin-bottom: -0.05em;
}
.listing-grid--date .date-wrap .month {
  font-size: 18px;
  margin-bottom: -0.05em;
}
.listing-grid--date .date-wrap .year {
  font-size: 18px;
  margin-top: -0.05em;
}
@media screen and (min-width: 41.75em) {
  .listing-grid .block {
    grid-template-columns: 1fr auto;
    grid-column-gap: 20px;
  }
}
@media screen and (min-width: 54.25em) {
  .listing-grid .block {
    grid-template-columns: 140px 1fr auto;
    grid-column-gap: 20px;
  }
  .listing-grid .block .image-wrap {
    display: block;
  }
  .listing-grid--2-col .block {
    grid-template-columns: 1fr auto;
    grid-column-gap: 40px;
  }
  .listing-grid--2-col .block .copy-wrap {
    max-width: 100%;
  }
  .listing-grid--date .block {
    grid-template-columns: auto 1fr auto;
    grid-column-gap: 40px;
  }
  .listing-grid--date .block .copy-wrap {
    max-width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .listing-grid .block {
    grid-column-gap: 40px;
  }
}
.listing-grid.tribe-events-calendar-list .block:after {
  display: none;
}

/**
 * Member Account Dashboard
 */
.member-account-dashboard .tabs.vertical {
  border: 0;
  text-align: center;
}
.member-account-dashboard .tabs.vertical li {
  margin-bottom: 8px;
}
.member-account-dashboard .tabs.vertical li a {
  background-color: #3f6bb3;
  color: #ffffff;
  font-family: effra, sans-serif;
  text-transform: uppercase;
  transition: background-color 0.25s ease-out;
  font-size: 14px;
}
.member-account-dashboard .tabs.vertical li a:active {
  border: 0;
  border-radius: 0;
  outline: 0;
}
.member-account-dashboard .tabs.vertical li a:hover, .member-account-dashboard .tabs.vertical li a:focus {
  background-color: #1d4277;
  border-radius: 0;
  outline: 0;
  border: 0;
}
.member-account-dashboard .tabs.vertical li.is-active a {
  background-color: #283346;
}
.member-account-dashboard .tabs-content {
  border: 0;
  font-family: effra, sans-serif;
}
.member-account-dashboard .tabs-content h3.section-title {
  font-size: 14px;
  color: #3f6bb3;
  text-transform: uppercase;
  font-weight: 700;
}
.member-account-dashboard .tabs-content h3.section-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3f6bb3;
  margin: 3px auto;
}
.member-account-dashboard .tabs-content p, .member-account-dashboard .tabs-content h4 {
  font-family: effra, sans-serif;
}
.member-account-dashboard .tabs-content p {
  font-size: 18px;
  font-weight: 300;
}

.masonry-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  grid-auto-rows: 50px;
}
.masonry-column .masonry-cell {
  grid-column: span 2;
}
.masonry-column .masonry-cell.large-6 {
  grid-column: span 1;
}

/**
 * Fancy form labels
 *
 */
input.fly-away-label {
  padding: 1rem 0.5rem 0.5rem;
  height: auto;
}
input.fly-away-label + label.fly-away-label {
  transform: translate(0.5rem, -50px) scale(1);
  transition: transform 0.25s ease-out;
  transform-origin: top left;
  cursor: text;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.2rem;
}
input.fly-away-label:focus + label.fly-away-label, input.fly-away-label.has-text + label.fly-away-label {
  transform: translate(0.5rem, -65px) scale(0.8);
}

/**
 * Select2 Styling
 */
.select2 {
  width: 100%;
}
.select2.select2-container {
  width: 100% !important;
}
.select2.select2-container .select2-selection {
  background: transparent;
  font-family: effra, sans-serif, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.select2-results {
  font-family: effra, sans-serif, sans-serif;
}
.select2-results .select2-results__option {
  font-family: effra, sans-serif, sans-serif;
}

.select2-container--foundation .select2-results__option--highlighted[aria-selected] {
  color: white;
}

.video-modal {
  padding: 0;
  outline: 0;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  border: 0;
}
.video-modal .responsive-embed {
  margin-bottom: 0;
}
.video-modal__info-cell {
  padding: 2rem;
}
.video-modal__info-cell h2 {
  font-size: 55px;
}

.social-share-icon {
  display: block;
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: black;
  margin-bottom: 40px;
  transition: background-color 0.25s ease-out;
}
.social-share-icon img, .social-share-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: auto;
  max-height: 40px;
  transform: translate(-50%, -50%);
}
.social-share-icon--facebook {
  background-color: #3B5998;
}
.social-share-icon--facebook:hover {
  background-color: #2d4373;
}
.social-share-icon--twitter {
  background-color: #00ACEE;
}
.social-share-icon--twitter:hover {
  background-color: #0087bb;
}
.social-share-icon--linkedin {
  background-color: #0072B1;
}
.social-share-icon--linkedin:hover {
  background-color: #00517e;
}

.copy-button {
  position: relative;
}
.copy-button:before {
  content: "Copied";
  font-family: effra, sans-serif, sans-serif;
  display: block;
  position: absolute;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  display: none;
  -webkit-animation: fadeIn 0.5s ease-out 0s 1 forwards;
          animation: fadeIn 0.5s ease-out 0s 1 forwards;
}
.copy-button.copied:before {
  display: block;
}
.copy-button.copied-done:before {
  -webkit-animation: fadeOut 0.25s ease-out 0s 1 forwards;
          animation: fadeOut 0.25s ease-out 0s 1 forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.01;
  }
  100% {
    opacity: 0.99;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.01;
  }
  100% {
    opacity: 0.99;
  }
}
@-webkit-keyframes gridItemOut {
  0% {
    opacity: 0.99;
    transform: translateY(0);
  }
  100% {
    opacity: 0.01;
    transform: translateY(20px);
  }
}
@keyframes gridItemOut {
  0% {
    opacity: 0.99;
    transform: translateY(0);
  }
  100% {
    opacity: 0.01;
    transform: translateY(20px);
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 0.99;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0.01;
    transform: translateX(-50%) translateY(5px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 0.99;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0.01;
    transform: translateX(-50%) translateY(5px);
  }
}
@-webkit-keyframes reset {
  0% {
    transform: translateX(20px);
    opacity: 0.01;
  }
  100% {
    transform: translateX(0px);
    opacity: 0.99;
  }
}
@keyframes reset {
  0% {
    transform: translateX(20px);
    opacity: 0.01;
  }
  100% {
    transform: translateX(0px);
    opacity: 0.99;
  }
}
body.filter-changing {
  cursor: wait;
}

.additional-media-table {
  border: 0;
}
.additional-media-table tbody {
  border: 0;
}
.additional-media-table tr td {
  border: 0;
  border-bottom: 1px solid #4e544a;
}

[data-parent], .cmohs-form .col[data-parent] {
  display: none;
}
[data-parent].parent-active, [data-parent][data-parent-required], .cmohs-form .col[data-parent].parent-active, .cmohs-form .col[data-parent][data-parent-required] {
  display: block;
}

.finish-account-banner {
  display: block;
  padding: 2rem;
  background-color: #072946;
  color: #ffffff;
  position: relative;
}
.finish-account-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("/images/public/hero-lessons-overview.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.5;
}
.finish-account-banner:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #072946;
  background: linear-gradient(90deg, #072946 50%, rgba(7, 41, 70, 0) 100%);
  z-index: 2;
}
.finish-account-banner h2, .finish-account-banner p {
  color: #ffffff;
  position: relative;
  z-index: 5;
}
.finish-account-banner h2 {
  font-size: 22px;
  font-weight: 500;
}
.finish-account-banner p {
  font-size: 18px;
  margin-bottom: 0;
}

.registered-modal {
  padding: 8rem 4rem;
  background-color: #072946;
  outline: 0;
  border: 0;
  position: relative;
}
.registered-modal:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("/images/public/hero-lessons-overview.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.5;
}
.registered-modal:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #072946;
  background: linear-gradient(68deg, #072946 50%, rgba(7, 41, 70, 0) 100%);
  z-index: 2;
}
.registered-modal h2, .registered-modal p, .registered-modal .button, .registered-modal .skip-button {
  color: #ffffff;
  position: relative;
  z-index: 5;
}
.registered-modal button {
  z-index: 5;
  color: #ffffff;
}
.registered-modal button svg, .registered-modal button svg path {
  fill: #ffffff;
}

.message {
  display: block;
  width: 100%;
  background-color: #072946;
  padding: 1rem;
  text-align: center;
}
.message p, .message button {
  color: #ffffff;
}
.message p {
  margin-bottom: 0;
  font-family: "effra", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
.message.success {
  background-color: #3f6bb3;
}
.message.error {
  background-color: #fb4348;
}

.form-confirmation-modal {
  padding: 5rem 4rem;
}
.form-confirmation-modal svg {
  margin: 0 auto;
}
.form-confirmation-modal .checkmark {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #3f6bb3;
  -webkit-animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
          animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.form-confirmation-modal .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #3f6bb3;
  fill: none;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
          animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.form-confirmation-modal .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
          animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@-webkit-keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 60px #3f6bb3;
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 60px #3f6bb3;
  }
}

.newsletter-signup__header {
  text-transform: none;
  max-width: 1060px;
  margin: 0 auto;
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-h6--min-medium, .tribe-events-c-nav__prev-label {
  font-family: "effra", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1;
}

@media print {
  body.recipient-single .site-header__content {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    height: initial !important;
  }
  body.recipient-single .site-header__content a.logo {
    display: block;
    margin: 0 !important;
    top: initial;
    height: 70px !important;
    width: 70px !important;
  }
  body.recipient-single .site-header__content a.logo:after {
    display: none !important;
  }
  body.recipient-single .site-header__content nav, body.recipient-single .site-header__content button.menu-toggle {
    display: none;
  }
  body.recipient-single .block__aux {
    display: none;
  }
  body.recipient-single .block__main {
    border: 0;
    width: 100%;
  }
  body.recipient-single .hero__image {
    display: none;
  }
  body.recipient-single .hero__copy div.copy-wrap {
    padding: 0;
  }
  body.recipient-single .hero__copy div.copy-wrap h4, body.recipient-single .hero__copy div.copy-wrap h1 {
    color: #1f1f1f !important;
  }
  body.recipient-single .hero__copy div.copy-wrap h4 {
    font-size: 1rem;
  }
  body.recipient-single .hero__copy div.copy-wrap h1 {
    font-size: 1.5rem;
  }
  body.recipient-single section.filter-bar {
    display: none;
  }
  body.recipient-single .cmohs-pagination {
    display: none;
  }
  body.recipient-single .overlap-content .spacer {
    display: none;
  }
  body.recipient-single .spacer--90, body.recipient-single .spacer--80 {
    display: none;
  }
  body.recipient-single section.recipient-layout .block__copy {
    width: 60%;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 60%;
  }
  body.recipient-single section.recipient-layout .block__image {
    width: 40%;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 40%;
  }
  body.recipient-single section.recipient-layout .block__buttons {
    display: none;
  }
  body.recipient-single .recipient-layout--info {
    padding: 0 25px;
  }
  body.recipient-single .recipient-layout--info .copy-wrap {
    padding: 0 25px !important;
  }
  body.recipient-single .recipient-layout--media .block__gallery {
    padding: 0 25px !important;
  }
  body.recipient-single .callout-banner {
    display: none;
  }
  body.recipient-single .site-footer__top {
    display: none;
  }
}

.testimonial-slider {
  position: relative;
  background: rgba(63, 107, 179, 0.15);
  padding: 30px 30px 30px 20px;
}
.testimonial-slider .slick-list {
  max-width: 800px;
  margin: auto;
  padding: 20px 0px;
}
.testimonial-slider .slick-track {
  display: flex;
}
.testimonial-slider .slick-track .slick-slide {
  height: auto !important;
  min-height: 100%;
  display: flex;
  align-items: center;
}
.testimonial-slider q {
  position: relative;
  display: block;
  font-size: 22px;
  color: #4e544a;
  line-height: 1.2;
  padding-left: 40px;
}
.testimonial-slider q:before {
  position: absolute;
  left: -5px;
  top: 45px;
  opacity: 0.25;
  font-size: 112px;
  line-height: 0;
}
@media screen and (min-width: 48em) {
  .testimonial-slider q {
    font-size: 26px;
  }
}
@media screen and (min-width: 64em) {
  .testimonial-slider q {
    font-size: 32px;
  }
}
.testimonial-slider cite {
  color: #4e544a;
  font-size: 16px;
  font-weight: bolder;
  font-style: italic;
  display: block;
  margin: 10px 0px 0px;
  padding-left: 40px;
  position: relative;
}
.testimonial-slider cite:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #4e544a;
  position: absolute;
  top: 9px;
  left: 0px;
}

.living-rec-slider {
  position: relative;
  padding-top: 200px;
  padding-bottom: 40px;
}
.living-rec-slider .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #3f6bb3;
  -webkit-clip-path: polygon(0px 125px, 100% 0px, 100% 100%, 0px 100%);
          clip-path: polygon(0px 125px, 100% 0px, 100% 100%, 0px 100%);
  overflow: hidden;
  z-index: -1;
}
.living-rec-slider .bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  mix-blend-mode: multiply;
}
.living-rec-slider--content {
  position: relative;
  display: grid;
  min-width: 0px;
  width: 100%;
  max-width: 1280px;
  margin: 0px auto;
  padding: 0px 60px;
}
.living-rec-slider--content * {
  min-width: 0px;
}
.living-rec-slider .block__title {
  position: relative;
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  margin-bottom: 30px;
}
.living-rec-slider .block__title .title-wrap h5 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-bottom: 10px;
}
.living-rec-slider .block__title .title-wrap h2 {
  font-size: 75px;
  line-height: 0.9;
  margin: 0px;
}
.living-rec-slider .block__title .border-button {
  position: relative;
  display: inline-block;
  padding: 12px 15px 11px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  line-height: 1;
  transition: all 0.3s ease;
}
.living-rec-slider .block__title .border-button:hover {
  background: #ffffff;
  color: #3f6bb3;
}
@media screen and (min-width: 48em) {
  .living-rec-slider .block__title {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: flex-end;
  }
  .living-rec-slider .block__title .button-wrap {
    margin-bottom: 5px;
  }
}
.living-rec-slider .block__slider .slick-slide {
  margin: 0px 10px !important;
}
.living-rec-slider .block__slider .slick-list {
  margin: 0px -10px;
}
.living-rec-slider .block__slider .arrow {
  position: absolute;
  top: 0px;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.living-rec-slider .block__slider .arrow button {
  width: 30px;
  outline: none;
  cursor: pointer;
}
.living-rec-slider .block__slider .arrow button svg {
  fill: #ffffff;
  transition: all 0.25s ease;
}
.living-rec-slider .block__slider .arrow button:hover svg {
  fill: #fb4348;
}
.living-rec-slider .block__slider .arrow--next {
  right: -60px;
}
.living-rec-slider .block__slider .arrow--prev {
  left: -60px;
  transform: scaleX(-1);
}
.living-rec-slider .slide-block {
  position: relative;
  display: grid !important;
  align-items: flex-end;
  -webkit-animation: fadeIn 0.25s ease-out 0s 1 forwards;
          animation: fadeIn 0.25s ease-out 0s 1 forwards;
  outline: none;
}
.living-rec-slider .slide-block .copy-wrap, .living-rec-slider .slide-block .image-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.living-rec-slider .slide-block .image-wrap {
  width: 100%;
  height: 0px;
  padding-bottom: 120%;
  min-height: 100%;
  overflow: hidden;
}
.living-rec-slider .slide-block .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  max-width: unset;
  min-height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.living-rec-slider .slide-block .copy-wrap {
  padding: 0px;
  display: grid;
  margin: 80px 0px 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.65);
  border-top: 5px solid #c3b58f;
  transition: all 0.25s ease;
}
.living-rec-slider .slide-block .title-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 15px 20px 10px;
}
.living-rec-slider .slide-block .title-wrap h2 {
  color: #ffffff;
  margin: 0px;
  line-height: 1.1;
}
.living-rec-slider .slide-block .title-wrap h3 {
  color: #c3b58f;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0px;
  line-height: 1.1;
}
.living-rec-slider .slide-block .ribbon-wrap {
  position: relative;
  display: grid;
  align-items: flex-end;
  grid-template-columns: 30px 1fr 30px;
  margin-bottom: -15px;
}
.living-rec-slider .slide-block .ribbon-wrap span {
  grid-row: 1;
  grid-column: 2;
  position: relative;
  display: block;
  text-align: center;
  font-family: effra, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  color: #1f1f1f;
  padding: 10px 15px 8px;
  background: #c3b58f;
}
.living-rec-slider .slide-block .ribbon-wrap span:before, .living-rec-slider .slide-block .ribbon-wrap span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
}
.living-rec-slider .slide-block .ribbon-wrap span:before {
  bottom: -7px;
  left: 0px;
  border-width: 0 7px 7px 0;
  border-color: transparent #1f1f1f transparent transparent;
}
.living-rec-slider .slide-block .ribbon-wrap span:after {
  bottom: -7px;
  right: 0px;
  border-width: 7px 7px 0 0;
  border-color: #1f1f1f transparent transparent transparent;
}
.living-rec-slider .slide-block .ribbon-wrap:before, .living-rec-slider .slide-block .ribbon-wrap:after {
  content: "";
  position: relative;
  width: calc(100% + 7px);
  height: 22px;
  background: #c3b58f;
  transform: translateY(7px);
}
.living-rec-slider .slide-block .ribbon-wrap:before {
  grid-column: 1;
  left: 0px;
}
.living-rec-slider .slide-block .ribbon-wrap:after {
  grid-column: 3;
  right: 7px;
}
.living-rec-slider .slide-block:hover .copy-wrap {
  border-top-color: #3f6bb3;
  transform: translateY(-5px);
}

.video-block {
  position: relative;
  max-width: 800px !important;
  margin: 0px auto;
}
.video-block .video-wrap {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video-block .video-wrap iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0px;
  left: 0px;
}

#site_content .gform-theme.gform-theme--framework.gform_wrapper .button {
  position: relative !important;
  display: inline-block !important;
  font-family: adobe-garamond-pro, serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: 11px !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  padding: 11px 25px 10px !important;
  border-radius: 0 !important;
}