@import url(https://fonts.googleapis.com/css?family=Playfair+Display:400,600,700,800,900);
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQgAAABYCAQAAACjBqE3AAAB6klEQVR4Ae3bsWpUQRTG8YkkanwCa7GzVotsI/gEgk9h4Vu4ySLYmMYgbJrc3lrwZbJwC0FMt4j7F6Y4oIZrsXtgxvx/1c0ufEX4cnbmLCmSJEmSJEmSJEmSJP3XCBPvbJU+8doWmDFwyZpLBmYlNJebz0KwzykwsuSYJSNwykEJreV2BaBMaLIQZ2xYcFgqDlmw4ayE/FwL0dDk4Qh4W37DAjgqIT+3HRbigjH+iikVdxgZStgyN0Su2sXIeTwTT+esdpcbIlfNAuZ/TxresG4zV8kYWSZNiKUTokMMSWeIwTNEn4fK2TW3gRNgVkJLuVksROA9G+bEvoATNlBCa7nZXEwdxEZxzpKRKFh+bsv8LmPFmhX1OwfIz81jIRJQ5eeqG9B+riRJkiRJkiRJkiRJkiRJkiRJUkvA/8RQoEpKlJWINFkJ62AlrEP/mNBibnv2yz/A3t7Uq3LcpoxP8COjC1T5vxoAD5VdoEqdDrd5QuW1swtUSaueh3zkiuBiqgtA2OlkeMcP/uDqugsJdbjHF65VdPMKwS0+WQc/MgKvrIOHysB9vgPwk8+85hmPbnQdvHZyDMAFD7L3EOpgMcVdvnHFS0/vlatrXvCVx0U9gt3fxvnA0/hB4nmRJEmSJEmSJEmSJGmHfgFLaDPoMu5xWwAAAABJRU5ErkJggg==) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjY0IiBoZWlnaHQ9Ijg4IiB2aWV3Qm94PSIwIDAgMjY0IDg4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjx0aXRsZT5kZWZhdWx0LXNraW4gMjwvdGl0bGU+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Zz48cGF0aCBkPSJNNjcuMDAyIDU5LjV2My43NjhjLTYuMzA3Ljg0LTkuMTg0IDUuNzUtMTAuMDAyIDkuNzMyIDIuMjItMi44MyA1LjU2NC01LjA5OCAxMC4wMDItNS4wOThWNzEuNUw3MyA2NS41ODUgNjcuMDAyIDU5LjV6IiBpZD0iU2hhcGUiIGZpbGw9IiNmZmYiLz48ZyBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTMgMjl2LTVoMnYzaDN2MmgtNXpNMTMgMTVoNXYyaC0zdjNoLTJ2LTV6TTMxIDE1djVoLTJ2LTNoLTN2LTJoNXpNMzEgMjloLTV2LTJoM3YtM2gydjV6IiBpZD0iU2hhcGUiLz48L2c+PGcgZmlsbD0iI2ZmZiI+PHBhdGggZD0iTTYyIDI0djVoLTJ2LTNoLTN2LTJoNXpNNjIgMjBoLTV2LTJoM3YtM2gydjV6TTcwIDIwdi01aDJ2M2gzdjJoLTV6TTcwIDI0aDV2MmgtM3YzaC0ydi01eiIvPjwvZz48cGF0aCBkPSJNMjAuNTg2IDY2bC01LjY1Ni01LjY1NiAxLjQxNC0xLjQxNEwyMiA2NC41ODZsNS42NTYtNS42NTYgMS40MTQgMS40MTRMMjMuNDE0IDY2bDUuNjU2IDUuNjU2LTEuNDE0IDEuNDE0TDIyIDY3LjQxNGwtNS42NTYgNS42NTYtMS40MTQtMS40MTRMMjAuNTg2IDY2eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xMTEuNzg1IDY1LjAzTDExMCA2My41bDMtMy41aC0xMHYtMmgxMGwtMy0zLjUgMS43ODUtMS40NjhMMTE3IDU5bC01LjIxNSA2LjAzeiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xNTIuMjE1IDY1LjAzTDE1NCA2My41bC0zLTMuNWgxMHYtMmgtMTBsMy0zLjUtMS43ODUtMS40NjhMMTQ3IDU5bDUuMjE1IDYuMDN6IiBmaWxsPSIjZmZmIi8+PGc+PHBhdGggaWQ9IlJlY3RhbmdsZS0xMSIgZmlsbD0iI2ZmZiIgZD0iTTE2MC45NTcgMjguNTQzbC0zLjI1LTMuMjUtMS40MTMgMS40MTQgMy4yNSAzLjI1eiIvPjxwYXRoIGQ9Ik0xNTIuNSAyN2MzLjAzOCAwIDUuNS0yLjQ2MiA1LjUtNS41cy0yLjQ2Mi01LjUtNS41LTUuNS01LjUgMi40NjItNS41IDUuNSAyLjQ2MiA1LjUgNS41IDUuNXoiIGlkPSJPdmFsLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTUwIDIxaDV2MWgtNXoiLz48L2c+PGc+PHBhdGggZD0iTTExNi45NTcgMjguNTQzbC0xLjQxNCAxLjQxNC0zLjI1LTMuMjUgMS40MTQtMS40MTQgMy4yNSAzLjI1eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xMDguNSAyN2MzLjAzOCAwIDUuNS0yLjQ2MiA1LjUtNS41cy0yLjQ2Mi01LjUtNS41LTUuNS01LjUgMi40NjItNS41IDUuNSAyLjQ2MiA1LjUgNS41IDUuNXoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTA2IDIxaDV2MWgtNXoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTA5LjA0MyAxOS4wMDhsLS4wODUgNS0xLS4wMTcuMDg1LTV6Ii8+PC9nPjwvZz48L2c+PC9zdmc+); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(data:image/gif;base64,R0lGODlhFAAUAPMIAIeHhz8/P1dXVycnJ8/Pz7e3t5+fn29vb////wAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAIACwAAAAAFAAUAEAEUxDJSatFxtwaggWAdIyHJAhXoRYSQUhDPGx0TbmujahbXGWZWqdDAYEsp5NupLPkdDwE7oXwWVasimzWrAE1tKFHErQRK8eL8mMUlRBJVI307uoiACH5BAUHAAgALAEAAQASABIAAAROEMkpS6E4W5upMdUmEQT2feFIltMJYivbvhnZ3R0A4NMwIDodz+cL7nDEn5CH8DGZh8MtEMBEoxkqlXKVIgQCibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpjaE4W5spANUmFQX2feFIltMJYivbvhnZ3d1x4BNBIDodz+cL7nDEn5CH8DGZAsFtMMBEoxkqlXKVIgIBibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpAaA4W5vpOdUmGQb2feFIltMJYivbvhnZ3Z0g4FNRIDodz+cL7nDEn5CH8DGZgcCNQMBEoxkqlXKVIgYDibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpz6E4W5upENUmAQD2feFIltMJYivbvhnZ3V0Q4JNhIDodz+cL7nDEn5CH8DGZg8GtUMBEoxkqlXKVIggEibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkphaA4W5tpCNUmHQf2feFIltMJYivbvhnZ3d0w4BMAIDodz+cL7nDEn5CH8DGZBMLNYMBEoxkqlXKVIgoFibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpQ6A4W5vpGNUmCQL2feFIltMJYivbvhnZ3R1B4NNxIDodz+cL7nDEn5CH8DGZhcINAMBEoxkqlXKVIgwGibbK9YLBYvLtHH5K0J0IACH5BAUHAAcALAEAAQASABIAAANCeLo6wzA6FxkhbaoQ4L3ZxnXLh0EjWZ4RV71VUcCLIByyTNt2PsO8m452sBGJBsNxkUwuD03lAQBASqnUJ7aq5UYSADs=) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

:root {
  --blue: #159ab3;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #ea1b1b;
  --orange: #fd7e14;
  --yellow: #fe1;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #e40004;
  --secondary: #893eb4;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #fe1;
  --danger: #ea1b1b;
  --light: #f4f4f4;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 320px;
  --breakpoint-wp-sm: 601px;
  --breakpoint-md: 768px;
  --breakpoint-wp-md: 783px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1350px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: .5rem;
  font-weight: 900;
  line-height: 1.5;
  color: #1b1b1b;
}

h1,
.h1 {
  font-size: 2.625rem;
}

h2,
.h2 {
  font-size: 2.125rem;
}

h3,
.h3 {
  font-size: 1.875rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.375rem;
}

h6,
.h6 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.5;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(17,17,17,0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: .5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\00A0";
}

.btn,
.search-form .search-submit,
.sticky-footer-btn {
  display: inline-block;
  font-weight: 700;
  color: #111;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .5rem 1.125rem;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 22.5rem;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .search-form .search-submit,
  .sticky-footer-btn {
    transition: none;
  }
}

.btn:hover,
.search-form .search-submit:hover,
.sticky-footer-btn:hover {
  color: #111;
  text-decoration: none;
}

.btn:focus,
.search-form .search-submit:focus,
.sticky-footer-btn:focus,
.btn.focus,
.search-form .focus.search-submit,
.focus.sticky-footer-btn {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.25);
}

.btn.disabled,
.search-form .disabled.search-submit,
.disabled.sticky-footer-btn,
.btn:disabled,
.search-form .search-submit:disabled,
.sticky-footer-btn:disabled {
  opacity: .65;
}

a.btn.disabled,
.search-form a.disabled.search-submit,
a.disabled.sticky-footer-btn,
fieldset:disabled a.btn,
fieldset:disabled .search-form a.search-submit,
.search-form fieldset:disabled a.search-submit,
fieldset:disabled a.sticky-footer-btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #e40004;
  border-color: #e40004;
}

.btn-primary:hover {
  color: #fff;
  background-color: #be0003;
  border-color: #b10003;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 .2rem rgba(232,38,42,0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #e40004;
  border-color: #e40004;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #b10003;
  border-color: #a40003;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(232,38,42,0.5);
}

.btn-secondary,
.search-form .search-submit {
  color: #fff;
  background-color: #893eb4;
  border-color: #893eb4;
}

.btn-secondary:hover,
.search-form .search-submit:hover {
  color: #fff;
  background-color: #733498;
  border-color: #6c318e;
}

.btn-secondary:focus,
.search-form .search-submit:focus,
.btn-secondary.focus,
.search-form .focus.search-submit {
  box-shadow: 0 0 0 .2rem rgba(155,91,191,0.5);
}

.btn-secondary.disabled,
.search-form .disabled.search-submit,
.btn-secondary:disabled,
.search-form .search-submit:disabled {
  color: #fff;
  background-color: #893eb4;
  border-color: #893eb4;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.search-form .search-submit:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.search-form .search-submit:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle,
.search-form .show>.dropdown-toggle.search-submit {
  color: #fff;
  background-color: #6c318e;
  border-color: #652e85;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.search-form .search-submit:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.search-form .search-submit:not(:disabled):not(.disabled).active:focus,
.show>.btn-secondary.dropdown-toggle:focus,
.search-form .show>.dropdown-toggle.search-submit:focus {
  box-shadow: 0 0 0 .2rem rgba(155,91,191,0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 .2rem rgba(72,180,97,0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show>.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(72,180,97,0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 .2rem rgba(58,176,195,0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show>.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(58,176,195,0.5);
}

.btn-warning {
  color: #212529;
  background-color: #fe1;
  border-color: #fe1;
}

.btn-warning:hover {
  color: #212529;
  background-color: #ead900;
  border-color: #ddcd00;
}

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 .2rem rgba(222,208,21,0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #fe1;
  border-color: #fe1;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show>.btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ddcd00;
  border-color: #d0c100;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(222,208,21,0.5);
}

.btn-danger {
  color: #fff;
  background-color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-danger:hover {
  color: #fff;
  background-color: #cc1313;
  border-color: #c01212;
}

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 .2rem rgba(237,61,61,0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show>.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c01212;
  border-color: #b51111;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(237,61,61,0.5);
}

.btn-light {
  color: #212529;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-light:hover {
  color: #212529;
  background-color: #e1e1e1;
  border-color: #dbdbdb;
}

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 .2rem rgba(212,213,214,0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show>.btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dbdbdb;
  border-color: #d4d4d4;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(212,213,214,0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 .2rem rgba(82,88,93,0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(82,88,93,0.5);
}

.btn-outline-primary {
  color: #e40004;
  border-color: #e40004;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #e40004;
  border-color: #e40004;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #e40004;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #e40004;
  border-color: #e40004;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.5);
}

.btn-outline-secondary {
  color: #893eb4;
  border-color: #893eb4;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #893eb4;
  border-color: #893eb4;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 .2rem rgba(137,62,180,0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #893eb4;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show>.btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #893eb4;
  border-color: #893eb4;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(137,62,180,0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 .2rem rgba(40,167,69,0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show>.btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(40,167,69,0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 .2rem rgba(23,162,184,0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show>.btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(23,162,184,0.5);
}

.btn-outline-warning {
  color: #fe1;
  border-color: #fe1;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #fe1;
  border-color: #fe1;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 .2rem rgba(255,238,17,0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #fe1;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show>.btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #fe1;
  border-color: #fe1;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(255,238,17,0.5);
}

.btn-outline-danger {
  color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 .2rem rgba(234,27,27,0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #ea1b1b;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show>.btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(234,27,27,0.5);
}

.btn-outline-light {
  color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 .2rem rgba(244,244,244,0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f4f4f4;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show>.btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(244,244,244,0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 .2rem rgba(52,58,64,0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(52,58,64,0.5);
}

.btn-link {
  font-weight: 400;
  color: #e40004;
  text-decoration: none;
}

.btn-link:hover {
  color: #980003;
  text-decoration: none;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: none;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

.btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.btn-block,
.sticky-footer-btn,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a {
  display: block;
  width: 100%;
}

.btn-block+.btn-block,
.sticky-footer-btn+.btn-block,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a+.btn-block,
.btn-block+.sticky-footer-btn,
.sticky-footer-btn+.sticky-footer-btn,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a+.sticky-footer-btn,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .btn-block+a,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .sticky-footer-btn+a,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a+a {
  margin-top: .5rem;
}

input[type="submit"].btn-block,
input.sticky-footer-btn[type="submit"],
input[type="reset"].btn-block,
input.sticky-footer-btn[type="reset"],
input[type="button"].btn-block,
input.sticky-footer-btn[type="button"] {
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(17,17,17,0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: "Playfair Display",serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #111;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #e40004;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #980003;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container,
.sticky-footer-container,
.multimedia-block-wrapper .multimedia-block-inner,
.multimedia-block-wrapper>h2 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container,
  .sticky-footer-container,
  .multimedia-block-wrapper .multimedia-block-inner,
  .multimedia-block-wrapper>h2 {
    max-width: 708px;
  }
}

@media (min-width: 992px) {
  .container,
  .sticky-footer-container,
  .multimedia-block-wrapper .multimedia-block-inner,
  .multimedia-block-wrapper>h2 {
    max-width: 992px;
  }
}

@media (min-width: 1350px) {
  .container,
  .sticky-footer-container,
  .multimedia-block-wrapper .multimedia-block-inner,
  .multimedia-block-wrapper>h2 {
    max-width: 1320px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row,
.sticky-footer-collapse,
.sticky-footer-preview,
.sticky-footer-subscriptions,
body:not(.wp-admin) .item-list,
body:not(.wp-admin) .partnership-block-wrapper,
body:not(.wp-admin) .section-block-container,
body:not(.wp-admin) .sidebar-block-wrapper,
body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters,
.single-post .content .article-info,
body:not(.wp-admin) .partnership-block-wrapper,
body:not(.wp-admin) .section-block-container,
body:not(.wp-admin) .sidebar-block-wrapper,
body:not(.wp-admin) .sidebar-block-wrapper .grid-block-inner,
body:not(.wp-admin) .sidebar-block-wrapper .section-block-container {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.single-post .content .article-info>.col,
body:not(.wp-admin) .partnership-block-wrapper>.col,
body:not(.wp-admin) .section-block-container>.col,
body:not(.wp-admin) .sidebar-block-wrapper>.col,
body:not(.wp-admin) .sidebar-block-wrapper .grid-block-inner>.col,
body:not(.wp-admin) .sidebar-block-wrapper .section-block-container>.col,
.no-gutters>[class*="col-"],
.single-post .content .article-info>[class*="col-"],
body:not(.wp-admin) .partnership-block-wrapper>[class*="col-"],
body:not(.wp-admin) .section-block-container>[class*="col-"],
body:not(.wp-admin) .sidebar-block-wrapper>[class*="col-"],
body:not(.wp-admin) .sidebar-block-wrapper .grid-block-inner>[class*="col-"],
body:not(.wp-admin) .sidebar-block-wrapper .section-block-container>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns,
body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image-content-below,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image-content-below,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image-content-below,
.col-7,
.col-8,
.col-9,
.col-10,
.sticky-footer-preview .sticky-footer-subscriptions-wrapper,
.col-11,
.col-12,
.sticky-footer-text,
.sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper,
.sticky-footer-image,
.sticky-footer-subscriptions-col,
body:not(.wp-admin) .category-highlight .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-normal,
body:not(.wp-admin) .item-list .dip-article-block.is-style-simple,
body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .item-list .dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .item-list .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns-full,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns-full,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .info,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .image,
body:not(.wp-admin) .dip-article-block.is-style-normal,
body:not(.wp-admin) .dip-article-block.is-style-simple,
body:not(.wp-admin) .dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .dip-article-block.is-style-vertical-image-content-below,
body:not(.wp-admin) .dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .dip-article-block.is-style-two-columns,
body:not(.wp-admin) .dip-article-block.is-style-two-columns-full,
body:not(.wp-admin) .dip-article-block.is-style-text-highlight,
.tin-call-to-action-block-wrapper .image,
.tin-call-to-action-block-wrapper .info,
.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info,
.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image,
.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper,
body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid,
body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>.wp-block-dip-gutenberg-media-blocks-grid-block.grid,
.grid-title,
body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,
.tin-newsletter-segment,
body:not(.wp-admin) .sidebar-block-wrapper .tin-newsletter-segment,
body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-image-highlight,
.section-block-container>h2,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns-full,
body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr,
body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free,
body:not(.wp-admin) .sidebar-block-wrapper .tin-social-share-block-wrapper,
body:not(.wp-admin) .sidebar-block-wrapper .tin-call-to-action-block-wrapper,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-normal,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-simple,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns-full,
body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-wp-sm-1,
.col-wp-sm-2,
.col-wp-sm-3,
.col-wp-sm-4,
.col-wp-sm-5,
.col-wp-sm-6,
.col-wp-sm-7,
.col-wp-sm-8,
.col-wp-sm-9,
.col-wp-sm-10,
.col-wp-sm-11,
.col-wp-sm-12,
.col-wp-sm,
.col-wp-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-content,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-media,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-wp-md-1,
.col-wp-md-2,
.col-wp-md-3,
.col-wp-md-4,
.col-wp-md-5,
.col-wp-md-6,
.col-wp-md-7,
.col-wp-md-8,
.col-wp-md-9,
.col-wp-md-10,
.col-wp-md-11,
.col-wp-md-12,
.col-wp-md,
.col-wp-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.tin-call-to-action-block-wrapper .info .content-wrapper,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6,
body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns,
body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image-content-below,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image-content-below,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image-content-below {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10,
.sticky-footer-preview .sticky-footer-subscriptions-wrapper {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12,
.sticky-footer-text,
.sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper,
.sticky-footer-image,
.sticky-footer-subscriptions-col,
body:not(.wp-admin) .category-highlight .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-normal,
body:not(.wp-admin) .item-list .dip-article-block.is-style-simple,
body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .item-list .dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .item-list .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns-full,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-two-columns-full,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .info,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .image,
body:not(.wp-admin) .dip-article-block.is-style-normal,
body:not(.wp-admin) .dip-article-block.is-style-simple,
body:not(.wp-admin) .dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .dip-article-block.is-style-vertical-image-content-below,
body:not(.wp-admin) .dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .dip-article-block.is-style-two-columns,
body:not(.wp-admin) .dip-article-block.is-style-two-columns-full,
body:not(.wp-admin) .dip-article-block.is-style-text-highlight,
.tin-call-to-action-block-wrapper .image,
.tin-call-to-action-block-wrapper .info,
.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info,
.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image,
.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper,
body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid,
body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>.wp-block-dip-gutenberg-media-blocks-grid-block.grid,
.grid-title,
body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,
.tin-newsletter-segment,
body:not(.wp-admin) .sidebar-block-wrapper .tin-newsletter-segment,
body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-image-highlight,
.section-block-container>h2,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .section-block-container .dip-article-block.is-style-two-columns-full,
body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr,
body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free,
body:not(.wp-admin) .sidebar-block-wrapper .tin-social-share-block-wrapper,
body:not(.wp-admin) .sidebar-block-wrapper .tin-call-to-action-block-wrapper,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-normal,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-simple,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-author-highlight,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight-content-below,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns-full,
body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1,
.sticky-footer-preview .sticky-footer-subscriptions-wrapper {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 320px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 601px) {
  .col-wp-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-wp-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-wp-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-wp-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-wp-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-wp-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-wp-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-wp-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-wp-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-wp-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-wp-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-wp-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-wp-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-wp-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-wp-sm-first {
    order: -1;
  }

  .order-wp-sm-last {
    order: 13;
  }

  .order-wp-sm-0 {
    order: 0;
  }

  .order-wp-sm-1 {
    order: 1;
  }

  .order-wp-sm-2 {
    order: 2;
  }

  .order-wp-sm-3 {
    order: 3;
  }

  .order-wp-sm-4 {
    order: 4;
  }

  .order-wp-sm-5 {
    order: 5;
  }

  .order-wp-sm-6 {
    order: 6;
  }

  .order-wp-sm-7 {
    order: 7;
  }

  .order-wp-sm-8 {
    order: 8;
  }

  .order-wp-sm-9 {
    order: 9;
  }

  .order-wp-sm-10 {
    order: 10;
  }

  .order-wp-sm-11 {
    order: 11;
  }

  .order-wp-sm-12 {
    order: 12;
  }

  .offset-wp-sm-0 {
    margin-left: 0;
  }

  .offset-wp-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-wp-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-wp-sm-3 {
    margin-left: 25%;
  }

  .offset-wp-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-wp-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-wp-sm-6 {
    margin-left: 50%;
  }

  .offset-wp-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-wp-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-wp-sm-9 {
    margin-left: 75%;
  }

  .offset-wp-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-wp-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3,
  .sticky-footer-text,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image-content-below,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image-content-below,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image-content-below {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4,
  .sticky-footer-image,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-normal,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-simple,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-author-highlight,
  body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-content,
  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>.wp-block-dip-gutenberg-media-blocks-grid-block.grid,
  body:not(.wp-admin) .sidebar-block-wrapper .tin-newsletter-segment,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-normal,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-simple,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-author-highlight {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5,
  .tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6,
  .sticky-footer-preview .sticky-footer-subscriptions-wrapper,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,
  .detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .info,
  .detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .image,
  body:not(.wp-admin) .dip-article-block.is-style-normal,
  body:not(.wp-admin) .dip-article-block.is-style-simple,
  body:not(.wp-admin) .dip-article-block.is-style-author-highlight,
  body:not(.wp-admin) .dip-article-block.is-style-vertical-image-content-below,
  body:not(.wp-admin) .dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .dip-article-block.is-style-image-highlight,
  body:not(.wp-admin) .dip-article-block.is-style-image-highlight-content-below,
  body:not(.wp-admin) .dip-article-block.is-style-two-columns,
  body:not(.wp-admin) .dip-article-block.is-style-text-highlight,
  .tin-call-to-action-block-wrapper .image,
  .tin-call-to-action-block-wrapper .info,
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid,
  body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,
  .tin-newsletter-segment,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight,
  body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight,
  body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7,
  .tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8,
  .sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-image-highlight-content-below,
  body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-media,
  .tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-image-highlight-content-below {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0,
  .sticky-footer-preview .sticky-footer-subscriptions-wrapper {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 783px) {
  .col-wp-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-wp-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-wp-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-wp-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-wp-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-wp-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-wp-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-wp-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-wp-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-wp-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-wp-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-wp-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-wp-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-wp-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-wp-md-first {
    order: -1;
  }

  .order-wp-md-last {
    order: 13;
  }

  .order-wp-md-0 {
    order: 0;
  }

  .order-wp-md-1 {
    order: 1;
  }

  .order-wp-md-2 {
    order: 2;
  }

  .order-wp-md-3 {
    order: 3;
  }

  .order-wp-md-4 {
    order: 4;
  }

  .order-wp-md-5 {
    order: 5;
  }

  .order-wp-md-6 {
    order: 6;
  }

  .order-wp-md-7 {
    order: 7;
  }

  .order-wp-md-8 {
    order: 8;
  }

  .order-wp-md-9 {
    order: 9;
  }

  .order-wp-md-10 {
    order: 10;
  }

  .order-wp-md-11 {
    order: 11;
  }

  .order-wp-md-12 {
    order: 12;
  }

  .offset-wp-md-0 {
    margin-left: 0;
  }

  .offset-wp-md-1 {
    margin-left: 8.33333%;
  }

  .offset-wp-md-2 {
    margin-left: 16.66667%;
  }

  .offset-wp-md-3 {
    margin-left: 25%;
  }

  .offset-wp-md-4 {
    margin-left: 33.33333%;
  }

  .offset-wp-md-5 {
    margin-left: 41.66667%;
  }

  .offset-wp-md-6 {
    margin-left: 50%;
  }

  .offset-wp-md-7 {
    margin-left: 58.33333%;
  }

  .offset-wp-md-8 {
    margin-left: 66.66667%;
  }

  .offset-wp-md-9 {
    margin-left: 75%;
  }

  .offset-wp-md-10 {
    margin-left: 83.33333%;
  }

  .offset-wp-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg,
  .sticky-footer-subscriptions-col,
  body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3,
  .sticky-footer-image,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-normal,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-simple,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-author-highlight,
  body:not(.wp-admin) .dip-article-block.is-style-normal,
  body:not(.wp-admin) .dip-article-block.is-style-simple,
  body:not(.wp-admin) .dip-article-block.is-style-author-highlight,
  body:not(.wp-admin) .dip-article-block.is-style-vertical-image-content-below,
  body:not(.wp-admin) .dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid,
  .tin-newsletter-segment,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-normal,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-simple,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-author-highlight {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4,
  .detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .info,
  body:not(.wp-admin) .sidebar-block-wrapper .tin-newsletter-segment,
  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5,
  .tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6,
  .sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-image-highlight-content-below,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-image-highlight-content-below {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7,
  .tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8,
  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9,
  body:not(.wp-admin) .item-list.wide .dip-article-block.is-style-text-highlight,
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-text-highlight {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10,
  .tin-call-to-action-block-wrapper .info .content-wrapper,
  .tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3,
  .sticky-footer-collapse-wrapper .sticky-footer-subscriptions-wrapper {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1350px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3,
  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-normal,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-simple,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .item-list .dip-article-block.is-style-author-highlight,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-normal,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-simple,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-vertical-image,
  body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-author-highlight,
  body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6,
  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-image-highlight {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8,
  .tin-call-to-action-block-wrapper .info .content-wrapper,
  .tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper,
  body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9,
  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.form-control,
.search-form .search-field {
  display: block;
  width: 100%;
  height: calc(1.7em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control,
  .search-form .search-field {
    transition: none;
  }
}

.form-control::-ms-expand,
.search-form .search-field::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus,
.search-form .search-field:focus {
  color: #495057;
  background-color: #fff;
  border-color: #ff6567;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.25);
}

.form-control::placeholder,
.search-form .search-field::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.search-form .search-field:disabled,
.form-control[readonly],
.search-form .search-field[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value,
.search-form select.search-field:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.7;
}

.col-form-label-lg {
  padding-top: calc(.5rem + 1px);
  padding-bottom: calc(.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(.25rem + 1px);
  padding-bottom: calc(.25rem + 1px);
  font-size: .875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: .375rem;
  padding-bottom: .375rem;
  margin-bottom: 0;
  line-height: 1.7;
  color: #111;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + .5rem + 2px);
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

select.form-control[size],
.search-form select.search-field[size],
select.form-control[multiple],
.search-form select.search-field[multiple] {
  height: auto;
}

textarea.form-control,
.search-form textarea.search-field {
  height: auto;
}

.form-group,
.search-form label {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: .25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row>.col,
.form-row>[class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: .3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: .75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: .3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1.7;
  color: #fff;
  background-color: rgba(40,167,69,0.9);
  border-radius: .25rem;
}

.was-validated .form-control:valid,
.was-validated .search-form .search-field:valid,
.search-form .was-validated .search-field:valid,
.form-control.is-valid,
.search-form .is-valid.search-field {
  border-color: #28a745;
  padding-right: calc(1.7em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right calc(.425em + .1875rem);
  background-size: calc(.85em + .375rem) calc(.85em + .375rem);
}

.was-validated .form-control:valid:focus,
.was-validated .search-form .search-field:valid:focus,
.search-form .was-validated .search-field:valid:focus,
.form-control.is-valid:focus,
.search-form .is-valid.search-field:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .search-form .search-field:valid ~ .valid-feedback,
.search-form .was-validated .search-field:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.was-validated .search-form .search-field:valid ~ .valid-tooltip,
.search-form .was-validated .search-field:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.search-form .is-valid.search-field ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.search-form .is-valid.search-field ~ .valid-tooltip {
  display: block;
}

.was-validated textarea.form-control:valid,
.was-validated .search-form textarea.search-field:valid,
.search-form .was-validated textarea.search-field:valid,
textarea.form-control.is-valid,
.search-form textarea.is-valid.search-field {
  padding-right: calc(1.7em + .75rem);
  background-position: top calc(.425em + .1875rem) right calc(.425em + .1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc((1em + .75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.85em + .375rem) calc(.85em + .375rem);
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25);
}

.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 .2rem rgba(40,167,69,0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #ea1b1b;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1.7;
  color: #fff;
  background-color: rgba(234,27,27,0.9);
  border-radius: .25rem;
}

.was-validated .form-control:invalid,
.was-validated .search-form .search-field:invalid,
.search-form .was-validated .search-field:invalid,
.form-control.is-invalid,
.search-form .is-invalid.search-field {
  border-color: #ea1b1b;
  padding-right: calc(1.7em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea1b1b' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23ea1b1b' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(.425em + .1875rem);
  background-size: calc(.85em + .375rem) calc(.85em + .375rem);
}

.was-validated .form-control:invalid:focus,
.was-validated .search-form .search-field:invalid:focus,
.search-form .was-validated .search-field:invalid:focus,
.form-control.is-invalid:focus,
.search-form .is-invalid.search-field:focus {
  border-color: #ea1b1b;
  box-shadow: 0 0 0 .2rem rgba(234,27,27,0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .search-form .search-field:invalid ~ .invalid-feedback,
.search-form .was-validated .search-field:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.was-validated .search-form .search-field:invalid ~ .invalid-tooltip,
.search-form .was-validated .search-field:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.search-form .is-invalid.search-field ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.search-form .is-invalid.search-field ~ .invalid-tooltip {
  display: block;
}

.was-validated textarea.form-control:invalid,
.was-validated .search-form textarea.search-field:invalid,
.search-form .was-validated textarea.search-field:invalid,
textarea.form-control.is-invalid,
.search-form textarea.is-invalid.search-field {
  padding-right: calc(1.7em + .75rem);
  background-position: top calc(.425em + .1875rem) right calc(.425em + .1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #ea1b1b;
  padding-right: calc((1em + .75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea1b1b' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23ea1b1b' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.85em + .375rem) calc(.85em + .375rem);
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #ea1b1b;
  box-shadow: 0 0 0 .2rem rgba(234,27,27,0.25);
}

.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #ea1b1b;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #ea1b1b;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #ea1b1b;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #ee4a4a;
  background-color: #ee4a4a;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(234,27,27,0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ea1b1b;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #ea1b1b;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #ea1b1b;
  box-shadow: 0 0 0 .2rem rgba(234,27,27,0.25);
}

.form-inline,
.search-form {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check,
.search-form .form-check {
  width: 100%;
}

@media (min-width: 320px) {
  .form-inline label,
  .search-form label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group,
  .search-form .form-group,
  .form-inline .search-form label,
  .search-form .form-inline label,
  .search-form label {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control,
  .search-form .form-control,
  .search-form .search-field {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext,
  .search-form .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .search-form .input-group,
  .form-inline .custom-select,
  .search-form .custom-select {
    width: auto;
  }

  .form-inline .form-check,
  .search-form .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input,
  .search-form .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: .25rem;
    margin-left: 0;
  }

  .form-inline .custom-control,
  .search-form .custom-control {
    align-items: center;
    justify-content: center;
  }

  .form-inline .custom-control-label,
  .search-form .custom-control-label {
    margin-bottom: 0;
  }
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.7rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #e40004;
  background-color: #e40004;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ff6567;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #ff9899;
  border-color: #ff9899;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: .35rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: .35rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: .25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #e40004;
  background-color: #e40004;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(228,0,4,0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(228,0,4,0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(228,0,4,0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: .5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(.35rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: .5rem;
  transition: transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(228,0,4,0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.7em + .75rem + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #495057;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  appearance: none;
}

.custom-select:focus {
  border-color: #ff6567;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: .75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select-sm {
  height: calc(1.5em + .5rem + 2px);
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.7em + .75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.7em + .75rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #ff6567;
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.25);
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.7em + .75rem + 2px);
  padding: .375rem .75rem;
  font-weight: 400;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.7em + .75rem);
  padding: .375rem .75rem;
  line-height: 1.7;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 .25rem .25rem 0;
}

.custom-range {
  width: 100%;
  height: calc(1rem + .4rem);
  padding: 0;
  background-color: transparent;
  appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(228,0,4,0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(228,0,4,0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(228,0,4,0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -.25rem;
  background-color: #e40004;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #ff9899;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #e40004;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #ff9899;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: .2rem;
  margin-left: .2rem;
  background-color: #e40004;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #ff9899;
}

.custom-range::-ms-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: .5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link,
.site-header .nav a {
  display: block;
  padding: .5rem 1rem;
}

.nav-link:hover,
.site-header .nav a:hover,
.nav-link:focus,
.site-header .nav a:focus {
  text-decoration: none;
}

.nav-link.disabled,
.site-header .nav a.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item,
.nav-tabs .site-header .nav li,
.site-header .nav .nav-tabs li {
  margin-bottom: -1px;
}

.nav-tabs .nav-link,
.nav-tabs .site-header .nav a,
.site-header .nav .nav-tabs a {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .site-header .nav a:hover,
.site-header .nav .nav-tabs a:hover,
.nav-tabs .nav-link:focus,
.nav-tabs .site-header .nav a:focus,
.site-header .nav .nav-tabs a:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled,
.nav-tabs .site-header .nav a.disabled,
.site-header .nav .nav-tabs a.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .site-header .nav a.active,
.site-header .nav .nav-tabs a.active,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .site-header .nav li.show .nav-link,
.site-header .nav .nav-tabs li.show .nav-link,
.nav-tabs .nav-item.show .site-header .nav a,
.site-header .nav .nav-tabs .nav-item.show a,
.nav-tabs .site-header .nav li.show a,
.site-header .nav .nav-tabs li.show a {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link,
.nav-pills .site-header .nav a,
.site-header .nav .nav-pills a {
  border-radius: .25rem;
}

.nav-pills .nav-link.active,
.nav-pills .site-header .nav a.active,
.site-header .nav .nav-pills a.active,
.nav-pills .show>.nav-link,
.nav-pills .site-header .nav .show>a,
.site-header .nav .nav-pills .show>a {
  color: #fff;
  background-color: #e40004;
}

.nav-fill .nav-item,
.nav-fill .site-header .nav li,
.site-header .nav .nav-fill li {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item,
.nav-justified .site-header .nav li,
.site-header .nav .nav-justified li {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1rem;
}

.navbar>.container,
.navbar>.sticky-footer-container,
.multimedia-block-wrapper .navbar>.multimedia-block-inner,
.multimedia-block-wrapper.navbar>h2,
.navbar>.container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: .2875rem;
  padding-bottom: .2875rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link,
.navbar-nav .site-header .nav a,
.site-header .nav .navbar-nav a {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 22.5rem;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 319.98px) {
  .navbar-expand-sm>.container,
  .navbar-expand-sm>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-sm>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-sm>h2,
  .navbar-expand-sm>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 320px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link,
  .navbar-expand-sm .navbar-nav .site-header .nav a,
  .site-header .nav .navbar-expand-sm .navbar-nav a {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-sm>.container,
  .navbar-expand-sm>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-sm>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-sm>h2,
  .navbar-expand-sm>.container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 600.98px) {
  .navbar-expand-wp-sm>.container,
  .navbar-expand-wp-sm>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-wp-sm>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-wp-sm>h2,
  .navbar-expand-wp-sm>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 601px) {
  .navbar-expand-wp-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-wp-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-wp-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-wp-sm .navbar-nav .nav-link,
  .navbar-expand-wp-sm .navbar-nav .site-header .nav a,
  .site-header .nav .navbar-expand-wp-sm .navbar-nav a {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-wp-sm>.container,
  .navbar-expand-wp-sm>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-wp-sm>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-wp-sm>h2,
  .navbar-expand-wp-sm>.container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-wp-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-wp-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md>.container,
  .navbar-expand-md>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-md>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-md>h2,
  .navbar-expand-md>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link,
  .navbar-expand-md .navbar-nav .site-header .nav a,
  .site-header .nav .navbar-expand-md .navbar-nav a {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-md>.container,
  .navbar-expand-md>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-md>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-md>h2,
  .navbar-expand-md>.container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 782.98px) {
  .navbar-expand-wp-md>.container,
  .navbar-expand-wp-md>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-wp-md>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-wp-md>h2,
  .navbar-expand-wp-md>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 783px) {
  .navbar-expand-wp-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-wp-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-wp-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-wp-md .navbar-nav .nav-link,
  .navbar-expand-wp-md .navbar-nav .site-header .nav a,
  .site-header .nav .navbar-expand-wp-md .navbar-nav a {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-wp-md>.container,
  .navbar-expand-wp-md>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-wp-md>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-wp-md>h2,
  .navbar-expand-wp-md>.container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-wp-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-wp-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg>.container,
  .navbar-expand-lg>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-lg>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-lg>h2,
  .navbar-expand-lg>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link,
  .navbar-expand-lg .navbar-nav .site-header .nav a,
  .site-header .nav .navbar-expand-lg .navbar-nav a {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-lg>.container,
  .navbar-expand-lg>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-lg>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-lg>h2,
  .navbar-expand-lg>.container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1349.98px) {
  .navbar-expand-xl>.container,
  .navbar-expand-xl>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-xl>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-xl>h2,
  .navbar-expand-xl>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1350px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link,
  .navbar-expand-xl .navbar-nav .site-header .nav a,
  .site-header .nav .navbar-expand-xl .navbar-nav a {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-xl>.container,
  .navbar-expand-xl>.sticky-footer-container,
  .multimedia-block-wrapper .navbar-expand-xl>.multimedia-block-inner,
  .multimedia-block-wrapper.navbar-expand-xl>h2,
  .navbar-expand-xl>.container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand>.container,
.navbar-expand>.sticky-footer-container,
.multimedia-block-wrapper .navbar-expand>.multimedia-block-inner,
.multimedia-block-wrapper.navbar-expand>h2,
.navbar-expand>.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link,
.navbar-expand .navbar-nav .site-header .nav a,
.site-header .nav .navbar-expand .navbar-nav a {
  padding-right: .5rem;
  padding-left: .5rem;
}

.navbar-expand>.container,
.navbar-expand>.sticky-footer-container,
.multimedia-block-wrapper .navbar-expand>.multimedia-block-inner,
.multimedia-block-wrapper.navbar-expand>h2,
.navbar-expand>.container-fluid {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(17,17,17,0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(17,17,17,0.9);
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .site-header .nav a,
.site-header .nav .navbar-light .navbar-nav a {
  color: rgba(17,17,17,0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .site-header .nav a:hover,
.site-header .nav .navbar-light .navbar-nav a:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .site-header .nav a:focus,
.site-header .nav .navbar-light .navbar-nav a:focus {
  color: rgba(17,17,17,0.7);
}

.navbar-light .navbar-nav .nav-link.disabled,
.navbar-light .navbar-nav .site-header .nav a.disabled,
.site-header .nav .navbar-light .navbar-nav a.disabled {
  color: rgba(17,17,17,0.3);
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .site-header .nav .show>a,
.site-header .nav .navbar-light .navbar-nav .show>a,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .site-header .nav .active>a,
.site-header .nav .navbar-light .navbar-nav .active>a,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .site-header .nav a.show,
.site-header .nav .navbar-light .navbar-nav a.show,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .site-header .nav a.active,
.site-header .nav .navbar-light .navbar-nav a.active {
  color: rgba(17,17,17,0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(17,17,17,0.5);
  border-color: rgba(17,17,17,0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-light .navbar-text {
  color: rgba(17,17,17,0.5);
}

.navbar-light .navbar-text a {
  color: rgba(17,17,17,0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(17,17,17,0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .site-header .nav a,
.site-header .nav .navbar-dark .navbar-nav a {
  color: rgba(255,255,255,0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .site-header .nav a:hover,
.site-header .nav .navbar-dark .navbar-nav a:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .site-header .nav a:focus,
.site-header .nav .navbar-dark .navbar-nav a:focus {
  color: rgba(255,255,255,0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled,
.navbar-dark .navbar-nav .site-header .nav a.disabled,
.site-header .nav .navbar-dark .navbar-nav a.disabled {
  color: rgba(255,255,255,0.25);
}

.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .site-header .nav .show>a,
.site-header .nav .navbar-dark .navbar-nav .show>a,
.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .site-header .nav .active>a,
.site-header .nav .navbar-dark .navbar-nav .active>a,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .site-header .nav a.show,
.site-header .nav .navbar-dark .navbar-nav a.show,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .site-header .nav a.active,
.site-header .nav .navbar-dark .navbar-nav a.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: none;
}

.navbar-dark .navbar-text {
  color: rgba(255,255,255,0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(17,17,17,0.125);
  border-radius: .25rem;
}

.card>hr {
  margin-right: 0;
  margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.card>.list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: .75rem;
}

.card-subtitle {
  margin-top: -.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link+.card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(17,17,17,0.03);
  border-bottom: 1px solid rgba(17,17,17,0.125);
}

.card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.card-header+.list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(17,17,17,0.03);
  border-top: 1px solid rgba(17,17,17,0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}

.card-header-tabs {
  margin-right: -.625rem;
  margin-bottom: -.75rem;
  margin-left: -.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -.625rem;
  margin-left: -.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px);
}

.card-deck {
  display: flex;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 320px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: flex;
  flex-direction: column;
}

.card-group>.card {
  margin-bottom: 15px;
}

@media (min-width: 320px) {
  .card-group {
    flex-flow: row wrap;
  }

  .card-group>.card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group>.card+.card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group>.card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group>.card:not(:last-child) .card-img-top,
  .card-group>.card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }

  .card-group>.card:not(:last-child) .card-img-bottom,
  .card-group>.card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group>.card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group>.card:not(:first-child) .card-img-top,
  .card-group>.card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }

  .card-group>.card:not(:first-child) .card-img-bottom,
  .card-group>.card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: .75rem;
}

@media (min-width: 320px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion>.card {
  overflow: hidden;
}

.accordion>.card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion>.card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion>.card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion>.card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion>.card .card-header {
  margin-bottom: -1px;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: .25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: .2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow .75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #e40004 !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #b10003 !important;
}

.bg-secondary {
  background-color: #893eb4 !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #6c318e !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #fe1 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #ddcd00 !important;
}

.bg-danger {
  background-color: #ea1b1b !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #c01212 !important;
}

.bg-light {
  background-color: #f4f4f4 !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dbdbdb !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #e40004 !important;
}

.border-secondary {
  border-color: #893eb4 !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #fe1 !important;
}

.border-danger {
  border-color: #ea1b1b !important;
}

.border-light {
  border-color: #f4f4f4 !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: .2rem !important;
}

.rounded {
  border-radius: .25rem !important;
}

.rounded-top {
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
}

.rounded-right {
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: .25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.rounded-left {
  border-top-left-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.rounded-lg {
  border-radius: .3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after,
.entry-content::after {
  display: block;
  clear: both;
  content: "";
}

.d-none,
.sticky-footer-desktop-only,
.sticky-footer .sticky-footer-subscriptions .sticky-footer-subscriptions-col:not(:first-child) {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex,
.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 320px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 601px) {
  .d-wp-sm-none {
    display: none !important;
  }

  .d-wp-sm-inline {
    display: inline !important;
  }

  .d-wp-sm-inline-block {
    display: inline-block !important;
  }

  .d-wp-sm-block {
    display: block !important;
  }

  .d-wp-sm-table {
    display: table !important;
  }

  .d-wp-sm-table-row {
    display: table-row !important;
  }

  .d-wp-sm-table-cell {
    display: table-cell !important;
  }

  .d-wp-sm-flex {
    display: flex !important;
  }

  .d-wp-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 783px) {
  .d-wp-md-none {
    display: none !important;
  }

  .d-wp-md-inline {
    display: inline !important;
  }

  .d-wp-md-inline-block {
    display: inline-block !important;
  }

  .d-wp-md-block {
    display: block !important;
  }

  .d-wp-md-table {
    display: table !important;
  }

  .d-wp-md-table-row {
    display: table-row !important;
  }

  .d-wp-md-table-cell {
    display: table-cell !important;
  }

  .d-wp-md-flex {
    display: flex !important;
  }

  .d-wp-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none,
  .sticky-footer-mobile-only {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block,
  .sticky-footer-desktop-only {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex,
  .sticky-footer .sticky-footer-subscriptions .sticky-footer-subscriptions-col:not(:first-child),
  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1350px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 320px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 601px) {
  .flex-wp-sm-row {
    flex-direction: row !important;
  }

  .flex-wp-sm-column {
    flex-direction: column !important;
  }

  .flex-wp-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-wp-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-wp-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-wp-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-wp-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-wp-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-wp-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-wp-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-wp-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-wp-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-wp-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-wp-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-wp-sm-center {
    justify-content: center !important;
  }

  .justify-content-wp-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-wp-sm-around {
    justify-content: space-around !important;
  }

  .align-items-wp-sm-start {
    align-items: flex-start !important;
  }

  .align-items-wp-sm-end {
    align-items: flex-end !important;
  }

  .align-items-wp-sm-center {
    align-items: center !important;
  }

  .align-items-wp-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-wp-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-wp-sm-start {
    align-content: flex-start !important;
  }

  .align-content-wp-sm-end {
    align-content: flex-end !important;
  }

  .align-content-wp-sm-center {
    align-content: center !important;
  }

  .align-content-wp-sm-between {
    align-content: space-between !important;
  }

  .align-content-wp-sm-around {
    align-content: space-around !important;
  }

  .align-content-wp-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-wp-sm-auto {
    align-self: auto !important;
  }

  .align-self-wp-sm-start {
    align-self: flex-start !important;
  }

  .align-self-wp-sm-end {
    align-self: flex-end !important;
  }

  .align-self-wp-sm-center {
    align-self: center !important;
  }

  .align-self-wp-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-wp-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 783px) {
  .flex-wp-md-row {
    flex-direction: row !important;
  }

  .flex-wp-md-column {
    flex-direction: column !important;
  }

  .flex-wp-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-wp-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-wp-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-wp-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-wp-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-wp-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-wp-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-wp-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-wp-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-wp-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-wp-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-wp-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-wp-md-center {
    justify-content: center !important;
  }

  .justify-content-wp-md-between {
    justify-content: space-between !important;
  }

  .justify-content-wp-md-around {
    justify-content: space-around !important;
  }

  .align-items-wp-md-start {
    align-items: flex-start !important;
  }

  .align-items-wp-md-end {
    align-items: flex-end !important;
  }

  .align-items-wp-md-center {
    align-items: center !important;
  }

  .align-items-wp-md-baseline {
    align-items: baseline !important;
  }

  .align-items-wp-md-stretch {
    align-items: stretch !important;
  }

  .align-content-wp-md-start {
    align-content: flex-start !important;
  }

  .align-content-wp-md-end {
    align-content: flex-end !important;
  }

  .align-content-wp-md-center {
    align-content: center !important;
  }

  .align-content-wp-md-between {
    align-content: space-between !important;
  }

  .align-content-wp-md-around {
    align-content: space-around !important;
  }

  .align-content-wp-md-stretch {
    align-content: stretch !important;
  }

  .align-self-wp-md-auto {
    align-self: auto !important;
  }

  .align-self-wp-md-start {
    align-self: flex-start !important;
  }

  .align-self-wp-md-end {
    align-self: flex-end !important;
  }

  .align-self-wp-md-center {
    align-self: center !important;
  }

  .align-self-wp-md-baseline {
    align-self: baseline !important;
  }

  .align-self-wp-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1350px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 320px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 601px) {
  .float-wp-sm-left {
    float: left !important;
  }

  .float-wp-sm-right {
    float: right !important;
  }

  .float-wp-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 783px) {
  .float-wp-md-left {
    float: left !important;
  }

  .float-wp-md-right {
    float: right !important;
  }

  .float-wp-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1350px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.screen-reader-text:active,
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(17,17,17,0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(17,17,17,0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(17,17,17,0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0,0,0,0);
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: .25rem !important;
}

.mt-1,
.my-1 {
  margin-top: .25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: .25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: .25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: .25rem !important;
}

.m-2 {
  margin: .5rem !important;
}

.mt-2,
.my-2 {
  margin-top: .5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: .5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: .5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: .5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-collapse .sticky-footer-subscriptions-col,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: .25rem !important;
}

.pt-1,
.py-1 {
  padding-top: .25rem !important;
}

.pr-1,
.px-1 {
  padding-right: .25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: .25rem !important;
}

.pl-1,
.px-1 {
  padding-left: .25rem !important;
}

.p-2 {
  padding: .5rem !important;
}

.pt-2,
.py-2 {
  padding-top: .5rem !important;
}

.pr-2,
.px-2 {
  padding-right: .5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: .5rem !important;
}

.pl-2,
.px-2 {
  padding-left: .5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -.25rem !important;
}

.m-n2 {
  margin: -.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 320px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: .25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: .25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: .25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: .25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: .25rem !important;
  }

  .m-sm-2 {
    margin: .5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: .5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: .5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: .5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: .5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: .25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: .25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: .25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: .25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: .25rem !important;
  }

  .p-sm-2 {
    padding: .5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: .5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: .5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: .5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: .5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -.25rem !important;
  }

  .m-sm-n2 {
    margin: -.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 601px) {
  .m-wp-sm-0 {
    margin: 0 !important;
  }

  .mt-wp-sm-0,
  .my-wp-sm-0 {
    margin-top: 0 !important;
  }

  .mr-wp-sm-0,
  .mx-wp-sm-0 {
    margin-right: 0 !important;
  }

  .mb-wp-sm-0,
  .my-wp-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-wp-sm-0,
  .mx-wp-sm-0 {
    margin-left: 0 !important;
  }

  .m-wp-sm-1 {
    margin: .25rem !important;
  }

  .mt-wp-sm-1,
  .my-wp-sm-1 {
    margin-top: .25rem !important;
  }

  .mr-wp-sm-1,
  .mx-wp-sm-1 {
    margin-right: .25rem !important;
  }

  .mb-wp-sm-1,
  .my-wp-sm-1 {
    margin-bottom: .25rem !important;
  }

  .ml-wp-sm-1,
  .mx-wp-sm-1 {
    margin-left: .25rem !important;
  }

  .m-wp-sm-2 {
    margin: .5rem !important;
  }

  .mt-wp-sm-2,
  .my-wp-sm-2 {
    margin-top: .5rem !important;
  }

  .mr-wp-sm-2,
  .mx-wp-sm-2 {
    margin-right: .5rem !important;
  }

  .mb-wp-sm-2,
  .my-wp-sm-2 {
    margin-bottom: .5rem !important;
  }

  .ml-wp-sm-2,
  .mx-wp-sm-2 {
    margin-left: .5rem !important;
  }

  .m-wp-sm-3 {
    margin: 1rem !important;
  }

  .mt-wp-sm-3,
  .my-wp-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-wp-sm-3,
  .mx-wp-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-wp-sm-3,
  .my-wp-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-wp-sm-3,
  .mx-wp-sm-3 {
    margin-left: 1rem !important;
  }

  .m-wp-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-wp-sm-4,
  .my-wp-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-wp-sm-4,
  .mx-wp-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-wp-sm-4,
  .my-wp-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-wp-sm-4,
  .mx-wp-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-wp-sm-5 {
    margin: 3rem !important;
  }

  .mt-wp-sm-5,
  .my-wp-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-wp-sm-5,
  .mx-wp-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-wp-sm-5,
  .my-wp-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-wp-sm-5,
  .mx-wp-sm-5 {
    margin-left: 3rem !important;
  }

  .p-wp-sm-0 {
    padding: 0 !important;
  }

  .pt-wp-sm-0,
  .py-wp-sm-0 {
    padding-top: 0 !important;
  }

  .pr-wp-sm-0,
  .px-wp-sm-0 {
    padding-right: 0 !important;
  }

  .pb-wp-sm-0,
  .py-wp-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-wp-sm-0,
  .px-wp-sm-0 {
    padding-left: 0 !important;
  }

  .p-wp-sm-1 {
    padding: .25rem !important;
  }

  .pt-wp-sm-1,
  .py-wp-sm-1 {
    padding-top: .25rem !important;
  }

  .pr-wp-sm-1,
  .px-wp-sm-1 {
    padding-right: .25rem !important;
  }

  .pb-wp-sm-1,
  .py-wp-sm-1 {
    padding-bottom: .25rem !important;
  }

  .pl-wp-sm-1,
  .px-wp-sm-1 {
    padding-left: .25rem !important;
  }

  .p-wp-sm-2 {
    padding: .5rem !important;
  }

  .pt-wp-sm-2,
  .py-wp-sm-2 {
    padding-top: .5rem !important;
  }

  .pr-wp-sm-2,
  .px-wp-sm-2 {
    padding-right: .5rem !important;
  }

  .pb-wp-sm-2,
  .py-wp-sm-2 {
    padding-bottom: .5rem !important;
  }

  .pl-wp-sm-2,
  .px-wp-sm-2 {
    padding-left: .5rem !important;
  }

  .p-wp-sm-3 {
    padding: 1rem !important;
  }

  .pt-wp-sm-3,
  .py-wp-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-wp-sm-3,
  .px-wp-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-wp-sm-3,
  .py-wp-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-wp-sm-3,
  .px-wp-sm-3 {
    padding-left: 1rem !important;
  }

  .p-wp-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-wp-sm-4,
  .py-wp-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-wp-sm-4,
  .px-wp-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-wp-sm-4,
  .py-wp-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-wp-sm-4,
  .px-wp-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-wp-sm-5 {
    padding: 3rem !important;
  }

  .pt-wp-sm-5,
  .py-wp-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-wp-sm-5,
  .px-wp-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-wp-sm-5,
  .py-wp-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-wp-sm-5,
  .px-wp-sm-5 {
    padding-left: 3rem !important;
  }

  .m-wp-sm-n1 {
    margin: -.25rem !important;
  }

  .mt-wp-sm-n1,
  .my-wp-sm-n1 {
    margin-top: -.25rem !important;
  }

  .mr-wp-sm-n1,
  .mx-wp-sm-n1 {
    margin-right: -.25rem !important;
  }

  .mb-wp-sm-n1,
  .my-wp-sm-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-wp-sm-n1,
  .mx-wp-sm-n1 {
    margin-left: -.25rem !important;
  }

  .m-wp-sm-n2 {
    margin: -.5rem !important;
  }

  .mt-wp-sm-n2,
  .my-wp-sm-n2 {
    margin-top: -.5rem !important;
  }

  .mr-wp-sm-n2,
  .mx-wp-sm-n2 {
    margin-right: -.5rem !important;
  }

  .mb-wp-sm-n2,
  .my-wp-sm-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-wp-sm-n2,
  .mx-wp-sm-n2 {
    margin-left: -.5rem !important;
  }

  .m-wp-sm-n3 {
    margin: -1rem !important;
  }

  .mt-wp-sm-n3,
  .my-wp-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-wp-sm-n3,
  .mx-wp-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-wp-sm-n3,
  .my-wp-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-wp-sm-n3,
  .mx-wp-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-wp-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-wp-sm-n4,
  .my-wp-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-wp-sm-n4,
  .mx-wp-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-wp-sm-n4,
  .my-wp-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-wp-sm-n4,
  .mx-wp-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-wp-sm-n5 {
    margin: -3rem !important;
  }

  .mt-wp-sm-n5,
  .my-wp-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-wp-sm-n5,
  .mx-wp-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-wp-sm-n5,
  .my-wp-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-wp-sm-n5,
  .mx-wp-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-wp-sm-auto {
    margin: auto !important;
  }

  .mt-wp-sm-auto,
  .my-wp-sm-auto {
    margin-top: auto !important;
  }

  .mr-wp-sm-auto,
  .mx-wp-sm-auto {
    margin-right: auto !important;
  }

  .mb-wp-sm-auto,
  .my-wp-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-wp-sm-auto,
  .mx-wp-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: .25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: .25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: .25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: .25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: .25rem !important;
  }

  .m-md-2 {
    margin: .5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: .5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: .5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: .5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: .5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: .25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: .25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: .25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: .25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: .25rem !important;
  }

  .p-md-2 {
    padding: .5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: .5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: .5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: .5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: .5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3,
  .site-header.is-sticky .navbar .navbar-menu form .search-buttons {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3,
  .site-header.is-sticky .navbar .navbar-menu form .search-buttons {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -.25rem !important;
  }

  .m-md-n2 {
    margin: -.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 783px) {
  .m-wp-md-0 {
    margin: 0 !important;
  }

  .mt-wp-md-0,
  .my-wp-md-0 {
    margin-top: 0 !important;
  }

  .mr-wp-md-0,
  .mx-wp-md-0 {
    margin-right: 0 !important;
  }

  .mb-wp-md-0,
  .my-wp-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-wp-md-0,
  .mx-wp-md-0 {
    margin-left: 0 !important;
  }

  .m-wp-md-1 {
    margin: .25rem !important;
  }

  .mt-wp-md-1,
  .my-wp-md-1 {
    margin-top: .25rem !important;
  }

  .mr-wp-md-1,
  .mx-wp-md-1 {
    margin-right: .25rem !important;
  }

  .mb-wp-md-1,
  .my-wp-md-1 {
    margin-bottom: .25rem !important;
  }

  .ml-wp-md-1,
  .mx-wp-md-1 {
    margin-left: .25rem !important;
  }

  .m-wp-md-2 {
    margin: .5rem !important;
  }

  .mt-wp-md-2,
  .my-wp-md-2 {
    margin-top: .5rem !important;
  }

  .mr-wp-md-2,
  .mx-wp-md-2 {
    margin-right: .5rem !important;
  }

  .mb-wp-md-2,
  .my-wp-md-2 {
    margin-bottom: .5rem !important;
  }

  .ml-wp-md-2,
  .mx-wp-md-2 {
    margin-left: .5rem !important;
  }

  .m-wp-md-3 {
    margin: 1rem !important;
  }

  .mt-wp-md-3,
  .my-wp-md-3 {
    margin-top: 1rem !important;
  }

  .mr-wp-md-3,
  .mx-wp-md-3 {
    margin-right: 1rem !important;
  }

  .mb-wp-md-3,
  .my-wp-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-wp-md-3,
  .mx-wp-md-3 {
    margin-left: 1rem !important;
  }

  .m-wp-md-4 {
    margin: 1.5rem !important;
  }

  .mt-wp-md-4,
  .my-wp-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-wp-md-4,
  .mx-wp-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-wp-md-4,
  .my-wp-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-wp-md-4,
  .mx-wp-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-wp-md-5 {
    margin: 3rem !important;
  }

  .mt-wp-md-5,
  .my-wp-md-5 {
    margin-top: 3rem !important;
  }

  .mr-wp-md-5,
  .mx-wp-md-5 {
    margin-right: 3rem !important;
  }

  .mb-wp-md-5,
  .my-wp-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-wp-md-5,
  .mx-wp-md-5 {
    margin-left: 3rem !important;
  }

  .p-wp-md-0 {
    padding: 0 !important;
  }

  .pt-wp-md-0,
  .py-wp-md-0 {
    padding-top: 0 !important;
  }

  .pr-wp-md-0,
  .px-wp-md-0 {
    padding-right: 0 !important;
  }

  .pb-wp-md-0,
  .py-wp-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-wp-md-0,
  .px-wp-md-0 {
    padding-left: 0 !important;
  }

  .p-wp-md-1 {
    padding: .25rem !important;
  }

  .pt-wp-md-1,
  .py-wp-md-1 {
    padding-top: .25rem !important;
  }

  .pr-wp-md-1,
  .px-wp-md-1 {
    padding-right: .25rem !important;
  }

  .pb-wp-md-1,
  .py-wp-md-1 {
    padding-bottom: .25rem !important;
  }

  .pl-wp-md-1,
  .px-wp-md-1 {
    padding-left: .25rem !important;
  }

  .p-wp-md-2 {
    padding: .5rem !important;
  }

  .pt-wp-md-2,
  .py-wp-md-2 {
    padding-top: .5rem !important;
  }

  .pr-wp-md-2,
  .px-wp-md-2 {
    padding-right: .5rem !important;
  }

  .pb-wp-md-2,
  .py-wp-md-2 {
    padding-bottom: .5rem !important;
  }

  .pl-wp-md-2,
  .px-wp-md-2 {
    padding-left: .5rem !important;
  }

  .p-wp-md-3 {
    padding: 1rem !important;
  }

  .pt-wp-md-3,
  .py-wp-md-3 {
    padding-top: 1rem !important;
  }

  .pr-wp-md-3,
  .px-wp-md-3 {
    padding-right: 1rem !important;
  }

  .pb-wp-md-3,
  .py-wp-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-wp-md-3,
  .px-wp-md-3 {
    padding-left: 1rem !important;
  }

  .p-wp-md-4 {
    padding: 1.5rem !important;
  }

  .pt-wp-md-4,
  .py-wp-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-wp-md-4,
  .px-wp-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-wp-md-4,
  .py-wp-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-wp-md-4,
  .px-wp-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-wp-md-5 {
    padding: 3rem !important;
  }

  .pt-wp-md-5,
  .py-wp-md-5 {
    padding-top: 3rem !important;
  }

  .pr-wp-md-5,
  .px-wp-md-5 {
    padding-right: 3rem !important;
  }

  .pb-wp-md-5,
  .py-wp-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-wp-md-5,
  .px-wp-md-5 {
    padding-left: 3rem !important;
  }

  .m-wp-md-n1 {
    margin: -.25rem !important;
  }

  .mt-wp-md-n1,
  .my-wp-md-n1 {
    margin-top: -.25rem !important;
  }

  .mr-wp-md-n1,
  .mx-wp-md-n1 {
    margin-right: -.25rem !important;
  }

  .mb-wp-md-n1,
  .my-wp-md-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-wp-md-n1,
  .mx-wp-md-n1 {
    margin-left: -.25rem !important;
  }

  .m-wp-md-n2 {
    margin: -.5rem !important;
  }

  .mt-wp-md-n2,
  .my-wp-md-n2 {
    margin-top: -.5rem !important;
  }

  .mr-wp-md-n2,
  .mx-wp-md-n2 {
    margin-right: -.5rem !important;
  }

  .mb-wp-md-n2,
  .my-wp-md-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-wp-md-n2,
  .mx-wp-md-n2 {
    margin-left: -.5rem !important;
  }

  .m-wp-md-n3 {
    margin: -1rem !important;
  }

  .mt-wp-md-n3,
  .my-wp-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-wp-md-n3,
  .mx-wp-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-wp-md-n3,
  .my-wp-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-wp-md-n3,
  .mx-wp-md-n3 {
    margin-left: -1rem !important;
  }

  .m-wp-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-wp-md-n4,
  .my-wp-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-wp-md-n4,
  .mx-wp-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-wp-md-n4,
  .my-wp-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-wp-md-n4,
  .mx-wp-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-wp-md-n5 {
    margin: -3rem !important;
  }

  .mt-wp-md-n5,
  .my-wp-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-wp-md-n5,
  .mx-wp-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-wp-md-n5,
  .my-wp-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-wp-md-n5,
  .mx-wp-md-n5 {
    margin-left: -3rem !important;
  }

  .m-wp-md-auto {
    margin: auto !important;
  }

  .mt-wp-md-auto,
  .my-wp-md-auto {
    margin-top: auto !important;
  }

  .mr-wp-md-auto,
  .mx-wp-md-auto {
    margin-right: auto !important;
  }

  .mb-wp-md-auto,
  .my-wp-md-auto {
    margin-bottom: auto !important;
  }

  .ml-wp-md-auto,
  .mx-wp-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-collapse .sticky-footer-subscriptions-col,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: .25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: .25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: .25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: .25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: .25rem !important;
  }

  .m-lg-2 {
    margin: .5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: .5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: .5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: .5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: .5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: .25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: .25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: .25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: .25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: .25rem !important;
  }

  .p-lg-2 {
    padding: .5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: .5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: .5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: .5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: .5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3,
  .site-header .navbar .navbar-menu form .search-buttons,
  .site-header.is-sticky .navbar .navbar-menu form .search-buttons {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3,
  .site-header .navbar .navbar-menu form .search-buttons,
  .site-header.is-sticky .navbar .navbar-menu form .search-buttons {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -.25rem !important;
  }

  .m-lg-n2 {
    margin: -.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1350px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: .25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: .25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: .25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: .25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: .25rem !important;
  }

  .m-xl-2 {
    margin: .5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: .5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: .5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: .5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: .5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: .25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: .25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: .25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: .25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: .25rem !important;
  }

  .p-xl-2 {
    padding: .5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: .5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: .5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: .5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: .5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -.25rem !important;
  }

  .m-xl-n2 {
    margin: -.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 320px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 601px) {
  .text-wp-sm-left {
    text-align: left !important;
  }

  .text-wp-sm-right {
    text-align: right !important;
  }

  .text-wp-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 783px) {
  .text-wp-md-left {
    text-align: left !important;
  }

  .text-wp-md-right {
    text-align: right !important;
  }

  .text-wp-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1350px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #e40004 !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #980003 !important;
}

.text-secondary {
  color: #893eb4 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #5e2a7b !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #fe1 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #c4b600 !important;
}

.text-danger {
  color: #ea1b1b !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #a91010 !important;
}

.text-light {
  color: #f4f4f4 !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cecece !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #111 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(17,17,17,0.5) !important;
}

.text-white-50 {
  color: rgba(255,255,255,0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn):not(.sticky-footer-btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container,
  .sticky-footer-container,
  .multimedia-block-wrapper .multimedia-block-inner,
  .multimedia-block-wrapper>h2 {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #111;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody+tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Playfair Display",serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: .9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: .8rem;
  height: .4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: .4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: .4rem .4rem 0;
  border-top-color: #111;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 .4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: .4rem;
  height: .8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: .4rem .4rem .4rem 0;
  border-right-color: #111;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: .4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 .4rem .4rem;
  border-bottom-color: #111;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 .4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: .4rem;
  height: .8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: .4rem 0 .4rem .4rem;
  border-left-color: #111;
}

.tooltip-inner {
  max-width: 200px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #111;
  border-radius: .25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Playfair Display",serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(17,17,17,0.2);
  border-radius: .3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: .5rem;
  margin: 0 .3rem;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
  margin-bottom: .5rem;
}

.bs-popover-top>.arrow,
.bs-popover-auto[x-placement^="top"]>.arrow {
  bottom: calc((.5rem + 1px) * -1);
}

.bs-popover-top>.arrow::before,
.bs-popover-auto[x-placement^="top"]>.arrow::before {
  bottom: 0;
  border-width: .5rem .5rem 0;
  border-top-color: rgba(17,17,17,0.25);
}

.bs-popover-top>.arrow::after,
.bs-popover-auto[x-placement^="top"]>.arrow::after {
  bottom: 1px;
  border-width: .5rem .5rem 0;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
  margin-left: .5rem;
}

.bs-popover-right>.arrow,
.bs-popover-auto[x-placement^="right"]>.arrow {
  left: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0;
}

.bs-popover-right>.arrow::before,
.bs-popover-auto[x-placement^="right"]>.arrow::before {
  left: 0;
  border-width: .5rem .5rem .5rem 0;
  border-right-color: rgba(17,17,17,0.25);
}

.bs-popover-right>.arrow::after,
.bs-popover-auto[x-placement^="right"]>.arrow::after {
  left: 1px;
  border-width: .5rem .5rem .5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
  margin-top: .5rem;
}

.bs-popover-bottom>.arrow,
.bs-popover-auto[x-placement^="bottom"]>.arrow {
  top: calc((.5rem + 1px) * -1);
}

.bs-popover-bottom>.arrow::before,
.bs-popover-auto[x-placement^="bottom"]>.arrow::before {
  top: 0;
  border-width: 0 .5rem .5rem .5rem;
  border-bottom-color: rgba(17,17,17,0.25);
}

.bs-popover-bottom>.arrow::after,
.bs-popover-auto[x-placement^="bottom"]>.arrow::after {
  top: 1px;
  border-width: 0 .5rem .5rem .5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
  margin-right: .5rem;
}

.bs-popover-left>.arrow,
.bs-popover-auto[x-placement^="left"]>.arrow {
  right: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0;
}

.bs-popover-left>.arrow::before,
.bs-popover-auto[x-placement^="left"]>.arrow::before {
  right: 0;
  border-width: .5rem 0 .5rem .5rem;
  border-left-color: rgba(17,17,17,0.25);
}

.bs-popover-left>.arrow::after,
.bs-popover-auto[x-placement^="left"]>.arrow::after {
  right: 1px;
  border-width: .5rem 0 .5rem .5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: .5rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #1b1b1b;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: .5rem .75rem;
  color: #111;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(17,17,17,0.2);
  border-radius: .3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #111;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: .5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.7;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: .3rem;
  border-bottom-left-radius: .3rem;
}

.modal-footer>:not(:first-child) {
  margin-left: .25rem;
}

.modal-footer>:not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 320px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1350px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.img-fluid,
.wp-caption img {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  max-width: 100%;
  height: auto;
}

.figure,
.wp-caption {
  display: inline-block;
}

.figure-img,
.wp-caption img {
  margin-bottom: .5rem;
  line-height: 1;
}

.figure-caption,
.wp-caption-text {
  font-size: 90%;
  color: #6c757d;
}

:root {
  --blue: #159ab3;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #ea1b1b;
  --orange: #fd7e14;
  --yellow: #fe1;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #e40004;
  --secondary: #893eb4;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #fe1;
  --danger: #ea1b1b;
  --light: #f4f4f4;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 320px;
  --breakpoint-wp-sm: 601px;
  --breakpoint-md: 768px;
  --breakpoint-wp-md: 783px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1350px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: .5rem;
  font-weight: 900;
  line-height: 1.5;
  color: #1b1b1b;
}

h1,
.h1 {
  font-size: 2.625rem;
}

h2,
.h2 {
  font-size: 2.125rem;
}

h3,
.h3 {
  font-size: 1.875rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.375rem;
}

h6,
.h6 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.5;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(17,17,17,0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: .5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\00A0";
}

.btn,
.search-form .search-submit,
.sticky-footer-btn {
  display: inline-block;
  font-weight: 700;
  color: #111;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .5rem 1.125rem;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 22.5rem;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .search-form .search-submit,
  .sticky-footer-btn {
    transition: none;
  }
}

.btn:hover,
.search-form .search-submit:hover,
.sticky-footer-btn:hover {
  color: #111;
  text-decoration: none;
}

.btn:focus,
.search-form .search-submit:focus,
.sticky-footer-btn:focus,
.btn.focus,
.search-form .focus.search-submit,
.focus.sticky-footer-btn {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.25);
}

.btn.disabled,
.search-form .disabled.search-submit,
.disabled.sticky-footer-btn,
.btn:disabled,
.search-form .search-submit:disabled,
.sticky-footer-btn:disabled {
  opacity: .65;
}

a.btn.disabled,
.search-form a.disabled.search-submit,
a.disabled.sticky-footer-btn,
fieldset:disabled a.btn,
fieldset:disabled .search-form a.search-submit,
.search-form fieldset:disabled a.search-submit,
fieldset:disabled a.sticky-footer-btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #e40004;
  border-color: #e40004;
}

.btn-primary:hover {
  color: #fff;
  background-color: #be0003;
  border-color: #b10003;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 .2rem rgba(232,38,42,0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #e40004;
  border-color: #e40004;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #b10003;
  border-color: #a40003;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(232,38,42,0.5);
}

.btn-secondary,
.search-form .search-submit {
  color: #fff;
  background-color: #893eb4;
  border-color: #893eb4;
}

.btn-secondary:hover,
.search-form .search-submit:hover {
  color: #fff;
  background-color: #733498;
  border-color: #6c318e;
}

.btn-secondary:focus,
.search-form .search-submit:focus,
.btn-secondary.focus,
.search-form .focus.search-submit {
  box-shadow: 0 0 0 .2rem rgba(155,91,191,0.5);
}

.btn-secondary.disabled,
.search-form .disabled.search-submit,
.btn-secondary:disabled,
.search-form .search-submit:disabled {
  color: #fff;
  background-color: #893eb4;
  border-color: #893eb4;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.search-form .search-submit:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.search-form .search-submit:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle,
.search-form .show>.dropdown-toggle.search-submit {
  color: #fff;
  background-color: #6c318e;
  border-color: #652e85;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.search-form .search-submit:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.search-form .search-submit:not(:disabled):not(.disabled).active:focus,
.show>.btn-secondary.dropdown-toggle:focus,
.search-form .show>.dropdown-toggle.search-submit:focus {
  box-shadow: 0 0 0 .2rem rgba(155,91,191,0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 .2rem rgba(72,180,97,0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show>.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(72,180,97,0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 .2rem rgba(58,176,195,0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show>.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(58,176,195,0.5);
}

.btn-warning {
  color: #212529;
  background-color: #fe1;
  border-color: #fe1;
}

.btn-warning:hover {
  color: #212529;
  background-color: #ead900;
  border-color: #ddcd00;
}

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 .2rem rgba(222,208,21,0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #fe1;
  border-color: #fe1;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show>.btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ddcd00;
  border-color: #d0c100;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(222,208,21,0.5);
}

.btn-danger {
  color: #fff;
  background-color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-danger:hover {
  color: #fff;
  background-color: #cc1313;
  border-color: #c01212;
}

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 .2rem rgba(237,61,61,0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show>.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c01212;
  border-color: #b51111;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(237,61,61,0.5);
}

.btn-light {
  color: #212529;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-light:hover {
  color: #212529;
  background-color: #e1e1e1;
  border-color: #dbdbdb;
}

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 .2rem rgba(212,213,214,0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show>.btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dbdbdb;
  border-color: #d4d4d4;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(212,213,214,0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 .2rem rgba(82,88,93,0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(82,88,93,0.5);
}

.btn-outline-primary {
  color: #e40004;
  border-color: #e40004;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #e40004;
  border-color: #e40004;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #e40004;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #e40004;
  border-color: #e40004;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(228,0,4,0.5);
}

.btn-outline-secondary {
  color: #893eb4;
  border-color: #893eb4;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #893eb4;
  border-color: #893eb4;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 .2rem rgba(137,62,180,0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #893eb4;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show>.btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #893eb4;
  border-color: #893eb4;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(137,62,180,0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 .2rem rgba(40,167,69,0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show>.btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(40,167,69,0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 .2rem rgba(23,162,184,0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show>.btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(23,162,184,0.5);
}

.btn-outline-warning {
  color: #fe1;
  border-color: #fe1;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #fe1;
  border-color: #fe1;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 .2rem rgba(255,238,17,0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #fe1;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show>.btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #fe1;
  border-color: #fe1;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(255,238,17,0.5);
}

.btn-outline-danger {
  color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 .2rem rgba(234,27,27,0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #ea1b1b;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show>.btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #ea1b1b;
  border-color: #ea1b1b;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(234,27,27,0.5);
}

.btn-outline-light {
  color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 .2rem rgba(244,244,244,0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f4f4f4;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show>.btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(244,244,244,0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 .2rem rgba(52,58,64,0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(52,58,64,0.5);
}

.btn-link {
  font-weight: 400;
  color: #e40004;
  text-decoration: none;
}

.btn-link:hover {
  color: #980003;
  text-decoration: none;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: none;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

.btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.btn-block,
.sticky-footer-btn,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a {
  display: block;
  width: 100%;
}

.btn-block+.btn-block,
.sticky-footer-btn+.btn-block,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a+.btn-block,
.btn-block+.sticky-footer-btn,
.sticky-footer-btn+.sticky-footer-btn,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a+.sticky-footer-btn,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .btn-block+a,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .sticky-footer-btn+a,
.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a+a {
  margin-top: .5rem;
}

input[type="submit"].btn-block,
input.sticky-footer-btn[type="submit"],
input[type="reset"].btn-block,
input.sticky-footer-btn[type="reset"],
input[type="button"].btn-block,
input.sticky-footer-btn[type="button"] {
  width: 100%;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
  font-family: 'FontAwesome';
  src: url(/content/themes/tin-caras-theme/dist/vendor/fontawesome-webfont_674f50d2.eot);
  src: url(/content/themes/tin-caras-theme/dist/vendor/fontawesome-webfont_674f50d2.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/content/themes/tin-caras-theme/dist/vendor/fontawesome-webfont_af7ae505.woff2) format("woff2"),url(/content/themes/tin-caras-theme/dist/vendor/fontawesome-webfont_fee66e71.woff) format("woff"),url(/content/themes/tin-caras-theme/dist/vendor/fontawesome-webfont_b06871f2.ttf) format("truetype"),url(/content/themes/tin-caras-theme/dist/vendor/fontawesome-webfont_912ec66d.svg#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa,
.site-header .navbar-menu .primary-menu-bar .showMoreButton,
.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .showMoreButton,
.showMoreButton {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul>li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: .14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.site-header .navbar-menu .primary-menu-bar .fa-pull-left.showMoreButton,
.site-header .navbar .navbar-menu .primary-menu-bar .fa-pull-left.menu-icon,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .fa-pull-left.showMoreButton,
.fa-pull-left.showMoreButton {
  margin-right: .3em;
}

.fa.fa-pull-right,
.site-header .navbar-menu .primary-menu-bar .fa-pull-right.showMoreButton,
.site-header .navbar .navbar-menu .primary-menu-bar .fa-pull-right.menu-icon,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .fa-pull-right.showMoreButton,
.fa-pull-right.showMoreButton {
  margin-left: .3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left,
.site-header .navbar-menu .primary-menu-bar .pull-left.showMoreButton,
.site-header .navbar .navbar-menu .primary-menu-bar .pull-left.menu-icon,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .pull-left.showMoreButton,
.pull-left.showMoreButton {
  margin-right: .3em;
}

.fa.pull-right,
.site-header .navbar-menu .primary-menu-bar .pull-right.showMoreButton,
.site-header .navbar .navbar-menu .primary-menu-bar .pull-right.menu-icon,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .pull-right.showMoreButton,
.pull-right.showMoreButton {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before,
.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon.menu-icon-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before,
.site-header .navbar-menu .primary-menu-bar:not(.expanded) .showMoreButton:before,
.site-header .sticky-part .sticky-bar-extra .submenu-bar:not(.expanded) .showMoreButton:before {
  content: "";
}

.fa-minus:before,
.site-header .navbar-menu .primary-menu-bar.expanded .showMoreButton:before,
.site-header .sticky-part .sticky-bar-extra .submenu-bar.expanded .showMoreButton:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.screen-reader-text:active,
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.fa-stack-1x {
  font-size: .9375rem;
}

.text-bold {
  font-weight: 700;
}

.text-extrabold {
  font-weight: 900;
}

p.spaced {
  margin-bottom: .875rem;
}

a {
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}

body main .page-content p {
  margin-bottom: .9375rem;
  overflow-wrap: break-word;
}

body main .entry-content {
  color: #111;
  font-size: 1rem;
  line-height: 1.5rem;
}

body main .entry-content a {
  color: #283a3f;
}

body main .entry-content a:focus,
body main .entry-content a:hover,
body main .entry-content a:active {
  color: rgba(40,58,63,0.8);
}

body main .entry-content a {
  border-bottom: 2px solid #e40004;
  font-weight: 600;
}

body main .entry-content p {
  margin-bottom: .9375rem;
  overflow-wrap: break-word;
}

.h7,
.h8,
.h9 {
  font-weight: 900;
}

.h7 {
  font-size: 1.125rem;
}

.h8 {
  font-size: 1rem;
}

.h9 {
  font-size: .875rem;
}

.text-primary {
  color: #e40004;
}

.text-secondary {
  color: #893eb4;
}

.text-light-gray {
  color: #f4f4f4;
}

.text-gray {
  color: #cccfd2;
}

.text-dark-gray {
  color: #8894a6;
}

.text-black {
  color: #111;
}

.text-dark-cyan {
  color: #283a3f;
}

.text-blue {
  color: #159ab3;
}

.text-red {
  color: #ea1b1b;
}

.text-white {
  color: #fff;
}

.bg-primary {
  background-color: #e40004;
}

.bg-secondary {
  background-color: #893eb4;
}

.bg-light-gray {
  background-color: #f4f4f4;
}

.bg-gray {
  background-color: #cccfd2;
}

.bg-dark-gray {
  background-color: #8894a6;
}

.bg-black {
  background-color: #111;
}

.bg-dark-cyan {
  background-color: #283a3f;
}

.bg-blue {
  background-color: #159ab3;
}

.bg-red {
  background-color: #ea1b1b;
}

.bg-white {
  background-color: #fff;
}

.no-scroll {
  overflow: hidden;
}

.dip-article-block.is-style-image-highlight,
.dip-article-block.is-style-vertical-image,
.dip-article-block.is-style-normal .article-block-media,
.dip-article-block.is-style-simple .article-block-media,
.dip-article-block.is-style-text-highlight .article-block-media,
.dip-article-block.is-style-image-highlight-content-below .article-block-media,
.dip-article-block.is-style-vertical-image-content-below .article-block-media,
.dip-article-block.is-style-two-columns .article-block-media,
.dip-article-block.is-style-two-columns-full .article-block-media,
.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-img {
  overflow: hidden;
  position: relative;
}

.dip-article-block.is-style-image-highlight img,
.dip-article-block.is-style-vertical-image img,
.dip-article-block.is-style-normal .article-block-media img,
.dip-article-block.is-style-simple .article-block-media img,
.dip-article-block.is-style-text-highlight .article-block-media img,
.dip-article-block.is-style-image-highlight-content-below .article-block-media img,
.dip-article-block.is-style-vertical-image-content-below .article-block-media img,
.dip-article-block.is-style-two-columns .article-block-media img,
.dip-article-block.is-style-two-columns-full .article-block-media img,
.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-img img {
  transition: all 0.35s ease-in-out;
}

.dip-article-block.is-style-image-highlight:hover img,
.dip-article-block.is-style-vertical-image:hover img,
.dip-article-block.is-style-normal .article-block-media:hover img,
.dip-article-block.is-style-simple .article-block-media:hover img,
.dip-article-block.is-style-text-highlight .article-block-media:hover img,
.dip-article-block.is-style-image-highlight-content-below .article-block-media:hover img,
.dip-article-block.is-style-vertical-image-content-below .article-block-media:hover img,
.dip-article-block.is-style-two-columns .article-block-media:hover img,
.dip-article-block.is-style-two-columns-full .article-block-media:hover img,
.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-img:hover img {
  transform: scale(1.1);
}

.page-header .article-category,
body.single-post .article-authors .author .author-meta span,
.dip-article-block .article-block-author span,
.dip-article-block .article-block-section a {
  font-family: "Open Sans";
  font-size: .875rem;
  line-height: 1.1;
  font-weight: normal;
  text-transform: uppercase;
}

.entry-content figcaption,
.thumbnail-image-caption {
  font-size: .875rem;
  line-height: 1.4;
  color: #111;
  margin-top: 7px;
  text-align: left;
}

.bullet-list,
.dip-article-block .article-block-related,
.widget ul {
  list-style-type: none;
  padding-left: 0;
}

.bullet-list li,
.dip-article-block .article-block-related li,
.widget ul li {
  display: flex;
}

.bullet-list li::before,
.dip-article-block .article-block-related li::before,
.widget ul li::before {
  color: #893eb4;
  content: '\25cf';
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: .625rem;
  margin-right: .625rem;
  text-align: center;
}

.thick-border {
  border: 4px solid #e40004;
}

.contain-img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center";
  display: block;
  height: 100%;
  width: 100%;
}

.mobile-banner img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 100%;
  object-position: 0 100%;
  font-family: "object-fit: cover; object-position: 0 100%";
  width: 100%;
  height: 68px;
}

@media (min-width: 768px) {
  .mobile-banner img {
    height: 72px;
  }
}

@media (min-width: 992px) {
  .mobile-banner img {
    height: 100px;
  }
}

.back-to-top {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  border-width: 0;
  bottom: 0;
  box-shadow: 0 0 5px rgba(17,17,17,0.2);
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 3.125rem;
  position: fixed;
  right: 1.25rem;
  width: 44px;
  z-index: 900;
}

.back-to-top a {
  color: #893eb4;
}

.back-to-top a:focus,
.back-to-top a:hover,
.back-to-top a:active {
  color: rgba(137,62,180,0.8);
}

.btn,
.search-form .search-submit,
.sticky-footer-btn {
  font-family: "Playfair Display",serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
}

.btn.btn-wide,
.search-form .btn-wide.search-submit,
.btn-wide.sticky-footer-btn {
  width: 100%;
  max-width: 304px;
}

.btn:focus,
.search-form .search-submit:focus,
.sticky-footer-btn:focus {
  outline: 0;
}

.btn-dark {
  color: #fff;
  background-color: #111;
  border-color: #111;
}

.btn-dark:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 .2rem rgba(53,53,53,0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #111;
  border-color: #111;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(53,53,53,0.5);
}

#cookie-law-info-bar.cookies-bar {
  background-color: rgba(255,255,255,0.8);
  bottom: .625rem !important;
  box-shadow: 0 .0625rem .125rem rgba(17,17,17,0.3);
  color: #111 !important;
  font-family: "Playfair Display",serif;
  font-weight: 400;
  left: 50%;
  min-height: 3.75rem;
  position: fixed !important;
  transform: translateX(-50%);
  width: 94vw;
}

#cookie-law-info-bar.cookies-bar p {
  font-size: .75rem;
  margin-bottom: 0;
}

#cookie-law-info-bar.cookies-bar .cli-plugin-button {
  margin-top: 0;
}

#cookie-law-info-bar.cookies-bar .cli-plugin-main-link {
  color: #159ab3 !important;
  font-weight: 400;
  text-decoration: none;
}

#cookie-law-info-bar.cookies-bar .cli-plugin-main-link:hover {
  text-decoration: underline;
}

#cookie-law-info-bar.cookies-bar .cookie_action_close_header {
  background-color: transparent !important;
  color: #159ab3 !important;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

#cookie-law-info-bar.cookies-bar .cookie_action_close_header:hover {
  text-decoration: underline;
}

#cookie-law-info-bar.cookies-bar .cookie_action_close_header_reject {
  background-color: transparent !important;
  color: #cccfd2 !important;
}

#cookie-law-info-bar.cookies-bar .cookie_action_close_header_reject:hover {
  color: #8894a6 !important;
}

@media (min-width: 768px) {
  #cookie-law-info-bar.cookies-bar {
    height: 3.75rem;
    max-width: 53.875rem;
    padding: 0;
  }
}

.search-form label {
  font-weight: normal;
}

.pswp,
.pswp .pswp__container,
.pswp .pswp__zoom-wrap {
  touch-action: pan-y !important;
  position: absolute;
}

.pswp--zoom-allowed .pswp__img {
  cursor: default !important;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  padding-top: 80%;
  display: block;
  transition: color 0.15s ease-in-out;
}

.gallery-wrapper .gallery-data,
.gallery-wrapper .gallery-ad {
  display: none;
}

.gallery-wrapper .gallery-ad {
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #000;
  z-index: 1;
  position: absolute;
}

.gallery-wrapper .pswp {
  z-index: 499;
  overflow: visible;
}

.gallery-wrapper .pswp .pswp__counter {
  opacity: 1;
  position: relative;
  float: left;
}

.gallery-wrapper .pswp .pswp-sidebar {
  display: none;
  background: #222;
}

.gallery-wrapper .pswp .pswp__top-bar,
.gallery-wrapper .pswp .pswp__caption {
  position: relative;
}

.gallery-wrapper .pswp .pswp__top-bar.pswp__caption--fake,
.gallery-wrapper .pswp .pswp__caption.pswp__caption--fake {
  position: absolute;
}

.gallery-wrapper .pswp .pswp__button--arrow--left {
  left: 2%;
}

.gallery-wrapper .pswp .pswp__button--arrow--right {
  right: 2%;
}

.gallery-wrapper .pswp .pswp__button--arrow--left,
.gallery-wrapper .pswp .pswp__button--arrow--right {
  z-index: 2;
  zoom: 1.3;
}

.gallery-wrapper .pswp .pswp__button--arrow--left::before,
.gallery-wrapper .pswp .pswp__button--arrow--right::before {
  border-radius: 50%;
}

.gallery-wrapper .pswp.pswp--touch .pswp__button--arrow--left,
.gallery-wrapper .pswp.pswp--touch .pswp__button--arrow--right {
  visibility: visible;
}

.gallery-wrapper .pswp .pswp__ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.gallery-wrapper .pswp .pswp__ui.pswp__ui--hidden .pswp__caption {
  opacity: 1;
}

.gallery-wrapper .pswp .pswp__caption__center {
  max-width: 100%;
}

.gallery-wrapper .pswp .pswp__caption__center .thumbnail-image-caption {
  color: #fff;
  font-size: .8125rem;
  line-height: 1.125rem;
}

.gallery-wrapper .pswp .fa,
.gallery-wrapper .pswp .site-header .navbar-menu .primary-menu-bar .showMoreButton,
.site-header .navbar-menu .primary-menu-bar .gallery-wrapper .pswp .showMoreButton,
.gallery-wrapper .pswp .site-header .navbar .navbar-menu .primary-menu-bar .menu-icon,
.site-header .navbar .navbar-menu .primary-menu-bar .gallery-wrapper .pswp .menu-icon,
.gallery-wrapper .pswp .site-header .sticky-part .sticky-bar-extra .submenu-bar .showMoreButton,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .gallery-wrapper .pswp .showMoreButton,
.gallery-wrapper .pswp .showMoreButton {
  background: none;
  color: #fff;
}

.gallery-wrapper .pswp .custom-controls-bar {
  left: 0;
  position: absolute;
  text-align: right;
  top: 0;
}

.gallery-wrapper.open-fs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000000001;
  padding-top: 0;
}

.gallery-wrapper.open-fs .pswp__button--custom-fs {
  background-position: -44px 0;
}

.gallery-wrapper.open-fs .pswp__ui.pswp__ui--hidden .pswp__caption {
  opacity: 0;
}

.article-top-content .gallery-wrapper {
  padding-top: 100%;
}

.article-top-content .gallery-wrapper.open-fs {
  padding-top: 0;
}

.pswp__button {
  opacity: 0.9;
}

.pswp__button:active,
.pswp__button:focus,
.pswp__button:hover {
  border: none;
}

.pswp.sfx .pswp__bg {
  transition: background-color 0.5s ease-in-out;
}

.pswp.sfx .pswp__counter {
  transition: color 0.2s ease-in-out;
}

.pswp.sfx .gallery-ad,
.pswp.sfx .pswp__img--placeholder--blank,
.pswp.sfx .pswp-sidebar {
  transition: background-color 0.2s ease-in-out;
}

.pswp.sfx .pswp__button.fa,
.pswp.sfx .site-header .navbar .navbar-menu .primary-menu-bar .pswp__button.menu-icon,
.site-header .navbar .navbar-menu .primary-menu-bar .pswp.sfx .pswp__button.menu-icon,
.pswp.sfx .site-header .sticky-part .sticky-bar-extra .submenu-bar .pswp__button.showMoreButton,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .pswp.sfx .pswp__button.showMoreButton,
.pswp.sfx .pswp__button.showMoreButton {
  transition: color 0.2s ease-in-out;
}

.pswp.sfx .pswp__button.pswp__button--arrow--right::before,
.pswp.sfx .pswp__button.pswp__button--arrow--left::before {
  transition: background-color 0.2s ease-in-out;
}

div.pswp:not(.dark-mode) .pswp__counter {
  color: #000;
}

@media (max-width: 782.98px) {
  .pswp__ui--idle .pswp__button--arrow--left,
  .pswp__ui--idle .pswp__button--arrow--right {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .article-top-content .gallery-wrapper {
    padding-top: 55.4%;
  }
}

@media (min-width: 992px) {
  .gallery-wrapper.open-fs .pswp.pswp--open {
    width: auto;
    right: 340px;
  }

  .gallery-wrapper.open-fs .pswp.pswp--open .pswp-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    padding: 15px;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 2000000001;
    display: block;
  }

  .pswp__caption,
  .pswp__top-bar {
    padding: 0 2%;
  }
}

.simple-message {
  background-color: #cccfd2;
  display: flex;
  margin-bottom: 30px;
  min-height: 80px;
}

.simple-message i {
  align-items: center;
  background-color: #111;
  color: #fff;
  display: flex;
  flex: 0 0 80px;
  font-size: 1.5rem;
  justify-content: center;
  text-align: center;
}

.simple-message .info {
  align-self: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  padding-top: 15px;
}

.simple-message .info span {
  font-size: .875rem;
  margin-left: 30px;
  margin-right: 30px;
}

.simple-message .info span:first-child {
  font-weight: 700;
}

.site-header .primary-menu {
  display: flex;
  text-transform: uppercase;
  flex-wrap: wrap;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 700;
}

.site-header .primary-menu .menu-item {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  list-style: none;
}

.site-header .primary-menu .menu-item a {
  color: #111;
  margin: 0;
}

.site-header .primary-menu .menu-item.highlight a {
  border-bottom: 2px solid #e40004;
}

.site-header .navbar-collapse .primary-menu {
  display: flex;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  margin: 1.875rem;
  margin-top: .9375rem;
  padding: 0;
}

.site-header .navbar-collapse .primary-menu .menu-item {
  margin: .9375rem 0;
}

.site-header .navbar-menu .primary-menu-bar {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 40px;
}

.site-header .navbar-menu .primary-menu-bar .showMoreButton {
  visibility: hidden;
  display: flex;
  height: 40px;
}

.site-header .navbar-menu .primary-menu-bar:not(.expanded) {
  max-height: 40px;
  height: 40px;
}

.site-header .navbar-menu .primary-menu-bar.expanded {
  max-height: 500px;
  height: auto;
}

.site-header .navbar-menu .primary-menu-bar.expanded .showMoreButton,
.site-header .navbar-menu .primary-menu-bar[overflown='true'] .showMoreButton {
  visibility: visible;
}

.site-header .navbar-menu .primary-menu-bar .primary-menu {
  width: 100%;
  justify-content: center;
}

.site-header .navbar-menu .primary-menu-bar .primary-menu .menu-item {
  height: 40px;
  margin: 0 .9375rem;
}

.site-header .navbar .navbar-menu .primary-menu-bar {
  margin-right: 38px;
  margin-left: 38px;
  padding-left: 0;
  padding-right: 0;
}

.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon {
  font-size: 1.25rem;
}

.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon::before {
  pointer-events: none;
}

.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon a {
  opacity: 0;
  position: absolute;
}

.site-header .navbar .navbar-menu form {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  transition: all 0.5s;
}

.site-header .navbar .navbar-menu form .search-field-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  cursor: pointer;
}

.site-header .navbar .navbar-menu form .search-field-wrapper input[type=search] {
  margin-left: 10px;
  outline: none;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  height: 100%;
  width: 100%;
  background-color: inherit;
}

.site-header .navbar .navbar-menu form .search-buttons {
  height: 100%;
}

.site-header .navbar .navbar-menu form.expanded {
  flex-grow: 1;
}

.site-header .navbar .navbar-menu form.expanded input[type=search] {
  box-shadow: none;
}

.site-header .navbar .navbar-menu form button {
  font-family: inherit;
  font-size: .8125rem;
  height: 100%;
  border-color: #f4f4f4;
  border-width: 0 1px 0 0;
  border-radius: 0;
  font-weight: 400;
}

.site-header .navbar .navbar-menu form button:first-child {
  border-left-width: 1px;
}

@media (max-width: 782.98px) {
  .site-header .navbar .navbar-menu form button {
    padding: 0 10px;
  }
}

.site-header .navbar .navbar-collapse .brands-menu {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f4f4f4;
  border-top: 1px solid #f4f4f4;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 700;
}

.site-header .navbar .navbar-collapse .brands-menu a {
  color: black;
}

.site-header .navbar .navbar-collapse .brands-menu .menu-item {
  padding: .625rem 1.25rem;
  list-style: none;
  text-transform: uppercase;
}

.site-header .navbar .navbar-collapse .brands-menu .current-menu-item {
  font-weight: 700;
}

.site-header .navbar .navbar-menu .header-links-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: .875rem;
}

.site-header .navbar .navbar-menu .header-links-menu a {
  color: black;
  font-weight: bold;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header .navbar .navbar-menu .header-links-menu .menu-item {
  list-style: none;
  padding: 0 1.25rem;
  height: 30px;
}

.site-header .navbar .navbar-menu .header-links-menu .menu-item.highlight {
  background-color: #1b1b1b;
  border-radius: 15px;
}

.site-header .navbar .navbar-menu .header-links-menu .menu-item.highlight>a {
  color: #fff;
}

.site-header .navbar .navbar-menu .collapsible .header-links-menu {
  padding: 0;
  width: 100%;
}

.site-header .navbar .navbar-menu .collapsible .header-links-menu .menu-item {
  background-color: #f7f7f7;
  height: 60px;
  flex: 1 0 0;
}

.site-header .navbar .navbar-menu .collapsible .header-links-menu .menu-item.highlight {
  border-radius: 0;
  background-color: #1b1b1b;
}

.site-header .navbar .navbar-menu .collapsible .header-links-menu .menu-item.highlight>a {
  color: #fff;
}

.site-header .navbar .navbar-menu .header-primary-bar .header-links-menu .menu-item {
  margin: 0 5px;
}

.site-header .sticky-part .sticky-bar-extra {
  width: 100%;
  z-index: 999;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  height: 35px;
  max-height: 35px;
  transition: max-height 0.2s ease-in-out;
  box-shadow: inset 0 4px 8px 0 rgba(0,0,0,0.15);
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .showMoreButton {
  display: flex;
  visibility: hidden;
  width: 38px;
  height: 35px;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar:not(.expanded) {
  max-height: 35px;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.expanded {
  max-height: 500px;
  height: auto;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.expanded .showMoreButton,
.site-header .sticky-part .sticky-bar-extra .submenu-bar[overflown='true'] .showMoreButton {
  visibility: visible;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.hidden .showMoreButton {
  visibility: hidden;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
  margin-right: 38px;
  margin-left: 38px;
  padding-left: 0;
  padding-right: 0;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item {
  margin: 0 10px;
  list-style: none;
  text-transform: uppercase;
  font-size: .875rem;
  height: 35px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item a {
  display: flex;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.highlight a {
  color: #fe1;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.current-menu-parent:not(.anchor) a,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.current-post-parent:not(.anchor) a,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.current-post-ancestor:not(.anchor) a,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.current-menu-item:not(.anchor) a {
  font-weight: bold;
  opacity: 0.7;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-1 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMDYuOTIsMTM1LjU5di0wLjM3aC0zLjcxYy01Ljc0LDAtMTEuMTEtMy4xNS0xMS4xMS0xMS4xMVY0LjA3TDMwLjA1LDMzLjcxbDE4LjUyLDE4LjUydjcxLjg4DQoJCWMwLDcuMDQtNS4zNywxMS4xMS0xMS4xMiwxMS4xMWgtMy43djAuMzdIMTA2LjkyeiIvPg0KPC9nPg0KPC9zdmc+DQo=) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-2 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMDkuMywxMzcuNjNsMTcuMy01Ni42OWgtMC4zOEMxMjAuNDUsMTAwLjM1LDEwOC41MywxMDQsODkuMTIsMTA0SDQ4di0wLjM4DQoJCWMzNi45LTEzLjQ1LDY4LjYxLTMyLjQ4LDY4LjYxLTYxLjVjMC0yMy40NS0xOC44My0zOS4wMS00My44Mi0zOS4wMWMtMzMuMjUsMC00OC44MSwxOS40MS01NC43NywzNi45bDAuMTksMC4xOQ0KCQljMy44NC05LjAzLDEzLjI2LTE0LjgsMjUuMzctMTQuOGMxMy4wNywwLDI2LjUyLDguNjUsMjYuNTIsMjguMDZjMCwyNC40MS0yNC4wMiw1NC4xOS00Mi4yOCw3MS44OGwtMTIuNjgsMTIuM0gxMDkuM3oiLz4NCjwvZz4NCjwvc3ZnPg0K) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-3 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik00Ni40OSw2OS4yN2MxNy45NSwwLDM1LjE1LDE5LjI4LDM1LjE1LDQ2LjY4YzAsMTUuMzEtNy4xOCwyMi42OC0xNS42OCwyMi42OA0KCQljLTEwLjc3LDAtMTYuMjUtMTMuNjEtMTkuODQtMzUuMTVjLTEuMzItNy45NC02LjI0LTEzLjc5LTE0LjM2LTEzLjc5Yy0xMS45LDAtMTYuMjUsOC41LTE2LjI1LDE2LjYzDQoJCWMwLDEwLjU4LDEwLjM5LDMyLjY5LDUwLjQ2LDMyLjY5YzI5Ljg2LDAsNjAuMjgtMTQuNTUsNjAuMjgtNDQuNDFjMC0xOS4wOS0xMy4wNC0yOS40OC0yNS4zMi0zNi40Nw0KCQljNy4xOC0zLjAyLDE1LjY4LTExLjUzLDE1LjY4LTI1LjEzYzAtMTguNTItMTcuMDEtMzAuMDQtNDAuMDYtMzAuMDRjLTI3LjIxLDAtNDEuNzYsMTYuNjMtNTAuMjYsMzMuNDVsMC4xOSwwLjE5DQoJCWM0LjUzLTcuNTYsMTIuMjgtMTIuODUsMjQtMTIuODVjMTIuNDcsMCwyMi4zLDguNjksMjIuMywyMC42YzAsMTMuOC0xMC41OCwyMy4yNC0yNi4yNywyNC41N1Y2OS4yN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-4 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik02Mi44LDEwMC4wOEgxNC40NUw2NC44LDMzLjYzTDYyLjgsMTAwLjA4eiBNMTI0LjAzLDEzOS4zN3YtMC4zOWgtMy44OWMtNi4wMywwLTExLjY2LTMuMy0xMS42Ni0xMS42NnYtMjUuODUNCgkJaDIxLjM4di0xLjM5aC0yMS4zOFYxMC44OEw4NC45NiwzLjExbC03My4wOSw5Ny45N2wwLjE5LDAuMzlINjIuOHYyNS44NWMwLDcuMzktNS42NCwxMS42Ni0xMS42NiwxMS42NmgtMy44OXYwLjM5SDEyNC4wM3oiLz4NCjwvZz4NCjwvc3ZnPg0K) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-5 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMDQuMTcsNDIuOTNsMTIuNTktNDEuNzloLTAuMzZjLTMuMSw5LjI5LTEzLjMyLDkuMjktMzEuNzYsOS4yOWgtNDAuN2wtOC4yMSw3MC40DQoJCUM2Ni41Nyw4Mi44Nyw4MC44LDk5LjIxLDgwLjgsMTIyLjhjMCwxMC4wMy00Ljc1LDE3LjI4LTEyLjQxLDE3LjI4Yy05Ljg2LDAtMTIuOTYtMTMuMTktMTYuNDMtMzQuNTUNCgkJYy0xLjI4LTcuOC02LjAyLTEzLjU2LTEzLjg3LTEzLjU2Yy0xMS41LDAtMTUuNyw4LjM2LTE1LjcsMTYuMzVjMCwxNC4zLDEwLjk1LDMyLjE0LDQ2LDMyLjE0YzI3LjU2LDAsNTUuNDktMTYuNzIsNTUuNDktNDYuMjUNCgkJYzAtMjYuNTYtMjYuMjgtNDUuMTQtODMuOTYtNDUuMTRsMC43My02LjEzSDEwNC4xN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-6 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik02My40Niw1OC4yN2MyLjE0LTEuMTcsMy42OS0yLjMzLDcuNzgtMi4zM2MxMS42NiwwLDExLjQ3LDI1LjY2LDExLjQ3LDQyLjU4YzAsMjMuOTEtMy4xMSw0Mi4xOC0xMS40Nyw0Mi4xOA0KCQljLTguMTYsMC0xMS40Ny0xNy4xMS0xMS40Ny00Ny42M0M1OS43Nyw4MS45OSw2MS41Miw2OC41OCw2My40Niw1OC4yNyBNOTguMjYsMS4xMmMtNDIuMzgsOS43Mi04NC4zNywzOC4zLTg0LjM3LDg2LjMyDQoJCWMwLDI2LjA1LDE4LjA4LDUzLjY1LDU3LjM1LDUzLjY1YzM4LjMsMCw1Ny4zNS0yMi41NSw1Ny4zNS00OC4wMmMwLTI5LjE2LTIxLjk3LTQyLjU3LTM5Ljg1LTQyLjU3Yy0xMC42OSwwLTE4LjY2LDIuOTItMjUuMjcsNy4zOQ0KCQljNC40Ny0yMi4zNiwxNC45Ny00NC43MSwzNC44LTU2LjM4VjEuMTJ6Ii8+DQo8L2c+DQo8L3N2Zz4NCg==) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-7 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik04My42MSwxNDAuNTNjMC00Ni40NSwxOC4zNC0xMDUuOTUsNTAuOTQtMTM4LjU1SDI0LjUybC0xNi4zLDYwLjFoMC40MWM1LjUtMjAuOTksMTguNzQtMjQuNDUsMzkuMzItMjQuNDUNCgkJaDU5Ljl2MC40MWMtNDUuMjMsMjIuNjItNzMuMTQsNjkuNDgtNzMuMTQsMTAyLjQ4SDgzLjYxeiIvPg0KPC9nPg0KPC9zdmc+DQo=) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.partnership-bar .partner-logo img {
  height: 35px;
  padding: .5rem 0;
  width: auto;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.partnership-bar .partnership-title {
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.partnership-bar .partnership-text {
  color: inherit;
  align-self: flex-end;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.partnership-bar>*:not(:last-child) {
  margin-right: 10px;
}

.site-header .navbar .social-menu {
  display: flex;
  justify-content: center;
}

.site-header .navbar .social-menu a {
  transition: opacity 0.1s ease-in-out;
}

.site-header .navbar .social-menu a:hover {
  opacity: 0.8;
}

.site-header .navbar .social-menu a {
  color: #8894a6;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  margin: 0 5px;
}

.site-header .navbar .collapsible .social-menu {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #f4f4f4;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #f4f4f4;
}

.site-header .navbar .collapsible .social-menu a {
  margin: 15px 5px;
}

.site-header .navbar-collapse .footer-menu {
  display: flex;
  flex-direction: column;
  margin: 1.875rem;
  padding: 0;
  font-size: .75rem;
}

.site-header .navbar-collapse .footer-menu .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  list-style: none;
  margin: .625rem 0;
}

.site-header .navbar-collapse .footer-menu a {
  color: #111;
  margin: 0;
}

.showMoreButton {
  width: 38px;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  position: absolute;
  right: 0;
  display: flex;
}

#bsu-placeholder {
  height: 3.75rem;
  position: relative;
  z-index: 1025;
}

.sticky-part {
  z-index: 1000;
}

.icon-bar {
  background-color: #fff;
  display: block;
  height: .125rem;
  margin: .25rem 0;
  transition: all 0.2s;
  width: 1.375rem;
}

.navbar-toggler {
  background: transparent;
  padding: .3125rem .625rem;
}

.navbar-toggler:focus {
  outline: 0;
}

.navbar-toggler:not(.collapsed) .icon-bar {
  background-color: #893eb4;
}

.navbar-toggler:not(.collapsed) .middle-bar {
  visibility: hidden;
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
  transition: transform 0.2s;
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
  transition: transform 0.2s;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  visibility: visible;
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.site-header {
  max-height: 100vh;
  width: 100%;
  font-family: "Open Sans";
}

.site-header .menu-item a,
.site-header .fa-search,
.site-header button span {
  transition: opacity 0.1s ease-in-out;
}

.site-header .menu-item a:hover,
.site-header .fa-search:hover,
.site-header button span:hover {
  opacity: 0.8;
}

.site-header .sticky-part {
  width: 100%;
}

.site-header .nav {
  flex-wrap: nowrap;
}

.site-header .navbar {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.15);
  padding: 0;
  position: relative;
  z-index: 999;
}

.site-header .navbar .navbar-menu {
  background-color: #111;
  width: 100%;
}

.site-header .navbar .navbar-menu .header-primary-bar::before {
  content: '';
  border-top: 2px solid #e40004;
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}

.site-header .navbar .navbar-menu .navbar-toggler {
  flex-basis: 45px;
  color: #fff;
  margin-left: -10px;
  z-index: 999;
}

.site-header .navbar .navbar-menu .navbar-toggler:not(.collapsed) {
  z-index: 1100;
}

.site-header .navbar .navbar-menu .brand {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}

.site-header .navbar .navbar-menu .brand img,
.site-header .navbar .navbar-menu .header-primary-bar {
  height: 2.8125rem;
  transition: height 0.35s ease-in-out;
}

.site-header .navbar .navbar-menu .search-form {
  height: 100%;
}

.site-header .navbar .navbar-menu .header-links {
  margin-left: auto;
}

.site-header .navbar .navbar-collapse {
  background-color: transparent;
  height: 100vh;
  position: fixed;
  top: 0;
  transition: background-color 0.35s ease-in-out;
  width: 100%;
  z-index: 1050;
}

.site-header .navbar .navbar-collapse .collapsible {
  background-color: #fff;
  height: 100%;
  transition: height 0s, margin-left 0.32s ease;
  width: 20rem;
  overflow: hidden;
  margin-left: -20rem;
  padding-top: calc(45px + 60px);
  box-shadow: 2px 0 6px #00000029;
}

.site-header .navbar .navbar-collapse.show {
  background-color: rgba(17,17,17,0.3);
}

.site-header .navbar .navbar-collapse.show .collapsible {
  margin-left: 0;
}

.site-header .navbar .navbar-collapse.show .collapsible .collapsible-content {
  overflow-y: auto;
  height: 100%;
}

.site-header .navbar .navbar-simple {
  align-items: center;
  display: flex;
  height: 3.75rem;
  justify-content: center;
  position: relative;
  width: 100%;
}

.site-header .navbar .navbar-simple .logo {
  left: 0;
  margin-right: auto;
  margin-left: 2.1875rem;
  position: relative;
}

.site-header .navbar .navbar-simple .logo img {
  height: auto;
  width: 3.5rem;
}

.site-header .navbar .navbar-simple .title {
  color: #f7f7f7;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.1875rem;
  margin-right: auto;
  text-transform: uppercase;
}

.site-header.is-sticky .sticky-part {
  position: fixed;
  top: 0;
}

.site-header.is-sticky .navbar .navbar-collapse {
  height: 100vh;
}

.site-header.is-sticky .navbar .navbar-collapse .collapsible {
  padding-top: 45px;
}

body.no-scroll .site-header .navbar {
  z-index: 1050;
}

@media (min-width: 768px) {
  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 45px);
  }

  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 45px) / 2) - (7px / 2));
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 45px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 45px) / 2) - (7px / 2));
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }
}

.admin-bar .site-header .navbar .navbar-collapse .collapsible {
  padding-top: calc(45px + 60px + 0px);
}

.admin-bar .site-header.is-sticky .sticky-part {
  top: 0px;
}

.admin-bar .site-header.is-sticky .navbar .navbar-collapse .collapsible {
  padding-top: calc(45px + 0px);
}

@media (min-width: 768px) {
  .site-header .navbar .navbar-menu .header-primary-bar::after {
    content: '';
    border-bottom: 2px solid #e40004;
    bottom: 0;
    width: calc(100% - 30px);
    position: absolute;
  }

  .site-header .navbar .navbar-menu .header-primary-bar::before {
    content: none;
  }

  .site-header .navbar .navbar-menu .brand img,
  .site-header .navbar .navbar-menu .header-primary-bar {
    height: 4.0625rem;
  }

  .site-header .navbar .navbar-menu .brand img {
    padding-bottom: calc(5px + 2px);
    padding-top: 5px;
  }

  .site-header .navbar .navbar-simple .logo {
    position: absolute;
  }

  .site-header .navbar .navbar-simple .title {
    font-size: 1.625rem;
    line-height: 1.3125rem;
    margin: 0;
  }

  .site-header .navbar .navbar-collapse .collapsible {
    padding-top: calc(65px + 60px);
  }

  .site-header.is-sticky .navbar .navbar-menu .brand img,
  .site-header.is-sticky .navbar .navbar-menu .header-primary-bar {
    height: 3.04688rem;
  }

  .site-header.is-sticky .navbar .navbar-menu .brand img {
    padding: 0;
  }

  .site-header.is-sticky .navbar .navbar-collapse .collapsible {
    padding-top: 3.04688rem;
  }

  .admin-bar .site-header .navbar .navbar-collapse .collapsible {
    padding-top: calc(65px + 60px + 0px);
  }

  .admin-bar .site-header.is-sticky .sticky-part {
    top: 0px;
  }

  .admin-bar .site-header.is-sticky .navbar .navbar-collapse .collapsible {
    padding-top: calc(48.75px + 0px);
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 165px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 165px) / 2) - (7px / 2));
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 165px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 165px) / 2) - (7px / 2));
  }
}

@media (min-width: 783px) {
  .admin-bar .site-header.is-sticky .sticky-part {
    top: 32px;
  }
}

@media (min-width: 783px) and (min-width: 768px) {
  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 165px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 165px) / 2) - (7px / 2));
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 137px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 137px) / 2) - (7px / 2));
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 197px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 197px) / 2) - (7px / 2));
  }
}

@media (min-width: 992px) {
  .site-header .navbar .navbar-menu .brand img,
  .site-header .navbar .navbar-menu .header-primary-bar {
    height: 7.5rem;
  }

  .site-header .navbar .navbar-collapse .collapsible {
    padding-top: calc(120px + 60px);
  }

  .site-header.is-sticky .navbar .navbar-menu .brand img,
  .site-header.is-sticky .navbar .navbar-menu .header-primary-bar {
    height: 4.5rem;
  }

  .site-header.is-sticky .navbar .navbar-collapse .collapsible {
    padding-top: 72px;
  }

  .admin-bar .site-header .navbar .navbar-collapse .collapsible {
    padding-top: calc(120px + 60px + 32px);
  }

  .admin-bar .site-header.is-sticky .sticky-part {
    top: 32px;
  }

  .admin-bar .site-header.is-sticky .navbar .navbar-collapse .collapsible {
    padding-top: calc(72px + 32px);
  }
}

@media (min-width: 992px) and (min-width: 768px) {
  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 160px);
  }

  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 160px) / 2) - (7px / 2));
  }

  .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2) {
    height: calc(100vh - 160px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 220px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 220px) / 2) - (7px / 2));
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2) {
    height: calc(100vh - 220px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 192px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 192px) / 2) - (7px / 2));
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2) {
    height: calc(100vh - 192px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 252px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 252px) / 2) - (7px / 2));
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2) {
    height: calc(100vh - 252px);
  }
}

@media only screen and (min-width: 1840px) {
  .site-header .navbar .navbar-collapse .collapsible {
    margin-left: calc((((100vw - 1320px) / 2) + 60px) * -1);
    width: calc(((100vw - 1320px) / 2) + 60px);
  }
}

.tin-newsletter-segment-form-top {
  top: 145px;
}

.tin-newsletter-segment-form-top.is-sticky {
  top: 85px;
}

@media (min-width: 768px) {
  .tin-newsletter-segment-form-top {
    top: 165px;
  }

  .tin-newsletter-segment-form-top.is-sticky {
    top: 88.75px;
  }

  .admin-bar .tin-newsletter-segment-form-top {
    top: 165px;
  }

  .admin-bar .tin-newsletter-segment-form-top.is-sticky {
    top: 88.75px;
  }
}

@media (min-width: 992px) {
  .tin-newsletter-segment-form-top {
    top: 220px;
  }

  .tin-newsletter-segment-form-top.is-sticky {
    top: 112px;
  }

  .admin-bar .tin-newsletter-segment-form-top {
    top: 252px;
  }

  .admin-bar .tin-newsletter-segment-form-top.is-sticky {
    top: 144px;
  }
}

.partnership-popup.modal-open .site-header.is-sticky .sticky-part {
  top: 0;
}

.partnership-popup .sapo-stripe {
  margin-bottom: 3px;
}

.partnership-popup .site-header {
  transition: margin-top 0.2s ease;
  z-index: 1050;
}

.partnership-popup main.main h1.entry-title {
  font-family: "Playfair Display",serif;
  font-weight: 900;
}

.partnership-popup .partnership-content .article-block-title h4 {
  font-family: "Playfair Display",serif;
}

.partnership-popup .partnership-content .headline-wrapper .article-block-title h4 {
  font-size: 1.875rem;
}

.partnership-popup #partnershipPopup {
  top: 60px;
  height: calc(100% - 60px);
}

.partnership-popup #partnershipPopup .modal-dialog {
  height: 100%;
  margin: 0;
  max-width: 100%;
  pointer-events: all;
}

.partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container {
  max-width: 37.5rem;
}

.partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container p {
  font-family: "Playfair Display",serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.625rem;
}

.partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container .partnership-popup-button {
  margin-top: 2.8125rem;
  display: flex;
  justify-content: center;
}

.partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container .partnership-popup-button button {
  background: rgba(255,255,255,0.3);
  border: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  width: 12.5rem;
}

.partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container .partnership-popup-button button:focus,
.partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container .partnership-popup-button button:active,
.partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container .partnership-popup-button button:hover {
  opacity: 0.8;
  border: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container {
    max-width: 52.5rem;
  }

  .partnership-popup #partnershipPopup .wp-block-cover .wp-block-cover__inner-container p {
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
}

[data-sticky-footer] {
  bottom: 0;
  position: sticky;
  width: 100%;
  z-index: 901;
}

.sticky-footer {
  background-color: #8894a6;
  color: #fff;
  min-height: 50px;
  padding-bottom: 16px;
  padding-top: 16px;
}

.sticky-footer h3 {
  color: inherit;
}

.sticky-footer.bright {
  background-color: #000;
}

.sticky-footer .sticky-footer-close {
  color: #6a6a6d;
  font-size: 1.25rem;
  height: 20px;
  line-height: 1.25rem;
  margin-top: -10px;
  padding: 0;
  position: absolute;
  right: 5px;
  top: 20px;
  width: 20px;
  z-index: 1;
}

.sticky-footer .sticky-footer-subscriptions {
  align-items: center;
  height: 100%;
}

.sticky-footer .sticky-footer-toggler {
  background-color: #8894a6;
  color: #fff;
  font-size: 26px;
  height: 40px;
  left: 50%;
  margin-left: -20px;
  padding: 0;
  position: absolute;
  top: -20px;
  width: 40px;
}

.sticky-footer .sticky-footer-toggler .fa-angle-down {
  transition: transform 0.35s ease-in-out;
}

.sticky-footer .sticky-footer-toggler:focus {
  border: 0;
  box-shadow: unset;
  outline: 0;
}

.sticky-footer .sticky-footer-toggler.collapsed .fa-angle-down {
  transform: rotate(-180deg);
}

.sticky-footer .sticky-footer-toggler.collapsed+.sticky-footer-close {
  top: 50%;
}

.sticky-footer .sticky-footer-btn {
  color: black;
  font-size: .8125rem;
  line-height: 1.3125rem;
  padding-bottom: 3.5px;
  padding-top: 3.5px;
}

.sticky-footer .sticky-footer-image {
  align-self: center;
}

.sticky-footer .sticky-footer-image img {
  border: 1px solid #159ab3;
  max-height: 19vh;
  padding: 10px;
  width: auto;
}

.sticky-footer .sticky-footer-preview .sticky-footer-text {
  align-items: center;
  display: flex;
  justify-content: center;
}

.sticky-footer .sticky-footer-preview .sticky-footer-image img {
  display: none;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.sticky-footer .sticky-footer-collapse-wrapper.show .sticky-footer-image img,
.sticky-footer .sticky-footer-collapse-wrapper.show+.sticky-footer-preview .sticky-footer-image img {
  opacity: 1;
}

.sticky-footer .sticky-footer-collapse-wrapper .sticky-footer-collapse {
  padding-bottom: 15px;
  padding-top: 15px;
  text-align: center;
}

@media (min-width: 992px) {
  .sticky-footer-container .sticky-footer-preview .sticky-footer-image {
    display: flex;
    justify-content: center;
  }

  .sticky-footer-container .sticky-footer-preview .sticky-footer-image img {
    bottom: 0;
    display: none;
    position: absolute;
  }

  .sticky-footer-container .sticky-footer-collapse-wrapper .sticky-footer-collapse {
    padding-top: 0;
  }

  .sticky-footer-container .sticky-footer-collapse-wrapper .sticky-footer-image img {
    display: none;
    opacity: 0;
  }

  .sticky-footer-container .sticky-footer-collapse-wrapper.show+.sticky-footer-preview img {
    display: block;
  }
}

.taboola-bellow-article {
  background-color: #eee;
}

.taboola-bellow-article .trc_rbox_header_span {
  display: block;
  font-size: 1.875rem;
  margin-bottom: .9375rem;
  text-transform: uppercase;
}

.taboola-bellow-article .trc_related_container {
  padding-bottom: 1.5625rem;
  padding-top: 1.5625rem;
}

.taboola-bellow-article .thumbnails-a .videoCube:hover .video-label-box .video-title,
.taboola-bellow-article .thumbnails-a .videoCube:hover .video-label-box .video-description {
  text-decoration: none;
}

.taboola-bellow-article .syndicatedItem:hover .video-label {
  color: rgba(40,58,63,0.8);
  transition: color 0.15s ease-in-out;
}

.qc-cmp-persistent-link {
  display: none !important;
}

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: .5rem auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: .5rem;
  height: auto;
}

.entry-content {
  margin-bottom: 2.5rem;
}

.entry-content figcaption p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .wp-block-image figure.alignleft,
  .wp-block-image img.alignleft,
  .wp-block-image figure.alignright,
  .wp-block-image img.alignright {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 601px) {
  .alignleft {
    float: left;
    margin-right: .5rem;
  }

  .alignright {
    float: right;
    margin-left: .5rem;
  }
}

.wp-block-embed .twitter-tweet,
.wp-block-embed iframe {
  margin: 0 auto !important;
}

.thumbnail-image-caption,
.thumbnail-image-description {
  display: block;
}

.thumbnail-image-description {
  font-size: .75rem;
}

@media (max-width: 782.98px) {
  .entry-content .alignwide {
    max-width: 100%;
    width: 100%;
  }

  .entry-content .alignfull,
  .entry-content .taboola-bellow-article {
    max-width: 100vw;
    width: 100vw;
  }
}

@media (min-width: 1350px) {
  .entry-content .alignwide {
    margin-left: -105px;
    margin-right: -105px;
    max-width: calc(100% + 210px);
  }

  .alignfull,
  .taboola-bellow-article {
    max-width: 100vw;
  }
}

@media (min-width: 992px) {
  body:not(.template-full-data) .entry-content .alignfull,
  body:not(.template-full-data) .entry-content .taboola-bellow-article {
    margin-left: calc(-1 * calc(calc((100vw - 992px) / 2) + calc(30px / 2)));
    width: calc(calc((100vw - 992px) / 2) + calc((992px / 3) * (3 - 1)) - calc(30px / 2));
  }
}

@media (min-width: 1350px) {
  body:not(.template-full-data) .entry-content .alignfull,
  body:not(.template-full-data) .entry-content .taboola-bellow-article {
    margin-left: calc(-1 * calc(calc((100vw - 1320px) / 2) + calc((calc((1320px / 4) * (4 - 1)) - 750px) / 2)));
    width: calc(calc((100vw - 1320px) / 2) + calc((1320px / 4) * (4 - 1)) - calc(30px / 2));
  }
}

body.admin-bar {
  height: calc(100vh - 0px);
}

body main {
  flex: 1 0 auto;
}

body header,
body footer {
  flex-shrink: 0;
}

.page-header {
  margin-top: 1.875rem;
}

.page-header .article-category {
  display: block;
  margin: 0;
}

.page-header .publish-date,
.page-header .separator {
  color: #343a40;
  font-size: .625rem;
  font-weight: bold;
  vertical-align: text-bottom;
}

.page-header .entry-title {
  color: black;
  line-height: 1.1;
  margin-bottom: 1.5625rem;
  font-size: 2rem;
}

.page-header .entry-excerpt {
  color: black;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 1.5625rem;
}

.page-content,
.partnership-content {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 15px;
}

.page-content>*,
.partnership-content>* {
  min-width: 1px;
}

.page-header-extra {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: .625rem;
  margin-top: 2.1875rem;
}

.page-header-extra .publish-date::before {
  content: '';
  border-right: 1px solid #8894a6;
  height: 30px;
  margin: 0 30px;
  display: flex;
  align-self: center;
}

.page-header-extra .article-authors::before {
  content: '';
  border-right: 1px solid #8894a6;
  height: 30px;
  margin: 0 30px;
  display: flex;
  align-self: center;
}

.page-header-extra .article-authors::before {
  content: none;
}

.page-header-extra .article-category,
.page-header-extra .publish-date {
  font-family: "Open Sans",sans-serif;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin: 0;
}

.page-header-extra .article-authors {
  flex-basis: 100%;
}

.page-header-extra h2.article-category {
  font-size: .875rem;
  font-weight: 700;
  text-align: right;
}

.page-header-extra h2.article-category>a {
  color: #e40004;
}

.page-header-extra .publish-date {
  color: #8894a6;
  font-size: .75rem;
}

.next-page {
  text-align: center;
  margin-bottom: 9.375rem;
}

.next-page .view-more {
  text-transform: uppercase;
}

.jscroll-loading {
  text-align: center;
  margin-bottom: 9.375rem;
}

.jscroll-loading i {
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 783px) {
  body.admin-bar {
    height: calc(100vh - 32px);
  }
}

@media (min-width: 768px) {
  body:not(.template-full-data) .after-entry-content,
  body:not(.template-full-data) .entry-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
  }

  .page-header {
    margin-top: 3.75rem;
  }

  .page-header .entry-title {
    font-size: 2.625rem;
  }
}

@media (min-width: 992px) {
  body:not(.template-wide-data) .after-entry-content,
  body:not(.template-wide-data) .entry-content,
  body:not(.template-full-data) .after-entry-content,
  body:not(.template-full-data) .entry-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 450px;
  }

  .page-header-extra .article-authors {
    flex-basis: auto;
  }

  .page-header-extra .article-authors::before {
    content: '';
  }
}

@media (min-width: 768px) {
  body:not(.template-full-data) .after-entry-content,
  body:not(.template-full-data) .entry-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
  }
}

.footer-bottom-wrapper {
  background-color: #f4f4f4;
  padding-top: 3.6875rem;
  text-align: center;
}

.footer-bottom-wrapper .brand {
  height: 60px;
  line-height: 60px;
}

.footer-bottom-wrapper .brand img {
  height: 2.75rem;
  margin-bottom: 3.75rem;
  width: 2.75rem;
}

.footer-bottom-wrapper .copyright {
  color: #8894a6;
  font-size: .625rem;
  margin-bottom: 3.125rem;
}

.footer-bottom-wrapper .social-links {
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.footer-bottom-wrapper .social-links a {
  color: #283a3f;
  flex-basis: 8.125rem;
}

.footer-bottom-wrapper .social-links a:hover {
  color: #159ab3;
}

.footer-bottom-wrapper #useful-links-container {
  text-align: center;
}

.footer-bottom-wrapper #useful-links-container li {
  margin-bottom: 0;
}

.footer-bottom-wrapper #useful-links-container li a {
  color: #283a3f;
  font-size: .75rem;
  font-weight: 700;
  padding-bottom: 1.875rem;
  text-transform: uppercase;
}

.footer-bottom-wrapper #useful-links-container li a:hover {
  color: #159ab3;
}

@media (min-width: 992px) {
  .footer-bottom-wrapper {
    text-align: left;
    padding-top: 0;
  }

  .footer-bottom-wrapper .bottom-row {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .footer-bottom-wrapper .brand img {
    margin-bottom: 0;
  }

  .footer-bottom-wrapper .social-links {
    margin-bottom: 0;
  }

  .footer-bottom-wrapper .social-links a {
    flex-basis: 3.75rem;
  }

  .footer-bottom-wrapper #useful-links-container ul {
    flex-direction: row;
  }

  .footer-bottom-wrapper #useful-links-container ul li {
    padding: 0 1rem;
  }

  .footer-bottom-wrapper #useful-links-container ul li a {
    padding: 0;
  }

  .footer-bottom-wrapper .copyright {
    margin-bottom: 0;
    margin-left: .9375rem;
  }
}

.footer-wrapper {
  background-color: #283a3f;
  color: #fff;
  padding-bottom: 1.5625rem;
  padding-top: 3.375rem;
}

.footer-wrapper h6 {
  color: #fff;
  margin-bottom: 2.5rem;
}

.footer-wrapper a {
  color: #fff;
  text-decoration: none;
}

.footer-wrapper a:hover {
  color: #159ab3;
}

.footer-wrapper .nav-footer ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.footer-wrapper .nav-footer ul li {
  flex-basis: 50%;
  font-weight: 600;
  margin-bottom: 1.4375rem;
}

@media (min-width: 768px) {
  .footer-wrapper {
    padding-top: 1.4375rem;
    padding-bottom: .875rem;
  }

  .footer-wrapper h6 {
    margin-bottom: .625rem;
  }

  .footer-wrapper .nav-footer {
    max-width: 50rem;
    margin: 0 auto;
  }

  .footer-wrapper .nav-footer ul li {
    flex-basis: 33.33%;
    margin-bottom: 0;
  }

  .footer-wrapper .nav-footer ul li a {
    padding: .3125rem 0;
  }
}

@media (min-width: 992px) {
  .footer-wrapper .nav-footer ul li {
    flex-basis: 25%;
  }
}

.site-header .primary-menu {
  display: flex;
  text-transform: uppercase;
  flex-wrap: wrap;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 700;
}

.site-header .primary-menu .menu-item {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  list-style: none;
}

.site-header .primary-menu .menu-item a {
  color: #111;
  margin: 0;
}

.site-header .primary-menu .menu-item.highlight a {
  border-bottom: 2px solid #e40004;
}

.site-header .navbar-collapse .primary-menu {
  display: flex;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  margin: 1.875rem;
  margin-top: .9375rem;
  padding: 0;
}

.site-header .navbar-collapse .primary-menu .menu-item {
  margin: .9375rem 0;
}

.site-header .navbar-menu .primary-menu-bar {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 40px;
}

.site-header .navbar-menu .primary-menu-bar .showMoreButton {
  visibility: hidden;
  display: flex;
  height: 40px;
}

.site-header .navbar-menu .primary-menu-bar:not(.expanded) {
  max-height: 40px;
  height: 40px;
}

.site-header .navbar-menu .primary-menu-bar.expanded {
  max-height: 500px;
  height: auto;
}

.site-header .navbar-menu .primary-menu-bar.expanded .showMoreButton,
.site-header .navbar-menu .primary-menu-bar[overflown='true'] .showMoreButton {
  visibility: visible;
}

.site-header .navbar-menu .primary-menu-bar .primary-menu {
  width: 100%;
  justify-content: center;
}

.site-header .navbar-menu .primary-menu-bar .primary-menu .menu-item {
  height: 40px;
  margin: 0 .9375rem;
}

.site-header .navbar .navbar-menu .primary-menu-bar {
  margin-right: 38px;
  margin-left: 38px;
  padding-left: 0;
  padding-right: 0;
}

.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon {
  font-size: 1.25rem;
}

.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon::before {
  pointer-events: none;
}

.site-header .navbar .navbar-menu .primary-menu-bar .menu-icon a {
  opacity: 0;
  position: absolute;
}

.site-header .navbar .navbar-menu form {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  transition: all 0.5s;
}

.site-header .navbar .navbar-menu form .search-field-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  cursor: pointer;
}

.site-header .navbar .navbar-menu form .search-field-wrapper input[type=search] {
  margin-left: 10px;
  outline: none;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  height: 100%;
  width: 100%;
  background-color: inherit;
}

.site-header .navbar .navbar-menu form .search-buttons {
  height: 100%;
}

.site-header .navbar .navbar-menu form.expanded {
  flex-grow: 1;
}

.site-header .navbar .navbar-menu form.expanded input[type=search] {
  box-shadow: none;
}

.site-header .navbar .navbar-menu form button {
  font-family: inherit;
  font-size: .8125rem;
  height: 100%;
  border-color: #f4f4f4;
  border-width: 0 1px 0 0;
  border-radius: 0;
  font-weight: 400;
}

.site-header .navbar .navbar-menu form button:first-child {
  border-left-width: 1px;
}

@media (max-width: 782.98px) {
  .site-header .navbar .navbar-menu form button {
    padding: 0 10px;
  }
}

.site-header .navbar .navbar-collapse .brands-menu {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f4f4f4;
  border-top: 1px solid #f4f4f4;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 700;
}

.site-header .navbar .navbar-collapse .brands-menu a {
  color: black;
}

.site-header .navbar .navbar-collapse .brands-menu .menu-item {
  padding: .625rem 1.25rem;
  list-style: none;
  text-transform: uppercase;
}

.site-header .navbar .navbar-collapse .brands-menu .current-menu-item {
  font-weight: 700;
}

.site-header .navbar .navbar-menu .header-links-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: .875rem;
}

.site-header .navbar .navbar-menu .header-links-menu a {
  color: black;
  font-weight: bold;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header .navbar .navbar-menu .header-links-menu .menu-item {
  list-style: none;
  padding: 0 1.25rem;
  height: 30px;
}

.site-header .navbar .navbar-menu .header-links-menu .menu-item.highlight {
  background-color: #1b1b1b;
  border-radius: 15px;
}

.site-header .navbar .navbar-menu .header-links-menu .menu-item.highlight>a {
  color: #fff;
}

.site-header .navbar .navbar-menu .collapsible .header-links-menu {
  padding: 0;
  width: 100%;
}

.site-header .navbar .navbar-menu .collapsible .header-links-menu .menu-item {
  background-color: #f7f7f7;
  height: 60px;
  flex: 1 0 0;
}

.site-header .navbar .navbar-menu .collapsible .header-links-menu .menu-item.highlight {
  border-radius: 0;
  background-color: #1b1b1b;
}

.site-header .navbar .navbar-menu .collapsible .header-links-menu .menu-item.highlight>a {
  color: #fff;
}

.site-header .navbar .navbar-menu .header-primary-bar .header-links-menu .menu-item {
  margin: 0 5px;
}

.site-header .sticky-part .sticky-bar-extra {
  width: 100%;
  z-index: 999;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  height: 35px;
  max-height: 35px;
  transition: max-height 0.2s ease-in-out;
  box-shadow: inset 0 4px 8px 0 rgba(0,0,0,0.15);
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .showMoreButton {
  display: flex;
  visibility: hidden;
  width: 38px;
  height: 35px;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar:not(.expanded) {
  max-height: 35px;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.expanded {
  max-height: 500px;
  height: auto;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.expanded .showMoreButton,
.site-header .sticky-part .sticky-bar-extra .submenu-bar[overflown='true'] .showMoreButton {
  visibility: visible;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.hidden .showMoreButton {
  visibility: hidden;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
  margin-right: 38px;
  margin-left: 38px;
  padding-left: 0;
  padding-right: 0;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item {
  margin: 0 10px;
  list-style: none;
  text-transform: uppercase;
  font-size: .875rem;
  height: 35px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item a {
  display: flex;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.highlight a {
  color: #fe1;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.current-menu-parent:not(.anchor) a,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.current-post-parent:not(.anchor) a,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.current-post-ancestor:not(.anchor) a,
.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.current-menu-item:not(.anchor) a {
  font-weight: bold;
  opacity: 0.7;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-1 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMDYuOTIsMTM1LjU5di0wLjM3aC0zLjcxYy01Ljc0LDAtMTEuMTEtMy4xNS0xMS4xMS0xMS4xMVY0LjA3TDMwLjA1LDMzLjcxbDE4LjUyLDE4LjUydjcxLjg4DQoJCWMwLDcuMDQtNS4zNywxMS4xMS0xMS4xMiwxMS4xMWgtMy43djAuMzdIMTA2LjkyeiIvPg0KPC9nPg0KPC9zdmc+DQo=) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-2 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMDkuMywxMzcuNjNsMTcuMy01Ni42OWgtMC4zOEMxMjAuNDUsMTAwLjM1LDEwOC41MywxMDQsODkuMTIsMTA0SDQ4di0wLjM4DQoJCWMzNi45LTEzLjQ1LDY4LjYxLTMyLjQ4LDY4LjYxLTYxLjVjMC0yMy40NS0xOC44My0zOS4wMS00My44Mi0zOS4wMWMtMzMuMjUsMC00OC44MSwxOS40MS01NC43NywzNi45bDAuMTksMC4xOQ0KCQljMy44NC05LjAzLDEzLjI2LTE0LjgsMjUuMzctMTQuOGMxMy4wNywwLDI2LjUyLDguNjUsMjYuNTIsMjguMDZjMCwyNC40MS0yNC4wMiw1NC4xOS00Mi4yOCw3MS44OGwtMTIuNjgsMTIuM0gxMDkuM3oiLz4NCjwvZz4NCjwvc3ZnPg0K) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-3 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik00Ni40OSw2OS4yN2MxNy45NSwwLDM1LjE1LDE5LjI4LDM1LjE1LDQ2LjY4YzAsMTUuMzEtNy4xOCwyMi42OC0xNS42OCwyMi42OA0KCQljLTEwLjc3LDAtMTYuMjUtMTMuNjEtMTkuODQtMzUuMTVjLTEuMzItNy45NC02LjI0LTEzLjc5LTE0LjM2LTEzLjc5Yy0xMS45LDAtMTYuMjUsOC41LTE2LjI1LDE2LjYzDQoJCWMwLDEwLjU4LDEwLjM5LDMyLjY5LDUwLjQ2LDMyLjY5YzI5Ljg2LDAsNjAuMjgtMTQuNTUsNjAuMjgtNDQuNDFjMC0xOS4wOS0xMy4wNC0yOS40OC0yNS4zMi0zNi40Nw0KCQljNy4xOC0zLjAyLDE1LjY4LTExLjUzLDE1LjY4LTI1LjEzYzAtMTguNTItMTcuMDEtMzAuMDQtNDAuMDYtMzAuMDRjLTI3LjIxLDAtNDEuNzYsMTYuNjMtNTAuMjYsMzMuNDVsMC4xOSwwLjE5DQoJCWM0LjUzLTcuNTYsMTIuMjgtMTIuODUsMjQtMTIuODVjMTIuNDcsMCwyMi4zLDguNjksMjIuMywyMC42YzAsMTMuOC0xMC41OCwyMy4yNC0yNi4yNywyNC41N1Y2OS4yN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-4 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik02Mi44LDEwMC4wOEgxNC40NUw2NC44LDMzLjYzTDYyLjgsMTAwLjA4eiBNMTI0LjAzLDEzOS4zN3YtMC4zOWgtMy44OWMtNi4wMywwLTExLjY2LTMuMy0xMS42Ni0xMS42NnYtMjUuODUNCgkJaDIxLjM4di0xLjM5aC0yMS4zOFYxMC44OEw4NC45NiwzLjExbC03My4wOSw5Ny45N2wwLjE5LDAuMzlINjIuOHYyNS44NWMwLDcuMzktNS42NCwxMS42Ni0xMS42NiwxMS42NmgtMy44OXYwLjM5SDEyNC4wM3oiLz4NCjwvZz4NCjwvc3ZnPg0K) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-5 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMDQuMTcsNDIuOTNsMTIuNTktNDEuNzloLTAuMzZjLTMuMSw5LjI5LTEzLjMyLDkuMjktMzEuNzYsOS4yOWgtNDAuN2wtOC4yMSw3MC40DQoJCUM2Ni41Nyw4Mi44Nyw4MC44LDk5LjIxLDgwLjgsMTIyLjhjMCwxMC4wMy00Ljc1LDE3LjI4LTEyLjQxLDE3LjI4Yy05Ljg2LDAtMTIuOTYtMTMuMTktMTYuNDMtMzQuNTUNCgkJYy0xLjI4LTcuOC02LjAyLTEzLjU2LTEzLjg3LTEzLjU2Yy0xMS41LDAtMTUuNyw4LjM2LTE1LjcsMTYuMzVjMCwxNC4zLDEwLjk1LDMyLjE0LDQ2LDMyLjE0YzI3LjU2LDAsNTUuNDktMTYuNzIsNTUuNDktNDYuMjUNCgkJYzAtMjYuNTYtMjYuMjgtNDUuMTQtODMuOTYtNDUuMTRsMC43My02LjEzSDEwNC4xN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-6 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik02My40Niw1OC4yN2MyLjE0LTEuMTcsMy42OS0yLjMzLDcuNzgtMi4zM2MxMS42NiwwLDExLjQ3LDI1LjY2LDExLjQ3LDQyLjU4YzAsMjMuOTEtMy4xMSw0Mi4xOC0xMS40Nyw0Mi4xOA0KCQljLTguMTYsMC0xMS40Ny0xNy4xMS0xMS40Ny00Ny42M0M1OS43Nyw4MS45OSw2MS41Miw2OC41OCw2My40Niw1OC4yNyBNOTguMjYsMS4xMmMtNDIuMzgsOS43Mi04NC4zNywzOC4zLTg0LjM3LDg2LjMyDQoJCWMwLDI2LjA1LDE4LjA4LDUzLjY1LDU3LjM1LDUzLjY1YzM4LjMsMCw1Ny4zNS0yMi41NSw1Ny4zNS00OC4wMmMwLTI5LjE2LTIxLjk3LTQyLjU3LTM5Ljg1LTQyLjU3Yy0xMC42OSwwLTE4LjY2LDIuOTItMjUuMjcsNy4zOQ0KCQljNC40Ny0yMi4zNiwxNC45Ny00NC43MSwzNC44LTU2LjM4VjEuMTJ6Ii8+DQo8L2c+DQo8L3N2Zz4NCg==) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar .submenu .menu-item.number-7 a::before {
  content: ' ';
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNDEuNzMgMTQxLjczOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7Y2xpcC1wYXRoOnVybCgjU1ZHSURfMl8pO30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHJlY3QgaWQ9IlNWR0lEXzFfIiB3aWR0aD0iMTQxLjczIiBoZWlnaHQ9IjE0MS43MyIvPg0KCTwvZGVmcz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik04My42MSwxNDAuNTNjMC00Ni40NSwxOC4zNC0xMDUuOTUsNTAuOTQtMTM4LjU1SDI0LjUybC0xNi4zLDYwLjFoMC40MWM1LjUtMjAuOTksMTguNzQtMjQuNDUsMzkuMzItMjQuNDUNCgkJaDU5Ljl2MC40MWMtNDUuMjMsMjIuNjItNzMuMTQsNjkuNDgtNzMuMTQsMTAyLjQ4SDgzLjYxeiIvPg0KPC9nPg0KPC9zdmc+DQo=) no-repeat;
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  align-self: center;
  justify-self: center;
  margin-right: .3125rem;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.partnership-bar .partner-logo img {
  height: 35px;
  padding: .5rem 0;
  width: auto;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.partnership-bar .partnership-title {
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.partnership-bar .partnership-text {
  color: inherit;
  align-self: flex-end;
}

.site-header .sticky-part .sticky-bar-extra .submenu-bar.partnership-bar>*:not(:last-child) {
  margin-right: 10px;
}

.site-header .navbar .social-menu {
  display: flex;
  justify-content: center;
}

.site-header .navbar .social-menu a {
  transition: opacity 0.1s ease-in-out;
}

.site-header .navbar .social-menu a:hover {
  opacity: 0.8;
}

.site-header .navbar .social-menu a {
  color: #8894a6;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  margin: 0 5px;
}

.site-header .navbar .collapsible .social-menu {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #f4f4f4;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #f4f4f4;
}

.site-header .navbar .collapsible .social-menu a {
  margin: 15px 5px;
}

.site-header .navbar-collapse .footer-menu {
  display: flex;
  flex-direction: column;
  margin: 1.875rem;
  padding: 0;
  font-size: .75rem;
}

.site-header .navbar-collapse .footer-menu .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  list-style: none;
  margin: .625rem 0;
}

.site-header .navbar-collapse .footer-menu a {
  color: #111;
  margin: 0;
}

.showMoreButton {
  width: 38px;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  position: absolute;
  right: 0;
  display: flex;
}

#bsu-placeholder {
  height: 3.75rem;
  position: relative;
  z-index: 1025;
}

.sticky-part {
  z-index: 1000;
}

.icon-bar {
  background-color: #fff;
  display: block;
  height: .125rem;
  margin: .25rem 0;
  transition: all 0.2s;
  width: 1.375rem;
}

.navbar-toggler {
  background: transparent;
  padding: .3125rem .625rem;
}

.navbar-toggler:focus {
  outline: 0;
}

.navbar-toggler:not(.collapsed) .icon-bar {
  background-color: #893eb4;
}

.navbar-toggler:not(.collapsed) .middle-bar {
  visibility: hidden;
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
  transition: transform 0.2s;
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
  transition: transform 0.2s;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  visibility: visible;
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.site-header {
  max-height: 100vh;
  width: 100%;
  font-family: "Open Sans";
}

.site-header .menu-item a,
.site-header .fa-search,
.site-header button span {
  transition: opacity 0.1s ease-in-out;
}

.site-header .menu-item a:hover,
.site-header .fa-search:hover,
.site-header button span:hover {
  opacity: 0.8;
}

.site-header .sticky-part {
  width: 100%;
}

.site-header .nav {
  flex-wrap: nowrap;
}

.site-header .navbar {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.15);
  padding: 0;
  position: relative;
  z-index: 999;
}

.site-header .navbar .navbar-menu {
  background-color: #111;
  width: 100%;
}

.site-header .navbar .navbar-menu .header-primary-bar::before {
  content: '';
  border-top: 2px solid #e40004;
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}

.site-header .navbar .navbar-menu .navbar-toggler {
  flex-basis: 45px;
  color: #fff;
  margin-left: -10px;
  z-index: 999;
}

.site-header .navbar .navbar-menu .navbar-toggler:not(.collapsed) {
  z-index: 1100;
}

.site-header .navbar .navbar-menu .brand {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}

.site-header .navbar .navbar-menu .brand img,
.site-header .navbar .navbar-menu .header-primary-bar {
  height: 2.8125rem;
  transition: height 0.35s ease-in-out;
}

.site-header .navbar .navbar-menu .search-form {
  height: 100%;
}

.site-header .navbar .navbar-menu .header-links {
  margin-left: auto;
}

.site-header .navbar .navbar-collapse {
  background-color: transparent;
  height: 100vh;
  position: fixed;
  top: 0;
  transition: background-color 0.35s ease-in-out;
  width: 100%;
  z-index: 1050;
}

.site-header .navbar .navbar-collapse .collapsible {
  background-color: #fff;
  height: 100%;
  transition: height 0s, margin-left 0.32s ease;
  width: 20rem;
  overflow: hidden;
  margin-left: -20rem;
  padding-top: calc(45px + 60px);
  box-shadow: 2px 0 6px #00000029;
}

.site-header .navbar .navbar-collapse.show {
  background-color: rgba(17,17,17,0.3);
}

.site-header .navbar .navbar-collapse.show .collapsible {
  margin-left: 0;
}

.site-header .navbar .navbar-collapse.show .collapsible .collapsible-content {
  overflow-y: auto;
  height: 100%;
}

.site-header .navbar .navbar-simple {
  align-items: center;
  display: flex;
  height: 3.75rem;
  justify-content: center;
  position: relative;
  width: 100%;
}

.site-header .navbar .navbar-simple .logo {
  left: 0;
  margin-right: auto;
  margin-left: 2.1875rem;
  position: relative;
}

.site-header .navbar .navbar-simple .logo img {
  height: auto;
  width: 3.5rem;
}

.site-header .navbar .navbar-simple .title {
  color: #f7f7f7;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.1875rem;
  margin-right: auto;
  text-transform: uppercase;
}

.site-header.is-sticky .sticky-part {
  position: fixed;
  top: 0;
}

.site-header.is-sticky .navbar .navbar-collapse {
  height: 100vh;
}

.site-header.is-sticky .navbar .navbar-collapse .collapsible {
  padding-top: 45px;
}

body.no-scroll .site-header .navbar {
  z-index: 1050;
}

@media (min-width: 768px) {
  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 45px);
  }

  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 45px) / 2) - (7px / 2));
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 45px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 45px) / 2) - (7px / 2));
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }
}

.admin-bar .site-header .navbar .navbar-collapse .collapsible {
  padding-top: calc(45px + 60px + 0px);
}

.admin-bar .site-header.is-sticky .sticky-part {
  top: 0px;
}

.admin-bar .site-header.is-sticky .navbar .navbar-collapse .collapsible {
  padding-top: calc(45px + 0px);
}

@media (min-width: 768px) {
  .site-header .navbar .navbar-menu .header-primary-bar::after {
    content: '';
    border-bottom: 2px solid #e40004;
    bottom: 0;
    width: calc(100% - 30px);
    position: absolute;
  }

  .site-header .navbar .navbar-menu .header-primary-bar::before {
    content: none;
  }

  .site-header .navbar .navbar-menu .brand img,
  .site-header .navbar .navbar-menu .header-primary-bar {
    height: 4.0625rem;
  }

  .site-header .navbar .navbar-menu .brand img {
    padding-bottom: calc(5px + 2px);
    padding-top: 5px;
  }

  .site-header .navbar .navbar-simple .logo {
    position: absolute;
  }

  .site-header .navbar .navbar-simple .title {
    font-size: 1.625rem;
    line-height: 1.3125rem;
    margin: 0;
  }

  .site-header .navbar .navbar-collapse .collapsible {
    padding-top: calc(65px + 60px);
  }

  .site-header.is-sticky .navbar .navbar-menu .brand img,
  .site-header.is-sticky .navbar .navbar-menu .header-primary-bar {
    height: 3.04688rem;
  }

  .site-header.is-sticky .navbar .navbar-menu .brand img {
    padding: 0;
  }

  .site-header.is-sticky .navbar .navbar-collapse .collapsible {
    padding-top: 3.04688rem;
  }

  .admin-bar .site-header .navbar .navbar-collapse .collapsible {
    padding-top: calc(65px + 60px + 0px);
  }

  .admin-bar .site-header.is-sticky .sticky-part {
    top: 0px;
  }

  .admin-bar .site-header.is-sticky .navbar .navbar-collapse .collapsible {
    padding-top: calc(48.75px + 0px);
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 165px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 165px) / 2) - (7px / 2));
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 165px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 165px) / 2) - (7px / 2));
  }
}

@media (min-width: 783px) {
  .admin-bar .site-header.is-sticky .sticky-part {
    top: 32px;
  }
}

@media (min-width: 783px) and (min-width: 768px) {
  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 105px);
  }

  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 105px) / 2) - (7px / 2));
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 165px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 165px) / 2) - (7px / 2));
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 137px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 137px) / 2) - (7px / 2));
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 197px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 197px) / 2) - (7px / 2));
  }
}

@media (min-width: 992px) {
  .site-header .navbar .navbar-menu .brand img,
  .site-header .navbar .navbar-menu .header-primary-bar {
    height: 7.5rem;
  }

  .site-header .navbar .navbar-collapse .collapsible {
    padding-top: calc(120px + 60px);
  }

  .site-header.is-sticky .navbar .navbar-menu .brand img,
  .site-header.is-sticky .navbar .navbar-menu .header-primary-bar {
    height: 4.5rem;
  }

  .site-header.is-sticky .navbar .navbar-collapse .collapsible {
    padding-top: 72px;
  }

  .admin-bar .site-header .navbar .navbar-collapse .collapsible {
    padding-top: calc(120px + 60px + 32px);
  }

  .admin-bar .site-header.is-sticky .sticky-part {
    top: 32px;
  }

  .admin-bar .site-header.is-sticky .navbar .navbar-collapse .collapsible {
    padding-top: calc(72px + 32px);
  }
}

@media (min-width: 992px) and (min-width: 768px) {
  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 160px);
  }

  .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 160px) / 2) - (7px / 2));
  }

  .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2) {
    height: calc(100vh - 160px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 220px);
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 220px) / 2) - (7px / 2));
  }

  .sapo-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2) {
    height: calc(100vh - 220px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 192px);
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 192px) / 2) - (7px / 2));
  }

  .admin-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2) {
    height: calc(100vh - 192px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(1) {
    height: calc(100vh - 252px);
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full .dip-article-block:nth-child(n+2) {
    height: calc(((100vh - 252px) / 2) - (7px / 2));
  }

  .admin-bar.sapo-bar .headline-wrapper:not(.edit-mode).headline-full.blocks-2 .dip-article-block:nth-child(2) {
    height: calc(100vh - 252px);
  }
}

@media only screen and (min-width: 1840px) {
  .site-header .navbar .navbar-collapse .collapsible {
    margin-left: calc((((100vw - 1320px) / 2) + 60px) * -1);
    width: calc(((100vw - 1320px) / 2) + 60px);
  }
}

body:not(.wp-admin) .item-list .dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .item-list .dip-article-block.is-style-two-columns-full {
  flex-grow: 1;
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

.last-hour-highlight {
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: .875rem;
}

.last-hour-highlight .last-hour-highlight-inner {
  align-items: center;
  color: inherit;
  display: flex;
  transition: filter 0.35s ease-in-out;
}

.last-hour-highlight i {
  color: #e40004;
  margin-left: 20px;
}

.template-news .page-header .entry-title,
.template-newsletters-subscription .page-header .entry-title,
.single-tin_author .page-header .entry-title,
.archive .page-header .entry-title {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
  font-family: 'Lora', serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.template-news .page-header .entry-title::before,
.template-newsletters-subscription .page-header .entry-title::before,
.single-tin_author .page-header .entry-title::before,
.archive .page-header .entry-title::before {
  border-top: 1px solid;
  border-color: #e40004;
  content: '';
  display: block;
  padding-top: .625rem;
  width: 200px;
}

.template-news .page-header .entry-title::before,
.template-newsletters-subscription .page-header .entry-title::before,
.single-tin_author .page-header .entry-title::before,
.archive .page-header .entry-title::before {
  margin: 0 auto;
  width: 4.125rem;
}

.template-newsletters-subscription .newsletters-subscription-excerpt {
  font-size: 22px;
}

.template-newsletters-subscription .newsletters-subscription-content {
  font-size: 14px;
}

.partnership-video-wrapper {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.partnership-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.item-list .dip-article-block {
  height: auto;
}

.item-list .dip-article-block .article-block-media img {
  height: 45vw;
}

.single-tin_partnership main {
  background-color: #f7f7f7;
}

.single-tin_partnership main .partnership-bc-wrapper {
  background-color: white;
}

.single-tin_partnership main .partnership-bc-wrapper .partnership-banner {
  margin-bottom: 20px;
  height: 22.7vw;
  min-height: 300px;
}

.single-tin_partnership main .partnership-bc-wrapper .partnership-logo-img {
  max-width: 180px;
  margin: 0 auto;
  padding-bottom: 20px;
  text-align: center;
}

.single-tin_partnership main .partnership-bc-wrapper .partnership-logo-img .partnership-text {
  font-size: .75rem;
}

.single-tin_partnership main .dip-article-block {
  background: content-box white;
}

.single-tin_partnership main .article-block-content .article-block-partnership {
  display: none;
}

.single-tin_partnership main .article-block-content .article-block-section {
  text-transform: uppercase;
}

.single-tin_partnership main .content {
  padding-top: 30px;
}

.single-tin_author .author-full-info {
  display: flex;
  margin-bottom: 1.875rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.single-tin_author .author-full-info .author-photo {
  display: flex;
  flex: 1 0 auto;
  pointer-events: none;
}

.single-tin_author .author-full-info .author-photo img {
  background-image: radial-gradient(transparent 40%, gray);
  background-color: #fff;
  border: 2px solid;
  border-color: #cccfd2;
  border-radius: 50%;
  height: 126px;
  width: 126px;
  transition: border-width 0.3s, transform 0.3s ease-out;
}

.single-tin_author .author-full-info .author-photo img:hover {
  border-width: calc(2px * 1.5);
  transform: scale(1.2);
}

.single-tin_author .author-full-info .branded-author-photo {
  max-width: 170px;
}

.single-tin_author .author-full-info .author-photo,
.single-tin_author .author-full-info .branded-author-photo {
  margin-bottom: 30px;
}

.single-tin_author .author-full-info .author-meta {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.single-tin_author .author-full-info .name,
.single-tin_author .author-full-info .profession {
  font-family: "Open Sans";
  text-transform: uppercase;
}

.single-tin_author .author-full-info .name {
  margin: 0;
  font-weight: 500;
  font-size: 1.625rem;
}

.single-tin_author .author-full-info .profession {
  color: #8894a6;
}

.single-tin_author .author-full-info .content,
.single-tin_author .author-full-info .email {
  margin: 10px 0;
}

.single-tin_author .author-full-info .email {
  font-style: italic;
}

@media (min-width: 768px) {
  .single-tin_author .author-full-info {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .single-tin_author .author-full-info .author-photo,
  .single-tin_author .author-full-info .branded-author-photo {
    margin-right: 30px;
  }
}

.article-top-content {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .item-list .dip-article-block .article-block-media img {
    height: 12.5rem;
  }
}

.page-not-found {
  height: 100vh;
  width: 100vw;
}

.sidebar-wrapper {
  height: 100%;
  padding-bottom: 1.875rem;
  position: relative;
}

.sidebar-wrapper>*:last-child {
  margin-bottom: 0;
}

.sidebar-wrapper .pub .pubtxt {
  margin-bottom: 5px;
}

[data-pub-format='pubHorz'].pubtxt::after,
[data-pub-format='pubVert'].pubtxt::after,
#incntntdspl.pubtxt::after {
  color: #8894a6;
  content: 'PUB';
  font-size: 9px;
  text-align: right;
  width: 100%;
  display: block;
}

.pswp-sidebar .pub [data-pub-rendered='yes'],
.gallery-ad .pub [data-pub-rendered='yes'],
.sidebar-wrapper .pub [data-pub-rendered='yes'] {
  padding-bottom: 30px;
}

.pswp-sidebar .pub [data-pub-rendered='yes']::after,
.gallery-ad .pub [data-pub-rendered='yes']::after,
.sidebar-wrapper .pub [data-pub-rendered='yes']::after {
  bottom: 8px;
  color: #8894a6;
  content: 'PUB';
  font-size: 9px;
  position: absolute;
  right: 0;
  text-align: right;
  z-index: 1;
  width: 100%;
}

.pub {
  display: flex;
  margin: 0 auto;
  position: relative;
}

.pub [data-pub-formatid] {
  margin: 0 auto;
  max-width: 300px;
}

.pub [data-pub-formatid] iframe {
  display: block;
}

.pub [data-pub-formatid='Richmedia'],
.pub [data-pub-formatid='Billboard'] {
  max-width: 970px;
}

.pub [data-pub-formatid='Richmedia'][data-pub-format='pubHorz'],
.pub [data-pub-formatid='Billboard'][data-pub-format='pubHorz'] {
  max-width: 1140px;
}

.pub [data-pub-formatid='Leaderboard'],
.pub [data-pub-formatid='InContent'] {
  max-width: 728px;
}

.pub [data-pub-formatid='Leaderboard'][data-pub-format='pubHorz'],
.pub [data-pub-formatid='InContent'][data-pub-format='pubHorz'] {
  max-width: 738px;
}

.pub [data-pub-formatid='Floorad'] {
  max-width: 100%;
}

.pub [data-pub-formatid='Richmedia'][data-pub-format='pubHorz'].pubtxt {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pub.auto-pub [data-pub-rendered='yes'] {
  padding-bottom: 30px;
}

.pub [data-pub-format='InContent'] {
  margin-bottom: 10px;
}

[data-pub-format='oop'] {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  z-index: 214783645;
}

ins[id^='gpt_unit_/4458504'] {
  z-index: 3000 !important;
}

.thumbnail-image-wrapper {
  margin-bottom: 30px;
}

.sticky-top {
  position: sticky;
  top: calc(72px + 32px + 20px);
  z-index: 499;
}

body.tin-submenu .sticky-top {
  position: sticky;
  top: calc(72px + 32px + 20px + 35px);
  z-index: 499;
}

body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr>div {
  max-width: 100%;
}

body:not(.wp-admin) .sidebar-block-wrapper .section-block-container div.dip-article-block.is-style-two-columns {
  max-width: 50%;
}

.bottom-pub {
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 901;
}

@media screen and (max-width: 782px) {
  #wpadminbar {
    display: none;
  }

  .admin-bar {
    margin-top: -46px;
  }
}

@media (max-width: 782.98px) {
  .auto-pub-incontent [data-pub-formatid='InContent'] {
    height: 100% !important;
    width: 100%;
  }
}

.author-lead {
  color: #283a3f;
  font-size: 1rem;
  margin-bottom: 1.875rem;
}

.keywords .keyword-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.keywords a {
  background-color: #f4f4f4;
  border-radius: 1.5625rem;
  color: #283a3f;
  font-family: "Open Sans",sans-serif;
  font-size: .875rem;
  font-weight: 600;
  margin: 0 .625rem .625rem 0;
  opacity: 1;
  padding: .25rem 1.5625rem;
  transition: opacity 0.5s ease;
}

.keywords a:hover {
  opacity: 0.5;
}

body.single-post .article-authors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: .625rem;
  padding-top: .625rem;
}

body.single-post .article-authors .author {
  display: flex;
  margin: .3125rem .625rem;
}

body.single-post .article-authors .author img {
  border: 2px solid;
  border-color: #cccfd2;
  border-radius: 50%;
  margin-right: .625rem;
  height: 2.875rem;
  width: 2.875rem;
  background-image: radial-gradient(transparent 40%, gray);
}

body.single-post .article-authors .author span {
  color: #303030;
  font-size: 1rem;
}

body.single-post .article-authors .author .name {
  text-transform: uppercase;
}

body.single-post .article-authors .author .profession {
  color: #8894a6;
  font-size: .8125rem;
  font-weight: 500;
}

body.single-post .article-authors .author .sponsor-name {
  font-weight: normal;
}

body.single-post .article-authors .branded-author {
  display: block;
  max-height: 5rem;
  margin: .3125rem .625rem;
}

body.single-post .article-authors .branded-author img {
  max-height: 100%;
  width: auto;
}

.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .title {
  line-height: 1.625rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
}

.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .pre-title {
  margin-bottom: .9375rem;
  order: 1;
  text-align: center;
}

.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block a {
  order: 2;
}

.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .image {
  text-align: right;
}

.detail-call-to-actions .tin-call-to-action-block-wrapper .tin-call-to-action-block .image img {
  margin: 0 auto;
}

.single-post .newsletter-with-social-block {
  margin-bottom: 3.75rem;
}

.single-post .tin-call-to-action-block-wrapper {
  margin-bottom: 0;
}

.single-post .detail-call-to-actions .tin-call-to-action-block-wrapper {
  margin-bottom: 3.125rem;
}

.single-post .page-header .page-header-extra {
  margin-top: 0;
}

.single-post header {
  margin-bottom: 1.875rem;
}

.single-post header>* {
  order: 1;
}

.single-post .post-top-highlight {
  display: flex;
  flex-direction: column;
}

.single-post .post-top-highlight>* {
  order: 4;
}

.single-post header .entry-title,
.single-post .post-top-highlight .entry-title {
  font-family: "Playfair Display",serif;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 3.125rem;
  order: 2;
}

.single-post header .entry-excerpt,
.single-post .post-top-highlight .entry-excerpt {
  color: #8894a6;
  margin-bottom: .9375rem;
  order: 3;
  text-align: center;
}

.single-post figure figcaption,
.single-post .thumbnail-image-wrapper .thumbnail-image-caption {
  color: #8894a6;
}

.single-post .article-top-content {
  margin-bottom: 0;
}

.single-post .content .social a {
  color: #e40004;
}

.single-post .content .article-info {
  border-bottom: 1px solid #8894a6;
  display: flex;
  padding: .9375rem 0;
  width: calc(100% - 30px);
}

.single-post .content .article-info .page-header-extra {
  margin-bottom: 0;
}

article.type-post .entry-content .pub [data-pub-formatid='Leaderboard'][data-pub-rendered='yes'] {
  margin-bottom: 1.25rem;
}

article.type-post .after-entry-content {
  margin-bottom: 2.5rem;
}

article.type-post .side-title {
  color: #111;
  font-family: "Playfair Display",serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.5rem;
  margin-bottom: 1.5625rem;
  min-width: 8.75rem;
}

article.type-post .side-title::after {
  background-color: #e40004;
  content: '';
  display: block;
  height: .125rem;
  margin-top: .3125rem;
  width: 3.4375rem;
}

.tin-brand-studio-box {
  background-color: #f4f4f4;
  margin-bottom: 0;
  padding: 20px 0;
}

.article-content-box,
.taboola-bellow-article {
  margin-bottom: 2.5rem;
}

.article-content-box h3,
.taboola-bellow-article h3 {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
}

.article-content-box h3::before,
.taboola-bellow-article h3::before {
  border-top: 1px solid;
  border-color: #e40004;
  content: '';
  display: block;
  padding-top: .625rem;
  width: 200px;
}

.article-content-box.with-subtitle,
.with-subtitle.taboola-bellow-article {
  margin-top: 1.25rem;
}

.article-content-box.with-subtitle h3,
.with-subtitle.taboola-bellow-article h3 {
  margin-bottom: .625rem;
}

.article-content-box.with-subtitle .subtitle,
.with-subtitle.taboola-bellow-article .subtitle {
  font-weight: 600;
  font-size: 12px;
  color: #8894a6;
  margin-bottom: 1.25rem;
}

.post-share {
  display: inline-block;
  width: 9.375rem;
}

.single-post .post .entry-content h2,
.single-post .post .entry-content h3,
.single-post .post .entry-content h4,
.single-post .post .entry-content h5,
.single-post .post .entry-content h6 {
  color: #111;
}

.single-post .post .entry-content h2 {
  font-size: 1.625rem;
  line-height: 1.875rem;
}

.single-post .post .entry-content h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.single-post .post .entry-content h4 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.single-post .post .entry-content h5 {
  font-size: 1rem;
  line-height: 1.375rem;
}

.single-post .post .entry-content h6 {
  font-size: .875rem;
  line-height: 1.25rem;
}

@media (min-width: 601px) {
  article.type-post .article-authors {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .single-post .content .article-authors .branded-author {
    max-width: 60%;
  }

  .widget-outside-sidebar {
    display: none;
  }
}

.search .content {
  padding-top: 1.875rem;
}

.search-detail-wrapper {
  border-bottom: 1px solid #8894a6;
  margin-bottom: 30px;
  background-color: #fff;
}

.search-detail-wrapper.sticky-top {
  top: calc(45px - 30px);
}

.search-detail-wrapper .search-counter {
  font-size: .75rem;
  line-height: .9rem;
  letter-spacing: .045rem;
  font-family: "Playfair Display",serif;
  color: #303030;
  margin-bottom: 16px;
  display: block;
}

.search-detail-wrapper .search-form {
  margin-bottom: 13px;
}

.search-detail-wrapper .search-form .search-field-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
  height: 100%;
}

.search-detail-wrapper .search-form .search-field-wrapper>i {
  flex-basis: 15px;
  margin-right: 20px;
}

.search-detail-wrapper .search-form .search-field-wrapper input {
  border: none;
  width: 100%;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.625rem;
  padding: 0;
  margin-bottom: 4px;
}

.search-detail-wrapper .search-form .search-field-wrapper input:focus {
  outline: none;
}

.search-detail-wrapper .search-form .search-field-wrapper button {
  padding: 0;
}

.search-detail-wrapper .search-form .search-field-wrapper button:focus {
  outline: none;
}

.search-detail-wrapper .search-form .search-field-wrapper button span {
  font-size: .75rem;
}

@media (min-width: 768px) {
  .search-detail-wrapper.sticky-top {
    top: calc(65px - 30px);
  }
}

@media (min-width: 992px) {
  .search-detail-wrapper.sticky-top {
    top: calc(120px - 30px);
  }

  .admin-bar .search-detail-wrapper.sticky-top {
    top: calc(120px + 32px - 30px);
  }
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

@media (max-width: 991.98px) {
  .content>aside .sticky-top,
  .content>aside .sidebar-wrapper,
  .sidebar-block-wrapper>aside .sticky-top,
  .sidebar-block-wrapper>aside .sidebar-wrapper,
  .content>.sidebar-block-ssr .sticky-top,
  .content>.sidebar-block-ssr .sidebar-wrapper,
  .sidebar-block-wrapper>.sidebar-block-ssr .sticky-top,
  .sidebar-block-wrapper>.sidebar-block-ssr .sidebar-wrapper {
    margin-bottom: 0 !important;
    position: relative !important;
    top: 0 !important;
    z-index: inherit !important;
  }

  .content,
  .sidebar-block-wrapper {
    flex-direction: row;
  }

  .content>section,
  .content>.sidebar-block-free,
  .sidebar-block-wrapper>section,
  .sidebar-block-wrapper>.sidebar-block-free {
    order: 2;
  }

  .content>aside,
  .content>.sidebar-block-ssr,
  .sidebar-block-wrapper>aside,
  .sidebar-block-wrapper>.sidebar-block-ssr {
    order: 1;
    width: 100%;
  }

  .content>aside .sticky-top>*:not(.sapo-pub-widget),
  .content>aside .sticky-top>*.sapo-pub-widget:not(:first-child),
  .content>aside .sidebar-wrapper>*:not(.sapo-pub-widget),
  .content>aside .sidebar-wrapper>*.sapo-pub-widget:not(:first-child),
  .sidebar-block-wrapper>aside .sticky-top>*:not(.sapo-pub-widget),
  .sidebar-block-wrapper>aside .sticky-top>*.sapo-pub-widget:not(:first-child),
  .sidebar-block-wrapper>aside .sidebar-wrapper>*:not(.sapo-pub-widget),
  .sidebar-block-wrapper>aside .sidebar-wrapper>*.sapo-pub-widget:not(:first-child) {
    display: none;
  }

  .content>.sidebar-block-ssr .sticky-top>.sapo-pub-widget,
  .content>.sidebar-block-ssr .sticky-top>.tin-publications-widget,
  .content>.sidebar-block-ssr .sticky-top>.newsletter-block-wrapper,
  .content>.sidebar-block-ssr .sidebar-wrapper>.sapo-pub-widget,
  .content>.sidebar-block-ssr .sidebar-wrapper>.tin-publications-widget,
  .content>.sidebar-block-ssr .sidebar-wrapper>.newsletter-block-wrapper,
  .sidebar-block-wrapper>.sidebar-block-ssr .sticky-top>.sapo-pub-widget,
  .sidebar-block-wrapper>.sidebar-block-ssr .sticky-top>.tin-publications-widget,
  .sidebar-block-wrapper>.sidebar-block-ssr .sticky-top>.newsletter-block-wrapper,
  .sidebar-block-wrapper>.sidebar-block-ssr .sidebar-wrapper>.sapo-pub-widget,
  .sidebar-block-wrapper>.sidebar-block-ssr .sidebar-wrapper>.tin-publications-widget,
  .sidebar-block-wrapper>.sidebar-block-ssr .sidebar-wrapper>.newsletter-block-wrapper {
    display: none;
  }

  .sidebar-block-wrapper .widget_media_image {
    display: flex;
    justify-content: center;
  }

  .sidebar-block-wrapper .tin-widget-articles .tin-widget-articles-item>* img {
    height: auto;
  }

  .sidebar-block-wrapper>section,
  .sidebar-block-wrapper>.sidebar-block-free {
    order: 1;
  }

  .sidebar-block-wrapper>.sidebar-block-ssr {
    order: 2;
  }
}

@media (min-width: 992px) {
  .is-block.sapo-pub-widget,
  .is-block.tin-publications-widget {
    display: none;
  }
}

@media (max-width: 1349.98px) {
  .tin-highlights-widget {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }

  .tin-highlights-widget .tin-widget-articles-title {
    flex-basis: 100%;
  }

  .tin-highlights-widget .tin-widget-articles-item {
    max-width: calc(50% - 15px);
  }
}

body.template-wide-data .sticky-top {
  top: calc(60px - 1px);
}

body.template-wide-data.admin-bar .sticky-top {
  top: calc(60px + 32px - 1px);
}

body.template-wide-data .thumbnail-image-wrapper {
  height: 35vw;
  min-height: 15.625rem;
}

body.template-wide-data .entry-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin: 1.5625rem auto;
  text-align: center;
  text-transform: uppercase;
}

body.template-wide-data .entry-excerpt {
  font-size: 1.125rem;
  margin-bottom: .9375rem;
}

body.template-wide-data .after-entry-content,
body.template-wide-data .entry-content {
  max-width: none;
}

body.template-wide-data .wide-header {
  background: white;
  margin-top: 0;
}

body.template-wide-data .wide-header .article-authors {
  border: none;
  flex-direction: row;
}

body.template-wide-data .wide-header .article-authors .author {
  display: inline-flex;
  margin: 0 .3125rem;
}

body.template-wide-data .wide-header .article-authors .author:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

body#tinymce {
  margin: 12px !important;
}

html,
body.mce-content-body {
  height: inherit !important;
}

.dip-article-block.is-style-two-columns-full .article-block-content,
.dip-article-block.dip-article-block-primary-color.is-style-text-highlight .article-block-content,
.dip-article-block.dip-article-block-primary-color.is-style-two-columns .article-block-content {
  position: relative;
}

.dip-article-block.is-style-two-columns-full .article-block-content::after,
.dip-article-block.dip-article-block-primary-color.is-style-text-highlight .article-block-content::after,
.dip-article-block.dip-article-block-primary-color.is-style-two-columns .article-block-content::after {
  background-color: currentColor;
  bottom: 0;
  content: '';
  height: 1px;
  left: 15px;
  position: absolute;
  right: 15px;
}

.dip-article-block.is-style-two-columns-full .article-block-content::after,
.dip-article-block.dip-article-block-primary-color.is-style-text-highlight .article-block-content::after,
.dip-article-block.dip-article-block-primary-color.is-style-two-columns .article-block-content::after {
  left: 0;
  right: 0;
}

.is-style-image-highlight a,
.is-style-vertical-image a {
  color: #fff;
}

.is-style-image-highlight a:focus,
.is-style-image-highlight a:hover,
.is-style-image-highlight a:active,
.is-style-vertical-image a:focus,
.is-style-vertical-image a:hover,
.is-style-vertical-image a:active {
  color: rgba(255,255,255,0.8);
}

.is-style-normal a,
.is-style-simple a,
.is-style-text-highlight a,
.is-style-two-columns a,
.is-style-two-columns-full a,
.is-style-vertical-image-content-below a,
.is-style-image-highlight-content-below a {
  color: #000;
}

.is-style-normal a:focus,
.is-style-normal a:hover,
.is-style-normal a:active,
.is-style-simple a:focus,
.is-style-simple a:hover,
.is-style-simple a:active,
.is-style-text-highlight a:focus,
.is-style-text-highlight a:hover,
.is-style-text-highlight a:active,
.is-style-two-columns a:focus,
.is-style-two-columns a:hover,
.is-style-two-columns a:active,
.is-style-two-columns-full a:focus,
.is-style-two-columns-full a:hover,
.is-style-two-columns-full a:active,
.is-style-vertical-image-content-below a:focus,
.is-style-vertical-image-content-below a:hover,
.is-style-vertical-image-content-below a:active,
.is-style-image-highlight-content-below a:focus,
.is-style-image-highlight-content-below a:hover,
.is-style-image-highlight-content-below a:active {
  color: rgba(0,0,0,0.8);
}

.article-block-title {
  font-size: 1rem;
}

.dip-article-block {
  height: auto;
  margin-bottom: 1.875rem;
}

.dip-article-block.sponsored {
  background-color: #eee;
  background-clip: content-box;
}

.dip-article-block .article-block-section {
  letter-spacing: .0625rem;
  text-transform: uppercase;
}

.dip-article-block .article-block-section a {
  color: #8894a6;
}

.dip-article-block .article-block-section a:focus,
.dip-article-block .article-block-section a:hover,
.dip-article-block .article-block-section a:active {
  color: rgba(136,148,166,0.8);
}

.dip-article-block .article-block-section>a {
  font-family: "Open Sans";
  font-size: .75rem;
  font-weight: 700;
}

.dip-article-block .article-block-brand {
  transition: opacity 0.1s ease-in-out;
}

.dip-article-block .article-block-brand:hover {
  opacity: 0.8;
}

.dip-article-block .article-block-brand {
  display: none;
  background-color: #303030;
  color: #fff;
  white-space: pre;
}

.dip-article-block .article-block-brand:hover {
  color: #fff;
}

.dip-article-block h4 {
  color: inherit;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .625rem;
}

.dip-article-block .article-block-excerpt {
  font-size: .875rem;
  line-height: 1.0625rem;
  margin-bottom: .625rem;
  max-height: none;
}

.dip-article-block .article-block-author img {
  background-image: radial-gradient(transparent 40%, gray);
  background-color: #fff;
  border: 1px solid;
  border-radius: 50%;
  height: 2.25rem;
  width: 2.25rem;
}

.dip-article-block .article-block-author span {
  color: black;
}

.dip-article-block .article-block-related {
  padding-left: 0;
}

.dip-article-block .article-block-related li:not(:last-child) {
  margin-bottom: 8px;
}

.dip-article-block .article-block-related a {
  color: #111;
  font-size: .75rem;
  font-weight: 700;
  line-height: .875rem;
}

.dip-article-block .article-block-related a:focus,
.dip-article-block .article-block-related a:hover {
  color: #373737;
}

.dip-article-block .branded-author {
  max-width: 4.375rem;
}

.dip-article-block .article-block-media {
  overflow: hidden;
  position: relative;
}

.dip-article-block .article-block-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}

.dip-article-block .article-block-content.article-block-content-shadow {
  background: linear-gradient(0deg, #000 0%, rgba(48,48,48,0.35) 72%, rgba(48,48,48,0.15) 85%, rgba(255,255,255,0) 100%);
}

.dip-article-block.is-style-text-highlight {
  flex-direction: column;
}

.dip-article-block.is-style-two-columns h4,
.dip-article-block.is-style-two-columns-full h4,
.dip-article-block.is-style-author-highlight h4,
.dip-article-block.is-style-image-highlight-content-below h4,
.dip-article-block.is-style-text-highlight h4,
.dip-article-block.is-style-simple h4,
.dip-article-block.is-style-normal h4 {
  text-transform: none;
}

.dip-article-block.is-style-normal {
  display: flex;
  flex-direction: column;
}

.dip-article-block.is-style-normal .article-block-content {
  justify-content: start;
}

.dip-article-block.is-style-image-highlight {
  min-height: 420px;
}

.dip-article-block.is-style-image-highlight h4 {
  color: inherit;
  font-size: 2rem;
  line-height: 2.25rem;
}

.dip-article-block.is-style-image-highlight .article-block-author {
  color: inherit;
}

.dip-article-block.is-style-image-highlight-content-below {
  color: inherit;
}

.dip-article-block.is-style-image-highlight-content-below h4 {
  color: inherit;
  font-size: 2rem;
  line-height: 2.25rem;
}

.dip-article-block.is-style-image-highlight h4,
.dip-article-block.is-style-vertical-image h4 {
  color: inherit;
}

.dip-article-block.is-style-image-highlight a.article-block-title a,
.dip-article-block.is-style-vertical-image a.article-block-title a {
  color: #fff;
}

.dip-article-block.is-style-image-highlight a.article-block-title a:focus,
.dip-article-block.is-style-image-highlight a.article-block-title a:hover,
.dip-article-block.is-style-image-highlight a.article-block-title a:active,
.dip-article-block.is-style-vertical-image a.article-block-title a:focus,
.dip-article-block.is-style-vertical-image a.article-block-title a:hover,
.dip-article-block.is-style-vertical-image a.article-block-title a:active {
  color: rgba(255,255,255,0.8);
}

.dip-article-block.is-style-image-highlight .article-block-related a,
.dip-article-block.is-style-vertical-image .article-block-related a {
  color: #fff;
}

.dip-article-block.is-style-image-highlight .article-block-related a:focus,
.dip-article-block.is-style-image-highlight .article-block-related a:hover,
.dip-article-block.is-style-image-highlight .article-block-related a:active,
.dip-article-block.is-style-vertical-image .article-block-related a:focus,
.dip-article-block.is-style-vertical-image .article-block-related a:hover,
.dip-article-block.is-style-vertical-image .article-block-related a:active {
  color: rgba(255,255,255,0.8);
}

.dip-article-block.is-style-image-highlight .article-block-content,
.dip-article-block.is-style-vertical-image .article-block-content {
  padding-right: 3.125rem;
}

.dip-article-block.is-style-image-highlight .article-block-section a,
.dip-article-block.is-style-vertical-image .article-block-section a {
  color: #fff;
}

.dip-article-block.is-style-image-highlight .article-block-section a:focus,
.dip-article-block.is-style-image-highlight .article-block-section a:hover,
.dip-article-block.is-style-image-highlight .article-block-section a:active,
.dip-article-block.is-style-vertical-image .article-block-section a:focus,
.dip-article-block.is-style-vertical-image .article-block-section a:hover,
.dip-article-block.is-style-vertical-image .article-block-section a:active {
  color: rgba(255,255,255,0.8);
}

.dip-article-block.is-style-image-highlight .article-block-excerpt,
.dip-article-block.is-style-vertical-image .article-block-excerpt {
  color: #fff;
}

.dip-article-block.is-style-normal .article-block-excerpt,
.dip-article-block.is-style-simple .article-block-excerpt,
.dip-article-block.is-style-text-highlight .article-block-excerpt,
.dip-article-block.is-style-image-highlight-content-below .article-block-excerpt,
.dip-article-block.is-style-vertical-image-content-below .article-block-excerpt,
.dip-article-block.is-style-two-columns .article-block-excerpt,
.dip-article-block.is-style-two-columns-full .article-block-excerpt {
  color: black;
}

.dip-article-block.is-style-normal .article-block-section a,
.dip-article-block.is-style-simple .article-block-section a,
.dip-article-block.is-style-text-highlight .article-block-section a,
.dip-article-block.is-style-image-highlight-content-below .article-block-section a,
.dip-article-block.is-style-vertical-image-content-below .article-block-section a,
.dip-article-block.is-style-two-columns .article-block-section a,
.dip-article-block.is-style-two-columns-full .article-block-section a {
  color: #893eb4;
}

.dip-article-block.is-style-two-columns-full .article-block-content h4 {
  font-size: 2rem;
  line-height: 2.25rem;
}

.dip-article-block.is-style-text-highlight .article-block-content,
.dip-article-block.is-style-two-columns-full .article-block-content {
  justify-content: center;
}

.dip-article-block.is-style-author-highlight {
  overflow: visible;
}

.dip-article-block.is-style-author-highlight::before {
  display: none;
}

.dip-article-block.is-style-author-highlight .article-block-author {
  margin-bottom: .625rem;
}

.dip-article-block.is-style-author-highlight .article-block-author img {
  width: 9.375rem;
  height: 9.375rem;
  background-image: radial-gradient(transparent 40%, gray);
}

.dip-article-block.is-style-author-highlight .article-block-excerpt {
  font-size: .875rem;
  margin-bottom: 0;
  color: black;
}

.dip-article-block.is-style-author-highlight div.article-block-content {
  justify-content: normal;
  height: 100%;
}

.dip-article-block.is-style-author-highlight div.article-block-content::before {
  content: ' ';
  background-color: white;
  background-image: url(/content/themes/tin-caras-theme/dist/images/aspa_63806d8c.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 49px;
  width: 70px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  top: -5px;
  z-index: 2;
}

.dip-article-block hr {
  border-top-color: #f4f4f4;
  border-top-width: 1px;
  margin: 0 auto;
  padding-bottom: .625rem;
  width: 70%;
}

.dip-article-block .article-block-title .has-background h4 {
  line-height: 43px;
  margin-bottom: 0;
}

.dip-article-block .article-block-status {
  background-color: #e40004;
  color: #111;
  font-size: 10px;
  height: 24px;
  line-height: 12px;
  text-transform: uppercase;
  z-index: 1;
}

.dip-article-block .article-block-status::before {
  content: '\f111';
  font-family: FontAwesome;
  font-size: 10px;
  height: 8px;
  line-height: 12px;
  margin-right: 10px;
  width: 8px;
}

.dip-article-block .article-block-partnership {
  align-self: center;
  display: flex;
  flex-direction: column;
  margin: .625rem 0;
  padding: .9375rem;
  text-align: center;
}

.dip-article-block.dip-article-block-bg .article-block-content {
  color: inherit;
}

.dip-article-block.dip-article-block-bg .article-block-content .article-block-title,
.dip-article-block.dip-article-block-bg .article-block-content .article-block-excerpt,
.dip-article-block.dip-article-block-bg .article-block-content .article-block-author,
.dip-article-block.dip-article-block-bg .article-block-content .article-block-author span,
.dip-article-block.dip-article-block-bg .article-block-content .article-block-section a,
.dip-article-block.dip-article-block-bg .article-block-content .article-block-related,
.dip-article-block.dip-article-block-bg .article-block-content .article-block-related li::before,
.dip-article-block.dip-article-block-bg .article-block-content .article-block-related li a {
  color: inherit;
}

.dip-article-block.is-style-vertical-image-content-below {
  background-clip: content-box;
  background-color: #f7f7f7;
}

.dip-article-block.is-style-vertical-image-content-below .article-block-media {
  background-color: inherit;
  border-bottom-left-radius: 100% 75px;
  border-bottom-right-radius: 100% 75px;
  border-color: inherit;
}

.dip-article-block.is-style-author-highlight .article-block-content .article-block-author img,
.dip-article-block.dip-article-block-bg.branded .article-block-content .article-block-author img {
  border-color: inherit !important;
}

.dip-article-block.dip-article-block-primary-color .article-block-content .article-block-title {
  color: inherit;
}

.dip-article-block.dip-article-block-primary-color.is-style-normal::after,
.dip-article-block.dip-article-block-primary-color.is-style-image-highlight-content-below::after,
.dip-article-block.dip-article-block-primary-color.is-style-simple::after {
  background-color: currentColor;
  bottom: 0;
  content: '';
  height: 1px;
  left: 15px;
  position: absolute;
  right: 15px;
}

.dip-article-block.dip-article-block-bg.branded .article-block-content .article-block-section,
.dip-article-block.dip-article-block-bg.branded .article-block-content .article-block-section a,
.dip-article-block.dip-article-block-bg.branded .article-block-content .article-block-author span,
.dip-article-block.dip-article-block-bg.branded .article-block-content .article-block-title,
.dip-article-block.dip-article-block-bg.branded .article-block-content .article-block-excerpt,
.dip-article-block.dip-article-block-bg.branded .article-block-content .article-block-related li a,
.dip-article-block.dip-article-block-bg.branded .article-block-content .article-block-related li::before {
  color: inherit !important;
}

.article-block-post-format {
  bottom: 1.25rem;
  right: 1.25rem;
}

.is-style-vertical-image-content-below .article-block-post-format {
  bottom: unset;
  left: unset;
  margin: 0;
  right: 10px;
  top: 10px;
}

body.wp-admin .dip-article-block.is-style-normal .article-block-media {
  flex-basis: 12.5rem;
  flex-shrink: 0;
}

body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-media {
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  flex-basis: calc(((100% - 15px) / 3) * 2);
}

body:not(.wp-admin) .dip-article-block.is-style-text-highlight .article-block-content {
  max-width: 100%;
}

@media (min-width: 768px) {
  .dip-article-block {
    height: auto;
  }

  .dip-article-block.is-style-simple .article-block-content {
    padding: 0;
  }

  .dip-article-block.is-style-text-highlight {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .dip-article-block.dip-article-block-fixed-height.is-style-two-columns-full,
  .dip-article-block.dip-article-block-fixed-height.is-style-image-highlight-content-below img {
    height: calc(420px / 2);
  }

  .dip-article-block.is-style-normal .article-block-media {
    flex-basis: 210px;
  }

  .dip-article-block.is-style-two-columns-full .article-block-content::after,
  .dip-article-block.dip-article-block-primary-color.is-style-two-columns .article-block-content::after {
    left: unset;
    right: 0;
    width: calc(100% + 30px);
  }

  .dip-article-block.is-style-two-columns-full.dip-article-block-switch-order .article-block-content::after,
  .dip-article-block.dip-article-block-primary-color.is-style-two-columns.dip-article-block-switch-order .article-block-content::after {
    left: 0;
    right: unset;
  }
}

@media (min-width: 992px) {
  .dip-article-block.is-style-normal .article-block-media {
    flex-basis: 141px;
  }

  .dip-article-block.dip-article-block-primary-color.is-style-text-highlight .article-block-content::after {
    left: unset;
    right: 0;
    width: calc(100% + 15px);
  }
}

@media (min-width: 1350px) {
  .dip-article-block.is-style-normal .article-block-media {
    flex-basis: 195px;
  }
}

.background-section-wrapper .section-title:not(.has-text-align-center)::before {
  content: '';
  width: 80px;
  display: block;
  border-top: 4px solid #fff;
}

.background-section-wrapper .section-title.has-text-align-right::before {
  margin-left: calc(100% - 80px);
}

.background-section-wrapper .section-title a {
  color: inherit;
}

.background-section-wrapper .dip-article-block:not(.dip-article-block-bg) .article-block-content:not(.article-block-content-shadow) {
  padding: 15px 0;
}

.wp-block-pullquote {
  border-color: #cccfd2;
  border-width: 2px;
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 0;
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
  max-width: none;
  text-align: right;
}

.wp-block-pullquote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: bold;
  margin: 0;
  padding-top: 15px;
}

.wp-block-pullquote blockquote p {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.wp-block-pullquote blockquote p::after,
.wp-block-pullquote blockquote p::before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI0LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgNTggNDAwIDI4MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDU4IDQwMCAyODA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojQUYwMDAwO30KPC9zdHlsZT4KPGc+Cgk8Zz4KCQk8Zz4KCQkJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIzOTgsMTcxLjcgMzEzLjEsMTcxLjcgMzY5LjcsNTguNiAyODQuOSw1OC42IDIyOC4zLDE3MS43IDIyOC4zLDM0MS40IDM5OCwzNDEuNCAJCQkiLz4KCQkJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIxNzEuNywzNDEuNCAxNzEuNywxNzEuNyA4Ni45LDE3MS43IDE0My40LDU4LjYgNTguNiw1OC42IDIsMTcxLjcgMiwzNDEuNCAJCQkiLz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==) no-repeat;
  content: ' ';
  display: inline-table;
  height: 23px;
  margin: 0 .625rem;
  width: 32.22px;
}

.wp-block-pullquote blockquote p::before {
  vertical-align: top;
}

.wp-block-pullquote blockquote p::after {
  transform: scale(-1, -1);
  vertical-align: bottom;
}

body:not(.wp-admin) .sidebar-block-wrapper .is-style-image-highlight .article-block-content,
body:not(.wp-admin) .sidebar-block-wrapper .is-style-vertical-image .article-block-content,
body:not(.wp-admin) .section-block-container .is-style-image-highlight .article-block-content,
body:not(.wp-admin) .section-block-container .is-style-vertical-image .article-block-content {
  width: calc(100% - 30px);
}

.wp-block-image figcaption {
  color: #111;
  font-style: normal;
  text-align: left;
}

.mobile-order-top>.dip-article-block,
.manchete-topo>.dip-article-block {
  order: -1;
}

@media (min-width: 992px) {
  .wp-block-pullquote {
    margin-bottom: 3.125rem;
    margin-top: 3.125rem;
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }

  .mobile-order-top>.dip-article-block,
  .manchete-topo>.dip-article-block {
    order: initial;
  }
}

@media (min-width: 1350px) {
  .wp-block-pullquote {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.home .branded-section-wrapper {
  border-bottom: none;
}

body:not(.wp-admin) .branded-section-wrapper {
  padding-bottom: 0;
}

body:not(.wp-admin) .branded-section-wrapper .branded-section-inner {
  margin-bottom: 0;
}

body:not(.wp-admin) .branded-section-wrapper .branded-section-block-title a {
  text-decoration: none;
  border: none;
}

.tin-call-to-action-block-wrapper {
  background-color: #f7f7f7;
  background-image: linear-gradient(0deg, rgba(136,148,166,0.2) 0, rgba(136,148,166,0.1) 5px, rgba(136,148,166,0) 15px, #f7f7f7 15px);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: 40px 0 20px 0;
}

.tin-call-to-action-block-wrapper:not(.alignfull):not(.taboola-bellow-article) {
  width: 100%;
}

.tin-call-to-action-block-wrapper .pre-title {
  font-size: .875rem;
  line-height: 1.1875rem;
  margin-bottom: .625rem;
}

.tin-call-to-action-block-wrapper .title {
  color: #111;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 2.5625rem;
}

.tin-call-to-action-block-wrapper .image {
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-self: center;
}

.tin-call-to-action-block-wrapper .image img {
  max-height: 390px;
  width: auto;
  height: auto;
}

.tin-call-to-action-block-wrapper .info .content-wrapper {
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  min-height: auto;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block {
  border: none;
  justify-content: center;
  width: 100%;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .info {
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image img {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block.boxed {
  padding: 0 1.875rem;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block .content-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block .button-action {
  font-family: "Open Sans",sans-serif;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .content-wrapper {
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  min-height: auto;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .extra,
.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .description {
  font-family: "Playfair Display",serif;
  font-size: 1rem;
  margin-bottom: .5rem;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .button-action {
  margin-bottom: 1.25rem;
}

.tin-call-to-action-block-wrapper .tin-call-to-action-block.full .excerpt {
  color: #8894a6;
  font-size: .875rem;
}

@media (min-width: 768px) {
  .tin-call-to-action-block-wrapper {
    padding: 20px 0;
  }

  .tin-call-to-action-block-wrapper .tin-call-to-action-block {
    width: 100%;
  }

  .tin-call-to-action-block-wrapper .tin-call-to-action-block.image-right .image {
    order: 2;
  }

  body:not(.wp-admin) .tin-call-to-action-block-wrapper .tin-call-to-action-block .image {
    display: flex;
  }

  body:not(.wp-admin) .tin-call-to-action-block-wrapper .tin-call-to-action-block .image img {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1350px) {
  .tin-call-to-action-block-wrapper .tin-call-to-action-block.boxed {
    padding: 0 6.25rem;
  }

  .tin-call-to-action-block-wrapper .tin-call-to-action-block.boxed .content-wrapper {
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
  }
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner {
  margin: -15px;
  margin-bottom: 0;
  flex-direction: row;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block {
  flex-grow: 1;
  max-width: 100%;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block:not(:first-child)::before {
  content: '';
  border-bottom: 1px solid #ccc;
  display: block;
  width: 80px;
  margin-bottom: 15px;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block.is-style-simple:not(:first-child) {
  padding-top: 0;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block.is-style-normal .article-block-content {
  padding-top: 15px;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block.is-style-normal .article-block-media {
  flex-basis: auto;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block:not(.is-style-simple)::before {
  content: none;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block .article-block-title h4 {
  font-size: .875rem;
}

@media (min-width: 768px) {
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner {
    flex-direction: column;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner .wp-block-dip-gutenberg-media-blocks-grid-block.grid {
    flex-basis: 33.3%;
    max-width: 33.3%;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-article-block.is-style-two-columns .article-block-media {
    align-self: center;
    height: 5.625rem;
    margin: 0;
  }
}

@media (min-width: 1350px) {
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-block-container.grid-block-inner .dip-article-block {
    border-right: 0;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>.wp-block-dip-gutenberg-media-blocks-grid-block.grid .dip-article-block.is-style-two-columns .article-block-media {
    margin: 0;
    height: auto;
  }
}

.headline-wrapper .dip-article-block h4,
.wp-admin .headline-wrapper [data-article-style] .dip-article-block h4 {
  font-size: 2.25rem;
  line-height: 1.1;
}

.headline-wrapper .dip-article-block:nth-of-type(2) h4,
.headline-wrapper.blocks-3 .dip-article-block:nth-of-type(3) h4,
.wp-admin .headline-wrapper [data-article-style]:nth-of-type(2) .dip-article-block h4,
.wp-admin .headline-wrapper.blocks-3 [data-article-style]:nth-of-type(3) .dip-article-block h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.headline-wrapper .dip-article-block:nth-of-type(2) .article-block-title.has-background h4,
.headline-wrapper.blocks-3 .dip-article-block:nth-of-type(3) .article-block-title.has-background h4,
.wp-admin .headline-wrapper [data-article-style]:nth-of-type(2) .dip-article-block .article-block-title.has-background h4,
.wp-admin .headline-wrapper.blocks-3 [data-article-style]:nth-of-type(3) .dip-article-block .article-block-title.has-background h4 {
  line-height: 1.875rem;
}

.headline-wrapper .dip-article-block:nth-of-type(3) h4,
.headline-wrapper .dip-article-block:nth-of-type(4) h4,
.wp-admin .headline-wrapper [data-article-style]:nth-of-type(3) .dip-article-block h4,
.wp-admin .headline-wrapper [data-article-style]:nth-of-type(4) .dip-article-block h4 {
  font-size: .875rem;
  line-height: 1rem;
}

.headline-wrapper .dip-article-block:nth-of-type(3) .article-block-title.has-background h4,
.headline-wrapper .dip-article-block:nth-of-type(4) .article-block-title.has-background h4,
.wp-admin .headline-wrapper [data-article-style]:nth-of-type(3) .dip-article-block .article-block-title.has-background h4,
.wp-admin .headline-wrapper [data-article-style]:nth-of-type(4) .dip-article-block .article-block-title.has-background h4 {
  line-height: 1.3125rem;
}

.headline-wrapper .dip-article-block .article-block-status {
  bottom: 0;
  top: auto;
}

.headline-wrapper .dip-article-block .article-block-section a {
  font-size: 1rem;
}

.headline-wrapper .dip-article-block h4 {
  font-size: 2.75rem;
  line-height: 3rem;
}

.headline-wrapper.blocks-4 .dip-article-block:nth-of-type(3) .article-block-section,
.headline-wrapper.blocks-4 .dip-article-block:nth-of-type(4) .article-block-section {
  font-size: .875rem;
}

.headline-wrapper.blocks-1 .dip-article-block .article-block-content.article-block-content-shadow {
  background: linear-gradient(0deg, #000 0%, rgba(48,48,48,0.35) 72%, rgba(48,48,48,0.15) 85%, rgba(255,255,255,0) 100%);
  height: 100%;
  justify-content: flex-end;
}

.headline-wrapper .article-block-excerpt {
  color: white;
}

.headline-wrapper .article-block-content {
  transition: padding-bottom 0.35s ease-in-out;
}

.headline-wrapper:not(.edit-mode).blocks-1 .dip-article-block {
  height: 27.5rem;
}

.headline-wrapper:not(.edit-mode).blocks-1 .dip-article-block.is-style-image-highlight-content-below {
  height: auto;
}

.wp-admin .headline-wrapper.blocks-4 [data-article-style]:nth-of-type(3) .article-block-section,
.wp-admin .headline-wrapper.blocks-4 [data-article-style]:nth-of-type(4) .article-block-section {
  font-size: .875rem;
}

body:not(.wp-admin) .headline-wrapper .dip-article-block.is-style-image-highlight,
body:not(.wp-admin) .headline-wrapper div.dip-article-block.is-style-image-highlight-content-below {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

body:not(.wp-admin) .headline-wrapper div.dip-article-block.is-style-image-highlight-content-below .article-block-content .article-block-title,
body:not(.wp-admin) .headline-wrapper div.dip-article-block.is-style-image-highlight-content-below .article-block-content .article-block-excerpt {
  max-width: 100%;
}

body.wp-admin .dip-article-block .article-block-title.has-background h4 {
  line-height: 43px;
}

@media (min-width: 768px) {
  .headline-wrapper.headline-full .dip-article-block:first-child {
    min-height: 600px;
  }

  .headline-wrapper:not(.edit-mode).alignfull .dip-article-block:first-child .article-block-content,
  .headline-wrapper.taboola-bellow-article:not(.edit-mode) .dip-article-block:first-child .article-block-content {
    padding-left: 50px;
  }
}

div.tin-highlight-box {
  border-width: 0;
}

div.tin-highlight-box p {
  background-color: #f4f4f4;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
  padding: 1.25rem 1.5625rem;
}

@media (max-width: 782.98px) {
  div.tin-highlight-box {
    margin-left: 0;
  }

  div.tin-highlight-box p {
    height: auto !important;
    width: 100% !important;
  }
}

.grid-title {
  font-size: 1.875rem;
  line-height: 1.875rem;
  margin-bottom: 1.25rem;
}

.grid-title::before {
  border-top: 1px solid;
  border-color: #e40004;
  content: '';
  display: block;
  padding-top: .625rem;
  width: 200px;
}

.grid-block-wrapper .grid-title {
  color: #8894a6;
  display: flex;
  font-size: 1.25rem;
  justify-content: space-between;
  line-height: 1.4;
  margin-bottom: 5px;
  padding: 0;
}

.grid-block-wrapper .grid-title::before,
.grid-block-wrapper .grid-title::after {
  align-self: center;
  border-top: 1px solid #e40004;
  content: '';
  flex: 1 1 auto;
  padding: 0;
  width: auto;
}

.grid-block-wrapper .grid-title::before {
  margin-right: 10px;
}

.grid-block-wrapper .grid-title::after {
  margin-left: 10px;
}

body.wp-admin .dip-block-container.grid-block-inner .dip-article-block .article-block-content .article-block-title h4 {
  line-height: 1.25rem;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid {
  width: 100%;
  margin-bottom: .9375rem;
}

body:not(.wp-admin) .dip-block-container.grid-block-inner {
  margin: 0;
  height: auto;
  flex-direction: row;
}

body:not(.wp-admin) .dip-block-container.grid-block-inner .dip-article-block {
  margin-bottom: 0;
}

body:not(.wp-admin) .dip-block-container.grid-block-inner .dip-article-block:not(.is-style-vertical-image) .article-block-content .article-block-title h4 {
  font-size: 1.125rem;
}

body:not(.wp-admin) .dip-block-container.grid-block-inner .dip-article-block .article-block-content {
  justify-content: flex-start;
}

body:not(.wp-admin) .dip-block-container.grid-block-inner .dip-article-block .article-block-author {
  margin-bottom: 0;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container .dip-article-block:nth-child(n+2) .article-block-content::before {
  content: '';
  border-bottom: 1px solid #ccc;
  display: block;
  width: 80px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container .dip-article-block:nth-child(n+2) .article-block-content:not(.is-style-two-columns) .article-block-content {
    padding-top: 10px;
  }
}

@media (min-width: 768px) {
  .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner {
    flex-direction: column;
    justify-content: center;
    height: 47.5rem;
  }

  .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block {
    flex: 1 1 20%;
    width: 50%;
    margin-bottom: 0;
    max-width: 50%;
  }

  .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:first-child {
    flex-basis: 420px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner {
    justify-content: center;
    height: 35rem;
  }

  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block {
    flex: 1 1 33%;
    width: 33%;
    margin-bottom: 0;
    max-width: 33%;
  }

  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:first-child {
    flex-basis: 100%;
    margin-top: 0;
  }
}

@media (min-width: 1350px) {
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner {
    height: 32rem;
  }

  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block {
    flex: 1 1 33%;
    width: 33%;
    max-width: 33%;
  }

  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:first-child {
    flex-basis: 100%;
  }

  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:not(:first-child) {
    flex-basis: 33%;
    max-height: 33%;
  }

  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(2),
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(3),
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(4) {
    border-right: 1px solid #8894a6;
  }
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block.is-style-two-columns {
  border-right: none;
  max-width: 50%;
}

body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block.is-style-two-columns .article-block-content {
  padding-right: 0;
}

@media (max-width: 782.98px) {
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner .dip-article-block.is-style-two-columns .article-block-media img {
    height: calc((50vw - 20px) * (10 / 16));
  }
}

@media (min-width: 768px) {
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner .dip-article-block.is-style-two-columns .article-block-media {
    margin-right: 0;
    flex-basis: calc(40% - 15px);
  }
}

@media (min-width: 1350px) {
  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner .dip-article-block.is-style-two-columns:not(:first-child) {
    flex-basis: calc(33.3%);
    max-height: calc(33.3%);
  }

  body:not(.wp-admin) .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner .dip-article-block.is-style-two-columns .article-block-media {
    margin-right: 0;
    flex-basis: calc(50% - 15px);
  }
}

.multimedia-block-wrapper {
  background-color: #303030;
  background-image: linear-gradient(to right, #e40004 0%, #e40004 50%, #303030 50%, #303030 100%);
  background-repeat: no-repeat;
  background-size: auto 60px;
  color: #fff;
}

.multimedia-block-wrapper>h2 {
  color: white;
  font-size: 1.875rem;
  line-height: 60px;
  margin-bottom: 1.25rem;
  margin-top: -1.25rem;
  text-align: left;
}

.multimedia-block-wrapper .dip-article-block {
  height: auto;
}

.multimedia-block-wrapper .dip-article-block h4 {
  color: inherit;
  font-size: .875rem;
  line-height: 1rem;
  margin-bottom: 0;
}

.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-post-format {
  border-radius: 2rem;
  height: 4rem;
  left: 50%;
  margin-left: -2rem;
  margin-top: -2rem;
  top: 50%;
  width: 4rem;
}

.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-post-format::before {
  font-size: 1.5625rem;
  line-height: 4rem;
}

.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section {
  margin-bottom: 1.25rem;
}

.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section a {
  color: #fff;
}

.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section a:focus,
.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section a:hover,
.multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-section a:active {
  color: rgba(255,255,255,0.8);
}

.multimedia-block-wrapper .dip-article-block.is-style-text-highlight h4 {
  font-size: 1.375rem;
  line-height: 1.875rem;
  margin-bottom: 5px;
}

.multimedia-block-wrapper .dip-article-block.is-style-image-highlight {
  min-height: auto;
}

.multimedia-block-wrapper .dip-article-block a {
  color: #fff;
}

.multimedia-block-wrapper .dip-article-block a:focus,
.multimedia-block-wrapper .dip-article-block a:hover,
.multimedia-block-wrapper .dip-article-block a:active {
  color: rgba(255,255,255,0.8);
}

.multimedia-block-wrapper .dip-article-block .article-block-excerpt {
  color: #fff;
}

body:not(.wp-admin) .multimedia-block-wrapper {
  padding: 1.25rem .9375rem 3.125rem;
}

body:not(.wp-admin) .multimedia-block-wrapper div.dip-article-block.is-style-image-highlight .article-block-content {
  width: calc(100% - 30px);
}

body:not(.wp-admin) .multimedia-block-wrapper .multimedia-block-inner .dip-article-block.is-style-text-highlight {
  margin-bottom: 1.875rem;
  padding-bottom: 1.875rem;
  max-width: 100%;
  flex-basis: 100%;
}

body:not(.wp-admin) .multimedia-block-wrapper .multimedia-block-inner .dip-article-block.is-style-text-highlight .article-block-media,
body:not(.wp-admin) .multimedia-block-wrapper .multimedia-block-inner .dip-article-block.is-style-text-highlight .article-block-content {
  margin-left: 0;
  max-width: 100%;
}

body:not(.wp-admin) .multimedia-block-wrapper .multimedia-block-inner .dip-article-block.is-style-text-highlight::after {
  display: none;
}

@media (max-width: 782.98px) {
  body:not(.wp-admin) *:not(.sidebar-block-free-inner)>.multimedia-block-wrapper {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 15px;
    position: relative;
    right: 50%;
    width: 100vw;
  }
}

@media (min-width: 768px) {
  .multimedia-block-wrapper {
    background-image: linear-gradient(to right, #e40004 0%, #e40004 40%, #303030 40%, #303030 100%);
  }

  .multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-media {
    flex-basis: calc(50% - 15px);
    margin-left: .9375rem;
    margin-right: 0;
    order: 2;
  }

  .multimedia-block-wrapper .dip-article-block.is-style-text-highlight .article-block-content {
    flex-basis: calc(50% - 15px);
    margin-left: 0;
    margin-right: .9375rem;
    order: 1;
  }

  .multimedia-block-wrapper .dip-article-block.is-style-image-highlight .article-block-content {
    padding-bottom: 10px;
  }
}

@media (min-width: 992px) {
  body:not(.wp-admin) .multimedia-block-wrapper .multimedia-block-inner .dip-article-block.is-style-text-highlight .article-block-media {
    flex-basis: calc(50% - 15px);
    margin-left: .9375rem;
    max-width: calc(50% - 15px);
  }

  body:not(.wp-admin) .multimedia-block-wrapper .multimedia-block-inner .dip-article-block.is-style-text-highlight .article-block-content {
    flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
    padding-right: 10%;
  }
}

.newsletter-with-social-block {
  margin-bottom: 30px;
}

.newsletter-with-social-block .info {
  font-size: .875rem;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.newsletter-with-social-block h2 {
  font-size: 2.375rem;
  margin-bottom: 0;
  font-family: "Playfair Display",serif;
  font-weight: 700;
}

.newsletter-with-social-block .newsletter-col {
  background-color: #e8e6e6;
  padding: 40px 20px;
}

.newsletter-with-social-block .newsletter-col .newsletter-block {
  padding: 0;
}

.newsletter-with-social-block .social-media-col {
  flex-direction: column;
  background-color: #f7f7f7;
  padding: 40px 20px;
}

.newsletter-with-social-block .social-media-col .social-menu {
  padding: 0;
}

.newsletter-with-social-block .social-media-col .social-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1b1b1b;
}

.newsletter-with-social-block .social-media-col .social-menu a:not(:last-child) {
  margin-right: 20px;
}

.newsletter-block,
.newsletter-block.newsletter-block-small {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  min-height: 220px;
  background-color: #e8e6e6;
  align-content: flex-start;
}

.newsletter-block h2,
.newsletter-block.newsletter-block-small h2 {
  flex-basis: 100%;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 3.1875rem;
}

.newsletter-block form,
.newsletter-block.newsletter-block-small form {
  display: flex;
  flex-wrap: wrap;
}

.newsletter-block form .help-anchor,
.newsletter-block.newsletter-block-small form .help-anchor {
  font-size: 2rem;
  line-height: 2rem;
  margin: auto 10px auto 0;
  width: 30px;
}

.newsletter-block form .info,
.newsletter-block.newsletter-block-small form .info {
  width: 100%;
  font-size: .875rem;
  font-weight: 500;
  margin: 0 0 20px 0;
  align-self: center;
  text-transform: uppercase;
}

.newsletter-block form .help-anchor ~ .info,
.newsletter-block.newsletter-block-small form .help-anchor ~ .info {
  width: calc(100% - 40px);
}

.newsletter-block form .input-field,
.newsletter-block.newsletter-block-small form .input-field {
  flex-basis: 100%;
  margin: 15px 0;
}

.newsletter-block form input,
.newsletter-block.newsletter-block-small form input {
  border-radius: 22.5rem;
}

.newsletter-block form button[type='submit'],
.newsletter-block.newsletter-block-small form button[type='submit'] {
  white-space: nowrap;
  flex-basis: 100%;
  font-family: inherit;
}

.newsletter-block form button[type='submit']>.spinner,
.newsletter-block.newsletter-block-small form button[type='submit']>.spinner {
  display: none;
}

.newsletter-block form button[type='submit'].loading>.spinner,
.newsletter-block.newsletter-block-small form button[type='submit'].loading>.spinner {
  display: inline-block;
  vertical-align: middle;
  border-width: 0.15em;
}

.newsletter-block form .invalid-feedback,
.newsletter-block.newsletter-block-small form .invalid-feedback {
  padding-left: 0.85rem;
}

.newsletter-block form .valid-feedback,
.newsletter-block.newsletter-block-small form .valid-feedback {
  display: none;
  font-size: 0.85rem;
}

.newsletter-block form.showSuccess .input-field,
.newsletter-block form.showSuccess button[type='submit'],
.newsletter-block.newsletter-block-small form.showSuccess .input-field,
.newsletter-block.newsletter-block-small form.showSuccess button[type='submit'] {
  display: none;
}

.newsletter-block form.showSuccess .valid-feedback,
.newsletter-block.newsletter-block-small form.showSuccess .valid-feedback {
  display: block;
}

@media (min-width: 992px) {
  .newsletter-block:not(.newsletter-block-small) {
    justify-content: center;
    padding: 0;
    width: 100%;
    min-height: unset;
  }

  .newsletter-block:not(.newsletter-block-small) form {
    align-items: center;
    flex: 1 0 100%;
  }

  .newsletter-block:not(.newsletter-block-small) form .info {
    order: 1;
  }

  .newsletter-block:not(.newsletter-block-small) form .help-anchor {
    order: 2;
    flex-basis: 1;
    text-align: center;
  }

  .newsletter-block:not(.newsletter-block-small) form .input-field {
    order: 3;
    flex-basis: calc(50% - 30px);
    padding: 0 30px 0 0;
    margin: 0;
  }

  .newsletter-block:not(.newsletter-block-small) form button[type='submit'] {
    order: 4;
    flex-basis: calc(30% - 30px);
  }

  .newsletter-block:not(.newsletter-block-small) form .valid-feedback {
    order: 5;
    flex-basis: 100%;
  }

  .newsletter-block:not(.newsletter-block-small) form .invalid-feedback {
    position: absolute;
  }

  .newsletter-block:not(.newsletter-block-small) form.showSuccess .help-anchor {
    display: none;
  }
}

body.wp-admin .editor-block-list__layout [data-type='tin-publishing-sites/newsletter-segment'],
body.wp-admin .dip-block-container.section-block-container .editor-block-list__layout [data-type='tin-publishing-sites/newsletter-segment'] {
  flex-basis: calc(100% / 4);
}

body.wp-admin .dip-block-container.sidebar-block-wrapper .editor-block-list__layout [data-type='tin-publishing-sites/newsletter-segment'],
body.wp-admin .dip-block-container.sidebar-block-wrapper .dip-block-container.section-block-container .editor-block-list__layout [data-type='tin-publishing-sites/newsletter-segment'] {
  flex-basis: calc(100% / 3);
}

.newsletter-with-social-block {
  margin-bottom: 30px;
}

.newsletter-with-social-block .info {
  font-size: .875rem;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.newsletter-with-social-block h2 {
  font-size: 2.375rem;
  margin-bottom: 0;
  font-family: "Playfair Display",serif;
  font-weight: 700;
}

.newsletter-with-social-block .newsletter-col {
  background-color: #e8e6e6;
  padding: 40px 20px;
}

.newsletter-with-social-block .newsletter-col .newsletter-block {
  padding: 0;
}

.newsletter-with-social-block .social-media-col {
  flex-direction: column;
  background-color: #f7f7f7;
  padding: 40px 20px;
}

.newsletter-with-social-block .social-media-col .social-menu {
  padding: 0;
}

.newsletter-with-social-block .social-media-col .social-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1b1b1b;
}

.newsletter-with-social-block .social-media-col .social-menu a:not(:last-child) {
  margin-right: 20px;
}

.partnership-text {
  color: #8894a6;
  font-size: .625rem;
  line-height: .625rem;
  margin: 0 0 .625rem 0;
  text-transform: uppercase;
}

.partnership-logo img {
  height: 2.1875rem;
  width: auto;
}

.partnership-block {
  background: #f7f7f7;
  margin-bottom: 1.5625rem;
}

.partnership-block-wrapper {
  margin: 0 -1.5625rem;
}

.partnership-block-wrapper .partnership-block-title {
  width: 100%;
}

.partnership-block-wrapper .partnership-block-title .partnership-text {
  vertical-align: bottom;
}

.partnership-block-wrapper .partnership-block-title .right-side {
  text-align: center;
}

.partnership-block-wrapper .partnership-block-inner.section-block-container {
  margin-bottom: 0;
}

body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container {
  flex-direction: row;
  height: auto;
}

body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block {
  flex-basis: 100%;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns,
  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns-full {
    flex-direction: column;
    flex-basis: 50%;
  }

  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-title .partnership-text {
    margin: 0 0 .625rem 0;
  }
}

@media (min-width: 992px) {
  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container {
    flex-direction: row;
  }

  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block {
    flex-basis: 100%;
  }

  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns,
  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns-full {
    flex-direction: row;
  }

  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-image-highlight {
    flex-basis: 100%;
  }

  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-title .partnership-text {
    margin: 0 0 .625rem 0;
  }
}

@media (min-width: 1350px) {
  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container {
    flex-direction: column;
    height: calc(420px + 30px);
    margin-left: -15px;
    margin-right: -15px;
    width: 100%;
  }

  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns,
  body:not(.wp-admin) .partnership-block-wrapper .partnership-block-inner.section-block-container .dip-article-block.is-style-two-columns-full {
    flex-basis: 50%;
  }
}

.publico-block-container.with-subtitle .subtitle {
  font-weight: 600;
  font-size: 12px;
  color: #8894a6;
  margin-bottom: 1.25rem;
  margin-top: -.625rem;
  padding-left: .9375rem;
  width: 100%;
}

body .tin-related-articles-block {
  width: 100%;
}

body .tin-related-articles-block h4 {
  font-size: 1.875rem;
  line-height: 1.875rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: .625rem;
  text-transform: none;
}

body .tin-related-articles-block h4::before {
  border-top: 1px solid;
  border-color: #e40004;
  content: '';
  display: block;
  padding-top: .625rem;
  width: 200px;
}

body .tin-related-articles-block ul {
  padding-left: 0;
}

body .tin-related-articles-block li {
  border-bottom: none;
  list-style-position: inside;
  margin-left: 0;
  padding: .625rem 0;
}

body .tin-related-articles-block li a {
  border-bottom: none;
  color: black;
  font-weight: 700;
  text-transform: none;
  font-size: 1.125rem;
  position: relative;
}

body .tin-related-articles-block li a::after {
  background-color: #cccfd2;
  bottom: -12px;
  content: '';
  display: block;
  height: 1px;
  width: 4.6875rem;
  position: absolute;
}

body .tin-related-articles-block li:last-child a::after {
  display: none;
}

.section-block-container>h2 {
  font-size: 2.375rem;
  line-height: 3.1875rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.section-block-container>h2::before {
  border-top: 1px solid;
  border-color: #e40004;
  content: '';
  display: block;
  padding-top: .625rem;
  width: 200px;
}

.section-block-container>h2 a {
  color: #283a3f;
}

.section-block-container>h2 a:focus,
.section-block-container>h2 a:hover,
.section-block-container>h2 a:active {
  color: rgba(40,58,63,0.8);
}

@media (max-width: 991.98px) {
  body:not(.wp-admin) .section-block-container .dip-article-block.is-style-vertical-image-content-below {
    padding-left: 0;
    padding-right: 0;
  }
}

body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-ssr>div {
  flex-basis: 100%;
}

body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner {
  align-content: flex-start;
  flex-basis: calc(100% + 30px);
}

body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner>div {
  flex-basis: 100%;
}

body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free .sidebar-block-free-inner .wp-block-cover {
  height: auto;
  margin: 0 15px 30px 15px;
}

body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-text-highlight,
body:not(.wp-admin) .sidebar-block-wrapper div.dip-article-block.is-style-two-columns-full {
  flex-grow: 1;
  max-width: 100%;
}

body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper {
  margin: 0;
  padding: 0;
}

body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-title {
  padding: .9375rem;
  padding-bottom: 0;
}

body:not(.wp-admin) .sidebar-block-wrapper .partnership-block-wrapper .partnership-block-inner.section-block-container div.dip-article-block.is-style-image-highlight {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free-inner .dip-article-block.is-style-normal .article-block-media {
    flex-basis: 134px;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free-inner .watermark-section .dip-article-block.is-style-normal .article-block-media {
    flex-basis: 89px;
  }
}

@media (min-width: 783px) {
  body:not(.wp-admin) .sidebar-block-wrapper .multimedia-block-wrapper {
    margin-left: .9375rem;
    margin-right: .9375rem;
  }
}

@media (min-width: 992px) {
  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner {
    justify-content: center;
    height: 47.5rem;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block {
    flex: 1 1 20%;
    width: 50%;
    margin-bottom: 0;
    max-width: 50%;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:first-child {
    flex-basis: 420px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 0;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free-inner .dip-article-block.is-style-normal .article-block-media {
    flex-basis: 141px;
  }
}

@media (min-width: 1350px) {
  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free-inner .dip-article-block.is-style-normal .article-block-media {
    flex-basis: 195px;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .sidebar-block-free-inner .watermark-section .dip-article-block.is-style-normal .article-block-media {
    flex-basis: 150px;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner {
    height: 35rem;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block {
    flex: 1 1 33%;
    width: 33%;
    max-width: 33%;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:not(:first-child) {
    flex-basis: calc(33%);
    max-height: calc(33%);
  }

  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(2),
  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(3),
  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:nth-child(4) {
    border-right: 1px solid #8894a6;
  }

  body:not(.wp-admin) .sidebar-block-wrapper .wp-block-dip-gutenberg-media-blocks-large-grid-block.large-grid .dip-block-container.grid-block-inner div.dip-article-block:first-child {
    flex-basis: 100%;
  }
}

@media (max-width: 1349.98px) {
  .tin-social-share-block .social-share-block-title {
    flex-basis: 25%;
    font-size: 25px;
  }

  .tin-social-share-block .social-share-block-networks {
    flex-basis: 50%;
  }

  .tin-social-share-block .social-share-block-logo {
    flex-basis: 20%;
    margin-left: auto;
  }
}

@media (max-width: 782.98px) {
  .tin-social-share-block .social-share-block-title {
    flex-basis: calc(100% - 100px);
    font-size: 21px;
  }

  .tin-social-share-block .social-share-block-networks {
    flex-basis: 100%;
    order: 2;
    padding-top: 1.5625rem;
  }

  .tin-social-share-block .social-share-block-logo {
    flex-basis: 100px;
    margin-left: auto;
  }
}

.top-articles-block-container.section-block-container .grid-container .dip-article-block::before {
  font-family: "Playfair Display",serif;
  border-bottom-color: #f4f4f4;
}

@media (max-width: 991.98px) {
  .top-articles-block-container.section-block-container .grid-container .main-col {
    position: static;
  }
}

@media (min-width: 992px) {
  .top-articles-block-container.section-block-container .grid-container .main-col {
    float: left;
    width: 50%;
  }

  .top-articles-block-container.section-block-container .grid-container .main-col .dip-article-block {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .top-articles-block-container.section-block-container .grid-container .aside-col {
    float: left;
    width: 50%;
  }

  .top-articles-block-container.section-block-container .grid-container .aside-col .dip-article-block {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.tin-widget-articles.tin-highlights-widget {
  padding: 0;
}

.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item {
  margin-bottom: 1.25rem;
}

.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-img {
  padding: 0;
  flex: 0 0 auto;
}

.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-title {
  padding: .9375rem 1.25rem;
}

.tin-widget-articles.tin-highlights-widget .tin-widget-articles-item .tin-widget-articles-item-title h4 {
  font-size: 1.125rem;
  line-height: 1.25rem;
}

@media (min-width: 992px) {
  .tin-widget-articles.tin-highlights-widget {
    padding: .9375rem .4375rem 1.25rem;
  }

  .tin-widget-articles.tin-highlights-widget .tin-widget-articles-item:not(:last-child) {
    border-bottom: 1px solid #f4f4f4;
  }
}

.tin-publications-widget .tin-widget-publication {
  border: none;
}

.tin-publications-widget .tin-widget-publication a {
  color: #111;
}

.tin-publications-widget .tin-widget-publication a:focus,
.tin-publications-widget .tin-widget-publication a:hover,
.tin-publications-widget .tin-widget-publication a:active {
  color: rgba(17,17,17,0.8);
}

.tin-publications-widget .tin-widget-publication:not(:last-child) {
  margin-bottom: 1.25rem;
}

.tin-publications-widget .tin-widget-publication .info {
  padding: 2.1875rem;
  background-color: #f7f7f7;
  border-top: 4px solid #e40004;
}

.tin-publications-widget .tin-widget-publication .title,
.tin-publications-widget .tin-widget-publication h4 {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: .0625rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.sidebar {
  width: 300px;
}

.tin-widget-articles.tin-tops-widget .tin-widget-articles-item {
  padding-top: 5px;
  flex-direction: row;
  margin-bottom: .625rem;
  position: relative;
}

.tin-widget-articles.tin-tops-widget .tin-widget-articles-item:nth-child(n+3)::before {
  content: '';
  border-bottom: 1px solid #ccc;
  display: block;
  width: 80px;
  margin-bottom: 0;
}

.tin-widget-articles.tin-tops-widget .tin-widget-articles-item::before {
  position: absolute;
  top: 0;
}

.tin-widget-articles.tin-tops-widget .tin-widget-articles-item .tin-widget-articles-item-position {
  color: #8894a6;
  flex: 0 0 40px;
  font-family: "Playfair Display",serif;
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: .9375rem;
  line-height: 1;
  padding-bottom: 0;
}

.tin-widget-articles.tin-tops-widget .tin-widget-articles-item .tin-widget-articles-item-section {
  color: #8894a6;
  font-size: .875rem;
  font-weight: bold;
}

.tin-widget-articles.tin-tops-widget .tin-widget-articles-item .tin-widget-articles-item-info {
  flex-basis: calc(100% - 40px);
}

.tin-widget-articles.tin-tops-widget .tin-widget-articles-item .tin-widget-articles-item-title {
  display: flex;
  height: 100%;
  align-items: center;
  align-self: center;
  flex: 0 0 100%;
  padding-top: 0;
}

.tin-widget-articles.tin-tops-widget .tin-widget-articles-item h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.1;
}

.tin-widget-articles .tin-widget-articles-title {
  color: #8894a6;
  display: flex;
  font-size: 1.25rem;
  justify-content: space-between;
  line-height: 1.4;
  margin-bottom: 5px;
  padding: 0;
}

.tin-widget-articles .tin-widget-articles-title::before,
.tin-widget-articles .tin-widget-articles-title::after {
  align-self: center;
  border-top: 1px solid #e40004;
  content: '';
  flex: 1 1 auto;
  padding: 0;
  width: auto;
}

.tin-widget-articles .tin-widget-articles-title::before {
  margin-right: 10px;
}

.tin-widget-articles .tin-widget-articles-title::after {
  margin-left: 10px;
}

.tin-widget-articles .tin-widget-articles-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.tin-widget-articles .tin-widget-articles-item>* {
  flex: 0 0 100%;
}

.tin-widget-articles .tin-widget-articles-item>* img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center";
  display: block;
  height: 5.29375rem;
  width: 100%;
}

.tin-widget-articles .tin-widget-articles-item:last-of-type {
  margin-bottom: 0;
}

.tin-widget-articles .tin-widget-articles-item-img {
  padding-bottom: .3125rem;
}

.tin-widget-articles .tin-widget-articles-item-title {
  padding-top: .3125rem;
}

.tin-widget-articles a {
  color: #000;
}

.tin-widget-articles a:focus,
.tin-widget-articles a:hover,
.tin-widget-articles a:active {
  color: rgba(0,0,0,0.8);
}

.tin-widget-articles .article-block-post-format {
  align-items: center;
  background-color: #fff;
  bottom: 10px;
  color: #111;
  display: flex;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 10px;
  text-align: center;
  text-decoration: none;
  width: 30px;
  z-index: 1;
}

@media (min-width: 992px) {
  .tin-widget-articles .tin-widget-articles-item>* img {
    height: auto;
  }
}

.widget {
  margin-bottom: 50px;
}

.widget ul li {
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.875rem !important;
}

.widget ul li a {
  color: #000;
}

.widget ul li a:focus,
.widget ul li a:hover,
.widget ul li a:active {
  color: rgba(0,0,0,0.8);
}

.widget ul li:last-of-type {
  margin-bottom: 0 !important;
}

.widget h3 {
  color: #8894a6;
  display: flex;
  font-size: 1.25rem;
  justify-content: space-between;
  line-height: 1.4;
  margin-bottom: 5px;
  padding: 0;
  margin-bottom: .9375rem;
}

.widget h3::before,
.widget h3::after {
  align-self: center;
  border-top: 1px solid #e40004;
  content: '';
  flex: 1 1 auto;
  padding: 0;
  width: auto;
}

.widget h3::before {
  margin-right: 10px;
}

.widget h3::after {
  margin-left: 10px;
}

.widget a.widget-title {
  color: #283a3f;
}

.widget a.widget-title:focus,
.widget a.widget-title:hover,
.widget a.widget-title:active {
  color: rgba(40,58,63,0.8);
}

.widget h4 {
  color: inherit;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.widget.widget_custom_html {
  margin-bottom: 0;
}

.widget.widget_custom_html .pub [data-pub]>*:first-child {
  display: inline-block !important;
  margin-bottom: 20px;
}

.widget.widget_custom_html .pub [data-pub]>*:first-child::after {
  bottom: 58px;
}

.wp-admin .widget {
  margin-bottom: 50px;
}


