/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        -ms-user-select: none;
	    user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
	background: transparent;
}
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	-webkit-filter: inherit;
	        filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1), -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	        box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	        box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	-webkit-box-shadow: none;
	        box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	-webkit-box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	        box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	        box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}
@-webkit-keyframes heightIncrease {
  from {
    max-height: 0;
  }
  to {
    max-height: 300px;
  }
}
@keyframes heightIncrease {
  from {
    max-height: 0;
  }
  to {
    max-height: 300px;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0.0;
  }
  to {
    opacity: 1.0;
  }
}

@keyframes fadein {
  from {
    opacity: 0.0;
  }
  to {
    opacity: 1.0;
  }
}

@-webkit-keyframes increaseHeight {
  from {
    max-height: 0;
  }
  to {
    max-height: 100%;
  }
}

@keyframes increaseHeight {
  from {
    max-height: 0;
  }
  to {
    max-height: 100%;
  }
}

@-webkit-keyframes display {
  from {
    display: none;
  }
  to {
    display: block;
  }
}

@keyframes display {
  from {
    display: none;
  }
  to {
    display: block;
  }
}

@font-face {
  font-family: 'Merriweather';
  src: url("/wp-content/themes/igu/src/fonts/merriweather/Merriweather-Regular.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: 'Merriweather';
  src: url("/wp-content/themes/igu/src/fonts/merriweather/Merriweather-Regular.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: 'Merriweather';
  src: url("/wp-content/themes/igu/src/fonts/merriweather/Merriweather-Bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: 'Merriweather';
  src: url("/wp-content/themes/igu/src/fonts/merriweather/Merriweather-Black.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: 'HK Grotesk';
  src: url("/wp-content/themes/igu/src/fonts/hk-grotesk/HKGrotesk-Regular.otf") format("opentype");
  font-weight: normal;
}

@font-face {
  font-family: 'HK Grotesk';
  src: url("/wp-content/themes/igu/src/fonts/hk-grotesk/HKGrotesk-SemiBold.otf") format("opentype");
  font-weight: 500;
}

@font-face {
  font-family: 'HK Grotesk';
  src: url("/wp-content/themes/igu/src/fonts/hk-grotesk/HKGrotesk-Bold.otf") format("opentype");
  font-weight: bold;
}

@font-face {
  font-family: 'Tiempos Headline';
  src: url("/wp-content/themes/igu/src/fonts/tiempos/TiemposHeadline-Semibold.otf") format("opentype");
  font-weight: bold;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "HK Grotesk", sans-serif;
  scroll-behavior: smooth;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  counter-reset: card;
}

@media (min-width: 768px) {
  html, body {
    font-size: 16px;
  }
}

.site-main {
  width: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  outline: none;
}

figure {
  margin: 0;
}

form {
  width: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ol li, ul li {
  color: #414D58;
}

input {
  border: none;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}

p {
  margin: 0;
  color: #2B333B;
}

button {
  font-family: "HK Grotesk", sans-serif;
}

address {
  font-style: normal;
}

.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 51, 59, 0.9);
  z-index: -1;
  display: none;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

figure img {
  -webkit-box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.12);
}

.input-check {
  -webkit-appearance: checkbox;
  display: none;
  position: absolute;
  left: -9999px;
}

.input-label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.input-content {
  display: none;
  padding: 32px 0;
}

#input-1:checked ~ .input-content-1 {
  display: block;
}

#input-2:checked ~ .input-content-2 {
  display: block;
}

#input-3:checked ~ .input-content-3 {
  display: block;
}

#input-4:checked ~ .input-content-4 {
  display: block;
}

#input-5:checked ~ .input-content-5 {
  display: block;
}

#input-6:checked ~ .input-content-6 {
  display: block;
}

#input-7:checked ~ .input-content-7 {
  display: block;
}

#input-8:checked ~ .input-content-8 {
  display: block;
}

#input-9:checked ~ .input-content-9 {
  display: block;
}

#input-10:checked ~ .input-content-10 {
  display: block;
}

#input-11:checked ~ .input-content-11 {
  display: block;
}

#input-12:checked ~ .input-content-12 {
  display: block;
}

#input-13:checked ~ .input-content-13 {
  display: block;
}

#input-14:checked ~ .input-content-14 {
  display: block;
}

#input-15:checked ~ .input-content-15 {
  display: block;
}

#input-16:checked ~ .input-content-16 {
  display: block;
}

#input-17:checked ~ .input-content-17 {
  display: block;
}

#input-18:checked ~ .input-content-18 {
  display: block;
}

#input-19:checked ~ .input-content-19 {
  display: block;
}

#input-20:checked ~ .input-content-20 {
  display: block;
}

h1,
h1.h1 {
  font-family: "Merriweather", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 35px;
  line-height: 110%;
  color: #2B333B;
  margin: 0;
}

@media (min-width: 768px) {
  h1,
  h1.h1 {
    font-size: 40px;
  }
}

@media (min-width: 1280px) {
  h1,
  h1.h1 {
    font-size: 66px;
  }
}

.h1--primary-200 {
  color: #004875;
}

h2,
.h2,
h2 a {
  font-family: "Merriweather", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 29px;
  line-height: 120%;
  color: #2B333B;
  margin: 0;
}

@media (min-width: 768px) {
  h2,
  .h2,
  h2 a {
    font-size: 33px;
  }
}

@media (min-width: 1280px) {
  h2,
  .h2,
  h2 a {
    font-size: 51px;
  }
}

@media (min-width: 1280px) {
  h1.h2--small,
  h2.h2--small {
    font-size: 44px;
  }
}

h3,
h3.h3,
h3 a {
  font-family: "Merriweather", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 130%;
  color: #2B333B;
  margin: 0;
}

@media (min-width: 768px) {
  h3,
  h3.h3,
  h3 a {
    font-size: 27px;
  }
}

@media (min-width: 1280px) {
  h3,
  h3.h3,
  h3 a {
    font-size: 38px;
  }
}

h4, .c-search-bar input[type=text], .c-mobile-dropdown > ul > li > a,
h4.h4,
.c-search-bar input.h4[type=text],
.c-mobile-dropdown > ul > li > a.h4,
h4 a,
.c-search-bar input[type=text] a,
.c-mobile-dropdown > ul > li > a a {
  font-family: "Merriweather", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 130%;
  color: #2B333B;
  margin: 0;
}

@media (min-width: 768px) {
  h4, .c-search-bar input[type=text], .c-mobile-dropdown > ul > li > a,
  h4.h4,
  .c-search-bar input.h4[type=text],
  .c-mobile-dropdown > ul > li > a.h4,
  h4 a,
  .c-search-bar input[type=text] a,
  .c-mobile-dropdown > ul > li > a a {
    font-size: 23px;
  }
}

@media (min-width: 1280px) {
  h4, .c-search-bar input[type=text], .c-mobile-dropdown > ul > li > a,
  h4.h4,
  .c-search-bar input.h4[type=text],
  .c-mobile-dropdown > ul > li > a.h4,
  h4 a,
  .c-search-bar input[type=text] a,
  .c-mobile-dropdown > ul > li > a a {
    font-size: 27px;
  }
}

h5, .c-card-groups > div h4, .c-card-groups > div .c-search-bar input[type=text], .c-search-bar .c-card-groups > div input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li > a,
h5.h5,
.c-card-groups > div h4.h5,
.c-card-groups > div .c-search-bar input.h5[type=text],
.c-search-bar .c-card-groups > div input.h5[type=text],
.c-card-groups > div .c-mobile-dropdown > ul > li > a.h5,
h5 a,
.c-card-groups > div h4 a,
.c-card-groups > div .c-search-bar input[type=text] a,
.c-search-bar .c-card-groups > div input[type=text] a,
.c-card-groups > div .c-mobile-dropdown > ul > li > a a {
  font-family: "Merriweather", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  line-height: 130%;
  text-transform: capitalize;
  color: #2B333B;
  margin: 0;
}

@media (min-width: 768px) {
  h5, .c-card-groups > div h4, .c-card-groups > div .c-search-bar input[type=text], .c-search-bar .c-card-groups > div input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li > a,
  h5.h5,
  .c-card-groups > div h4.h5,
  .c-card-groups > div .c-search-bar input.h5[type=text],
  .c-search-bar .c-card-groups > div input.h5[type=text],
  .c-card-groups > div .c-mobile-dropdown > ul > li > a.h5,
  h5 a,
  .c-card-groups > div h4 a,
  .c-card-groups > div .c-search-bar input[type=text] a,
  .c-search-bar .c-card-groups > div input[type=text] a,
  .c-card-groups > div .c-mobile-dropdown > ul > li > a a {
    font-size: 19px;
  }
}

@media (min-width: 1280px) {
  h5, .c-card-groups > div h4, .c-card-groups > div .c-search-bar input[type=text], .c-search-bar .c-card-groups > div input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li > a,
  h5.h5,
  .c-card-groups > div h4.h5,
  .c-card-groups > div .c-search-bar input.h5[type=text],
  .c-search-bar .c-card-groups > div input.h5[type=text],
  .c-card-groups > div .c-mobile-dropdown > ul > li > a.h5,
  h5 a,
  .c-card-groups > div h4 a,
  .c-card-groups > div .c-search-bar input[type=text] a,
  .c-search-bar .c-card-groups > div input[type=text] a,
  .c-card-groups > div .c-mobile-dropdown > ul > li > a a {
    font-size: 21px;
  }
}

h6, .c-card-statistics h2 > span, .c-mobile-dropdown > ul > li > ul > li > a,
h6.h6,
.c-card-statistics h2 > span.h6,
.c-mobile-dropdown > ul > li > ul > li > a.h6,
h6 a,
.c-card-statistics h2 > span a,
.c-mobile-dropdown > ul > li > ul > li > a a {
  font-family: "Merriweather", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 140%;
  color: #2B333B;
  margin: 0;
}

@media (min-width: 768px) {
  h6, .c-card-statistics h2 > span, .c-mobile-dropdown > ul > li > ul > li > a,
  h6.h6,
  .c-card-statistics h2 > span.h6,
  .c-mobile-dropdown > ul > li > ul > li > a.h6,
  h6 a,
  .c-card-statistics h2 > span a,
  .c-mobile-dropdown > ul > li > ul > li > a a {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  h6, .c-card-statistics h2 > span, .c-mobile-dropdown > ul > li > ul > li > a,
  h6.h6,
  .c-card-statistics h2 > span.h6,
  .c-mobile-dropdown > ul > li > ul > li > a.h6,
  h6 a,
  .c-card-statistics h2 > span a,
  .c-mobile-dropdown > ul > li > ul > li > a a {
    font-size: 16px;
  }
}

.section-head, .c-headline__header {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 130%;
  color: #2B333B;
}

@media (min-width: 768px) {
  .section-head, .c-headline__header {
    font-size: 23px;
  }
}

@media (min-width: 1280px) {
  .section-head, .c-headline__header {
    font-size: 27px;
  }
}

.section-head--primary-200 {
  color: #004875;
}

.section-head--default {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section-head--default {
    margin-bottom: 32px;
  }
}

.eyebrow {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2B333B;
  display: block;
}

@media (min-width: 1024px) {
  .eyebrow {
    font-size: 16px;
  }
}

.eyebrow-sm, .o-input__label {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  color: #2B333B;
}

.metadata {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  text-transform: capitalize;
  display: block;
  color: #2B333B;
}

@media (min-width: 1280px) {
  .metadata {
    font-size: 16px;
  }
}

.by-line-big {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.03em;
  color: #2B333B;
}

@media (min-width: 1280px) {
  .by-line-big {
    font-size: 16px;
    letter-spacing: normal;
  }
}

.by-line-small, .c-card-statistics p, .c-footer__item > ul > li > a {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.03em;
  color: #2B333B;
}

@media (min-width: 768px) {
  .by-line-small, .c-card-statistics p, .c-footer__item > ul > li > a {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: normal;
  }
}

strong, b {
  font-family: "HK Grotesk", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 160%;
  color: #2B333B;
}

@media (min-width: 1280px) {
  strong, b {
    font-size: 16px;
  }
}

/*!
 * FlexMasonry
 * Version: 0.2.3
 * Author: Gilbert Pellegrom <gilbert@pellegrom.me>
 * License: MIT
 */
.flexmasonry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flexmasonry-item {
  width: 100%;
}

.flexmasonry-cols-2 .flexmasonry-item {
  width: 50%;
}

.flexmasonry-cols-3 .flexmasonry-item {
  width: 33.333%;
}

.flexmasonry-cols-4 .flexmasonry-item {
  width: 25%;
}

.flexmasonry-cols-5 .flexmasonry-item {
  width: 20%;
}

.flexmasonry-cols-6 .flexmasonry-item {
  width: 16.666%;
}

.flexmasonry-cols-7 .flexmasonry-item {
  width: 14.285%;
}

.flexmasonry-cols-8 .flexmasonry-item {
  width: 12.5%;
}

.flexmasonry-cols-2 .flexmasonry-item:nth-child(2n+1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flexmasonry-cols-2 .flexmasonry-item:nth-child(2n) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flexmasonry-cols-3 .flexmasonry-item:nth-child(3n+1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flexmasonry-cols-3 .flexmasonry-item:nth-child(3n+2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flexmasonry-cols-3 .flexmasonry-item:nth-child(3n) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.flexmasonry-cols-4 .flexmasonry-item:nth-child(4n+1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flexmasonry-cols-4 .flexmasonry-item:nth-child(4n+2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flexmasonry-cols-4 .flexmasonry-item:nth-child(4n+3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.flexmasonry-cols-4 .flexmasonry-item:nth-child(4n) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.flexmasonry-cols-5 .flexmasonry-item:nth-child(5n+1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flexmasonry-cols-5 .flexmasonry-item:nth-child(5n+2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flexmasonry-cols-5 .flexmasonry-item:nth-child(5n+3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.flexmasonry-cols-5 .flexmasonry-item:nth-child(5n+4) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.flexmasonry-cols-5 .flexmasonry-item:nth-child(5n) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+4) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+5) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.flexmasonry-cols-6 .flexmasonry-item:nth-child(6n) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+4) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+5) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+6) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.flexmasonry-cols-7 .flexmasonry-item:nth-child(7n) {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+4) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+5) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+6) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+7) {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.flexmasonry-cols-8 .flexmasonry-item:nth-child(8n) {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.flexmasonry-break {
  content: "";
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 0 !important;
  margin: 0;
}

.flexmasonry-break-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flexmasonry-break-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flexmasonry-break-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.flexmasonry-break-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.flexmasonry-break-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.flexmasonry-break-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.flexmasonry-break-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.map_wrapper {
  max-width: 940px !important;
  margin: 0 auto;
}

.o-container, .o-three-column-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .o-container, .o-three-column-content {
    padding: 0 48px;
  }
}

@media (min-width: 1280px) {
  .o-container, .o-three-column-content {
    padding: 0 80px;
  }
}

.o-container--full {
  padding: 0;
}

.o-container--trim > div {
  max-width: 928px;
  margin: 0 auto;
}

.o-container-custom {
  width: 100%;
  max-width: 1088px;
  margin: 0 auto;
}

.o-container-slim {
  max-width: 548px;
  width: 100%;
  margin: 0 auto;
}

.o-container-slim--option-1 {
  max-width: 343px;
}

@media (min-width: 768px) {
  .o-container-slim--option-1 {
    max-width: 555px;
  }
}

@media (min-width: 1280px) {
  .o-container-slim--option-1 {
    max-width: 543px;
  }
}

.o-two-column-content {
  margin: 0 auto;
  max-width: 928px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  padding: 0 16px 0;
}

@media (min-width: 768px) {
  .o-two-column-content {
    padding: 0 48px 0;
  }
}

@media (min-width: 1280px) {
  .o-two-column-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.o-two-column-content__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 16px);
          flex: 0 0 calc(50% - 16px);
}

.o-two-column-content__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 16px);
          flex: 0 0 calc(50% - 16px);
}

.o-three-column-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.o-three-column-content__left {
  max-width: 262px;
  width: 100%;
}

@media (min-width: 768px) {
  .o-three-column-content__left {
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .o-three-column-content__left {
    margin-right: 32px;
  }
}

.o-three-column-content__left--member-left {
  max-width: 262px;
  width: 100%;
}

@media (min-width: 768px) {
  .o-three-column-content__left--member-left {
    margin-right: 46px;
  }
}

@media (min-width: 1280px) {
  .o-three-column-content__left--member-left {
    margin-right: 130px;
  }
}

.o-three-column-content__left .c-subscribe .o-input .o-input-group .o-input__input {
  width: 100%;
}

.o-three-column-content__center {
  max-width: 548px;
  width: 100%;
}

@media (min-width: 1280px) {
  .o-three-column-content__center {
    margin-right: 24px;
  }
}

.o-three-column-content__center--member-center {
  margin: 0;
  width: 100%;
}

.o-three-column-content__right {
  max-width: 262px;
  width: 100%;
}

.o-three-column-content--retain-sidebar .o-three-column-content__center {
  margin-right: 0;
}

@media (min-width: 1024px) {
  .o-three-column-content--retain-sidebar .o-three-column-content__center {
    margin-right: 24px;
  }
}

.o-three-column-content--retain-sidebar .o-three-column-content__left {
  display: none;
}

@media (min-width: 768px) {
  .o-three-column-content--retain-sidebar .o-three-column-content__left {
    display: block;
    margin-right: 24px;
    max-width: 262px;
    width: 30vw;
    min-width: 208px;
  }
}

.o-three-column-content--retain-sidebar .o-three-column-content__left .c-subscribe form .o-input > input {
  width: 100%;
}

.o-three-column-content--retain-sidebar .o-three-column-content__left .c-subscribe form .o-input--checkbox .o-input-group > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.o-three-column-content--retain-sidebar .o-three-column-content__left .c-subscribe form .o-input--checkbox .o-input-group > div .o-input__label {
  width: 20px;
  height: 20px;
}

.o-three-column-content--retain-sidebar .o-three-column-content__left .c-subscribe form .o-input--checkbox .o-input-group > div p {
  font-size: 14px;
}

.o-three-column-content--retain-sidebar .o-three-column-content__right {
  display: none;
}

@media (min-width: 1280px) {
  .o-three-column-content--retain-sidebar .o-three-column-content__right {
    display: block;
  }
}

.o-three-column-content--membership .o-three-column-content__center {
  text-align: left;
  margin-right: 0px;
}

@media (min-width: 768px) {
  .o-three-column-content--membership .o-three-column-content__center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1280px) {
  .o-three-column-content--membership .o-three-column-content__center {
    margin-right: 24px;
    text-align: left;
  }
}

.o-three-column-content--membership .o-three-column-content__left {
  display: none;
}

@media (min-width: 768px) {
  .o-three-column-content--membership .o-three-column-content__left {
    display: none;
  }
}

@media (min-width: 1280px) {
  .o-three-column-content--membership .o-three-column-content__left {
    display: block;
  }
}

.o-three-column-content--membership .o-three-column-content__right {
  display: none;
}

@media (min-width: 1280px) {
  .o-three-column-content--membership .o-three-column-content__right {
    display: block;
  }
}

.o-three-column-content--gray {
  background-color: #F3F9FA;
}

.o-container-right-sidebar {
  max-width: 928px;
  margin: 0 auto;
  width: 100%;
}

.o-container-right-sidebar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 768px) {
  .o-container-right-sidebar-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.o-container-right-sidebar__left {
  max-width: 640px;
  width: 100%;
}

@media (min-width: 768px) {
  .o-container-right-sidebar__left {
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .o-container-right-sidebar__left {
    margin-right: 32px;
  }
}

.o-container-right-sidebar__left .c-card-download--listing-option-2 .c-card-download-content span {
  font-size: 14px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar__left .c-card-download--listing-option-2 .c-card-download-content span {
    font-size: 16px;
  }
}

.o-container-right-sidebar__right {
  max-width: 100%;
  width: 100%;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar__right {
    margin-top: 0;
    max-width: 262px;
    width: 30vw;
    min-width: 208px;
  }
}

@media (min-width: 1280px) {
  .o-container-right-sidebar__right {
    max-width: 256px;
  }
}

@media (min-width: 768px) {
  .o-container-right-sidebar--tablet-wrap > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--tablet-wrap > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.o-container-right-sidebar--tablet-wrap > div > .o-container-right-sidebar__left {
  max-width: 100%;
  margin-right: 0;
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--tablet-wrap > div > .o-container-right-sidebar__left {
    max-width: 640px;
    width: 100%;
    margin-right: 32px;
  }
}

.o-container-right-sidebar--tablet-wrap > div > .o-container-right-sidebar__right {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--tablet-wrap > div > .o-container-right-sidebar__right {
    max-width: 100%;
    width: 100%;
    margin-top: 0px;
  }
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--tablet-wrap > div > .o-container-right-sidebar__right {
    max-width: 262px;
    margin-top: 0px;
  }
}

.o-container-right-sidebar--no-sidebar .o-container-right-sidebar__left {
  max-width: 608px;
  margin-right: 0;
}

.o-container-right-sidebar--no-sidebar .o-container-right-sidebar__right {
  display: none;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left {
  margin-right: 0;
  max-width: none;
  width: 100%;
  /* Description - Tab */
  /* Upcoming Meetings - Tab */
  /* Past Meetings - Tab */
  /* Group Roster - Tab */
  /* Resources - Tab */
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left {
    max-width: 440px;
  }
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left {
    max-width: 642px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board {
  display: none;
}

@media (max-width: 767px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board {
    display: block;
    margin-bottom: 24px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board input[type="checkbox"] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  left: -9999px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board label {
  background-color: #F3F9FA;
  cursor: pointer;
  display: block;
  position: relative;
  padding: 25px 24px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board label::after {
  content: url("/wp-content/themes/igu/src/images/icons/chevron-down.png");
  display: inline-block;
  position: absolute;
  right: 25px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board .igu-message-board-content {
  display: none;
  opacity: 0;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board .igu-message-board-content > aside {
  margin-top: 0;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board #igu-message-board:checked ~ .igu-message-board-content {
  display: block;
  opacity: 1;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-igu-message-board #igu-message-board:checked ~ label::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-search-filter {
  background-color: #F5F8F9;
  margin-top: 0;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-search-filter {
    background-color: transparent;
    margin-bottom: 38px;
  }
}

@media (max-width: 767px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-search-filter {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-search-filter > div {
  min-width: 100px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-search-filter > div {
    min-width: 140px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content > figure {
  max-width: 343px;
  max-height: 191px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content > figure {
    max-width: 440px;
    max-height: 320px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content > figure {
    max-width: 642px;
    margin-bottom: 24px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content > figure img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 343px;
  min-width: 343px;
  max-height: 191px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content > figure img {
    max-width: 440px;
    min-width: 440px;
    max-height: 320px;
  }
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content > figure img {
    max-width: 642px;
    min-width: 642px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content p {
  color: #414D58;
  font-size: 14px;
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content p {
    font-size: 16px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .description-content p:not(:last-child) {
  margin-bottom: 16px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap {
  margin-top: 5px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap {
    margin-top: 35px;
  }
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap {
    margin-top: 39px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .section-head, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .c-headline__header {
  margin-bottom: 19px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .section-head, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .c-headline__header {
    margin-bottom: 22px;
  }
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .section-head, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .c-headline__header {
    margin-bottom: 25px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div h6, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div .c-card-statistics h2 > span, .c-card-statistics .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div h2 > span, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div .c-mobile-dropdown > ul > li > ul > li > a {
  max-width: 104px;
  min-width: 104px;
  margin-right: 32px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div h6, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div .c-card-statistics h2 > span, .c-card-statistics .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div h2 > span, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div .c-mobile-dropdown > ul > li > ul > li > a {
    max-width: 172px;
    min-width: 172px;
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div h6, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div .c-card-statistics h2 > span, .c-card-statistics .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div h2 > span, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div .c-mobile-dropdown > ul > li > ul > li > a {
    max-width: 192px;
    min-width: 192px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div p {
  color: #2B333B;
  font-size: 14px;
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div p {
    font-size: 16px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .governance-wrap .governance-content div:not(:last-child) {
  margin-bottom: 25px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap {
  margin-top: 29px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap {
    margin-top: 35px;
  }
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap {
    margin-top: 40px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap .section-head, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap .c-headline__header {
  margin-bottom: 19px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap .section-head, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap .c-headline__header {
    margin-bottom: 27px;
  }
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap .section-head, .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap .c-headline__header {
    margin-bottom: 22px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap p {
  color: #2B333B;
  font-size: 14px;
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap p {
    font-size: 16px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap ul {
  padding-left: 0;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap ul li {
  color: #414D58;
  font-size: 16px;
  position: relative;
  padding-left: 24px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap ul li:not(:last-child) {
  margin-bottom: 16px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-description .focuses-wrap ul li::before {
  content: "";
  background-color: #7CB135;
  border-radius: 50%;
  display: inline-block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 0;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-group-roster .c-search-filter {
  min-height: auto;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-resources .c-card-resources {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-resources .c-card-resources {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-resources .c-card-resources > div:first-child {
  max-width: 429px;
  width: 100%;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-resources .c-card-resources .o-button {
  font-size: 14px;
  margin-top: 24px;
  width: 140px;
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__left .c-resources .c-card-resources .o-button {
    margin-top: 0;
    width: 144px;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__right {
  margin-top: 0;
  /* Custom Scrollbar */
  /* Width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__right {
    margin-left: 24px;
  }
}

@media (min-width: 1024px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__right {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__right {
    display: none;
  }
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__right ::-webkit-scrollbar {
  width: 8px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__right ::-webkit-scrollbar-track {
  background: #E2E6E9;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__right ::-webkit-scrollbar-thumb {
  background: #A7B3BE;
  border-radius: 100px;
}

.o-container-right-sidebar--collab-hub > div .o-container-right-sidebar__right ::-webkit-scrollbar-thumb:hover {
  background: #A7B3BE;
}

.o-container-right-sidebar--collab-hub > div aside {
  background-color: #F3F9FA;
  height: 400px;
  overflow-y: auto;
}

@media (max-width: 1023px) {
  .o-container-right-sidebar--collab-hub > div aside {
    margin-top: 88px;
  }
}

.o-container-right-sidebar--collab-hub > div aside .eyebrow {
  margin-top: 8px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .o-container-right-sidebar--collab-hub > div aside .eyebrow {
    margin-bottom: 18px;
  }
}

@media (min-width: 1280px) {
  .o-container-right-sidebar--collab-hub > div aside .eyebrow {
    margin-bottom: 16px;
  }
}

.o-container-login-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 768px) {
  .o-container-login-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.o-container-login__left {
  border-bottom: 2px solid #E2E6E9;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .o-container-login__left {
    max-width: 335px;
    padding-bottom: 0;
    padding-right: 45px;
    border-bottom: 0;
    border-right: 2px solid #E2E6E9;
  }
}

@media (min-width: 1280px) {
  .o-container-login__left {
    max-width: 560px;
    padding-right: 116px;
  }
}

@media (max-width: 1279px) {
  .o-container-login__left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .o-container-login__left {
    max-width: none;
  }
}

.o-container-login__left > h3 {
  color: #004875;
  margin-bottom: 6px;
}

@media (min-width: 1280px) {
  .o-container-login__left > h3 {
    margin-bottom: 8px;
  }
}

.o-container-login__left > p {
  margin-bottom: 16px;
  font-size: 14px;
}

@media (min-width: 1280px) {
  .o-container-login__left > p {
    font-size: 16px;
  }
}

.o-container-login__left .o-button {
  font-size: 14px;
}

@media (min-width: 1280px) {
  .o-container-login__left .o-button {
    font-size: 16px;
  }
}

.o-container-login__left > .button-wrap {
  margin-top: 46px;
}

@media (min-width: 768px) {
  .o-container-login__left > .button-wrap {
    margin-top: 24px;
  }
}

@media (min-width: 1280px) {
  .o-container-login__left > .button-wrap {
    margin-top: 32px;
  }
}

.o-container-login__right {
  padding-top: 24px;
}

@media (min-width: 768px) {
  .o-container-login__right {
    padding-top: 0;
    padding-left: 45px;
  }
}

@media (min-width: 1280px) {
  .o-container-login__right {
    padding-left: 108px;
  }
}

@media (max-width: 1279px) {
  .o-container-login__right {
    max-width: 50%;
    min-width: 50%;
  }
}

@media (max-width: 767px) {
  .o-container-login__right {
    max-width: none;
    min-width: initial;
  }
}

.o-container-login__right > h3 {
  color: #004875;
  margin-bottom: 6px;
}

@media (min-width: 1280px) {
  .o-container-login__right > h3 {
    margin-bottom: 8px;
  }
}

.o-container-login__right > p {
  font-size: 14px;
}

@media (min-width: 1280px) {
  .o-container-login__right > p {
    font-size: 16px;
  }
}

.o-container-login__right > .c-form {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .o-container-login__right > .c-form {
    margin-top: 28px;
  }
}

@media (min-width: 1280px) {
  .o-container-login__right > .c-form {
    margin-top: 32px;
  }
}

.o-container-login__right > .c-form .o-input {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .o-container-login__right > .c-form .o-input input[type="text"],
  .o-container-login__right > .c-form .o-input input[type="email"] {
    font-size: 14px;
  }
}

.o-container-login__right > .c-form .o-input-group--remember {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

@media (max-width: 1023px) {
  .o-container-login__right > .c-form .o-input-group--remember {
    padding-top: 16px;
  }
}

@media (max-width: 767px) {
  .o-container-login__right > .c-form .o-input-group--remember {
    padding-top: 0;
  }
}

@media (max-width: 1023px) {
  .o-container-login__right > .c-form .o-input-group--issues {
    display: none;
  }
}

@media (max-width: 767px) {
  .o-container-login__right > .c-form .o-input-group--issues {
    display: block;
  }
}

.o-container-login__right > .c-form .o-input-group--issues p {
  color: #777777;
  font-size: 12px;
  font-weight: 500;
  margin-top: 16px;
  line-height: 140%;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .o-container-login__right > .c-form .o-input-group--issues p {
    margin-top: 3px;
  }
}

.o-container-login__right > .c-form .o-input-group--issues p a {
  color: #0069AA;
}

.o-container-login__right > .c-form .o-input-group--issues p a:hover {
  color: #44C2EA;
}

@media (max-width: 767px) {
  .o-container-login__right > .c-form .o-input-group--issues p span {
    display: none;
  }
}

.o-container-login__right > .c-form .o-input-group--issues-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .o-container-login__right > .c-form .o-input-group--issues-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .o-container-login__right > .c-form .o-input-group--issues-mobile {
    display: none;
  }
}

.o-container-login__right > .c-form .o-input-group--issues-mobile p {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .o-container-login__right > .c-form .o-input--checkbox {
    margin-left: 60px;
  }
}

@media (max-width: 767px) {
  .o-container-login__right > .c-form .o-input--checkbox {
    margin-left: 0;
  }
}

.o-container-login__right > .c-form .o-button {
  font-size: 14px;
}

@media (min-width: 1280px) {
  .o-container-login__right > .c-form .o-button {
    font-size: 16px;
  }
}

.o-container-login__right > .c-form .by-line-small, .o-container-login__right > .c-form .c-card-statistics p, .c-card-statistics .o-container-login__right > .c-form p, .o-container-login__right > .c-form .c-footer__item > ul > li > a {
  color: #004875;
  margin-top: 8px;
  letter-spacing: 0.03em;
  font-size: 12px;
}

.o-container-login--change-password {
  padding-top: 96px;
  padding-bottom: 52px;
}

@media (min-width: 768px) {
  .o-container-login--change-password {
    padding-top: 32px;
    padding-bottom: 52px;
  }
}

@media (min-width: 1024px) {
  .o-container-login--change-password {
    padding-top: 126px;
    padding-bottom: 126px;
  }
}

.o-container-login--change-password > div {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.o-container-login--change-password .o-container-login__left {
  border: 0;
  padding: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .o-container-login--change-password .o-container-login__left {
    max-width: 208px;
  }
}

@media (min-width: 1024px) {
  .o-container-login--change-password .o-container-login__left {
    max-width: 352px;
  }
}

.o-container-login--change-password .o-container-login__left h2 {
  font-size: 29px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .o-container-login--change-password .o-container-login__left h2 {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .o-container-login--change-password .o-container-login__left h2 {
    font-size: 44px;
    line-height: 120%;
  }
}

.o-container-login--change-password .o-container-login__right {
  padding: 0;
  max-width: 448px;
  width: 100%;
}

.o-container-login--change-password .o-container-login__right form {
  margin-top: 0;
}

@media (min-width: 1280px) {
  .o-container-login--change-password .o-container-login__right form {
    margin-top: 24px;
  }
}

.o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  text-align: center;
}

@media (min-width: 768px) {
  .o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 16px;
  }
}

.o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox > .o-button {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 768px) {
  .o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox > .o-button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 24px;
  }
}

.o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox > div {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox > div {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
}

.o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox .o-input-group--issues {
  display: block;
}

.o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox .o-input-group--issues a {
  font-weight: 600;
  font-size: 14px;
}

@media (min-width: 768px) {
  .o-container-login--change-password .o-container-login__right .c-form .o-input--checkbox .o-input-group--issues a {
    font-size: 16px;
  }
}

.o-container-signup {
  max-width: 928px;
  margin: 0 auto;
}

.o-container-signup-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 768px) {
  .o-container-signup-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .o-container-signup__left {
    max-width: 208px;
    min-width: 208px;
  }
}

@media (min-width: 1024px) {
  .o-container-signup__left {
    max-width: 352px;
    min-width: 352px;
  }
}

.o-container-signup__left > h2 {
  color: #004875;
  margin-bottom: 6px;
}

@media (min-width: 1280px) {
  .o-container-signup__left > h2 {
    margin-bottom: 8px;
  }
}

.o-container-signup__left > p {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .o-container-signup__right {
    max-width: 439px;
    min-width: 439px;
  }
}

@media (min-width: 1280px) {
  .o-container-signup__right {
    max-width: 448px;
    min-width: 448px;
  }
}

.o-container-signup__right > .c-form .o-input {
  margin-bottom: 24px;
}

.o-container-signup__right > .c-form .o-input .o-select {
  background-color: transparent;
}

.o-container-signup__right > .c-form .o-input .o-select > .select-dropdown {
  border: 1px solid #A7B3BE;
  padding: 0 16px;
  position: relative;
  background-color: white;
  /* .select-dropdown__list li:first-child { 
                            display: none; 
                        } */
}

.o-container-signup__right > .c-form .o-input .o-select > .select-dropdown button {
  height: 58px;
}

.o-container-signup__right > .c-form .o-input .o-select > .select-dropdown button span {
  color: #A7B3BE;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
}

.o-container-signup__right > .c-form .o-input .o-select > .select-dropdown select:valid ~ button span {
  color: #003F57;
}

.o-container-signup__right > .c-form .o-input--checkbox-option-2 {
  margin-bottom: 29px;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .o-input--checkbox-option-2 {
    margin-bottom: 37px;
  }
}

@media (min-width: 1280px) {
  .o-container-signup__right > .c-form .o-input--checkbox-option-2 {
    margin-bottom: 29px;
  }
}

.o-container-signup__right > .c-form .o-input-group input {
  height: 58px;
}

.o-container-signup__right > .c-form .o-input-group--accept {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.o-container-signup__right > .c-form .o-input-group--accept .privacy {
  margin-top: 15px;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .o-input-group--accept .privacy {
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 767px) {
  .o-container-signup__right > .c-form .o-input-group--accept .privacy {
    text-align: center;
    padding-left: 0;
  }
}

.o-container-signup__right > .c-form .o-input-group--accept .privacy a {
  color: #0069AA;
}

.o-container-signup__right > .c-form .o-input-group--accept .privacy a:hover {
  color: #44C2EA;
}

.o-container-signup__right > .c-form .o-input--checkbox-option-3 {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .o-input--checkbox-option-3 {
    margin-bottom: 24px;
  }
}

.o-container-signup__right > .c-form .checkbox-list-wrap > .o-input__label {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .checkbox-list-wrap > .o-input__label {
    margin-bottom: 24px;
  }
}

.o-container-signup__right > .c-form .checkbox-list-wrap.has-error {
  margin-bottom: 24px;
}

.o-container-signup__right > .c-form .checkbox-list-wrap.has-error .c-show-all-groups > label {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .checkbox-list-wrap .checkbox-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .checkbox-list-wrap .checkbox-list > div {
    max-width: 50%;
    min-width: 50%;
  }
}

.o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups > input[type="checkbox"] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  left: -9999px;
}

.o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups > label {
  color: #0069AA;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-bottom: 27px;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups > label {
    margin-bottom: 36px;
  }
}

@media (min-width: 1280px) {
  .o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups > label {
    margin-bottom: 44px;
  }
}

.o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups > label::after {
  content: url("/wp-content/themes/igu/src/images/icons/chevron-down.png");
  display: inline-block;
  margin-left: 8px;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups > label::after {
    margin-left: 13px;
  }
}

@media (min-width: 1280px) {
  .o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups > label::after {
    margin-left: 11px;
  }
}

.o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups > label span {
  border-bottom: 1px solid #0069AA;
}

.o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups .checkbox-list {
  display: none;
  opacity: 0;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
}

.o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups #show-all-groups:checked ~ .checkbox-list {
  display: block;
  opacity: 1;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups #show-all-groups:checked ~ .checkbox-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.o-container-signup__right > .c-form .checkbox-list-wrap .c-show-all-groups #show-all-groups:checked ~ label.show-all-groups__label::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1280px) {
  .o-container-signup__right > .c-form .submit-wrap {
    text-align: right;
  }
}

.o-container-signup__right > .c-form .submit-wrap button {
  width: 100%;
}

@media (min-width: 768px) {
  .o-container-signup__right > .c-form .submit-wrap button {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .o-container-signup__right > .c-form .submit-wrap button {
    min-width: 188px;
  }
}

.o-container-signup__right > .c-form .by-line-small, .o-container-signup__right > .c-form .c-card-statistics p, .c-card-statistics .o-container-signup__right > .c-form p, .o-container-signup__right > .c-form .c-footer__item > ul > li > a {
  color: #004875;
  margin-top: 8px;
  font-size: 12px;
}

.o-button {
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
  font-size: 14px;
  font-weight: bold;
  line-height: 160%;
  letter-spacing: normal;
  border-radius: 1px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

@media (min-width: 1280px) {
  .o-button {
    letter-spacing: 0.05em;
    font-size: 16px;
  }
}

.o-button--primary {
  background-color: #0069AA;
  padding: 13px 24px;
  color: #ffffff;
}

@media (min-width: 1280px) {
  .o-button--primary {
    padding: 16px 24px;
  }
}

.o-button--primary-option-2::before {
  content: url("/wp-content/themes/igu/src/images/icons/donwload-ico.png");
  position: relative;
  margin-right: 8px;
  top: 2px;
}

.o-button--primary:hover {
  background-color: #44C2EA;
}

.o-button--primary:hover::before {
  -webkit-filter: brightness(1000%);
          filter: brightness(1000%);
}

.o-button--secondary {
  padding: 8px 16px;
  border: 2px solid #0069AA;
  color: #0069AA;
}

@media (min-width: 768px) {
  .o-button--secondary {
    padding: 16px 24px;
  }
}

.o-button--secondary:hover {
  border-color: #44C2EA;
  color: #44C2EA;
}

.o-button--secondary-option-2::before {
  content: '';
  position: relative;
  display: inline-block;
  background-image: url("https://i.ibb.co/dtyPc0D/ic-download-green.png");
  background-size: 14px;
  margin-right: 8px;
  width: 14px;
  height: 14px;
  top: 2px;
}

.o-button--secondary-option-2-disabled::before {
  content: '';
  position: relative;
  display: inline-block;
  background-image: url("https://i.ibb.co/4NYwr7D/ic-download-grey.png");
  background-size: 14px;
  margin-right: 8px;
  width: 14px;
  height: 14px;
  top: 2px;
}

.o-button--secondary-option-3::before {
  content: url("/wp-content/themes/igu/src/images/icons/donwload-ico.png");
  position: relative;
  margin-right: 8px;
  top: 2px;
}

.o-button--secondary-white {
  border-color: white;
}

.o-button--secondary.o-button--is-disabled {
  color: #979797;
  border-color: #979797;
  background-color: unset;
}

.o-button--secondary.o-button--is-disabled:hover {
  background-color: unset;
}

.o-button--tertiary {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #0069AA;
}

@media (min-width: 1280px) {
  .o-button--tertiary {
    font-size: 16px;
  }
}

.o-button--tertiary:hover {
  color: #44C2EA;
}

.o-button--tertiary-option-1::before {
  content: url("/wp-content/themes/igu/src/images/icons/download-ico.svg");
  position: relative;
  margin-right: 8px;
  display: inline-block;
  top: 2px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media (min-width: 1280px) {
  .o-button--tertiary-option-1::before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.o-button--tertiary-option-2 {
  border: 2px solid #ffffff;
  padding: 16px 24px;
}

.o-button--tertiary-option-2::before {
  content: url("/wp-content/themes/igu/src/images/icons/download-ico.svg");
  position: relative;
  margin-right: 8px;
  display: inline-block;
  top: 2px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media (min-width: 1280px) {
  .o-button--tertiary-option-2::before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.o-button--tertiary-option-3 {
  padding-left: 20px !important;
  white-space: nowrap;
  margin-left: -4px;
}

@media (min-width: mobile-x) {
  .o-button--tertiary-option-3 {
    white-space: pre-wrap;
    margin-left: 0;
  }
}

.o-button--tertiary-option-3::before {
  content: url("/wp-content/themes/igu/src/images/icons/download-ico.svg");
  position: relative;
  margin-right: 8px;
  display: inline-block;
  top: 2px;
  left: 0 !important;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media (min-width: 1280px) {
  .o-button--tertiary-option-3::before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.o-button--tertiary-arrow-1 {
  font-size: 14px;
}

@media (min-width: 768px) {
  .o-button--tertiary-arrow-1 {
    font-size: 16px;
  }
}

.o-button--tertiary-arrow-1::after {
  content: url("/wp-content/themes/igu/src/images/icons/arrow-green.png");
  display: inline-block;
  margin-left: 8px;
}

.o-button--tertiary-edit {
  color: #0069AA;
  font-weight: 400;
}

.o-button--tertiary-edit::before {
  content: url("/wp-content/themes/igu/src/images/icons/edit-profile.svg");
  position: relative;
  margin-right: 8px;
  display: inline-block;
  top: 2px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media (min-width: 1280px) {
  .o-button--tertiary-edit::before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.o-button--is-disabled {
  background-color: #C7C7C7;
  border-color: #C7C7C7;
  cursor: not-allowed;
}

.o-button--is-disabled:hover {
  background-color: #C7C7C7;
}

.o-button--is-disabled.o-button--secondary::before {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.o-button--is-disabled.o-button--primary::before {
  -webkit-filter: brightness(1000%);
          filter: brightness(1000%);
}

.o-button--is-disabled.o-button--tertiary, .o-button--is-disabled.o-button--tertiary-edit {
  background-color: transparent;
  color: #C7C7C7 !important;
}

.o-button--is-disabled.o-button--tertiary::before, .o-button--is-disabled.o-button--tertiary-edit::before {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.o-button--is-desktop {
  display: none;
}

@media (min-width: 1280px) {
  .o-button--is-desktop {
    display: inline-block;
  }
}

.o-button--is-tablet {
  display: none;
}

@media (min-width: 768px) {
  .o-button--is-tablet {
    display: inline-block;
  }
}

.o-button--is-tablet-landscape {
  display: none;
}

@media (min-width: 1024px) {
  .o-button--is-tablet-landscape {
    display: inline-block;
  }
}

.o-button--is-mobile {
  display: inline-block;
}

@media (min-width: 768px) {
  .o-button--is-mobile {
    display: none;
  }
}

.o-button--is-mobile-invert {
  display: none;
}

@media (max-width: 1023px) {
  .o-button--is-mobile-invert {
    display: inline-block;
  }
}

.o-link {
  background-color: #ffffff;
  color: #0069AA;
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
  font-size: 16px;
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.o-link:hover {
  color: #44C2EA;
}

.o-link--option-2 {
  display: inline-block;
  background: url("https://i.ibb.co/dtyPc0D/ic-download-green.png") 0% center no-repeat;
  background-size: 15px;
  padding-left: 20px;
}

.o-link--option-2-disabled {
  display: inline-block;
  background: url("https://i.ibb.co/4NYwr7D/ic-download-grey.png") 0% center no-repeat;
  background-size: 15px;
  padding-left: 20px;
}

.o-link--option-3 {
  display: inline-block;
  background: url("https://i.ibb.co/CvYZhF4/ic-arrow-green.png") 100% center no-repeat;
  background-size: 15px;
  padding-right: 24px;
}

.o-link--option-3-disabled {
  display: inline-block;
  background: url("https://i.ibb.co/CbDHvYQ/ic-arrow-disabled.png") 0% center no-repeat;
  background-size: 15px;
  background-position: right;
  padding-right: 20px;
}

.o-link--is-disabled {
  color: #979797;
  cursor: not-allowed;
}

.o-link--is-disabled:hover {
  color: #979797;
}

@media (max-width: 767px) {
  .o-link {
    font-size: 14px;
  }
}

.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.box > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  line-height: 0;
}

.box > *.no-gutter {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 320px) {
  .box > *.mb-col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (1 * 100%) / 12);
            flex: 0 0 calc( (1 * 100%) / 12);
  }
  .box > *.mb-col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (2 * 100%) / 12);
            flex: 0 0 calc( (2 * 100%) / 12);
  }
  .box > *.mb-col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (3 * 100%) / 12);
            flex: 0 0 calc( (3 * 100%) / 12);
  }
  .box > *.mb-col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (4 * 100%) / 12);
            flex: 0 0 calc( (4 * 100%) / 12);
  }
  .box > *.mb-col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (5 * 100%) / 12);
            flex: 0 0 calc( (5 * 100%) / 12);
  }
  .box > *.mb-col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (6 * 100%) / 12);
            flex: 0 0 calc( (6 * 100%) / 12);
  }
  .box > *.mb-col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (7 * 100%) / 12);
            flex: 0 0 calc( (7 * 100%) / 12);
  }
  .box > *.mb-col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (8 * 100%) / 12);
            flex: 0 0 calc( (8 * 100%) / 12);
  }
  .box > *.mb-col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (9 * 100%) / 12);
            flex: 0 0 calc( (9 * 100%) / 12);
  }
  .box > *.mb-col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (10 * 100%) / 12);
            flex: 0 0 calc( (10 * 100%) / 12);
  }
  .box > *.mb-col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (11 * 100%) / 12);
            flex: 0 0 calc( (11 * 100%) / 12);
  }
  .box > *.mb-col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (12 * 100%) / 12);
            flex: 0 0 calc( (12 * 100%) / 12);
  }
}

@media (min-width: 768px) {
  .box > *.tb-col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (1 * 100%) / 12);
            flex: 0 0 calc( (1 * 100%) / 12);
  }
  .box > *.tb-col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (2 * 100%) / 12);
            flex: 0 0 calc( (2 * 100%) / 12);
  }
  .box > *.tb-col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (3 * 100%) / 12);
            flex: 0 0 calc( (3 * 100%) / 12);
  }
  .box > *.tb-col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (4 * 100%) / 12);
            flex: 0 0 calc( (4 * 100%) / 12);
  }
  .box > *.tb-col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (5 * 100%) / 12);
            flex: 0 0 calc( (5 * 100%) / 12);
  }
  .box > *.tb-col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (6 * 100%) / 12);
            flex: 0 0 calc( (6 * 100%) / 12);
  }
  .box > *.tb-col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (7 * 100%) / 12);
            flex: 0 0 calc( (7 * 100%) / 12);
  }
  .box > *.tb-col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (8 * 100%) / 12);
            flex: 0 0 calc( (8 * 100%) / 12);
  }
  .box > *.tb-col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (9 * 100%) / 12);
            flex: 0 0 calc( (9 * 100%) / 12);
  }
  .box > *.tb-col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (10 * 100%) / 12);
            flex: 0 0 calc( (10 * 100%) / 12);
  }
  .box > *.tb-col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (11 * 100%) / 12);
            flex: 0 0 calc( (11 * 100%) / 12);
  }
  .box > *.tb-col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (12 * 100%) / 12);
            flex: 0 0 calc( (12 * 100%) / 12);
  }
}

@media (min-width: 1280px) {
  .box > *.dt-col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (1 * 100%) / 12);
            flex: 0 0 calc( (1 * 100%) / 12);
  }
  .box > *.dt-col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (2 * 100%) / 12);
            flex: 0 0 calc( (2 * 100%) / 12);
  }
  .box > *.dt-col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (3 * 100%) / 12);
            flex: 0 0 calc( (3 * 100%) / 12);
  }
  .box > *.dt-col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (4 * 100%) / 12);
            flex: 0 0 calc( (4 * 100%) / 12);
  }
  .box > *.dt-col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (5 * 100%) / 12);
            flex: 0 0 calc( (5 * 100%) / 12);
  }
  .box > *.dt-col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (6 * 100%) / 12);
            flex: 0 0 calc( (6 * 100%) / 12);
  }
  .box > *.dt-col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (7 * 100%) / 12);
            flex: 0 0 calc( (7 * 100%) / 12);
  }
  .box > *.dt-col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (8 * 100%) / 12);
            flex: 0 0 calc( (8 * 100%) / 12);
  }
  .box > *.dt-col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (9 * 100%) / 12);
            flex: 0 0 calc( (9 * 100%) / 12);
  }
  .box > *.dt-col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (10 * 100%) / 12);
            flex: 0 0 calc( (10 * 100%) / 12);
  }
  .box > *.dt-col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (11 * 100%) / 12);
            flex: 0 0 calc( (11 * 100%) / 12);
  }
  .box > *.dt-col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc( (12 * 100%) / 12);
            flex: 0 0 calc( (12 * 100%) / 12);
  }
}

.three-column-fade {
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .three-column-fade.scrolled-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(0.07%, #FFFFFF), color-stop(99.92%, rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, #FFFFFF 0.07%, rgba(255, 255, 255, 0) 99.92%);
    width: 130px;
    height: 100%;
    z-index: 1;
  }
}

@media (min-width: 1280px) {
  .three-column-fade.scrolled-left::before {
    display: none;
  }
}

@media (min-width: 768px) {
  .three-column-fade.scrolled-right::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(269.95deg, #FFFFFF 0.07%, rgba(255, 255, 255, 0) 99.92%);
    width: 130px;
    height: 100%;
    z-index: 1;
  }
}

@media (min-width: 1280px) {
  .three-column-fade.scrolled-right::after {
    display: none;
  }
}

.three-column-fade > div {
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .three-column-fade > div {
    overflow: scroll;
  }
}

@media (min-width: 1280px) {
  .three-column-fade > div {
    overflow: hidden;
  }
}

.three-column-fade > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

@media (min-width: 768px) {
  .three-column-fade > div > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

@media (min-width: 768px) {
  .three-column-fade > div > div > div {
    width: 255px;
    min-width: 255px;
    max-width: 255px;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .three-column-fade :not(:last-child) {
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .three-column-fade :not(:last-child) {
    margin-right: 32px;
  }
}

.three-column-fade h5, .three-column-fade .c-card-groups > div h4, .c-card-groups > div .three-column-fade h4, .three-column-fade .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .three-column-fade input[type=text], .three-column-fade .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .three-column-fade input[type=text], .three-column-fade .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .three-column-fade .c-mobile-dropdown > ul > li > a {
  white-space: normal;
}

.three-column-fade--pad16 > div > div > div:not(:last-child) {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .three-column-fade--pad16 > div > div > div:not(:last-child) {
    margin-bottom: 0;
  }
}

.three-column-fade--pad32 > div > div > div:not(:last-child) {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .three-column-fade--pad32 > div > div > div:not(:last-child) {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .three-column-fade--dark-fade.scrolled-right::after {
    background: linear-gradient(269.95deg, #003F57 0.07%, rgba(255, 255, 255, 0) 99.92%);
  }
}

@media (min-width: 1280px) {
  .three-column-fade--dark-fade.scrolled-right::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .three-column-fade--dark-fade.scrolled-left::before {
    background: -webkit-gradient(linear, left top, right top, color-stop(0.07%, #003F57), color-stop(99.92%, rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, #003F57 0.07%, rgba(255, 255, 255, 0) 99.92%);
  }
}

@media (min-width: 1280px) {
  .three-column-fade--dark-fade.scrolled-left::before {
    display: none;
  }
}

.c-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.c-col-2 > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 1280px) {
  .c-col-2 > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 13px);
            flex: 0 0 calc(50% - 13px);
  }
}

.c-col-2--tablet > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 1024px) {
  .c-col-2--tablet > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 13px);
            flex: 0 0 calc(50% - 13px);
  }
}

.c-col-2--tablet-sm > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 768px) {
  .c-col-2--tablet-sm > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 13px);
            flex: 0 0 calc(50% - 13px);
  }
}

.c-col-2--tablet-option-1 > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 1024px) {
  .c-col-2--tablet-option-1 > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 24px);
            flex: 0 0 calc(50% - 24px);
  }
}

@media (min-width: 1280px) {
  .c-col-2--tablet-option-1 > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 16px);
            flex: 0 0 calc(50% - 16px);
  }
}

.c-col-2--spacing > div:not(:last-child),
.c-col-2--spacing > div:not(:nth-last-child(2)) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-col-2--spacing > div:not(:last-child),
  .c-col-2--spacing > div:not(:nth-last-child(2)) {
    margin-bottom: 32px;
  }
}

.c-col-2--spacing-1 > div:not(:last-child),
.c-col-2--spacing-1 > div:not(:nth-last-child(2)) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-col-2--spacing-1 > div:not(:last-child),
  .c-col-2--spacing-1 > div:not(:nth-last-child(2)) {
    margin-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-col-2--spacing-1 > div:not(:last-child),
  .c-col-2--spacing-1 > div:not(:nth-last-child(2)) {
    margin-bottom: 0;
  }
}

.c-col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 768px) {
  .c-col-3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    margin-left: -12px;
    margin-right: -12px;
  }
}

@media (min-width: 1280px) {
  .c-col-3 {
    margin-left: -16px;
    margin-right: -16px;
  }
}

@media (min-width: 768px) {
  .c-col-3 > div {
    margin: 0 12px;
    width: calc(47.9% - 12px);
  }
}

@media (min-width: 1280px) {
  .c-col-3 > div {
    margin: 0 16px;
    width: calc(31.9% - 16px);
  }
}

.c-col-3 > div:not(:last-child) {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-col-3 > div:not(:last-child) {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .c-col-3--wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    margin-left: -16px;
    margin-right: -16px;
  }
  .c-col-3--wrap > div {
    width: 33.33%;
    padding: 0 16px;
    margin: 0;
  }
}

.c-col-3--wrap > .c-card-video:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-col-3--wrap > .c-card-video:not(:last-child) {
    margin-bottom: 32px;
  }
}

.c-col-3--remove-2 > div:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .c-col-3--remove-2 > div:nth-child(3) {
    display: none;
  }
}

@media (min-width: 1024px) {
  .c-col-3--remove-2 > div:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-col-3--top-spacing {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .c-col-3--top-spacing > div:nth-child(n+3) {
    margin-top: 24px;
  }
}

@media (min-width: 1024px) {
  .c-col-3--top-spacing > div:nth-child(3) {
    margin-top: 0;
  }
  .c-col-3--top-spacing > div:nth-child(n+4) {
    margin-top: 32px;
  }
}

.c-col-3--magazine {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-col-3--magazine > div {
  width: 100%;
}

@media (min-width: 768px) {
  .c-col-3--magazine > div {
    width: 50%;
    max-width: 324px;
  }
}

@media (min-width: 1024px) {
  .c-col-3--magazine > div {
    width: 33%;
  }
}

.c-col-3--magazine > div:not(:last-child) {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .c-col-3--magazine > div:not(:last-child) {
    margin-bottom: 0;
  }
}

.c-col-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 768px) {
  .c-col-4 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    margin-left: -12px;
    margin-right: -12px;
  }
}

@media (min-width: 1280px) {
  .c-col-4 {
    margin-left: -16px;
    margin-right: -16px;
  }
}

@media (min-width: 768px) {
  .c-col-4 > div {
    margin: 0 12px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 33%;
  }
}

@media (min-width: 1280px) {
  .c-col-4 > div {
    margin: 0 16px;
    width: 25%;
  }
}

.c-col-4 > div:not(:last-child) {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-col-4 > div:not(:last-child) {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .c-col-4 > div.c-card-video {
    max-width: 262px;
  }
}

.c-col-4 > div.c-card-events {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(0 - 16px);
          flex: 0 0 calc(0 - 16px);
}

@media (min-width: 768px) {
  .c-col-4--remove-1 > div:last-child {
    display: none;
  }
}

@media (min-width: 1280px) {
  .c-col-4--remove-1 > div:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .c-col-4--remove-1 > div:first-child:nth-last-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .c-col-4--remove-2 > div:nth-child(3) {
    display: none;
  }
}

@media (min-width: 1024px) {
  .c-col-4--remove-2 > div:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .c-col-4--remove-2 > div:nth-child(4) {
    display: none;
  }
}

@media (min-width: 1280px) {
  .c-col-4--remove-2 > div:nth-child(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .c-col-4--remove-2 > div:first-child:nth-last-child(1),
  .c-col-4--remove-2 > div:first-child:nth-last-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-col-4--no-stretch > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.c-col-4--no-stretch > div:first-child:nth-last-child(1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .c-col-4--no-stretch > div:first-child:nth-last-child(1) {
    width: calc(50% - 32px);
  }
}

.c-col-4--no-stretch > div:first-child:nth-last-child(2),
.c-col-4--no-stretch > div:first-child:nth-last-child(2) ~ div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .c-col-4--no-stretch > div:first-child:nth-last-child(2),
  .c-col-4--no-stretch > div:first-child:nth-last-child(2) ~ div {
    width: 50%;
  }
}

.c-col-4--no-stretch > div:first-child:nth-last-child(3),
.c-col-4--no-stretch > div:first-child:nth-last-child(3) ~ div {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .c-col-4--no-stretch > div:first-child:nth-last-child(3),
  .c-col-4--no-stretch > div:first-child:nth-last-child(3) ~ div {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .c-col-4--no-stretch > div:first-child:nth-last-child(3),
  .c-col-4--no-stretch > div:first-child:nth-last-child(3) ~ div {
    width: 33%;
  }
}

.c-col-4--no-stretch > div:first-child:nth-last-child(4) > div,
.c-col-4--no-stretch > div:first-child:nth-last-child(4) ~ div > div {
  padding-right: 0;
}

.c-col-4--tablet-sm-stacked {
  /* & > div:nth-child(3) {
            
            @include maxpoint(desktop-sm) {
                display: none;
            }
        }
        
        & > div:nth-child(4) {
            
            @include maxpoint(desktop-sm) {
                display: none;
            }
        } */
}

@media (min-width: 768px) and (max-width: 1023px) {
  .c-col-4--tablet-sm-stacked {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .c-col-4--tablet-sm-stacked > div {
    margin-bottom: 24px !important;
  }
}

.o-input {
  margin-bottom: 16px;
}

.o-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.o-input-group--terms {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.o-input-group--terms > span {
  font-family: "HK Grotesk", sans-serif;
  font-size: 14px;
  line-height: 140%;
  color: #2B333B;
}

.o-input-group.has-error span {
  color: #F03F3F;
}

.o-input-group.has-error > input, .o-input-group.has-error > textarea {
  border: 1px solid #F03F3F !important;
}

.o-input-group--show {
  position: relative;
}

.o-input-group--show .icon-show {
  cursor: pointer;
  display: inline-block;
  width: 21px;
  height: 20px;
  position: absolute;
  top: 37px;
  right: 19px;
}

.o-input-option-1 {
  margin-bottom: 32px;
}

.o-input-option-1-border-bottom {
  border-bottom: 1px solid #E2E6E9;
  padding-bottom: 32px;
}

.o-input__label {
  color: #004875;
  margin-bottom: 8px;
}

.o-input__label--white {
  color: #ffffff;
}

.o-input__label--required::after {
  content: "*";
  color: #F03F3F;
}

.o-input__error {
  color: #F03F3F;
}

.o-input__readonly {
  background-color: #F5F8F9;
}

.o-input__error {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.03em;
  margin-top: 8px;
  color: #F03F3F;
}

.o-input__success {
  width: 230px;
}

@media (min-width: 768px) {
  .o-input__success {
    width: 360px;
  }
}

.o-input__success > p {
  text-align: left;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

@media (min-width: 1280px) {
  .o-input__success > p {
    font-size: 14px;
  }
}

.o-input input[type="text"],
.o-input input[type="email"],
.o-input input[type="tel"],
.o-input input[type="number"],
.o-input input[type="password"],
.o-input input[type="username"],
.o-input textarea {
  font-family: HK Grotesk;
  padding: 16px;
  border: #A7B3BE 1px solid;
  font-size: 16px;
}

.o-input input[type="text"]::-webkit-input-placeholder,
.o-input input[type="email"]::-webkit-input-placeholder,
.o-input input[type="tel"]::-webkit-input-placeholder,
.o-input input[type="number"]::-webkit-input-placeholder,
.o-input input[type="password"]::-webkit-input-placeholder,
.o-input input[type="username"]::-webkit-input-placeholder,
.o-input textarea::-webkit-input-placeholder {
  color: #A7B3BE;
}

.o-input input[type="checkbox"] {
  border: 1px solid #44C2EA;
  min-width: 16px;
  height: 16px;
  margin: 3px 16px 0 0;
  cursor: default;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.o-input input[type="radio"] {
  border: 1px solid #DADADA;
  width: 11px;
  height: 11px;
  margin: 0;
  padding: 0;
  cursor: default;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.o-input--checkbox {
  position: relative;
}

.o-input--checkbox > div > p {
  font-size: 14px;
  line-height: 140%;
  text-align: left;
  margin-bottom: 0;
}

.o-input--checkbox input[type="checkbox"] {
  position: absolute;
  left: 0px;
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  display: inline-block;
  z-index: 10;
  opacity: 0.01;
  cursor: pointer;
}

.o-input--checkbox input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  text-transform: none;
  cursor: pointer;
}

.o-input--checkbox input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  border: 1px solid #44C2EA;
  width: 14px;
  height: 14px;
  display: inline-block;
  background-color: #ffffff;
  margin-right: 10px;
  vertical-align: text-top;
  left: 0;
  top: 3px;
}

.o-input--checkbox input[type="checkbox"]:checked + label::before {
  content: "";
  color: #D7D7D7;
  background-color: #44C2EA;
}

.o-input--checkbox input[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 10px;
  background: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
          box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 767px) {
  .o-input--checkbox-option-1 > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .o-input--checkbox-option-1 > div > div:first-child {
    max-width: 125px;
  }
}

.o-input--checkbox-option-1 .o-input-group--remember > p {
  color: #414D58;
  font-size: 14px;
}

@media (min-width: 1280px) {
  .o-input--checkbox-option-1 .o-input-group--remember > p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .o-input--checkbox-option-1 input[type="checkbox"] + label {
    padding-left: 24px;
  }
}

.o-input--checkbox-option-1 input[type="checkbox"] + label::before {
  border: 1px solid #A7B3BE;
}

@media (min-width: 768px) {
  .o-input--checkbox-option-1 .o-button {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .o-input--checkbox-option-1 .o-button {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }
}

.o-input--checkbox-option-2 input[type="checkbox"] + label {
  margin-bottom: 0;
}

.o-input--checkbox-option-2 input[type="checkbox"] + label::before {
  border: 1px solid #44C2EA;
}

@media (min-width: 768px) {
  .o-input--checkbox-option-2 input[type="checkbox"] + label::before {
    border: 1px solid #A7B3BE;
  }
}

.o-input--checkbox-option-2 .o-input-group--accept > p {
  font-size: 12px;
  padding-left: 30px;
}

@media (min-width: 768px) {
  .o-input--checkbox-option-2 .o-input-group--accept > p {
    font-size: 14px;
  }
}

.o-input--checkbox-option-3 > div > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  padding-left: 25px;
  color: #414D58;
}

@media (min-width: 768px) {
  .o-input--checkbox-option-3 > div > p {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 16px;
  }
}

.o-input--checkbox-option-3 input[type="checkbox"] + label {
  margin-bottom: 0;
}

.o-input--checkbox-option-3 input[type="checkbox"] + label::before {
  border: 1px solid #A7B3BE;
}

.o-input--radio .o-input-group {
  display: inline-block;
  vertical-align: top;
}

.o-input--radio .o-input-group:not(:last-child) {
  margin-right: 26px;
}

@media (min-width: 768px) {
  .o-input--radio .o-input-group:not(:last-child) {
    margin-right: 35px;
  }
}

.o-input--radio .o-input-group label {
  color: #414D58;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  margin-left: 18px;
  text-transform: capitalize;
}

.o-input__readonly {
  cursor: not-allowed;
}

.o-select {
  position: relative;
  padding-bottom: 8px;
  padding-left: 2px;
  min-height: 22px;
  background-color: white;
}

.o-select--arrow select {
  padding-right: 25px;
}

.o-select--arrow::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 41.5%;
  width: 15px;
  height: 8px;
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 200ms cubic-bezier(0.24, 0.09, 0.22, 0.98);
  transition: all 200ms cubic-bezier(0.24, 0.09, 0.22, 0.98);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media (min-width: 768px) {
  .o-select--arrow::after {
    width: 18px;
    height: 10px;
  }
}

.o-select--filter {
  padding: 0;
  min-width: 115px;
  background-color: transparent;
}

@media (min-width: 768px) {
  .o-select--filter {
    min-width: 130px;
  }
}

.o-select--filter button {
  min-width: 115px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 4px;
  font-size: 14px;
}

.o-select--filter button::before {
  content: url("/wp-content/themes/igu/src/images/icons/filter-ico.svg");
  margin-right: 8px;
  position: relative;
  top: 3px;
}

@media (min-width: 768px) {
  .o-select--filter button {
    font-size: 16px;
    min-width: 130px;
  }
}

.o-select--filter ul {
  min-width: 130px;
}

.o-select--filter.active-btn button::after {
  display: block;
}

.o-select--filter-year {
  margin-left: 8px;
  min-width: 105px;
}

@media (min-width: 768px) {
  .o-select--filter-year {
    min-width: 120px;
  }
}

.o-select--filter-year ul {
  min-width: 120px;
}

@media (min-width: 768px) {
  .o-select--filter-year ul {
    min-width: 105px;
  }
}

.o-select--default {
  max-width: 214px;
}

.o-select--full select {
  width: 100%;
}

.o-select.active-btn {
  background-color: white;
  -webkit-transition: all 500ms cubic-bezier(0.24, 0.09, 0.22, 0.98);
  transition: all 500ms cubic-bezier(0.24, 0.09, 0.22, 0.98);
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
}

.o-select.active-btn::after {
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-down-hover.png");
}

@media (max-width: 319px) {
  .o-select.active-btn::after {
    top: 3px;
  }
}

.select-dropdown {
  position: relative;
  padding: 0 20px 0 0;
  color: #004875;
}

.select-dropdown__button {
  border-width: 0;
  border-radius: 0;
  background: none;
  outline: none;
  padding-bottom: 3px;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  padding-left: 0;
  font-family: HK Grotesk;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 10;
}

.select-dropdown__button::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: white;
  height: 13px;
  width: 100%;
  z-index: 10;
  display: none;
}

.select-dropdown__button:active, .select-dropdown__button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select-dropdown__list {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  overflow: auto;
  margin: 0;
  padding: 0;
  border: 0px solid #cecece;
  border-top: 0px solid transparent;
  list-style-type: none;
  pointer-events: none;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  z-index: 2;
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
  min-width: 140px;
  max-width: 100%;
  max-height: 0;
}

.select-dropdown__list.active {
  pointer-events: auto;
  -webkit-animation-name: heightIncrease;
          animation-name: heightIncrease;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  max-height: 300px;
}

.select-dropdown__list-item {
  display: block;
  list-style-type: none;
  padding: 10px 16px;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  color: #616161;
  text-align: left;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
}

.select-dropdown__list-item:hover {
  color: #44C2EA;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.select-dropdown__list-item:not(:last-child)::before {
  border-bottom: 1px solid #e6e6e6;
}

.chartjs-size-monitor {
  padding-bottom: 24px;
}

.c-card-article {
  width: 100%;
  height: 100%;
  max-width: 544px;
  min-height: 275px;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  .c-card-article {
    max-width: 327px;
  }
}

.c-card-article:not(last-child) {
  border-bottom: 1px solid #E2E6E9;
}

.c-card-article > h3 {
  margin: 0 0 16px 0;
  color: #0069AA;
  font-weight: bold;
  font-size: 38px;
  line-height: 130%;
}

.c-card-article > h3 a {
  color: #0069AA;
}

.c-card-article > h3 a:hover {
  color: #44C2EA;
}

.c-card-article > p {
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
  color: #414D58;
  margin: 0 0 24px 0;
}

.c-card-article > a {
  margin-bottom: 40px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.c-card-article-number {
  border: 1px solid #E2E6E9;
  padding: 18px 32px;
  margin: 10px 10px 10px 30px;
  max-width: 591px;
  position: relative;
}

.c-card-article-number::before {
  counter-increment: card;
  content: counter(card);
  font-weight: bold;
  font-size: 56px;
  height: 72px;
  color: #E2E6E9;
  background-color: white;
  width: 60px;
  position: absolute;
  left: -30px;
  top: 9px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 160%;
}

@media (min-width: 768px) {
  .c-card-article-number::before {
    font-size: 72px;
    height: 88px;
  }
}

@media (min-width: 1280px) {
  .c-card-article-number::before {
    font-size: 96px;
    height: 98px;
    line-height: 90px;
  }
}

.c-card-article-number > h3 {
  color: #0069AA;
  margin: 0 0 16px 0;
}

.c-card-article-number > h3 a {
  color: #0069AA;
}

.c-card-article-number > h3 a:hover {
  color: #44C2EA;
}

.c-card-article-number > p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
  color: #414D58;
  margin: 0;
}

.c-card-article-number > p:not(:last-child) {
  margin: 0 0 16px 0;
}

.c-card-article-slider {
  max-width: 548px;
  position: relative;
  overflow: hidden;
}

.c-card-article-slider figure {
  width: 327px;
  height: 191px;
}

@media (min-width: 768px) {
  .c-card-article-slider figure {
    width: 548px;
    height: 320px;
  }
}

.c-card-article-slider figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card-article-slider__content {
  padding-right: 112px;
  margin-top: 8px;
  text-align: left;
}

.c-card-article-slider__content p {
  font-size: 14px;
  color: #6C8093;
  line-height: 19.6px;
}

.c-card-article-slider .tns-controls {
  position: absolute;
  top: 201px;
  right: 24px;
  z-index: 1;
}

@media (min-width: 768px) {
  .c-card-article-slider .tns-controls {
    top: 332px;
  }
}

.c-card-article-slider .tns-controls button {
  border: 0;
  background-color: transparent;
  text-indent: -9999px;
  width: 18px;
  height: 10px;
}

.c-card-article-slider .tns-controls button[data-controls="prev"] {
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-down.png");
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-right: 32px;
}

.c-card-article-slider .tns-controls button[data-controls="prev"]:hover {
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-down-hover.png");
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-card-article-slider .tns-controls button[data-controls="next"] {
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-down.png");
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-card-article-slider .tns-controls button[data-controls="next"]:hover {
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-down-hover.png");
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-card-events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #E2E6E9;
  border-radius: 3px;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

@media (min-width: 768px) {
  .c-card-events {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-card-events > figure {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
}

@media (min-width: 768px) {
  .c-card-events > figure {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
    height: 316px;
  }
}

.c-card-events > figure > img,
.c-card-events > figure > a > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-card-events > figure > a {
  display: block;
}

.c-card-events-content {
  padding: 16px;
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 768px) {
  .c-card-events-content {
    padding: 24px;
    width: 50%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.c-card-events-content > h4, .c-search-bar .c-card-events-content > input[type=text], .c-mobile-dropdown > ul > li.c-card-events-content > a {
  margin: 0 0 18px 0;
  color: #0069AA;
}

@media (min-width: 768px) {
  .c-card-events-content > h4, .c-search-bar .c-card-events-content > input[type=text], .c-mobile-dropdown > ul > li.c-card-events-content > a {
    margin: 0 0 16px 0;
  }
}

.c-card-events-content > h4 a, .c-search-bar .c-card-events-content > input[type=text] a, .c-mobile-dropdown > ul > li.c-card-events-content > a a {
  color: #0069AA;
}

.c-card-events-content > h4 a:visited, .c-search-bar .c-card-events-content > input[type=text] a:visited, .c-mobile-dropdown > ul > li.c-card-events-content > a a:visited {
  color: #0069AA;
}

.c-card-events-content > h4 a:hover, .c-search-bar .c-card-events-content > input[type=text] a:hover, .c-mobile-dropdown > ul > li.c-card-events-content > a a:hover {
  color: #44C2EA;
}

.c-card-events-content > h5, .c-card-groups > div .c-card-events-content > h4, .c-card-groups > div .c-search-bar .c-card-events-content > input[type=text], .c-search-bar .c-card-groups > div .c-card-events-content > input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-events-content > a {
  margin: 0 0 18px 0;
  color: #0069AA;
}

@media (min-width: 768px) {
  .c-card-events-content > h5, .c-card-groups > div .c-card-events-content > h4, .c-card-groups > div .c-search-bar .c-card-events-content > input[type=text], .c-search-bar .c-card-groups > div .c-card-events-content > input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-events-content > a {
    margin: 0 0 16px 0;
  }
}

.c-card-events-content > h5 a, .c-card-groups > div .c-card-events-content > h4 a, .c-card-groups > div .c-search-bar .c-card-events-content > input[type=text] a, .c-search-bar .c-card-groups > div .c-card-events-content > input[type=text] a, .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-events-content > a a {
  color: #0069AA;
}

.c-card-events-content > h5 a:visited, .c-card-groups > div .c-card-events-content > h4 a:visited, .c-card-groups > div .c-search-bar .c-card-events-content > input[type=text] a:visited, .c-search-bar .c-card-groups > div .c-card-events-content > input[type=text] a:visited, .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-events-content > a a:visited {
  color: #0069AA;
}

.c-card-events-content > h5 a:hover, .c-card-groups > div .c-card-events-content > h4 a:hover, .c-card-groups > div .c-search-bar .c-card-events-content > input[type=text] a:hover, .c-search-bar .c-card-groups > div .c-card-events-content > input[type=text] a:hover, .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-events-content > a a:hover {
  color: #44C2EA;
}

.c-card-events-content > h6, .c-card-statistics h2.c-card-events-content > span, .c-mobile-dropdown > ul > li > ul > li.c-card-events-content > a {
  margin: 0 0 18px 0;
  color: #0069AA;
}

@media (min-width: 768px) {
  .c-card-events-content > h6, .c-card-statistics h2.c-card-events-content > span, .c-mobile-dropdown > ul > li > ul > li.c-card-events-content > a {
    margin: 0 0 16px 0;
  }
}

.c-card-events-content > h6 a, .c-card-statistics h2.c-card-events-content > span a, .c-mobile-dropdown > ul > li > ul > li.c-card-events-content > a a {
  color: #0069AA;
}

.c-card-events-content > h6 a:visited, .c-card-statistics h2.c-card-events-content > span a:visited, .c-mobile-dropdown > ul > li > ul > li.c-card-events-content > a a:visited {
  color: #0069AA;
}

.c-card-events-content > h6 a:hover, .c-card-statistics h2.c-card-events-content > span a:hover, .c-mobile-dropdown > ul > li > ul > li.c-card-events-content > a a:hover {
  color: #44C2EA;
}

.c-card-events-content span {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #2B333B;
  display: block;
}

@media (min-width: 1280px) {
  .c-card-events-content span {
    font-size: 14px;
  }
}

.c-card-events-content img {
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 3px;
}

.c-card-events-content > address {
  font-size: 12px;
  color: #2B333B;
  font-style: normal;
}

@media (min-width: 1280px) {
  .c-card-events-content > address {
    font-size: 14px;
  }
}

.c-card-events-content > div {
  margin: 25px 0 0 0;
  text-align: right;
}

@media (min-width: 768px) {
  .c-card-events-content > div {
    text-align: left;
  }
}

.c-card-events--related {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
}

.c-card-events--related > div,
.c-card-events--related > figure {
  width: 100%;
  max-height: 100%;
}

.c-card-events--related .c-card-events-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-card-events--related .c-card-events-content > span,
.c-card-events--related .c-card-events-content > address {
  line-height: 140%;
  margin: 0 0 9px 0;
  font-weight: normal;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .c-card-events--related .c-card-events-content > span,
  .c-card-events--related .c-card-events-content > address {
    margin: 0 0 12px 0;
    font-weight: normal;
    letter-spacing: normal;
  }
}

.c-card-events--related .c-card-events-content > address {
  margin: 0 0 24px;
}

.c-card-events--related .c-card-events-content > div {
  margin: 15px 0 0;
}

@media (min-width: 768px) {
  .c-card-events--related .c-card-events-content > div {
    margin: auto 0 0;
  }
}

.c-card-events--related-image {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 768px) {
  .c-card-events--related-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-card-events--related-image > div {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 768px) {
  .c-card-events--related-image > div {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.c-card-events--related-image > div h5, .c-card-events--related-image > div .c-card-groups > div h4, .c-card-groups > div .c-card-events--related-image > div h4, .c-card-events--related-image > div .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-events--related-image > div input[type=text], .c-card-events--related-image > div .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-events--related-image > div input[type=text], .c-card-events--related-image > div .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-events--related-image > div .c-mobile-dropdown > ul > li > a {
  color: #0069AA;
}

.c-card-events--related-image > div h5 a, .c-card-events--related-image > div .c-card-groups > div h4 a, .c-card-groups > div .c-card-events--related-image > div h4 a, .c-card-events--related-image > div .c-card-groups > div .c-search-bar input[type=text] a, .c-card-groups > div .c-search-bar .c-card-events--related-image > div input[type=text] a, .c-card-events--related-image > div .c-search-bar .c-card-groups > div input[type=text] a, .c-search-bar .c-card-groups > div .c-card-events--related-image > div input[type=text] a, .c-card-events--related-image > div .c-card-groups > div .c-mobile-dropdown > ul > li > a a, .c-card-groups > div .c-card-events--related-image > div .c-mobile-dropdown > ul > li > a a,
.c-card-events--related-image > div h5 a:visited,
.c-card-events--related-image > div .c-card-groups > div h4 a:visited,
.c-card-groups > div .c-card-events--related-image > div h4 a:visited,
.c-card-events--related-image > div .c-card-groups > div .c-search-bar input[type=text] a:visited,
.c-card-groups > div .c-search-bar .c-card-events--related-image > div input[type=text] a:visited,
.c-card-events--related-image > div .c-search-bar .c-card-groups > div input[type=text] a:visited,
.c-search-bar .c-card-groups > div .c-card-events--related-image > div input[type=text] a:visited,
.c-card-events--related-image > div .c-card-groups > div .c-mobile-dropdown > ul > li > a a:visited,
.c-card-groups > div .c-card-events--related-image > div .c-mobile-dropdown > ul > li > a a:visited {
  color: #0069AA;
}

.c-card-events--related-image > div h5 a:hover, .c-card-events--related-image > div .c-card-groups > div h4 a:hover, .c-card-groups > div .c-card-events--related-image > div h4 a:hover, .c-card-events--related-image > div .c-card-groups > div .c-search-bar input[type=text] a:hover, .c-card-groups > div .c-search-bar .c-card-events--related-image > div input[type=text] a:hover, .c-card-events--related-image > div .c-search-bar .c-card-groups > div input[type=text] a:hover, .c-search-bar .c-card-groups > div .c-card-events--related-image > div input[type=text] a:hover, .c-card-events--related-image > div .c-card-groups > div .c-mobile-dropdown > ul > li > a a:hover, .c-card-groups > div .c-card-events--related-image > div .c-mobile-dropdown > ul > li > a a:hover,
.c-card-events--related-image > div h5 a:visited:hover,
.c-card-events--related-image > div .c-card-groups > div h4 a:visited:hover,
.c-card-groups > div .c-card-events--related-image > div h4 a:visited:hover,
.c-card-events--related-image > div .c-card-groups > div .c-search-bar input[type=text] a:visited:hover,
.c-card-groups > div .c-search-bar .c-card-events--related-image > div input[type=text] a:visited:hover,
.c-card-events--related-image > div .c-search-bar .c-card-groups > div input[type=text] a:visited:hover,
.c-search-bar .c-card-groups > div .c-card-events--related-image > div input[type=text] a:visited:hover,
.c-card-events--related-image > div .c-card-groups > div .c-mobile-dropdown > ul > li > a a:visited:hover,
.c-card-groups > div .c-card-events--related-image > div .c-mobile-dropdown > ul > li > a a:visited:hover {
  color: #44C2EA;
}

.c-card-events--related-image > figure {
  width: 100%;
  max-width: 104px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 16px 16px 0 0;
  height: 78px;
  min-height: 78px;
  max-height: 100%;
}

@media (min-width: 768px) {
  .c-card-events--related-image > figure {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
    height: 160px;
    min-height: 160px;
  }
}

.c-card-events--related-image > figure > a {
  height: 78px;
  min-height: 78px;
}

@media (min-width: 768px) {
  .c-card-events--related-image > figure > a {
    height: 160px;
    min-height: 160px;
  }
}

.c-card-events--related-image > figure img {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card-events--related div address {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .c-card-events--related div address {
    margin-top: 12px;
  }
}

.c-card-events--related-address .c-card-events-content > address {
  margin-bottom: 0;
}

.c-card-events--featured {
  max-width: 928px;
  margin: 0 auto;
  border: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-card-events--featured .c-card-events-content {
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 16px);
          flex: 0 0 calc(50% - 16px);
}

.c-card-events--featured .c-card-events-content .eyebrow {
  margin-top: 16px;
  text-align: left;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .c-card-events--featured .c-card-events-content .eyebrow {
    margin-top: 0;
    margin-bottom: 16px;
  }
}

.c-card-events--featured .c-card-events-content span, .c-card-events--featured .c-card-events-content address {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-card-events--featured .c-card-events-content span, .c-card-events--featured .c-card-events-content address {
    font-size: 14px;
  }
}

.c-card-events--featured .c-card-events-content address {
  margin-top: 2px;
}

.c-card-events--featured .c-card-events-content h2 {
  margin-bottom: 8px;
}

.c-card-events--featured .c-card-events-content h2 a {
  color: #0069AA;
}

.c-card-events--featured .c-card-events-content p {
  margin-bottom: 16px;
}

.c-card-events--featured .c-card-events-content a.o-button {
  margin-top: 18px;
}

@media (min-width: 768px) {
  .c-card-events--featured .c-card-events-content a.o-button {
    margin-top: 25px;
  }
}

.c-card-events--featured .c-card-events-content a:hover {
  color: #44C2EA;
}

.c-card-events--featured > figure {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 768px) {
  .c-card-events--featured > figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 12px);
            flex: 0 0 calc(50% - 12px);
    max-height: 100%;
  }
}

@media (min-width: 1280px) {
  .c-card-events--featured > figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 16px);
            flex: 0 0 calc(50% - 16px);
  }
}

.c-card-events--featured > figure > img,
.c-card-events--featured > figure > a > img {
  max-height: 218px;
}

@media (min-width: 768px) {
  .c-card-events--featured > figure > img,
  .c-card-events--featured > figure > a > img {
    max-height: 280px;
  }
}

@media (min-width: 1280px) {
  .c-card-events--featured > figure > img,
  .c-card-events--featured > figure > a > img {
    min-height: 366px;
  }
}

.c-card-events--featured-option-1 {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}

@media (min-width: 768px) {
  .c-card-events--featured-option-1 figure {
    min-height: 238px;
    max-height: 238px;
  }
}

@media (min-width: 1280px) {
  .c-card-events--featured-option-1 figure {
    min-height: 383px;
    max-height: 383px;
  }
}

@media (min-width: 768px) {
  .c-card-events--featured-option-1 figure > img,
  .c-card-events--featured-option-1 figure > a > img {
    min-height: 238px;
    max-height: 238px;
  }
}

@media (min-width: 1280px) {
  .c-card-events--featured-option-1 figure > img,
  .c-card-events--featured-option-1 figure > a > img {
    min-height: 383px;
    max-height: 383px;
  }
}

.c-card-events--featured-option-1 > div h2 {
  color: #0069AA;
}

.c-card-events--grid {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  max-height: 314px;
}

@media (min-width: 1024px) {
  .c-card-events--grid {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.c-card-events--grid > div p {
  display: none;
}

@media (min-width: 1024px) {
  .c-card-events--grid > div p {
    display: block;
    margin-bottom: 24px;
  }
}

.c-card-events--grid > .c-card-events-content {
  padding: 16px 24px 16px 16px;
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 1024px) {
  .c-card-events--grid > .c-card-events-content {
    padding: 24px 0 0 24px;
  }
}

.c-card-events--grid > .c-card-events-content span,
.c-card-events--grid > .c-card-events-content address {
  line-height: 140%;
  letter-spacing: 0.03em;
  font-weight: normal;
  display: block;
  margin: 0 0 10px 0;
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-card-events--grid > .c-card-events-content span,
  .c-card-events--grid > .c-card-events-content address {
    font-weight: normal;
    letter-spacing: normal;
    margin: 0 0 8px 0;
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  .c-card-events--grid > .c-card-events-content span,
  .c-card-events--grid > .c-card-events-content address {
    margin: 0 0 11px 0;
  }
}

.c-card-events--grid > .c-card-events-content h5, .c-card-events--grid > .c-card-events-content .c-card-groups > div h4, .c-card-groups > div .c-card-events--grid > .c-card-events-content h4, .c-card-events--grid > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-events--grid > .c-card-events-content input[type=text], .c-card-events--grid > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-events--grid > .c-card-events-content input[type=text], .c-card-events--grid > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-events--grid > .c-card-events-content .c-mobile-dropdown > ul > li > a,
.c-card-events--grid > .c-card-events-content h4,
.c-card-events--grid > .c-card-events-content .c-search-bar input[type=text],
.c-search-bar .c-card-events--grid > .c-card-events-content input[type=text],
.c-card-events--grid > .c-card-events-content .c-mobile-dropdown > ul > li > a {
  margin-bottom: 10px;
}

.c-card-events--grid > .c-card-events-content h5 > a, .c-card-events--grid > .c-card-events-content .c-card-groups > div h4 > a, .c-card-groups > div .c-card-events--grid > .c-card-events-content h4 > a, .c-card-events--grid > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text] > a, .c-card-groups > div .c-search-bar .c-card-events--grid > .c-card-events-content input[type=text] > a, .c-card-events--grid > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text] > a, .c-search-bar .c-card-groups > div .c-card-events--grid > .c-card-events-content input[type=text] > a, .c-card-events--grid > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a > a, .c-card-groups > div .c-card-events--grid > .c-card-events-content .c-mobile-dropdown > ul > li > a > a,
.c-card-events--grid > .c-card-events-content h4 > a,
.c-card-events--grid > .c-card-events-content .c-search-bar input[type=text] > a,
.c-search-bar .c-card-events--grid > .c-card-events-content input[type=text] > a,
.c-card-events--grid > .c-card-events-content .c-mobile-dropdown > ul > li > a > a {
  color: #0069AA;
}

.c-card-events--grid > .c-card-events-content h5 > a:hover, .c-card-events--grid > .c-card-events-content .c-card-groups > div h4 > a:hover, .c-card-groups > div .c-card-events--grid > .c-card-events-content h4 > a:hover, .c-card-events--grid > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text] > a:hover, .c-card-groups > div .c-search-bar .c-card-events--grid > .c-card-events-content input[type=text] > a:hover, .c-card-events--grid > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text] > a:hover, .c-search-bar .c-card-groups > div .c-card-events--grid > .c-card-events-content input[type=text] > a:hover, .c-card-events--grid > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a > a:hover, .c-card-groups > div .c-card-events--grid > .c-card-events-content .c-mobile-dropdown > ul > li > a > a:hover,
.c-card-events--grid > .c-card-events-content h4 > a:hover,
.c-card-events--grid > .c-card-events-content .c-search-bar input[type=text] > a:hover,
.c-search-bar .c-card-events--grid > .c-card-events-content input[type=text] > a:hover,
.c-card-events--grid > .c-card-events-content .c-mobile-dropdown > ul > li > a > a:hover {
  color: #44C2EA;
}

.c-card-events--grid > figure,
.c-card-events--grid > a {
  margin-top: 16px;
  margin-right: 16px;
  max-width: 104px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  max-height: 100%;
  height: 104px;
}

@media (min-width: 1024px) {
  .c-card-events--grid > figure,
  .c-card-events--grid > a {
    max-width: 328px;
    width: 100%;
    margin: 0;
    height: 312px;
  }
}

.c-card-events--grid > figure img,
.c-card-events--grid > figure a img,
.c-card-events--grid > a img,
.c-card-events--grid > a a img {
  max-height: 78px;
}

@media (min-width: 1024px) {
  .c-card-events--grid > figure img,
  .c-card-events--grid > figure a img,
  .c-card-events--grid > a img,
  .c-card-events--grid > a a img {
    max-height: 100%;
    width: 328px;
    height: 312px;
  }
}

.c-card-events--grid > a > figure img {
  height: 78px;
  width: 104px;
}

@media (min-width: 1024px) {
  .c-card-events--grid > a > figure img {
    height: 312px;
    width: 328px;
  }
}

.c-card-events--grid-option-1 {
  max-height: 100%;
}

@media (min-width: 1024px) {
  .c-card-events--grid-option-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
}

.c-card-events--grid-option-1 > figure {
  max-height: 100%;
}

@media (min-width: 1024px) {
  .c-card-events--grid-option-1 > figure {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 160px;
  }
}

.c-card-events--grid-option-1 > figure > img,
.c-card-events--grid-option-1 > figure > a > img {
  max-height: 78px;
}

@media (min-width: 1024px) {
  .c-card-events--grid-option-1 > figure > img,
  .c-card-events--grid-option-1 > figure > a > img {
    max-height: 100%;
    max-height: 160px;
  }
}

@media (min-width: 1024px) {
  .c-card-events--grid-option-1 > figure.modified > img,
  .c-card-events--grid-option-1 > figure.modified > a > img {
    max-width: 305px;
  }
}

@media (min-width: 1280px) {
  .c-card-events--grid-option-1 > figure.modified > img,
  .c-card-events--grid-option-1 > figure.modified > a > img {
    width: 305px;
  }
}

.c-card-events--grid-option-1 > .c-card-events-content {
  padding: 16px;
}

@media (min-width: 1024px) {
  .c-card-events--grid-option-1 > .c-card-events-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 24px;
  }
}

.c-card-events--grid-option-1 > .c-card-events-content > p {
  display: none;
}

.c-card-events--dated-card {
  padding: 0;
  border: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.c-card-events--dated-card > .date {
  margin-right: 8px;
  background-color: #F5F8F9;
  padding: 8px 10px 5px;
  min-width: 48px;
  width: 48px;
  height: 80px;
}

@media (min-width: 768px) {
  .c-card-events--dated-card > .date {
    margin-right: 16px;
    padding: 10px 13px;
    min-width: 64px;
    width: 64px;
    height: 104px;
  }
}

.c-card-events--dated-card > .date > span {
  display: block;
  color: #004875;
  line-height: 140%;
  letter-spacing: 0.03em;
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .c-card-events--dated-card > .date > span {
    font-size: 14px;
    letter-spacing: normal;
  }
}

.c-card-events--dated-card > .date > span:nth-child(2) {
  font-size: 24px;
  line-height: 130%;
  letter-spacing: normal;
  font-family: "Tiempos Headline", sans-serif;
  margin-top: -4px;
}

@media (min-width: 768px) {
  .c-card-events--dated-card > .date > span:nth-child(2) {
    font-size: 32px;
  }
}

.c-card-events--dated-card > div {
  padding: 0;
}

.c-card-events--dated-card > div > h6 {
  margin-bottom: 6px;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .c-card-events--dated-card > div > h6 {
    margin-bottom: 8px;
  }
}

.c-card-events--dated-card > div > h6 > a,
.c-card-events--dated-card > div > h6 > a:visited {
  color: #0069AA;
}

.c-card-events--dated-card > div > h6 > a:hover {
  color: #44C2EA;
}

.c-card-events--dated-card > div > address {
  color: #2B333B;
  font-size: 12px;
  font-weight: normal;
  position: relative;
  padding-left: 20px;
  line-height: 140%;
}

@media (min-width: 768px) {
  .c-card-events--dated-card > div > address {
    font-size: 14px;
    font-weight: normal;
  }
}

.c-card-events--dated-card > div > address::before {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/igu/src/images/icons/location.svg");
  position: absolute;
  left: 0;
  top: 1px;
}

.c-card-events--dated-card .c-card-events-content {
  width: 100%;
}

.c-card-events--dated-card-nav {
  margin-bottom: 32px !important;
}

.c-card-events--dated-card-nav > h6 > a, .c-card-statistics h2.c-card-events--dated-card-nav > span > a, .c-mobile-dropdown > ul > li > ul > li.c-card-events--dated-card-nav > a > a,
.c-card-events--dated-card-nav > h6 > a:visited,
.c-card-statistics h2.c-card-events--dated-card-nav > span > a:visited,
.c-mobile-dropdown > ul > li > ul > li.c-card-events--dated-card-nav > a > a:visited {
  color: #0069AA;
}

.c-card-events--dated-card-nav > .c-card-events-content {
  padding-top: 8px;
  width: 100%;
}

.c-card-events--dated-card-nav > .c-card-events-content address {
  margin-top: 8px;
}

.c-card-events--home {
  padding: 24px;
}

.c-card-events--home > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-card-events--home .c-card-events-content {
  padding: 0 16px 0 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}

.c-card-events--home .c-card-events-content > address {
  font-weight: normal;
}

.c-card-events--home figure {
  max-width: 100px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: auto;
}

@media (min-width: 768px) {
  .c-card-events--home figure {
    max-width: 135px;
    max-height: 100%;
  }
}

.c-card-events--home figure img,
.c-card-events--home figure a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 75px;
  width: 100px;
}

@media (min-width: 768px) {
  .c-card-events--home figure img,
  .c-card-events--home figure a img {
    height: 115px;
    width: 135px;
  }
}

.c-card-events--home figure a {
  display: block;
}

.c-card-events--home .o-button {
  margin-top: auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media (min-width: 768px) {
  .c-card-events--home .o-button {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.c-card-events--upcoming-home {
  background-color: #ffffff;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-card-events--upcoming-home > figure,
.c-card-events--upcoming-home > div {
  width: 100%;
  max-width: 100%;
}

.c-card-events--upcoming-home > figure {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 !important;
  height: 193px;
  min-height: 193px;
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home > figure {
    height: 144px;
    min-height: 144px;
  }
}

.c-card-events--upcoming-home > figure > a {
  height: 193px;
  min-height: 193px;
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home > figure > a {
    height: 144px;
    min-height: 144px;
    max-height: 100%;
  }
}

.c-card-events--upcoming-home > div {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.c-card-events--upcoming-home > div h6, .c-card-events--upcoming-home > div .c-card-statistics h2 > span, .c-card-statistics .c-card-events--upcoming-home > div h2 > span, .c-card-events--upcoming-home > div .c-mobile-dropdown > ul > li > ul > li > a {
  color: #0069AA;
  margin-bottom: 10px;
}

.c-card-events--upcoming-home > div h6 a, .c-card-events--upcoming-home > div .c-card-statistics h2 > span a, .c-card-statistics .c-card-events--upcoming-home > div h2 > span a, .c-card-events--upcoming-home > div .c-mobile-dropdown > ul > li > ul > li > a a {
  color: #0069AA;
}

.c-card-events--upcoming-home > div h6 a:hover, .c-card-events--upcoming-home > div .c-card-statistics h2 > span a:hover, .c-card-statistics .c-card-events--upcoming-home > div h2 > span a:hover, .c-card-events--upcoming-home > div .c-mobile-dropdown > ul > li > ul > li > a a:hover {
  color: #44C2EA;
}

.c-card-events--upcoming-home > div h6, .c-card-events--upcoming-home > div .c-card-statistics h2 > span, .c-card-statistics .c-card-events--upcoming-home > div h2 > span, .c-card-events--upcoming-home > div .c-mobile-dropdown > ul > li > ul > li > a,
.c-card-events--upcoming-home > div span {
  margin-right: 0 !important;
}

.c-card-events--upcoming-home > div span {
  display: inline-block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home-option-1 > figure {
    height: 225px;
    min-height: 225px;
    max-height: 100%;
  }
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home-option-1 > figure > a {
    height: 225px;
    min-height: 225px;
  }
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home-option-2 > figure {
    height: 182px;
    min-height: 182px;
    max-height: 100%;
  }
}

@media (min-width: 1280px) {
  .c-card-events--upcoming-home-option-2 > figure {
    height: 305px;
    min-height: 305px;
  }
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home-option-2 > figure > a {
    height: 182px;
    min-height: 182px;
  }
}

@media (min-width: 1280px) {
  .c-card-events--upcoming-home-option-2 > figure > a {
    height: 305px;
    min-height: 305px;
  }
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home-option-3 > figure {
    height: 182px;
    min-height: 182px;
    max-height: 100%;
  }
}

@media (min-width: 1280px) {
  .c-card-events--upcoming-home-option-3 > figure {
    height: 197px;
    min-height: 197px;
  }
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home-option-3 > figure > a {
    height: 182px;
    min-height: 182px;
  }
}

@media (min-width: 1280px) {
  .c-card-events--upcoming-home-option-3 > figure > a {
    height: 197px;
    min-height: 197px;
  }
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home-option-4 > figure {
    height: 182px;
    min-height: 182px;
    max-height: 100%;
  }
}

@media (min-width: 1280px) {
  .c-card-events--upcoming-home-option-4 > figure {
    height: 197px;
    min-height: 197px;
  }
}

@media (min-width: 768px) {
  .c-card-events--upcoming-home-option-4 > figure > a {
    height: 182px;
    min-height: 182px;
  }
}

@media (min-width: 1280px) {
  .c-card-events--upcoming-home-option-4 > figure > a {
    height: 197px;
    min-height: 197px;
  }
}

.c-card-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  padding-bottom: 24px;
  border-bottom: 1px #E2E6E9 solid;
}

@media (min-width: 768px) {
  .c-card-download {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    padding-bottom: 32px;
  }
}

.c-card-download > figure {
  margin: 0 0 16px 0;
  width: 100%;
  max-height: 202px;
}

@media (min-width: 768px) {
  .c-card-download > figure {
    max-height: 400px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .c-card-download > figure {
    max-width: 240px;
    margin: 0 0 0px 0;
  }
}

.c-card-download > figure > img,
.c-card-download > figure > a > img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 166.13px;
}

@media (min-width: 1280px) {
  .c-card-download > figure > img,
  .c-card-download > figure > a > img {
    max-height: 200px;
  }
}

.c-card-download > figure > a {
  display: block;
}

.c-card-download > .c-card-download-content {
  width: 100%;
  text-align: left;
}

@media (min-width: 768px) {
  .c-card-download > .c-card-download-content {
    margin-left: 56px;
  }
}

.c-card-download > .c-card-download-content > small {
  color: #7CB135;
}

.c-card-download > .c-card-download-content > h6, .c-card-statistics .c-card-download > h2.c-card-download-content > span, .c-mobile-dropdown > ul > li > ul.c-card-download > li.c-card-download-content > a,
.c-card-download > .c-card-download-content > h4,
.c-search-bar .c-card-download > .c-card-download-content > input[type=text],
.c-mobile-dropdown > ul.c-card-download > li.c-card-download-content > a,
.c-card-download > .c-card-download-content > h3 {
  margin: 0 0 12px 0;
  color: #0069AA;
}

@media (min-width: 1280px) {
  .c-card-download > .c-card-download-content > h6, .c-card-statistics .c-card-download > h2.c-card-download-content > span, .c-mobile-dropdown > ul > li > ul.c-card-download > li.c-card-download-content > a,
  .c-card-download > .c-card-download-content > h4,
  .c-search-bar .c-card-download > .c-card-download-content > input[type=text],
  .c-mobile-dropdown > ul.c-card-download > li.c-card-download-content > a,
  .c-card-download > .c-card-download-content > h3 {
    margin: 0 0 2px 0;
  }
}

.c-card-download > .c-card-download-content > h6 a, .c-card-statistics .c-card-download > h2.c-card-download-content > span a, .c-mobile-dropdown > ul > li > ul.c-card-download > li.c-card-download-content > a a,
.c-card-download > .c-card-download-content > h4 a,
.c-search-bar .c-card-download > .c-card-download-content > input[type=text] a,
.c-mobile-dropdown > ul.c-card-download > li.c-card-download-content > a a,
.c-card-download > .c-card-download-content > h3 a {
  color: #0069AA;
}

.c-card-download > .c-card-download-content > h6 a:hover, .c-card-statistics .c-card-download > h2.c-card-download-content > span a:hover, .c-mobile-dropdown > ul > li > ul.c-card-download > li.c-card-download-content > a a:hover,
.c-card-download > .c-card-download-content > h4 a:hover,
.c-search-bar .c-card-download > .c-card-download-content > input[type=text] a:hover,
.c-mobile-dropdown > ul.c-card-download > li.c-card-download-content > a a:hover,
.c-card-download > .c-card-download-content > h3 a:hover {
  color: #44C2EA;
}

.c-card-download > .c-card-download-content > h6, .c-card-statistics .c-card-download > h2.c-card-download-content > span, .c-mobile-dropdown > ul > li > ul.c-card-download > li.c-card-download-content > a {
  color: #004875;
}

.c-card-download > .c-card-download-content > p {
  margin: 0 0 16px 0;
  color: #414D58;
}

@media (min-width: 1280px) {
  .c-card-download > .c-card-download-content > p {
    display: block;
  }
}

.c-card-download > .c-card-download-content > span {
  display: block;
  margin-bottom: 16px;
  color: #6C8093;
}

@media (min-width: 1280px) {
  .c-card-download > .c-card-download-content > span {
    margin-bottom: 20px;
  }
}

.c-card-download > .c-card-download-content > span > span {
  color: #414D58;
}

.c-card-download > .c-card-download-content > span.published {
  line-height: 140%;
  margin: 0 0 12px 0;
  color: #6C8093;
}

.c-card-download > .c-card-download-content > span.published > span {
  color: #414D58;
}

.c-card-download--default {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.c-card-download--default > figure {
  margin: 0 0 16px 0;
  width: 100%;
  max-width: 96px;
}

@media (min-width: 768px) {
  .c-card-download--default > figure {
    max-width: 170px;
    margin: 0 0 0px 0;
  }
}

.c-card-download--default > figure > img,
.c-card-download--default > figure > a > img {
  max-height: 126px;
}

@media (min-width: 768px) {
  .c-card-download--default > figure > img,
  .c-card-download--default > figure > a > img {
    height: 238px;
    max-height: 100%;
  }
}

.c-card-download--default > .c-card-download-content > span {
  color: #6C8093;
}

.c-card-download--default > .c-card-download-content > span > span {
  color: #414D58;
}

.c-card-download--default .c-card-download-content {
  margin-left: 16px;
}

@media (min-width: 1280px) {
  .c-card-download--default .c-card-download-content {
    margin-left: 30px;
  }
}

.c-card-download--default-section {
  border: 0;
  padding: 16px;
  background-color: #F5F8F9;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-card-download--default-section > .c-card-download-content {
  margin-left: 16px;
}

@media (min-width: 768px) {
  .c-card-download--default-section > .c-card-download-content {
    margin-left: 20px;
  }
}

@media (min-width: 1280px) {
  .c-card-download--default-section > .c-card-download-content {
    margin-left: 24px;
  }
}

.c-card-download--default-section > .c-card-download-content > p {
  display: block;
}

.c-card-download--default-section > .c-card-download-content > h4, .c-search-bar .c-card-download--default-section > .c-card-download-content > input[type=text], .c-mobile-dropdown > ul.c-card-download--default-section > li.c-card-download-content > a {
  margin-bottom: 8px;
}

.c-card-download--default-section > figure {
  max-width: 83px;
  margin-bottom: 0;
  max-height: 122px;
}

@media (min-width: 768px) {
  .c-card-download--default-section > figure {
    max-width: 160px;
    max-height: 213px;
  }
}

@media (min-width: 1280px) {
  .c-card-download--default-section > figure {
    max-width: 240px;
    max-height: 320px;
  }
}

.c-card-download--default-section > figure img {
  max-height: 100%;
  height: auto;
}

.c-card-download--default-section .o-button {
  margin-top: 24px;
}

.c-card-download--home {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 0;
  padding: 0;
  width: 100%;
  max-width: 325px;
}

@media (min-width: 768px) {
  .c-card-download--home {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-card-download--home .c-card-download-content {
  margin-left: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-card-download--home .c-card-download-content > h4, .c-card-download--home .c-search-bar .c-card-download-content > input[type=text], .c-search-bar .c-card-download--home .c-card-download-content > input[type=text], .c-card-download--home .c-mobile-dropdown > ul > li.c-card-download-content > a,
.c-card-download--home .c-card-download-content > h6,
.c-card-download--home .c-card-statistics h2.c-card-download-content > span,
.c-card-statistics .c-card-download--home h2.c-card-download-content > span,
.c-card-download--home .c-mobile-dropdown > ul > li > ul > li.c-card-download-content > a {
  margin-top: 8px;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .c-card-download--home .c-card-download-content > h4, .c-card-download--home .c-search-bar .c-card-download-content > input[type=text], .c-search-bar .c-card-download--home .c-card-download-content > input[type=text], .c-card-download--home .c-mobile-dropdown > ul > li.c-card-download-content > a,
  .c-card-download--home .c-card-download-content > h6,
  .c-card-download--home .c-card-statistics h2.c-card-download-content > span,
  .c-card-statistics .c-card-download--home h2.c-card-download-content > span,
  .c-card-download--home .c-mobile-dropdown > ul > li > ul > li.c-card-download-content > a {
    margin-top: 12px;
    margin-bottom: 2px;
  }
}

.c-card-download--home .c-card-download-content > h4 a, .c-card-download--home .c-search-bar .c-card-download-content > input[type=text] a, .c-search-bar .c-card-download--home .c-card-download-content > input[type=text] a, .c-card-download--home .c-mobile-dropdown > ul > li.c-card-download-content > a a,
.c-card-download--home .c-card-download-content > h6 a,
.c-card-download--home .c-card-statistics h2.c-card-download-content > span a,
.c-card-statistics .c-card-download--home h2.c-card-download-content > span a,
.c-card-download--home .c-mobile-dropdown > ul > li > ul > li.c-card-download-content > a a {
  color: #0069AA;
}

.c-card-download--home .c-card-download-content > h4 a:hover, .c-card-download--home .c-search-bar .c-card-download-content > input[type=text] a:hover, .c-search-bar .c-card-download--home .c-card-download-content > input[type=text] a:hover, .c-card-download--home .c-mobile-dropdown > ul > li.c-card-download-content > a a:hover,
.c-card-download--home .c-card-download-content > h6 a:hover,
.c-card-download--home .c-card-statistics h2.c-card-download-content > span a:hover,
.c-card-statistics .c-card-download--home h2.c-card-download-content > span a:hover,
.c-card-download--home .c-mobile-dropdown > ul > li > ul > li.c-card-download-content > a a:hover {
  color: #44C2EA;
}

.c-card-download--home .c-card-download-content > p {
  margin-bottom: 16px;
  display: block;
}

@media (min-width: 768px) {
  .c-card-download--home .c-card-download-content > p {
    margin-bottom: 12px;
  }
}

.c-card-download--home .c-card-download-content > .o-button {
  text-align: left;
  margin-top: auto;
}

.c-card-download--home > figure {
  margin: 0 16px 0 0;
  max-width: 100px;
  max-height: 142px;
  height: 142px;
}

@media (min-width: 768px) {
  .c-card-download--home > figure {
    margin: 0 0 16px 0;
    max-width: 324px;
    max-height: 462px;
    height: 462px;
  }
}

@media (min-width: 1280px) {
  .c-card-download--home > figure {
    max-width: 256px;
    max-height: 363px;
    height: 363px;
  }
}

.c-card-download--home > figure > img,
.c-card-download--home > figure > a > img {
  max-height: 142px;
  height: 142px;
}

@media (min-width: 768px) {
  .c-card-download--home > figure > img,
  .c-card-download--home > figure > a > img {
    max-height: 462px;
    height: 462px;
  }
}

@media (min-width: 1280px) {
  .c-card-download--home > figure > img,
  .c-card-download--home > figure > a > img {
    max-height: 363px;
    height: 363px;
  }
}

.c-card-download--related {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  border: 0;
  padding: 0;
}

@media (min-width: 1280px) {
  .c-card-download--related {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

.c-card-download--related .c-card-download-content {
  margin-left: 16px;
}

@media (min-width: 1280px) {
  .c-card-download--related .c-card-download-content {
    margin-left: 0;
  }
}

.c-card-download--related .c-card-download-content > h4, .c-card-download--related .c-search-bar .c-card-download-content > input[type=text], .c-search-bar .c-card-download--related .c-card-download-content > input[type=text], .c-card-download--related .c-mobile-dropdown > ul > li.c-card-download-content > a {
  margin: 8px 0 0 0;
}

@media (min-width: 1280px) {
  .c-card-download--related .c-card-download-content > h4, .c-card-download--related .c-search-bar .c-card-download-content > input[type=text], .c-search-bar .c-card-download--related .c-card-download-content > input[type=text], .c-card-download--related .c-mobile-dropdown > ul > li.c-card-download-content > a {
    margin: 12px 0 6px 0;
  }
}

.c-card-download--related .c-card-download-content > h4 a:hover, .c-card-download--related .c-search-bar .c-card-download-content > input[type=text] a:hover, .c-search-bar .c-card-download--related .c-card-download-content > input[type=text] a:hover, .c-card-download--related .c-mobile-dropdown > ul > li.c-card-download-content > a a:hover {
  color: #44C2EA;
}

.c-card-download--related .c-card-download-content > p {
  margin-bottom: 8px;
  display: block;
}

@media (min-width: 1280px) {
  .c-card-download--related .c-card-download-content > p {
    margin-bottom: 16px;
  }
}

.c-card-download--related > figure {
  margin: 0 0 16px 0;
  max-width: 100px;
}

@media (min-width: 1280px) {
  .c-card-download--related > figure {
    max-width: 360px;
  }
}

.c-card-download--related > figure > img {
  max-height: 100px;
}

@media (min-width: 1280px) {
  .c-card-download--related > figure > img {
    max-height: 247px;
  }
}

.c-card-download--list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  border: 0;
  padding: 0;
  margin-bottom: 16px;
}

.c-card-download--list .c-card-download-content {
  min-width: 0;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-card-download--list .c-card-download-content > h5, .c-card-download--list .c-card-groups > div .c-card-download-content > h4, .c-card-groups > div .c-card-download--list .c-card-download-content > h4, .c-card-download--list .c-card-groups > div .c-search-bar .c-card-download-content > input[type=text], .c-card-groups > div .c-search-bar .c-card-download--list .c-card-download-content > input[type=text], .c-card-download--list .c-search-bar .c-card-groups > div .c-card-download-content > input[type=text], .c-search-bar .c-card-groups > div .c-card-download--list .c-card-download-content > input[type=text], .c-card-download--list .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-download-content > a, .c-card-groups > div .c-card-download--list .c-mobile-dropdown > ul > li.c-card-download-content > a {
  color: #0069AA;
}

.c-card-download--list .c-card-download-content > h5 > a, .c-card-download--list .c-card-groups > div .c-card-download-content > h4 > a, .c-card-groups > div .c-card-download--list .c-card-download-content > h4 > a, .c-card-download--list .c-card-groups > div .c-search-bar .c-card-download-content > input[type=text] > a, .c-card-groups > div .c-search-bar .c-card-download--list .c-card-download-content > input[type=text] > a, .c-card-download--list .c-search-bar .c-card-groups > div .c-card-download-content > input[type=text] > a, .c-search-bar .c-card-groups > div .c-card-download--list .c-card-download-content > input[type=text] > a, .c-card-download--list .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-download-content > a > a, .c-card-groups > div .c-card-download--list .c-mobile-dropdown > ul > li.c-card-download-content > a > a {
  color: #0069AA;
}

.c-card-download--list .c-card-download-content > h5 > a:hover, .c-card-download--list .c-card-groups > div .c-card-download-content > h4 > a:hover, .c-card-groups > div .c-card-download--list .c-card-download-content > h4 > a:hover, .c-card-download--list .c-card-groups > div .c-search-bar .c-card-download-content > input[type=text] > a:hover, .c-card-groups > div .c-search-bar .c-card-download--list .c-card-download-content > input[type=text] > a:hover, .c-card-download--list .c-search-bar .c-card-groups > div .c-card-download-content > input[type=text] > a:hover, .c-search-bar .c-card-groups > div .c-card-download--list .c-card-download-content > input[type=text] > a:hover, .c-card-download--list .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-download-content > a > a:hover, .c-card-groups > div .c-card-download--list .c-mobile-dropdown > ul > li.c-card-download-content > a > a:hover {
  color: #44C2EA;
}

.c-card-download--list .c-card-download-content > h4 a, .c-card-download--list .c-search-bar .c-card-download-content > input[type=text] a, .c-search-bar .c-card-download--list .c-card-download-content > input[type=text] a, .c-card-download--list .c-mobile-dropdown > ul > li.c-card-download-content > a a {
  font-size: 20px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.c-card-download--list .c-card-download-content > a {
  font-size: 12px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (min-width: 768px) {
  .c-card-download--list .c-card-download-content > a {
    font-size: 14px;
    margin-top: auto;
  }
}

.c-card-download--list > figure {
  margin: 0 24px 0 0;
  height: auto;
  max-width: 64px;
}

.c-card-download--list > figure > img,
.c-card-download--list > figure > a > img {
  max-height: 64px;
  min-height: 64px;
}

.c-card-download--list-manual .c-card-download-content > h5, .c-card-download--list-manual .c-card-groups > div .c-card-download-content > h4, .c-card-groups > div .c-card-download--list-manual .c-card-download-content > h4, .c-card-download--list-manual .c-card-groups > div .c-search-bar .c-card-download-content > input[type=text], .c-card-groups > div .c-search-bar .c-card-download--list-manual .c-card-download-content > input[type=text], .c-card-download--list-manual .c-search-bar .c-card-groups > div .c-card-download-content > input[type=text], .c-search-bar .c-card-groups > div .c-card-download--list-manual .c-card-download-content > input[type=text], .c-card-download--list-manual .c-card-groups > div .c-mobile-dropdown > ul > li.c-card-download-content > a, .c-card-groups > div .c-card-download--list-manual .c-mobile-dropdown > ul > li.c-card-download-content > a {
  color: #004875;
}

.c-card-download--content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 16px;
  width: 100%;
  border: 0;
}

.c-card-download--content .c-card-download-content {
  margin-left: 0;
}

.c-card-download--content .c-card-download-content > small {
  margin-bottom: 8px;
}

.c-card-download--content .c-card-download-content > span.published {
  margin-bottom: 16px;
}

.c-card-download--content-gray {
  background-color: #F5F8F9;
}

.c-card-download--content-gray figure,
.c-card-download--content-gray figure a {
  height: 320px;
  max-height: 320px;
  /* height: 166px;
        max-height: 166px; */
}

@media (min-width: 1280px) {
  .c-card-download--content-gray figure,
  .c-card-download--content-gray figure a {
    height: 320px;
    max-height: 320px;
  }
}

.c-card-download--content > figure {
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-card-download--content > figure {
    margin-bottom: 24px;
  }
}

.c-card-download--content > figure img,
.c-card-download--content > figure a img {
  max-height: 320px;
}

.c-card-download--listing {
  padding-bottom: 0;
  border: 0;
}

.c-card-download--listing > figure {
  width: 100%;
  width: 88px;
  margin-right: 24px;
  max-height: 107px;
}

@media (min-width: 768px) {
  .c-card-download--listing > figure {
    width: 100px;
    margin-right: 16px;
    height: 145px;
    max-height: 100%;
  }
}

.c-card-download--listing > figure img,
.c-card-download--listing > figure a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 145px;
  width: 100px;
}

@media (min-width: 768px) {
  .c-card-download--listing > .c-card-download-content {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

.c-card-download--listing > .c-card-download-content p {
  display: block;
}

.c-card-download--listing > .c-card-download-content h5, .c-card-download--listing > .c-card-download-content .c-card-groups > div h4, .c-card-groups > div .c-card-download--listing > .c-card-download-content h4, .c-card-download--listing > .c-card-download-content .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-download--listing > .c-card-download-content input[type=text], .c-card-download--listing > .c-card-download-content .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-download--listing > .c-card-download-content input[type=text], .c-card-download--listing > .c-card-download-content .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-download--listing > .c-card-download-content .c-mobile-dropdown > ul > li > a {
  margin-bottom: 8px;
  color: #0069AA;
}

.c-card-download--listing > .c-card-download-content span {
  font-size: 14px;
  color: #6C8093;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .c-card-download--listing > .c-card-download-content a {
    margin-top: auto;
  }
}

.c-card-download--listing h5 a, .c-card-download--listing .c-card-groups > div h4 a, .c-card-groups > div .c-card-download--listing h4 a, .c-card-download--listing .c-card-groups > div .c-search-bar input[type=text] a, .c-card-groups > div .c-search-bar .c-card-download--listing input[type=text] a, .c-card-download--listing .c-search-bar .c-card-groups > div input[type=text] a, .c-search-bar .c-card-groups > div .c-card-download--listing input[type=text] a, .c-card-download--listing .c-card-groups > div .c-mobile-dropdown > ul > li > a a, .c-card-groups > div .c-card-download--listing .c-mobile-dropdown > ul > li > a a {
  color: #0069AA;
}

.c-card-download--listing h5 a:hover, .c-card-download--listing .c-card-groups > div h4 a:hover, .c-card-groups > div .c-card-download--listing h4 a:hover, .c-card-download--listing .c-card-groups > div .c-search-bar input[type=text] a:hover, .c-card-groups > div .c-search-bar .c-card-download--listing input[type=text] a:hover, .c-card-download--listing .c-search-bar .c-card-groups > div input[type=text] a:hover, .c-search-bar .c-card-groups > div .c-card-download--listing input[type=text] a:hover, .c-card-download--listing .c-card-groups > div .c-mobile-dropdown > ul > li > a a:hover, .c-card-groups > div .c-card-download--listing .c-mobile-dropdown > ul > li > a a:hover {
  color: #44C2EA;
}

.c-card-download--listing .o-button {
  text-align: left;
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-card-download--listing .o-button {
    font-size: 16px;
  }
}

.c-card-download--listing-option-1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  padding-bottom: 24px;
  border-bottom: 1px #E2E6E9 solid;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-1 {
    padding-bottom: 32px;
  }
}

.c-card-download--listing-option-1 > figure {
  max-width: 96px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-1 > figure {
    max-width: 170px;
    height: 238px;
  }
}

.c-card-download--listing-option-1 > figure > img,
.c-card-download--listing-option-1 > figure > a > img {
  max-height: 126px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-1 > figure > img,
  .c-card-download--listing-option-1 > figure > a > img {
    height: 238px;
    max-height: 100%;
  }
}

.c-card-download--listing-option-1 > .c-card-download-content {
  margin-left: 16px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-1 > .c-card-download-content {
    margin-left: 30px;
  }
}

.c-card-download--listing-option-1 > .c-card-download-content > span.published {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-1 > .c-card-download-content > span.published {
    margin-bottom: 20px;
  }
}

.c-card-download--listing-option-1 > .c-card-download-content > span,
.c-card-download--listing-option-1 > .c-card-download-content > span span {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-1 > .c-card-download-content > span,
  .c-card-download--listing-option-1 > .c-card-download-content > span span {
    font-size: 16px;
  }
}

.c-card-download--listing-option-2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  padding-bottom: 24px;
  border-bottom: 1px #E2E6E9 solid;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-2 {
    padding-bottom: 32px;
  }
}

.c-card-download--listing-option-2 > figure {
  width: 96px;
  height: 126px;
  margin-right: 0;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-2 > figure {
    width: 170px;
    height: 238px;
  }
}

.c-card-download--listing-option-2 > figure > img,
.c-card-download--listing-option-2 > figure > a > img {
  width: 96px;
  height: 126px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-2 > figure > img,
  .c-card-download--listing-option-2 > figure > a > img {
    width: 170px;
    height: 238px;
    max-height: 100%;
  }
}

.c-card-download--listing-option-2 > .c-card-download-content {
  margin-left: 16px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-2 > .c-card-download-content {
    margin-left: 30px;
  }
}

.c-card-download--listing-option-2 > .c-card-download-content > span.published {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-2 > .c-card-download-content > span.published {
    margin-bottom: 20px;
  }
}

.c-card-download--listing-option-2 > .c-card-download-content > span,
.c-card-download--listing-option-2 > .c-card-download-content > span span {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-card-download--listing-option-2 > .c-card-download-content > span,
  .c-card-download--listing-option-2 > .c-card-download-content > span span {
    font-size: 16px;
  }
}

.c-card-download--listing-manual > .c-card-download-content h5, .c-card-download--listing-manual > .c-card-download-content .c-card-groups > div h4, .c-card-groups > div .c-card-download--listing-manual > .c-card-download-content h4, .c-card-download--listing-manual > .c-card-download-content .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-download--listing-manual > .c-card-download-content input[type=text], .c-card-download--listing-manual > .c-card-download-content .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-download--listing-manual > .c-card-download-content input[type=text], .c-card-download--listing-manual > .c-card-download-content .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-download--listing-manual > .c-card-download-content .c-mobile-dropdown > ul > li > a {
  color: #004875;
}

.c-card-download--featured {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  border: 0;
  padding-bottom: 0;
}

.c-card-download--featured > figure {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 16px;
  max-width: 88px;
}

@media (min-width: 768px) {
  .c-card-download--featured > figure {
    margin-left: 24px;
    max-width: 88px;
  }
}

@media (min-width: 1280px) {
  .c-card-download--featured > figure {
    margin-left: 126px;
    max-width: 256px;
  }
}

.c-card-download--featured > figure img,
.c-card-download--featured > figure a img {
  max-height: 130px;
}

@media (min-width: 1280px) {
  .c-card-download--featured > figure img,
  .c-card-download--featured > figure a img {
    max-height: 361px;
  }
}

.c-card-download--featured > .c-card-download-content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 0;
}

.c-card-download--featured > .c-card-download-content h2 {
  color: #004875;
}

.c-card-download--featured > .c-card-download-content h2 a {
  color: #0069AA;
}

.c-card-download--featured > .c-card-download-content h2 a:hover {
  color: #44C2EA;
}

.c-card-download--presentation {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-card-download--presentation figure {
  width: 100%;
}

@media (min-width: 768px) {
  .c-card-download--presentation figure {
    margin-right: 56px;
    width: 240px;
  }
}

.c-card-download--presentation figure img,
.c-card-download--presentation figure a img {
  margin-right: 0;
}

@media (min-width: 768px) {
  .c-card-download--presentation figure img,
  .c-card-download--presentation figure a img {
    max-height: 100%;
    height: 200px;
    width: 240px;
  }
}

.c-card-download--presentation > .c-card-download-content {
  margin-left: 0;
}

.c-card-download--content-home {
  padding: 0;
  margin-bottom: 24px;
  max-width: 548px;
}

@media (min-width: 768px) {
  .c-card-download--content-home {
    margin-bottom: 32px;
  }
}

.c-card-download--content-home > figure {
  max-height: none;
}

.c-card-download--content-home > figure > img,
.c-card-download--content-home > figure > a > img {
  max-height: none;
}

.c-card-download--feat {
  padding-bottom: 0;
  border: 0;
}

.c-card-download--feat-home {
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .c-card-download--feat-home {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.c-card-download--feat-home > figure {
  max-width: 230px;
}

.c-card-download--feat-home > figure > img,
.c-card-download--feat-home > figure > a > img {
  height: auto;
  max-height: 372px;
}

.c-card-download--default-button > .c-card-download-content a {
  margin-top: 0;
}

@media (min-width: 768px) {
  .c-card-download--aligned-button > .c-card-download-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .c-card-download--aligned-button > .c-card-download-content a {
    margin-top: auto;
  }
}

.c-card-download--adjust-margin {
  margin-bottom: 0 !important;
}

.c-card-download--adjust-margin > .c-card-download-content {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-card-download--adjust-margin > .c-card-download-content {
    margin-bottom: 32px;
  }
}

.c-card-download--adjust-margin > .c-card-download-content h5, .c-card-download--adjust-margin > .c-card-download-content .c-card-groups > div h4, .c-card-groups > div .c-card-download--adjust-margin > .c-card-download-content h4, .c-card-download--adjust-margin > .c-card-download-content .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-download--adjust-margin > .c-card-download-content input[type=text], .c-card-download--adjust-margin > .c-card-download-content .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-download--adjust-margin > .c-card-download-content input[type=text], .c-card-download--adjust-margin > .c-card-download-content .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-download--adjust-margin > .c-card-download-content .c-mobile-dropdown > ul > li > a {
  margin-bottom: 4px;
}

.c-card-download--no-image > .c-card-download-content {
  margin-left: 0;
}

@media (max-width: 767px) {
  .c-card-download--no-image-option-1 > .c-card-download-content {
    margin-left: 128px;
  }
}

.c-card-download--magazine {
  /*  @include maxpoint(tablet) {
     flex-flow: column;
   }
   
   > figure {
     display: none;
   
     @include maxpoint($tablet) {
       max-width: 221px;
       min-width: 221px;
       display: block;
     }
   
     @include maxpoint($desktop) {
       max-width: 222px;
       min-width: 222px;
       max-height: 308px;
     }
   
     > img {
       height: auto;
       max-height: 289px;
   
       @include maxpoint($tablet) {
         max-width: 221px;
         min-width: 221px;
         max-height: 289px;
       }
   
       @include maxpoint($desktop) {
         max-width: 222px;
         min-width: 222px;
         max-height: 308px;
       }
     }
   }
   
   > .c-card-download-content {
     margin-left: 0;
     margin-top: 12px;
     
     @include maxpoint($tablet) {
       margin-left: 16px;
       margin-top: 0;
     }
   
     @include maxpoint($desktop) {
       margin-left: 32px;
     }
   
     > h3 {
       color: #fff;
       margin-bottom: 16px;
   
       @include maxpoint($desktop) {
         margin-bottom: 8px;
       }
     }
   
     > p {
       @media (min-width: 768px) and (max-width: 1024px) {
         display: none;
       }
     }
   } */
}

.c-card-download--magazine > div > span {
  color: #E2E6E9 !important;
}

.c-card-download--magazine > div > span > span {
  color: #A7B3BE !important;
}

@media only screen and (min-width: 768px) and (orientation: portrait) {
  .c-card-download--tablet-portrait {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

@media only screen and (min-width: 768px) and (orientation: portrait) {
  .c-card-download--tablet-portrait > figure {
    max-width: none;
  }
}

@media only screen and (min-width: 768px) and (orientation: portrait) {
  .c-card-download--tablet-portrait > div {
    margin-left: 0 !important;
    padding: 16px;
  }
}

.c-card-download--no-link .c-card-download-content > h4, .c-card-download--no-link .c-search-bar .c-card-download-content > input[type=text], .c-search-bar .c-card-download--no-link .c-card-download-content > input[type=text], .c-card-download--no-link .c-mobile-dropdown > ul > li.c-card-download-content > a {
  color: #004875;
}

.c-card-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 100%;
}

.c-card-news a {
  color: #0069AA;
}

.c-card-news a:hover {
  color: #44C2EA;
}

.c-card-news > figure {
  margin: 0;
  width: 100%;
  margin-bottom: 16px;
}

.c-card-news > figure > img,
.c-card-news > figure > a > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
  max-height: 171.5px;
  height: 100%;
}

@media (min-width: 768px) {
  .c-card-news > figure > img,
  .c-card-news > figure > a > img {
    max-height: 240px;
  }
}

@media (min-width: 1280px) {
  .c-card-news > figure > img,
  .c-card-news > figure > a > img {
    max-height: 322px;
  }
}

.c-card-news > figure > a {
  display: block;
}

.c-card-news > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-card-news > div > h2 {
  color: #0069AA;
}

.c-card-news > div > h3,
.c-card-news > div > h4,
.c-search-bar .c-card-news > div > input[type=text],
.c-card-news > div > h5,
.c-card-groups.c-card-news > div > h4,
.c-card-groups > div .c-search-bar .c-card-news > div > input[type=text],
.c-search-bar .c-card-groups.c-card-news > div > input[type=text] {
  color: #0069AA;
  margin-bottom: 8px;
  margin-top: 0;
}

.c-card-news > div > h3 a,
.c-card-news > div > h4 a,
.c-search-bar .c-card-news > div > input[type=text] a,
.c-card-news > div > h5 a,
.c-card-groups.c-card-news > div > h4 a,
.c-card-groups > div .c-search-bar .c-card-news > div > input[type=text] a,
.c-search-bar .c-card-groups.c-card-news > div > input[type=text] a {
  color: #0069AA;
}

.c-card-news > div > h3 a:hover,
.c-card-news > div > h4 a:hover,
.c-search-bar .c-card-news > div > input[type=text] a:hover,
.c-card-news > div > h5 a:hover,
.c-card-groups.c-card-news > div > h4 a:hover,
.c-card-groups > div .c-search-bar .c-card-news > div > input[type=text] a:hover,
.c-search-bar .c-card-groups.c-card-news > div > input[type=text] a:hover {
  color: #44C2EA;
}

.c-card-news > div > h6 {
  margin-bottom: 8px;
}

.c-card-news > div > h6 a {
  color: #0069AA;
}

.c-card-news > div > h6 a:hover {
  color: #44C2EA;
}

.c-card-news > div > p {
  margin: 0 0 16px 0;
  color: #2B333B;
}

.c-card-news > div > span {
  margin: 0;
  font-size: 14px;
  color: #6C8093;
}

@media (min-width: 768px) {
  .c-card-news > div > span {
    font-size: 16px;
  }
}

.c-card-news > div > span > span,
.c-card-news > div > span > .author {
  color: #414D58;
}

.c-card-news > div > a {
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: left;
}

.c-card-news > div > span.published {
  line-height: 140%;
  margin: 0 0 12px 0;
  color: #6C8093;
}

.c-card-news > div > span.published > span {
  color: #414D58;
}

.c-card-news--related {
  background-color: white;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-card-news--related figure {
  margin-bottom: 0;
  max-width: 304px;
}

.c-card-news--related figure > img,
.c-card-news--related figure > a > img {
  height: 173px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .c-card-news--related figure > img,
  .c-card-news--related figure > a > img {
    height: 180px;
  }
}

.c-card-news--related > div {
  padding: 16px;
  max-width: 304px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.c-card-news--related > div h4, .c-card-news--related > div .c-search-bar input[type=text], .c-search-bar .c-card-news--related > div input[type=text], .c-card-news--related > div .c-mobile-dropdown > ul > li > a {
  margin-bottom: 4px;
}

.c-card-news--related > div > p {
  margin: 0 0 8px 0;
}

.c-card-news--related > div > span {
  margin: 0 0 24px 0;
  color: #414D58;
}

.c-card-news--related > div > span span {
  color: #6C8093;
}

.c-card-news--related > div > a {
  margin-top: auto;
  color: #0069AA;
}

.c-card-news--featured {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  max-width: 928px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .c-card-news--featured {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-card-news--featured > figure {
  max-width: 100%;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-card-news--featured > figure {
    max-width: 208px;
    margin-right: 24px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured > figure {
    max-width: 352px;
    margin-right: 32px;
  }
}

.c-card-news--featured > figure img,
.c-card-news--featured > figure a img {
  height: 210px;
}

@media (min-width: 1280px) {
  .c-card-news--featured > figure img,
  .c-card-news--featured > figure a img {
    height: 266px;
  }
}

.c-card-news--featured > div {
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-card-news--featured > div h2 {
  margin-bottom: 8px;
}

.c-card-news--featured > div h2 a {
  color: #0069AA;
}

.c-card-news--featured > div h2 a:hover {
  color: #44C2EA;
}

.c-card-news--featured > div p {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-card-news--featured > div p {
    margin-bottom: 12px;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured > div p {
    margin-bottom: 16px;
  }
}

.c-card-news--featured > div span.published {
  margin: 0;
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-card-news--featured > div span.published {
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured > div span.published {
    font-size: 16px;
  }
}

.c-card-news--featured > div .o-button {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .c-card-news--featured > div .o-button {
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured > div .o-button {
    width: auto;
  }
}

.c-card-news--featured-no-image > div {
  margin-left: 0;
}

.c-card-news--featured-pdf > figure {
  max-width: 100%;
}

@media (min-width: 768px) {
  .c-card-news--featured-pdf > figure {
    max-width: 208px;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured-pdf > figure {
    max-width: 256px;
  }
}

.c-card-news--featured-pdf > figure img,
.c-card-news--featured-pdf > figure a img {
  max-height: 100%;
  height: 446px;
}

@media (min-width: 768px) {
  .c-card-news--featured-pdf > figure img,
  .c-card-news--featured-pdf > figure a img {
    height: 290px;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured-pdf > figure img,
  .c-card-news--featured-pdf > figure a img {
    height: 362px;
  }
}

.c-card-news--featured-pdf div > h2 a {
  color: #0069AA;
}

@media (min-width: 768px) {
  .c-card-news--featured-option-1 > div .o-button {
    margin-left: 0;
  }
}

.c-card-news--featured-option-2 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.c-card-news--featured-option-2 > figure,
.c-card-news--featured-option-2 > figure > a {
  min-width: 343px;
  min-height: 487px;
}

@media (min-width: 768px) {
  .c-card-news--featured-option-2 > figure,
  .c-card-news--featured-option-2 > figure > a {
    min-width: 208px;
    min-height: 295px;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured-option-2 > figure,
  .c-card-news--featured-option-2 > figure > a {
    min-width: 352px;
    min-height: 500px;
  }
}

.c-card-news--featured-option-2 > figure img,
.c-card-news--featured-option-2 > figure > a img {
  max-height: 487px;
  height: 487px;
}

@media (min-width: 768px) {
  .c-card-news--featured-option-2 > figure img,
  .c-card-news--featured-option-2 > figure > a img {
    max-height: 295px;
    height: 295px;
  }
}

@media (min-width: 1280px) {
  .c-card-news--featured-option-2 > figure img,
  .c-card-news--featured-option-2 > figure > a img {
    max-height: 500px;
    height: 500px;
  }
}

.c-card-news--featured-option-2 > div .eyebrow {
  color: #7CB135;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .c-card-news--featured-option-2 > div .eyebrow {
    margin-bottom: 16px;
  }
}

@media (max-width: 1023px) {
  .c-card-news--featured-option-2 > div p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
}

.c-card-news--featured-option-2 > div .o-button {
  margin-top: 12px;
  width: auto;
}

@media (min-width: 768px) {
  .c-card-news--featured-option-2 > div .o-button {
    margin-top: 16px;
  }
}

.c-card-news--invert-font > div > h2 a,
.c-card-news--invert-font > div > h3 a,
.c-card-news--invert-font > div > h4 a,
.c-search-bar .c-card-news--invert-font > div > input[type=text] a,
.c-card-news--invert-font > div > h5 a,
.c-card-groups.c-card-news--invert-font > div > h4 a,
.c-card-groups > div .c-search-bar .c-card-news--invert-font > div > input[type=text] a,
.c-search-bar .c-card-groups.c-card-news--invert-font > div > input[type=text] a,
.c-card-news--invert-font > div > h6 a {
  color: white;
}

.c-card-news--invert-font > div > h2 a:hover,
.c-card-news--invert-font > div > h3 a:hover,
.c-card-news--invert-font > div > h4 a:hover,
.c-search-bar .c-card-news--invert-font > div > input[type=text] a:hover,
.c-card-news--invert-font > div > h5 a:hover,
.c-card-groups.c-card-news--invert-font > div > h4 a:hover,
.c-card-groups > div .c-search-bar .c-card-news--invert-font > div > input[type=text] a:hover,
.c-search-bar .c-card-groups.c-card-news--invert-font > div > input[type=text] a:hover,
.c-card-news--invert-font > div > h6 a:hover {
  color: #44C2EA;
}

.c-card-news--invert-font > div > p,
.c-card-news--invert-font > div > span,
.c-card-news--invert-font > div > span.published span {
  color: #E2E6E9;
}

.c-card-news--invert-font .o-button--secondary {
  color: white;
  border: 1px white solid;
}

.c-card-news--invert-font .o-button--secondary:hover {
  border-color: #44C2EA;
  color: #44C2EA;
}

.c-card-news--featured-pdf > div p {
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-card-news--featured-pdf > div p {
    font-size: 16px;
  }
}

.c-card-news--featured-pdf > div span.published {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-card-news--featured-pdf > div span.published {
    font-size: 16px;
  }
}

.c-card-news--featured-no-image > div > span.published {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-card-news--featured-no-image > div > span.published {
    font-size: 16px;
  }
}

.c-card-news--has-cta > figure {
  max-width: none;
}

.c-card-news--has-cta > div {
  max-width: none;
  padding-bottom: 0;
}

.c-card-news--has-cta > div > h4, .c-search-bar .c-card-news--has-cta > div > input[type=text] {
  color: #0069AA;
}

.c-card-news--featured-pdf-home {
  max-width: none !important;
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .c-card-news--featured-pdf-home {
    margin-bottom: 0;
  }
}

.c-card-news--featured-pdf-home > div {
  margin-left: 0;
}

.c-card-news--newsroom > div {
  max-width: none;
}

.c-card-news--newsroom > div > h4, .c-search-bar .c-card-news--newsroom > div > input[type=text] {
  color: #0069AA;
}

.c-card-news--newsroom > div > span {
  color: #414D58 !important;
}

.c-card-news--newsroom > div > span > span {
  color: #6C8093 !important;
}

.c-card-news--newsroom-list > figure {
  max-width: none;
}

.c-card-news--newsroom-list > figure > img,
.c-card-news--newsroom-list > figure > a > img {
  max-height: 173px;
  min-height: 173px;
}

@media (min-width: 1280px) {
  .c-card-news--newsroom-list > figure > img,
  .c-card-news--newsroom-list > figure > a > img {
    max-height: 180px;
    min-height: 180px;
  }
}

.c-card-news--no-image > div {
  padding: 0 16px;
}

.c-card-news--default-btn > div a {
  margin-top: 0;
}

.c-card-news--magazine > div > span {
  color: #E2E6E9 !important;
}

.c-card-news--magazine > div > span > span {
  color: #A7B3BE !important;
}

.c-card-news .o-button--primary {
  color: #ffffff;
}

.c-card-news .o-button--primary:hover {
  color: #ffffff;
}

.c-card-reports {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #E7E7E7;
  border-radius: 2px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (min-width: 768px) {
  .c-card-reports {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .c-card-reports {
    padding: 24px 32px;
  }
}

.c-card-reports:hover {
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
}

.c-card-reports > div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-card-reports > div small {
  color: #7CB135;
  display: block;
  margin-bottom: 8px;
}

.c-card-reports > div h3 {
  color: #0069AA;
  margin: 0 0 16px 0;
}

@media (min-width: 1280px) {
  .c-card-reports > div h3 {
    margin: 0 0 8px 0;
  }
}

.c-card-reports > div h3 a {
  color: #0069AA;
}

.c-card-reports > div h3 a:visited {
  color: #0069AA;
}

.c-card-reports > div h3 a:hover {
  color: #44C2EA;
}

.c-card-reports > div h4, .c-card-reports > div .c-search-bar input[type=text], .c-search-bar .c-card-reports > div input[type=text], .c-card-reports > div .c-mobile-dropdown > ul > li > a {
  color: #0069AA;
  margin: 0 0 12px 0;
}

@media (min-width: 1280px) {
  .c-card-reports > div h4, .c-card-reports > div .c-search-bar input[type=text], .c-search-bar .c-card-reports > div input[type=text], .c-card-reports > div .c-mobile-dropdown > ul > li > a {
    margin: 0 0 16px 0;
  }
}

.c-card-reports > div h4 a, .c-card-reports > div .c-search-bar input[type=text] a, .c-search-bar .c-card-reports > div input[type=text] a, .c-card-reports > div .c-mobile-dropdown > ul > li > a a {
  color: #0069AA;
}

.c-card-reports > div h4 a:visited, .c-card-reports > div .c-search-bar input[type=text] a:visited, .c-search-bar .c-card-reports > div input[type=text] a:visited, .c-card-reports > div .c-mobile-dropdown > ul > li > a a:visited {
  color: #0069AA;
}

.c-card-reports > div h4 a:hover, .c-card-reports > div .c-search-bar input[type=text] a:hover, .c-search-bar .c-card-reports > div input[type=text] a:hover, .c-card-reports > div .c-mobile-dropdown > ul > li > a a:hover {
  color: #44C2EA;
}

.c-card-reports > div h6, .c-card-reports > div .c-card-statistics h2 > span, .c-card-statistics .c-card-reports > div h2 > span, .c-card-reports > div .c-mobile-dropdown > ul > li > ul > li > a {
  color: #0069AA;
  margin: 0 0 12px 0;
}

@media (min-width: 1280px) {
  .c-card-reports > div h6, .c-card-reports > div .c-card-statistics h2 > span, .c-card-statistics .c-card-reports > div h2 > span, .c-card-reports > div .c-mobile-dropdown > ul > li > ul > li > a {
    margin: 0 0 16px 0;
  }
}

.c-card-reports > div h6 a, .c-card-reports > div .c-card-statistics h2 > span a, .c-card-statistics .c-card-reports > div h2 > span a, .c-card-reports > div .c-mobile-dropdown > ul > li > ul > li > a a {
  color: #0069AA;
}

.c-card-reports > div h6 a:visited, .c-card-reports > div .c-card-statistics h2 > span a:visited, .c-card-statistics .c-card-reports > div h2 > span a:visited, .c-card-reports > div .c-mobile-dropdown > ul > li > ul > li > a a:visited {
  color: #0069AA;
}

.c-card-reports > div h6 a:hover, .c-card-reports > div .c-card-statistics h2 > span a:hover, .c-card-statistics .c-card-reports > div h2 > span a:hover, .c-card-reports > div .c-mobile-dropdown > ul > li > ul > li > a a:hover {
  color: #44C2EA;
}

.c-card-reports > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.c-card-reports > div > div > p {
  margin: 0 0 16px 0;
}

.c-card-reports > div > div > figure {
  height: 117px;
}

.c-card-reports > div > div > img {
  width: 78px;
  margin-left: 24px;
  height: 117px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 768px) {
  .c-card-reports > div > div > img {
    display: none;
  }
}

.c-card-reports > div > span {
  line-height: 140%;
  margin: 0 0 12px 0;
  color: #6C8093;
  margin-bottom: 16px;
  display: inline-block;
}

.c-card-reports > div > span > span {
  color: #414D58;
}

.c-card-reports > div > address {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #2B333B;
  margin: 8px 0 21px;
}

@media (min-width: 1280px) {
  .c-card-reports > div > address {
    margin: 11px 0 21px;
    font-size: 16px;
  }
}

.c-card-reports > div > address > img {
  position: relative;
  top: 3px;
}

.c-card-reports > div > a {
  text-align: left;
}

@media (min-width: 1280px) {
  .c-card-reports > div > a {
    width: auto;
    margin-top: auto;
  }
}

.c-card-reports figure {
  max-width: 80px;
  width: 100%;
  max-height: 117px;
  margin-left: auto;
}

.c-card-reports figure > img,
.c-card-reports figure > a > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  display: inline-block;
}

.c-card-reports--featured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  border-radius: 0;
}

.c-card-reports--featured:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-card-reports--featured > div {
  display: block;
}

@media (min-width: 768px) {
  .c-card-reports--featured > div {
    margin-right: 24px;
  }
}

.c-card-reports--featured > div > a {
  margin-top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .c-card-reports--featured > div > a {
    width: auto;
  }
}

.c-card-reports--featured > div > div > figure,
.c-card-reports--featured > div > div > figure > img,
.c-card-reports--featured > div > div > figure > a > img {
  width: 78px;
  height: 108px;
}

@media (min-width: 768px) {
  .c-card-reports--featured > div > div > figure,
  .c-card-reports--featured > div > div > figure > img,
  .c-card-reports--featured > div > div > figure > a > img {
    display: none;
  }
}

.c-card-reports--featured > div > div > figure > a {
  display: block;
}

@media (min-width: 768px) {
  .c-card-reports--featured > div > div > figure > a {
    display: none;
  }
}

.c-card-reports--featured > figure {
  max-width: 78px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: none;
  max-height: 100%;
}

@media (min-width: 768px) {
  .c-card-reports--featured > figure {
    display: block;
    max-width: 241px;
  }
}

@media (min-width: 1280px) {
  .c-card-reports--featured > figure {
    max-width: 230px;
  }
}

@media (min-width: 768px) {
  .c-card-reports--featured > figure img,
  .c-card-reports--featured > figure a img {
    height: 372px;
  }
}

@media (min-width: 1280px) {
  .c-card-reports--featured > figure img,
  .c-card-reports--featured > figure a img {
    height: 374px;
  }
}

.c-card-reports--featured > figure a {
  display: block;
}

.c-card-reports--nav {
  border: 0;
  padding: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 32px !important;
}

.c-card-reports--nav > figure {
  margin-left: 0;
  max-width: 80px;
  margin-right: 16px;
}

.c-card-reports--nav > figure > img,
.c-card-reports--nav > figure > a > img {
  max-height: 116px;
}

.c-card-reports--nav > figure > a {
  display: block;
}

.c-card-reports--nav > div > .o-button {
  text-align: left;
  display: block;
  font-size: 12px;
  margin-top: auto;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .c-card-reports--nav > div > .o-button {
    font-size: 14px;
  }
}

.c-card-reports--nav > div > h4, .c-search-bar .c-card-reports--nav > div > input[type=text] {
  font-size: 20px;
}

.c-card-reports--nav:hover {
  border: transparent solid 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-card-reports--featured-resources > div > span {
  display: block;
}

@media (min-width: 768px) {
  .c-card-reports--featured-resources > div > span {
    margin-bottom: 19px;
  }
}

@media (min-width: 1280px) {
  .c-card-reports--featured-resources > div > span {
    margin-bottom: 21px;
  }
}

.c-card-reports--featured-resources > div > a {
  width: auto;
}

@media (min-width: 768px) {
  .c-card-reports--featured-resources-option-1 > figure {
    max-height: 372px;
  }
}

@media (min-width: 1280px) {
  .c-card-reports--featured-resources-option-1 > figure {
    max-width: 256px;
    max-height: 374px;
  }
}

.c-card-organization {
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .c-card-organization {
    margin: 0 auto 24px;
  }
}

@media (min-width: 1024px) {
  .c-card-organization {
    max-width: 928px;
    margin: 0 auto 24px;
  }
}

@media (min-width: 1280px) {
  .c-card-organization {
    margin: 0 auto 48px;
  }
}

.c-card-organization > .c-col-2 > div {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-card-organization > .c-col-2 > div {
    margin-bottom: 32px;
  }
}

.c-card-organization__content:not(:first-child) {
  margin-top: 16px;
}

@media (min-width: 1280px) {
  .c-card-organization__content:not(:first-child) {
    margin-top: 24px;
  }
}

.c-card-organization__content h3 {
  color: #003F57;
  font-size: 24.192px;
  line-height: 31px;
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .c-card-organization__content h3 {
    margin: 0 0 16px;
    line-height: 35px;
    font-size: 27px;
  }
}

@media (min-width: 1280px) {
  .c-card-organization__content h3 {
    line-height: 49px;
    font-size: 38px;
  }
}

.c-card-organization__content p {
  color: #2B333B;
  margin: 0 0 32px;
  max-width: 640px;
}

.c-card-organization__tree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.c-card-organization__container {
  padding: 24px 24px 16px;
  border: 1px solid #E2E6E9;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  margin: 0 0 24px 0;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .c-card-organization__container {
    margin: 0 0 32px 0;
  }
}

@media (min-width: 1024px) {
  .c-card-organization__container {
    max-width: 448px;
  }
}

.c-card-organization__container figure {
  max-height: 100%;
}

.c-card-organization__container figure img {
  border-radius: 100px;
  width: 72px;
  height: 72px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 24px;
}

.c-card-organization__container h5, .c-card-organization__container .c-card-groups > div h4, .c-card-groups > div .c-card-organization__container h4, .c-card-organization__container .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-organization__container input[type=text], .c-card-organization__container .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-organization__container input[type=text], .c-card-organization__container .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-organization__container .c-mobile-dropdown > ul > li > a {
  font-size: 17px;
  line-height: 22px;
  text-transform: capitalize;
  color: #004875;
  margin: 0 0 4px;
  width: 100%;
  max-width: 270px;
}

@media (min-width: 768px) {
  .c-card-organization__container h5, .c-card-organization__container .c-card-groups > div h4, .c-card-groups > div .c-card-organization__container h4, .c-card-organization__container .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-organization__container input[type=text], .c-card-organization__container .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-organization__container input[type=text], .c-card-organization__container .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-organization__container .c-mobile-dropdown > ul > li > a {
    font-size: 19px;
    line-height: 25px;
    margin: 0 0 7px;
  }
}

@media (min-width: 1280px) {
  .c-card-organization__container h5, .c-card-organization__container .c-card-groups > div h4, .c-card-groups > div .c-card-organization__container h4, .c-card-organization__container .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-organization__container input[type=text], .c-card-organization__container .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-organization__container input[type=text], .c-card-organization__container .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-organization__container .c-mobile-dropdown > ul > li > a {
    font-size: 21px;
    line-height: 28px;
  }
}

.c-card-organization__container span {
  color: #2B333B;
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  max-width: 270px;
}

.c-card-organization__container span:last-child {
  color: #6C8093;
}

@media (min-width: 768px) {
  .c-card-organization__container span {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
  }
}

.c-card-organization__info {
  max-width: 270px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-card-press-release {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  border-bottom: 1px #E2E6E9 solid;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .c-card-press-release {
    padding-bottom: 32px;
  }
}

.c-card-press-release-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 16px;
}

@media (min-width: 768px) {
  .c-card-press-release-content {
    margin-right: 24px;
  }
}

.c-card-press-release-content > h4, .c-search-bar .c-card-press-release-content > input[type=text], .c-mobile-dropdown > ul > li.c-card-press-release-content > a,
.c-card-press-release-content > h6,
.c-card-statistics h2.c-card-press-release-content > span,
.c-mobile-dropdown > ul > li > ul > li.c-card-press-release-content > a {
  color: #0069AA;
  margin: 0 0 8px 0;
}

.c-card-press-release-content > h4 a, .c-search-bar .c-card-press-release-content > input[type=text] a, .c-mobile-dropdown > ul > li.c-card-press-release-content > a a,
.c-card-press-release-content > h6 a,
.c-card-statistics h2.c-card-press-release-content > span a,
.c-mobile-dropdown > ul > li > ul > li.c-card-press-release-content > a a {
  color: #0069AA;
}

.c-card-press-release-content > h4 a:hover, .c-search-bar .c-card-press-release-content > input[type=text] a:hover, .c-mobile-dropdown > ul > li.c-card-press-release-content > a a:hover,
.c-card-press-release-content > h6 a:hover,
.c-card-statistics h2.c-card-press-release-content > span a:hover,
.c-mobile-dropdown > ul > li > ul > li.c-card-press-release-content > a a:hover {
  color: #44C2EA;
}

.c-card-press-release-content > p {
  margin: 0 0 16px 0;
}

.c-card-press-release-content > a {
  margin-top: auto;
}

.c-card-press-release-content > span {
  display: block;
  margin: 0 0 16px 0;
  color: #6C8093;
}

.c-card-press-release-content > span > span {
  color: #414D58;
}

.c-card-press-release-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #414D58;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E6E9;
}

@media (min-width: 768px) {
  .c-card-press-release-contact {
    padding-bottom: 32px;
  }
}

.c-card-press-release-contact__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-card-press-release-contact__info h5, .c-card-press-release-contact__info .c-card-groups > div h4, .c-card-groups > div .c-card-press-release-contact__info h4, .c-card-press-release-contact__info .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-press-release-contact__info input[type=text], .c-card-press-release-contact__info .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-press-release-contact__info input[type=text], .c-card-press-release-contact__info .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-press-release-contact__info .c-mobile-dropdown > ul > li > a {
  color: #004875;
}

.c-card-press-release-contact__info h4, .c-card-press-release-contact__info .c-search-bar input[type=text], .c-search-bar .c-card-press-release-contact__info input[type=text], .c-card-press-release-contact__info .c-mobile-dropdown > ul > li > a,
.c-card-press-release-contact__info h6,
.c-card-press-release-contact__info .c-card-statistics h2 > span,
.c-card-statistics .c-card-press-release-contact__info h2 > span,
.c-card-press-release-contact__info .c-mobile-dropdown > ul > li > ul > li > a {
  color: #004875;
  margin: 0 0 8px 0;
}

.c-card-press-release-contact__info p {
  margin: 0 0 16px 0;
  max-width: 301px;
  font-size: 14px;
  color: #414D58;
}

@media (min-width: 768px) {
  .c-card-press-release-contact__info p {
    font-size: 16px;
  }
}

.c-card-press-release-contact__info p:first-of-type {
  font-weight: bold;
  max-width: 100%;
  letter-spacing: 0.05em;
  color: #414D58;
}

.c-card-press-release-contact__info span {
  display: block;
}

.c-card-press-release-contact__info span > span {
  display: none;
}

@media (min-width: 768px) {
  .c-card-press-release-contact__info span > span {
    display: inline;
  }
}

.c-card-press-release-contact__info span > a {
  color: #0069AA;
  word-break: break-all;
}

.c-card-press-release-contact__info span > a:hover {
  color: #44C2EA;
}

.c-card-press-release-contact__info-country {
  color: #6C8093;
  text-transform: capitalize;
  font-weight: bold;
}

.c-card-press-release-contact figure {
  max-width: 96px;
  width: 100%;
  margin: 0 24px 0 0;
}

@media (min-width: 768px) {
  .c-card-press-release-contact figure {
    max-width: 120px;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .c-card-press-release-contact figure {
    max-width: 170px;
    margin: 0 29px 0 0;
  }
}

.c-card-press-release-contact figure img {
  width: 100%;
  display: block;
  max-height: 134px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .c-card-press-release-contact figure img {
    height: 168px;
  }
}

@media (min-width: 1024px) {
  .c-card-press-release-contact figure img {
    height: 238px;
  }
}

.c-card-press-release-contact figure img.contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.c-card-press-release-contact--team {
  border: 1px solid #E2E6E9;
  padding: 16px;
  width: 100%;
}

@media (min-width: 1024px) {
  .c-card-press-release-contact--team {
    padding: 24px;
    width: 47%;
    margin: 0 12px;
  }
}

.c-card-press-release-contact--team > figure {
  width: 96px;
  height: 100%;
}

@media (min-width: 768px) {
  .c-card-press-release-contact--team > figure {
    width: 120px;
  }
}

.c-card-press-release-contact--team > figure img {
  max-height: 134px;
  width: 96px;
}

@media (min-width: 768px) {
  .c-card-press-release-contact--team > figure img {
    max-height: 150px;
  }
}

@media (min-width: 1024px) {
  .c-card-press-release-contact--team > figure img {
    max-height: 168px;
    width: 120px;
  }
}

.c-card-press-release-contact--team p:first-of-type {
  margin-bottom: 8px;
}

.c-card-press-release-contact--team .country {
  color: #6C8093;
  font-weight: bold;
  margin-bottom: 8px;
}

.c-card-press-release > figure {
  margin: 0 0 0 auto;
  padding: 0;
  max-height: 100%;
}

@media (min-width: 768px) {
  .c-card-press-release > figure {
    margin: 0 0 0 auto;
  }
}

.c-card-press-release > figure > img,
.c-card-press-release > figure > a > img {
  max-height: 80px;
  max-width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .c-card-press-release > figure > img,
  .c-card-press-release > figure > a > img {
    max-height: 100px;
    max-width: 133.33px;
  }
}

@media (min-width: 768px) {
  .c-card-press-release > figure > img,
  .c-card-press-release > figure > a > img {
    max-height: 150px;
    max-width: 200px;
  }
}

.c-card-press-release > figure > a {
  display: block;
}

.c-card-press-release--slim-img figure img,
.c-card-press-release--slim-img figure a img {
  width: 80px;
  height: 80px;
}

@media (min-width: 768px) {
  .c-card-press-release--slim-img figure img,
  .c-card-press-release--slim-img figure a img {
    width: 84px;
    height: 100px;
  }
}

@media (min-width: 1280px) {
  .c-card-press-release--slim-img figure img,
  .c-card-press-release--slim-img figure a img {
    width: 100px;
    height: 136px;
  }
}

.c-card-press-release--slim-img .c-card-press-release-content span {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-card-press-release--slim-img .c-card-press-release-content span {
    font-size: 16px;
  }
}

.c-card-statistics {
  max-width: 260px;
  text-align: center;
  display: inline-block;
}

.c-card-statistics h2 {
  color: #0069AA;
  margin-bottom: 8px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (min-width: 768px) {
  .c-card-statistics h2 {
    margin-bottom: 13px;
  }
}

.c-card-statistics h2::first-letter {
  color: #7CB135;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.c-card-statistics h2 > span {
  color: #0069AA;
}

.c-card-statistics p {
  color: #0069AA;
}

.c-card-statistics:hover h2::first-letter, .c-card-statistics:hover h2, .c-card-statistics:hover p, .c-card-statistics:hover span {
  color: #44C2EA;
}

.c-card-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  max-width: 355px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-card-video {
    margin-bottom: 32px;
  }
}

.c-card-video > div > h5, .c-card-groups.c-card-video > div > h4, .c-card-groups > div .c-search-bar .c-card-video > div > input[type=text], .c-search-bar .c-card-groups.c-card-video > div > input[type=text],
.c-card-video > div > h6 {
  color: #0069AA;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .c-card-video > div > h5, .c-card-groups.c-card-video > div > h4, .c-card-groups > div .c-search-bar .c-card-video > div > input[type=text], .c-search-bar .c-card-groups.c-card-video > div > input[type=text],
  .c-card-video > div > h6 {
    margin-bottom: 16px;
  }
}

.c-card-video > figure {
  max-width: 355px;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
}

.c-card-video > figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #6C8093;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}

.c-card-video > figure::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("/wp-content/themes/igu/src/images/icons/video-play.svg");
  background-size: 50px;
  width: 50px;
  height: 50px;
  display: block;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

@media (min-width: 768px) {
  .c-card-video > figure::after {
    background-size: 80px;
    width: 80px;
    height: 80px;
  }
}

.c-card-video > figure:hover::after {
  background-image: url("/wp-content/themes/igu/src/images/icons/hover-video-play.svg");
}

.c-card-video > figure img {
  width: 100%;
  max-height: 198px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-card-video > figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  background-color: #7CB135;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  height: 32px;
  width: 71px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-card-video > div > span.published {
  line-height: 140%;
  margin: auto 0 0px 0;
  color: #6C8093;
  font-weight: normal;
  display: block;
}

.c-card-video > div > span.published > span {
  color: #414D58;
}

.c-card-video--featured {
  max-width: 100%;
}

.c-card-video--featured > figure {
  max-width: 100%;
  margin-bottom: 0px;
}

.c-card-video--featured > figure img {
  max-height: 202px;
}

@media (min-width: 768px) {
  .c-card-video--featured > figure img {
    max-height: 400px;
  }
}

.c-card-video--featured > div > h3 {
  color: #0069AA;
}

.c-card-video--featured > div > span.published {
  margin-top: 8px;
  display: inline-block;
  font-weight: normal;
  color: #E2E6E9 !important;
}

.c-card-video--featured > div > span.published > span {
  color: #A7B3BE !important;
}

@media (min-width: 768px) {
  .c-card-video--featured > div > span.published {
    margin-top: 16px;
  }
}

.c-card-video--related {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  max-width: 100%;
}

@media (min-width: 768px) {
  .c-card-video--related {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

.c-card-video--related > div {
  margin-left: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 768px) {
  .c-card-video--related > div {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-card-video--related > div h5, .c-card-video--related > div .c-card-groups > div h4, .c-card-groups > div .c-card-video--related > div h4, .c-card-video--related > div .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-video--related > div input[type=text], .c-card-video--related > div .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-video--related > div input[type=text], .c-card-video--related > div .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-video--related > div .c-mobile-dropdown > ul > li > a {
  margin-right: 0 !important;
}

.c-card-video--related > div > span {
  display: none;
  color: #C7C7C7;
}

@media (min-width: 768px) {
  .c-card-video--related > div > span {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  .c-card-video--related > div > span {
    margin-bottom: 16px;
    font-size: 16px;
  }
}

.c-card-video--related > div > span > span {
  color: #A7B3BE !important;
}

.c-card-video--related > div > span.duration {
  background-color: #7CB135;
  padding: 7px 8px;
  color: white;
  display: inline-block;
  line-height: 14px;
}

@media (min-width: 768px) {
  .c-card-video--related > div > span.duration {
    display: none;
  }
}

.c-card-video--related > figure {
  width: 100px;
  height: 100px;
}

@media (min-width: 768px) {
  .c-card-video--related > figure {
    width: 100%;
    max-width: 262px;
    height: 198px;
  }
}

.c-card-video--related > figure::after {
  background-size: 50px;
  width: 50px;
  height: 50px;
}

@media (min-width: 1280px) {
  .c-card-video--related > figure::after {
    background-size: 80px;
    width: 80px;
    height: 80px;
  }
}

.c-card-video--related > figure figcaption {
  display: none;
}

@media (min-width: 768px) {
  .c-card-video--related > figure figcaption {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.c-card-video--related > figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100px;
}

@media (min-width: 768px) {
  .c-card-video--related > figure img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .c-card-video--related-home figure::after {
    background-size: 80px;
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 768px) {
  .c-card-video--align-publish {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

.c-card-video--align-publish > div {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 768px) {
  .c-card-video--align-publish > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-card-presentations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
}

@media (min-width: 768px) {
  .c-card-presentations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
}

.c-card-presentations > figure {
  margin: 0;
  width: 100%;
  margin-bottom: 16px;
  max-width: 100px;
  margin-right: 16px;
}

@media (min-width: 768px) {
  .c-card-presentations > figure {
    max-width: 100%;
    margin-right: 0px;
  }
}

.c-card-presentations > figure > img,
.c-card-presentations > figure > a > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
  max-height: 171.5px;
  height: 100%;
}

@media (min-width: 768px) {
  .c-card-presentations > figure > img,
  .c-card-presentations > figure > a > img {
    max-height: 240px;
  }
}

@media (min-width: 1280px) {
  .c-card-presentations > figure > img,
  .c-card-presentations > figure > a > img {
    max-height: 322px;
  }
}

.c-card-presentations > figure > a {
  display: block;
}

.c-card-presentations > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-card-presentations > div > h3,
.c-card-presentations > div > h4,
.c-search-bar .c-card-presentations > div > input[type=text] {
  color: #0069AA;
  margin-bottom: 4px;
  margin-top: 0;
}

.c-card-presentations > div > h3 a,
.c-card-presentations > div > h4 a,
.c-search-bar .c-card-presentations > div > input[type=text] a {
  color: #0069AA;
}

.c-card-presentations > div > h3 a:hover,
.c-card-presentations > div > h4 a:hover,
.c-search-bar .c-card-presentations > div > input[type=text] a:hover {
  color: #44C2EA;
}

.c-card-presentations > div > h6 {
  color: #0069AA;
  margin-bottom: 4px;
  margin-top: 0;
}

.c-card-presentations > div > h6 a {
  color: #0069AA;
}

.c-card-presentations > div > h6 a:hover {
  color: #44C2EA;
}

.c-card-presentations > div > p {
  margin: 0 0 16px 0;
  font-size: 14px;
  color: #414D58;
}

@media (min-width: 768px) {
  .c-card-presentations > div > p {
    font-size: 16px;
  }
}

.c-card-presentations > div > span {
  margin: 0;
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-card-presentations > div > span {
    font-size: 16px;
  }
}

.c-card-presentations > div > span > .author {
  color: #6C8093;
}

.c-card-presentations > div > a {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.c-card-presentations > div > span.published {
  line-height: 140%;
  margin: 0 0 12px 0;
  color: #6C8093;
}

.c-card-presentations > div > span.published > span {
  color: #414D58;
}

.c-card-presentations--clickable > div > h4 > a, .c-search-bar .c-card-presentations--clickable > div > input[type=text] > a {
  color: #0069AA;
}

.c-card-presentations--has-image > figure > img,
.c-card-presentations--has-image > figure > a > img {
  max-height: 100px;
  min-height: 100px;
}

@media (min-width: 768px) {
  .c-card-presentations--has-image > figure > img,
  .c-card-presentations--has-image > figure > a > img {
    max-height: 247px;
    min-height: 247px;
  }
}

.c-card-membership {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-card-membership > div h3 {
  color: #0069AA;
  margin-bottom: 16px;
}

.c-card-membership > div .o-button {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .c-card-membership > div .o-button {
    margin-top: 24px;
  }
}

.c-card-membership > div span, .c-card-membership > div address {
  display: block;
}

.c-card-membership > div span img, .c-card-membership > div address img {
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 3px;
}

.c-card-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  padding-left: 32px;
  padding-right: 32px;
}

@media (min-width: 768px) {
  .c-card-quote {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    padding: 0;
  }
}

.c-card-quote > .c-card-quote-content {
  position: relative;
}

.c-card-quote > .c-card-quote-content::before {
  content: "";
  background-image: url("/wp-content/themes/igu/src/images/icons/quote.icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40px;
  height: 35px;
  display: block;
  z-index: -1;
}

@media (min-width: 768px) {
  .c-card-quote > .c-card-quote-content::before {
    top: -15px;
    left: -21px;
  }
}

@media (min-width: 1280px) {
  .c-card-quote > .c-card-quote-content::before {
    top: -25px;
    left: -35px;
    width: 70px;
    height: 60px;
  }
}

.c-card-quote > .c-card-quote-content h5, .c-card-quote > .c-card-quote-content .c-card-groups > div h4, .c-card-groups > div .c-card-quote > .c-card-quote-content h4, .c-card-quote > .c-card-quote-content .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-quote > .c-card-quote-content input[type=text], .c-card-quote > .c-card-quote-content .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-quote > .c-card-quote-content input[type=text], .c-card-quote > .c-card-quote-content .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-quote > .c-card-quote-content .c-mobile-dropdown > ul > li > a {
  color: #004875;
  max-width: 505px;
}

.c-card-quote > .c-card-quote-content > .member-info {
  margin-top: 20px;
  display: none;
}

@media (min-width: 768px) {
  .c-card-quote > .c-card-quote-content > .member-info {
    display: block;
  }
}

.c-card-quote > .c-card-quote-content > .member-info > b {
  color: #2B333B;
  display: block;
}

.c-card-quote > .c-card-quote-content > .member-info {
  color: #414D58;
}

.c-card-quote > figure {
  display: none;
}

@media (min-width: 768px) {
  .c-card-quote > figure {
    display: block;
  }
}

.c-card-quote figure {
  max-width: 56px;
  width: 100%;
  border-radius: 100%;
  margin-right: 0px;
}

@media (min-width: 768px) {
  .c-card-quote figure {
    max-width: 108px;
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .c-card-quote figure {
    max-width: 171px;
    margin-right: 60px;
  }
}

.c-card-quote figure img {
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 56px;
  width: 100%;
}

@media (min-width: 768px) {
  .c-card-quote figure img {
    height: 108px;
  }
}

@media (min-width: 1280px) {
  .c-card-quote figure img {
    height: 171px;
  }
}

.c-card-quote-content-mobile {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

@media (min-width: 768px) {
  .c-card-quote-content-mobile {
    display: none;
  }
}

.c-card-quote-content-mobile > figure {
  margin-right: 16px;
}

.c-card-quote-content-mobile > .member-info * {
  display: block;
}

.c-card-quote--news > .c-card-quote-content {
  border: solid 1px #E2E6E9;
  padding-top: 69px;
  padding-bottom: 43px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .c-card-quote--news > .c-card-quote-content {
    padding-top: 61px;
    padding-bottom: 55px;
  }
}

@media (min-width: 1280px) {
  .c-card-quote--news > .c-card-quote-content {
    padding-top: 69px;
    padding-bottom: 47px;
  }
}

.c-card-quote--news > .c-card-quote-content::before {
  width: 51px;
  height: 41px;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.c-card-quote--news > .c-card-quote-content > div {
  margin: 0 auto;
  padding: 0 29px;
}

@media (min-width: 768px) {
  .c-card-quote--news > .c-card-quote-content > div {
    max-width: 559px;
    padding: 0;
  }
}

@media (min-width: 1280px) {
  .c-card-quote--news > .c-card-quote-content > div {
    max-width: 746px;
  }
}

.c-card-quote--news > .c-card-quote-content h6, .c-card-quote--news > .c-card-quote-content .c-card-statistics h2 > span, .c-card-statistics .c-card-quote--news > .c-card-quote-content h2 > span, .c-card-quote--news > .c-card-quote-content .c-mobile-dropdown > ul > li > ul > li > a {
  color: #0069AA;
}

.c-card-quote--news > .c-card-quote-content .member-info {
  color: #414D58;
  font-size: 14px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .c-card-quote--news > .c-card-quote-content .member-info {
    margin-top: 32px;
  }
}

.c-card-quote--news > .c-card-quote-content .member-info .name {
  font-family: "Tiempos Headline", sans-serif;
  font-weight: normal;
}

.c-card-quote--narrow-928 {
  max-width: 928px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .c-card-quote--narrow-928 {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1024px) {
  .c-card-quote--narrow-928 {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-card-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.c-card-search-content h4, .c-card-search-content .c-search-bar input[type=text], .c-search-bar .c-card-search-content input[type=text], .c-card-search-content .c-mobile-dropdown > ul > li > a,
.c-card-search-content h6,
.c-card-search-content .c-card-statistics h2 > span,
.c-card-statistics .c-card-search-content h2 > span,
.c-card-search-content .c-mobile-dropdown > ul > li > ul > li > a {
  color: #0069AA;
  margin-bottom: 4px;
  margin-top: 8px;
}

.c-card-search-content h4 a, .c-card-search-content .c-search-bar input[type=text] a, .c-search-bar .c-card-search-content input[type=text] a, .c-card-search-content .c-mobile-dropdown > ul > li > a a,
.c-card-search-content h6 a,
.c-card-search-content .c-card-statistics h2 > span a,
.c-card-statistics .c-card-search-content h2 > span a,
.c-card-search-content .c-mobile-dropdown > ul > li > ul > li > a a {
  color: #0069AA;
}

.c-card-search-content h4 a:hover, .c-card-search-content .c-search-bar input[type=text] a:hover, .c-search-bar .c-card-search-content input[type=text] a:hover, .c-card-search-content .c-mobile-dropdown > ul > li > a a:hover,
.c-card-search-content h6 a:hover,
.c-card-search-content .c-card-statistics h2 > span a:hover,
.c-card-statistics .c-card-search-content h2 > span a:hover,
.c-card-search-content .c-mobile-dropdown > ul > li > ul > li > a a:hover {
  color: #44C2EA;
}

.c-card-search-content .eyebrow-sm, .c-card-search-content .o-input__label {
  color: #6C8093;
}

.c-card-search > figure {
  max-width: 85px;
  width: 100%;
  margin-left: 16px;
}

@media (min-width: 768px) {
  .c-card-search > figure {
    max-width: 164px;
    margin-left: 24px;
  }
}

.c-card-search > figure img,
.c-card-search > figure a img {
  max-height: 80px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .c-card-search > figure img,
  .c-card-search > figure a img {
    max-height: 120px;
  }
}

.c-card-search > figure a {
  display: block;
}

.c-card-search--has-image > .c-card-search-content, .c-card-search--has-video > .c-card-search-content {
  width: 100%;
}

.c-card-search .c-card-video > .c-card-search-content {
  width: 100%;
}

.c-card-search .c-card-video > figure {
  max-width: 85px;
  min-width: 85px;
  height: 80px;
  margin-left: 16px;
}

@media (min-width: 768px) {
  .c-card-search .c-card-video > figure {
    max-width: 164px;
    min-width: 164px;
    height: 120px;
    margin-left: 24px;
  }
}

.c-card-search .c-card-video > figure > img {
  width: 100%;
}

.c-card-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.c-card-nav > div {
  max-width: 356px;
}

.c-card-nav > div img {
  margin-right: 10px;
  -webkit-filter: invert(67%) sepia(100%) saturate(615%) hue-rotate(162deg) brightness(91%) contrast(101%);
          filter: invert(67%) sepia(100%) saturate(615%) hue-rotate(162deg) brightness(91%) contrast(101%);
}

.c-card-nav > figure {
  max-width: 453px;
}

.c-card-nav--membership > div {
  max-width: 337px;
}

.c-card-nav--membership > figure {
  max-width: 262px;
}

.c-card-nav--membership > figure img,
.c-card-nav--membership > figure a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.c-card-nav--membership > figure a {
  display: block;
}

.c-card-member {
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E6E9;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .c-card-member {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.c-card-member > .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  margin-top: 16px;
}

.c-card-member h5, .c-card-member .c-card-groups > div h4, .c-card-groups > div .c-card-member h4, .c-card-member .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-member input[type=text], .c-card-member .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-member input[type=text], .c-card-member .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-member .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 16px;
}

.c-card-member h6, .c-card-member .c-card-statistics h2 > span, .c-card-statistics .c-card-member h2 > span, .c-card-member .c-mobile-dropdown > ul > li > ul > li > a {
  color: #003F57;
}

.c-card-member strong {
  letter-spacing: 0.05em;
  color: #124875;
}

.c-card-newsroom {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.c-card-newsroom-intro {
  margin-right: 32px;
}

@media (max-width: 1023px) {
  .c-card-newsroom-intro {
    display: none;
  }
}

.c-card-newsroom-content {
  min-width: 351px;
}

@media (max-width: 1279px) {
  .c-card-newsroom-content {
    min-width: 206px;
  }
}

@media (max-width: 767px) {
  .c-card-newsroom-content {
    min-width: initial;
  }
}

.c-card-newsroom-content > figure {
  width: 100%;
  margin-bottom: 16px;
  max-width: 343px;
  max-height: 487px;
}

@media (min-width: 768px) {
  .c-card-newsroom-content > figure {
    max-width: 206px;
    max-height: 292px;
  }
}

@media (min-width: 1280px) {
  .c-card-newsroom-content > figure {
    max-width: 351px;
    max-height: 498px;
  }
}

.c-card-newsroom-content > figure a {
  display: block;
}

.c-card-newsroom-content > figure img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 487px;
  max-height: 487px;
}

@media (min-width: 768px) {
  .c-card-newsroom-content > figure img {
    min-height: 292px;
    max-height: 292px;
  }
}

@media (min-width: 1280px) {
  .c-card-newsroom-content > figure img {
    min-height: 498px;
    max-height: 498px;
  }
}

.c-card-newsroom-content > div .eyebrow,
.c-card-newsroom-content > div .eyebrow-sm,
.c-card-newsroom-content > div .o-input__label {
  color: #7CB135;
  margin-bottom: 12px;
}

.c-card-newsroom-content > div > h6 {
  color: #004875;
  margin-bottom: 2px;
}

.c-card-newsroom-content > div > h6 a {
  color: #0069AA;
}

.c-card-newsroom-content > div > h6 a:hover {
  color: #44C2EA;
}

.c-card-newsroom-content > div > p {
  color: #414D58;
}

.c-card-newsroom-content > div > .o-button {
  margin-top: 12px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .c-card-newsroom-content > div > .o-button {
    margin-bottom: 0;
  }
}

.c-card-groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  width: 100%;
}

.c-card-groups > div {
  padding: 32px 28px 32px 24px;
  border: 1px solid #E2E6E9;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  min-height: 301px;
  max-height: 359px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 768px) {
  .c-card-groups > div {
    min-height: 308px;
  }
}

@media (min-width: 1024px) {
  .c-card-groups > div {
    min-height: 359px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.c-card-groups > div .eyebrow-sm, .c-card-groups > div .o-input__label {
  color: #7CB135;
  margin: 0 0 8px;
}

@media (min-width: 1280px) {
  .c-card-groups > div .eyebrow-sm, .c-card-groups > div .o-input__label {
    margin: 0 0 12px;
  }
}

.c-card-groups > div .eyebrow-sm--priv {
  color: #6C8093;
  background: #E2E6E9;
  padding: 5px 16px 5px 18px;
  width: 81px;
  margin: 0 0 8px auto;
}

@media (min-width: 768px) {
  .c-card-groups > div .eyebrow-sm--priv {
    margin: 0 0 24px;
  }
}

@media (min-width: 768px) {
  .c-card-groups > div .eyebrow-sm--priv {
    margin: 0 0 8px auto;
  }
}

.c-card-groups > div h5, .c-card-groups > div h4, .c-card-groups > div .c-search-bar input[type=text], .c-search-bar .c-card-groups > div input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li > a {
  font-size: 17px;
  color: #004875;
  line-height: 22px;
  text-transform: capitalize;
  margin: 0 0 6px;
}

@media (min-width: 1280px) {
  .c-card-groups > div h5, .c-card-groups > div h4, .c-card-groups > div .c-search-bar input[type=text], .c-search-bar .c-card-groups > div input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li > a {
    font-size: 21px;
    line-height: 28px;
    margin: 0 0 2px;
  }
}

.c-card-groups > div h4, .c-card-groups > div .c-search-bar input[type=text], .c-search-bar .c-card-groups > div input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li > a {
  color: #0069AA;
  font-size: 20.16px;
  line-height: 26px;
}

@media (min-width: 768px) {
  .c-card-groups > div h4, .c-card-groups > div .c-search-bar input[type=text], .c-search-bar .c-card-groups > div input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li > a {
    font-size: 23px;
    line-height: 30px;
  }
}

@media (min-width: 1280px) {
  .c-card-groups > div h4, .c-card-groups > div .c-search-bar input[type=text], .c-search-bar .c-card-groups > div input[type=text], .c-card-groups > div .c-mobile-dropdown > ul > li > a {
    font-size: 27px;
    line-height: 35px;
  }
}

.c-card-groups > div p {
  margin: 0 0 12px 0;
  font-size: 14px;
}

@media (min-width: 1280px) {
  .c-card-groups > div p {
    margin: 0 0 16px 0;
    font-size: 16px;
  }
}

.c-card-groups > div span {
  display: block;
  color: #6C8093;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.03em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 1280px) {
  .c-card-groups > div span {
    font-size: 16px;
    line-height: 22px;
  }
}

.c-card-groups > div span time {
  color: #2B333B;
}

.c-card-groups > div .group-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-card-groups > div .group-cta a + a {
  margin: 0 0 0 24px;
}

@media (min-width: 1024px) {
  .c-card-groups > div .group-cta > a {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .c-card-groups > div .group-cta > a:nth-child(2) {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

.c-card-groups > p {
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 12px;
}

@media (min-width: 1280px) {
  .c-card-groups > p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 16px;
  }
}

.c-card-groups__content > p {
  margin: 0 0 12px 0;
  font-size: 14px;
}

@media (min-width: 1280px) {
  .c-card-groups__content > p {
    margin: 0 0 16px;
  }
}

.c-card-groups__content > span {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: 0 0 16px;
}

@media (min-width: 1280px) {
  .c-card-groups__content > span {
    margin: 0 0 24px;
  }
}

.c-card-groups--featured {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background: #F3F9FA;
  max-width: 1280px;
  margin: 0 auto 24px;
}

@media (min-width: 1280px) {
  .c-card-groups--featured {
    margin: 0 auto 48px;
  }
}

.c-card-groups--featured > div {
  border: none;
  padding: 16px;
  min-height: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0;
  width: 100%;
  max-height: 100%;
}

@media (min-width: 768px) {
  .c-card-groups--featured > div {
    padding: 24px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1280px) {
  .c-card-groups--featured > div {
    padding: 48px;
  }
}

.c-card-groups--featured > div > figure {
  margin: 0 0 16px 0;
  min-width: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .c-card-groups--featured > div > figure {
    margin: 0 24px 0 0;
    max-width: 241px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

@media (min-width: 1024px) {
  .c-card-groups--featured > div > figure {
    margin: 0 32px 0 0;
    max-width: 448px;
    max-height: 236px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.c-card-groups--featured > div > figure > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
  max-height: 218px;
  height: 100%;
  display: block;
}

@media (min-width: 768px) {
  .c-card-groups--featured > div > figure > img {
    max-width: 241px;
    min-height: 185px;
    max-height: 185px;
  }
}

@media (min-width: 1024px) {
  .c-card-groups--featured > div > figure > img {
    max-width: 448px;
    max-height: 236px;
  }
}

.c-card-groups--featured-empty {
  text-align: center;
  max-width: 544px;
  background-color: #ffffff;
  padding: 16px 0;
}

@media (min-width: 768px) {
  .c-card-groups--featured-empty {
    padding: 32px 0 56px;
  }
}

@media (min-width: 1280px) {
  .c-card-groups--featured-empty {
    padding-bottom: 80px;
  }
}

.c-card-groups--featured-empty h4, .c-card-groups--featured-empty .c-search-bar input[type=text], .c-search-bar .c-card-groups--featured-empty input[type=text], .c-card-groups--featured-empty .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .c-card-groups--featured-empty h4, .c-card-groups--featured-empty .c-search-bar input[type=text], .c-search-bar .c-card-groups--featured-empty input[type=text], .c-card-groups--featured-empty .c-mobile-dropdown > ul > li > a {
    margin-bottom: 2px;
  }
}

@media (min-width: 768px) {
  .c-card-groups--featured-empty p {
    margin: 0 0 24px;
  }
}

.c-card-groups--featured-empty a {
  margin: 0 auto;
}

.c-card-meetings h4, .c-card-meetings .c-search-bar input[type=text], .c-search-bar .c-card-meetings input[type=text], .c-card-meetings .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 6px;
}

@media (min-width: 1280px) {
  .c-card-meetings h4, .c-card-meetings .c-search-bar input[type=text], .c-search-bar .c-card-meetings input[type=text], .c-card-meetings .c-mobile-dropdown > ul > li > a {
    margin-bottom: 2px;
  }
}

.c-card-meetings h4 a, .c-card-meetings .c-search-bar input[type=text] a, .c-search-bar .c-card-meetings input[type=text] a, .c-card-meetings .c-mobile-dropdown > ul > li > a a {
  color: #0069AA;
}

.c-card-meetings h4 a:hover, .c-card-meetings .c-search-bar input[type=text] a:hover, .c-search-bar .c-card-meetings input[type=text] a:hover, .c-card-meetings .c-mobile-dropdown > ul > li > a a:hover {
  color: #44C2EA;
}

.c-card-meetings p {
  color: #2B333B;
  font-size: 14px;
}

@media (min-width: 1280px) {
  .c-card-meetings p {
    font-size: 16px;
  }
}

.c-card-meetings > span,
.c-card-meetings > address {
  color: #2B333B;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 8px;
  line-height: 140%;
}

@media (min-width: 768px) {
  .c-card-meetings > span,
  .c-card-meetings > address {
    margin-top: 14px;
  }
}

@media (min-width: 1280px) {
  .c-card-meetings > span,
  .c-card-meetings > address {
    font-size: 14px;
    font-weight: normal;
    margin-top: 16px;
    margin-bottom: 9px;
  }
}

.c-card-meetings > span img,
.c-card-meetings > address img {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 3px;
}

@media (min-width: 1280px) {
  .c-card-meetings > span img,
  .c-card-meetings > address img {
    margin-right: 10px;
  }
}

.c-card-meetings > span {
  letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
  .c-card-meetings > span {
    letter-spacing: 0;
  }
}

.c-card-meetings > address {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}

.c-card-meetings > div {
  margin-top: 18px;
}

@media (min-width: 768px) {
  .c-card-meetings > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1280px) {
  .c-card-meetings > div {
    margin-top: 24px;
  }
}

.c-card-meetings > div > div {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-card-meetings > div > div {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.c-card-meetings > div > div:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .c-card-meetings > div > div:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 20px;
  }
}

@media (min-width: 1280px) {
  .c-card-meetings > div > div:last-child {
    margin-right: 26px;
  }
}

.c-card-meetings > div .o-button--tertiary {
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-card-meetings > div .o-button--tertiary {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.c-card-meetings > div .o-button--secondary {
  font-size: 14px;
}

@media (min-width: 1280px) {
  .c-card-meetings > div .o-button--secondary {
    font-size: 16px;
  }
}

.c-card-meetings--past .published {
  color: #414D58;
  margin-top: 12px;
}

@media (min-width: 1280px) {
  .c-card-meetings--past .published {
    margin-top: 16px;
  }
}

.c-card-meetings--past .published span {
  color: #6C8093;
}

.c-card-meetings--past > span {
  margin-top: 6px;
}

@media (min-width: 768px) {
  .c-card-meetings--past > span {
    margin-top: 8px;
  }
}

.c-card-group-roster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-card-group-roster > figure {
  width: 87px;
  height: 87px;
  margin-right: 24px;
}

@media (min-width: 1280px) {
  .c-card-group-roster > figure {
    margin-right: 25px;
  }
}

.c-card-group-roster > figure img {
  border: 1px solid #E2E6E9;
  border-radius: 50%;
  width: 87px;
  height: 87px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card-group-roster > div .eyebrow-sm, .c-card-group-roster > div .o-input__label {
  background-color: #E7E7E7;
  color: #6C8093;
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 22px;
}

@media (min-width: 768px) {
  .c-card-group-roster > div .eyebrow-sm, .c-card-group-roster > div .o-input__label {
    margin-bottom: 0px;
  }
}

.c-card-group-roster > div h5, .c-card-group-roster > div .c-card-groups > div h4, .c-card-groups > div .c-card-group-roster > div h4, .c-card-group-roster > div .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-group-roster > div input[type=text], .c-card-group-roster > div .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-group-roster > div input[type=text], .c-card-group-roster > div .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-group-roster > div .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .c-card-group-roster > div h5, .c-card-group-roster > div .c-card-groups > div h4, .c-card-groups > div .c-card-group-roster > div h4, .c-card-group-roster > div .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-group-roster > div input[type=text], .c-card-group-roster > div .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-group-roster > div input[type=text], .c-card-group-roster > div .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-group-roster > div .c-mobile-dropdown > ul > li > a {
    margin-bottom: 2px;
  }
}

.c-card-group-roster > div h5 a, .c-card-group-roster > div .c-card-groups > div h4 a, .c-card-groups > div .c-card-group-roster > div h4 a, .c-card-group-roster > div .c-card-groups > div .c-search-bar input[type=text] a, .c-card-groups > div .c-search-bar .c-card-group-roster > div input[type=text] a, .c-card-group-roster > div .c-search-bar .c-card-groups > div input[type=text] a, .c-search-bar .c-card-groups > div .c-card-group-roster > div input[type=text] a, .c-card-group-roster > div .c-card-groups > div .c-mobile-dropdown > ul > li > a a, .c-card-groups > div .c-card-group-roster > div .c-mobile-dropdown > ul > li > a a {
  color: #0069AA;
}

.c-card-group-roster > div h5 a:hover, .c-card-group-roster > div .c-card-groups > div h4 a:hover, .c-card-groups > div .c-card-group-roster > div h4 a:hover, .c-card-group-roster > div .c-card-groups > div .c-search-bar input[type=text] a:hover, .c-card-groups > div .c-search-bar .c-card-group-roster > div input[type=text] a:hover, .c-card-group-roster > div .c-search-bar .c-card-groups > div input[type=text] a:hover, .c-search-bar .c-card-groups > div .c-card-group-roster > div input[type=text] a:hover, .c-card-group-roster > div .c-card-groups > div .c-mobile-dropdown > ul > li > a a:hover, .c-card-groups > div .c-card-group-roster > div .c-mobile-dropdown > ul > li > a a:hover {
  color: #44C2EA;
}

.c-card-group-roster > div p {
  color: #2B333B;
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-card-group-roster > div p {
    font-size: 16px;
  }
}

.c-card-group-roster > div .by-line-big {
  color: #2B333B;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .c-card-group-roster > div .by-line-big {
    margin-top: 16px;
  }
}

.c-card-group-roster > div .by-line-big span {
  color: #6C8093;
}

.c-card-group-roster > div a {
  color: #0069AA;
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
}

@media (min-width: 768px) {
  .c-card-group-roster > div a {
    font-size: 14px;
    font-weight: normal;
    margin-top: 11px;
  }
}

.c-card-group-roster > div a:hover {
  color: #44C2EA;
}

.c-card-group-roster > div a img {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
}

@media (min-width: 1280px) {
  .c-card-group-roster > div a img {
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .c-card-group-roster--is-admin > div .is-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2px;
  }
}

@media (min-width: 768px) {
  .c-card-group-roster--is-admin > div .is-admin .eyebrow-sm, .c-card-group-roster--is-admin > div .is-admin .o-input__label {
    margin-left: 18px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (min-width: 768px) {
  .c-card-group-roster--is-admin > div .is-admin h5, .c-card-group-roster--is-admin > div .is-admin .c-card-groups > div h4, .c-card-groups > div .c-card-group-roster--is-admin > div .is-admin h4, .c-card-group-roster--is-admin > div .is-admin .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-group-roster--is-admin > div .is-admin input[type=text], .c-card-group-roster--is-admin > div .is-admin .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-group-roster--is-admin > div .is-admin input[type=text], .c-card-group-roster--is-admin > div .is-admin .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-group-roster--is-admin > div .is-admin .c-mobile-dropdown > ul > li > a {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.c-card-group-roster--is-admin-last {
  border-bottom: 1px solid #E2E6E9;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .c-card-group-roster--is-admin-last {
    padding-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .c-card-group-roster--is-admin-last {
    padding-bottom: 32px;
  }
}

.c-card-resources {
  border-bottom: 1px solid #A7B3BE;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .c-card-resources {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}

.c-card-resources > div h4, .c-card-resources > div .c-search-bar input[type=text], .c-search-bar .c-card-resources > div input[type=text], .c-card-resources > div .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 12px;
}

@media (min-width: 1280px) {
  .c-card-resources > div h4, .c-card-resources > div .c-search-bar input[type=text], .c-search-bar .c-card-resources > div input[type=text], .c-card-resources > div .c-mobile-dropdown > ul > li > a {
    margin-bottom: 16px;
  }
}

.c-card-resources > div h4 a, .c-card-resources > div .c-search-bar input[type=text] a, .c-search-bar .c-card-resources > div input[type=text] a, .c-card-resources > div .c-mobile-dropdown > ul > li > a a {
  color: #0069AA;
}

.c-card-resources > div h4 a:hover, .c-card-resources > div .c-search-bar input[type=text] a:hover, .c-search-bar .c-card-resources > div input[type=text] a:hover, .c-card-resources > div .c-mobile-dropdown > ul > li > a a:hover {
  color: #44C2EA;
}

.c-card-resources > div p {
  color: #2B333B;
  font-size: 14px;
}

.c-card-resources > div p span {
  color: #6C8093;
}

@media (min-width: 1280px) {
  .c-card-resources > div p {
    font-size: 16px;
  }
}

.c-card-resources > div h6, .c-card-resources > div .c-card-statistics h2 > span, .c-card-statistics .c-card-resources > div h2 > span, .c-card-resources > div .c-mobile-dropdown > ul > li > ul > li > a {
  color: #004875;
}

.c-card-resources > div:first-child {
  width: 100%;
}

@media (min-width: 1024px) {
  .c-card-resources > div:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}

.c-card-resources .o-button {
  margin-top: 24px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-card-resources .o-button {
    margin-top: 0;
  }
}

.c-card-contact-reference {
  border-bottom: 1px solid #E2E6E9;
  margin-bottom: 24px;
  padding-bottom: 16px;
}

@media (min-width: 1280px) {
  .c-card-contact-reference {
    padding-bottom: 24px;
  }
}

.c-card-contact-reference h5, .c-card-contact-reference .c-card-groups > div h4, .c-card-groups > div .c-card-contact-reference h4, .c-card-contact-reference .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-contact-reference input[type=text], .c-card-contact-reference .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-contact-reference input[type=text], .c-card-contact-reference .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-contact-reference .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 2px;
  font-size: 19px;
}

@media (min-width: 768px) {
  .c-card-contact-reference h5, .c-card-contact-reference .c-card-groups > div h4, .c-card-groups > div .c-card-contact-reference h4, .c-card-contact-reference .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-card-contact-reference input[type=text], .c-card-contact-reference .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-card-contact-reference input[type=text], .c-card-contact-reference .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-card-contact-reference .c-mobile-dropdown > ul > li > a {
    font-size: 21px;
  }
}

.c-card-contact-reference p {
  color: #6C8093;
}

.c-card-contact-reference a {
  color: #0069AA;
}

.c-card-contact-reference a:hover {
  color: #44C2EA;
}

.c-card-contact-reference--half {
  width: 50%;
  width: calc(50% - 16px);
  margin-right: 32px;
}

@media (min-width: 768px) {
  .c-card-contact-reference--half-tablet {
    width: 50%;
    width: calc(50% - 16px);
    margin-right: 32px;
  }
}

.c-card-image-pair {
  margin: 24px 0;
}

.c-card-image-pair figure {
  display: block;
  margin-bottom: 8px;
  margin-right: 24px;
}

@media (min-width: 768px) {
  .c-card-image-pair figure {
    float: left;
    margin-bottom: 0px;
  }
}

.c-card-image-pair figure > img {
  max-width: 343px;
  max-height: 221px;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .c-card-image-pair figure > img {
    max-width: 284px;
    max-height: 286px;
  }
}

@media (min-width: 1024px) {
  .c-card-image-pair figure > img {
    max-width: 279px;
  }
}

.c-card-image-pair__content {
  width: 100%;
  margin: 16px 0 0 0;
}

.c-card-image-pair__content h6, .c-card-image-pair__content .c-card-statistics h2 > span, .c-card-statistics .c-card-image-pair__content h2 > span, .c-card-image-pair__content .c-mobile-dropdown > ul > li > ul > li > a {
  margin-bottom: 16px;
  color: #414D58;
}

.c-card-image-pair__content p:not(:last-child) {
  margin-bottom: 20px;
}

.c-card-image-pair__content p {
  color: #414D58;
}

.c-card-image-caption {
  margin: 32px auto;
}

.c-card-image-caption > figure {
  width: 343px;
  height: 191px;
}

@media (min-width: 768px) {
  .c-card-image-caption > figure {
    width: 556px;
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .c-card-image-caption > figure {
    width: 544px;
    height: 320px;
  }
}

.c-card-image-caption > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-card-image-caption span {
  font-size: 12px;
  color: #6C8093;
  line-height: 140%;
  display: block;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .c-card-image-caption span {
    font-size: 14px;
  }
}

.c-account-bar {
  width: 100%;
  background-color: #0069AA;
  position: relative;
  z-index: 200;
}

.c-account-bar > div {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-account-bar > div span > a {
  color: #FFF;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  display: inline-block;
}

@media (min-width: 1280px) {
  .c-account-bar > div span > a {
    padding-right: 20px;
  }
}

.c-account-bar > div img {
  margin-right: 4px;
}

.c-account-login {
  display: none;
}

.c-account-drop {
  position: relative;
  cursor: pointer;
}

.c-account-drop .dropbox {
  display: none;
  opacity: 1;
  -webkit-animation: fadein;
          animation: fadein;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
}

.c-account-drop:hover .dropbox {
  display: block;
  position: absolute;
  width: 200px;
  right: -17px;
  top: 47px;
  z-index: 9999;
  background-color: white;
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
  padding: 16px;
}

.c-account-drop:hover .dropbox::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: -.5em;
  -webkit-transform: rotate(135deg);
  right: 57px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  border: 1em solid transparent;
  border-color: transparent transparent #fff #fff;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transform: rotate(135deg);
  z-index: -1;
}

.c-account-drop:hover .dropbox::after {
  content: "";
  position: absolute;
  background-color: transparent;
  height: 24px;
  top: -21px;
  left: 0;
  right: 0;
  width: 100%;
}

.c-account-drop:hover .dropbox > ul > li > a {
  color: #6C8093;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
  display: block;
  padding-bottom: 12px;
  border-bottom: #E2E6E9 1px solid;
  padding-top: 16px;
}

.c-account-drop:hover .dropbox > ul > li > a:hover {
  color: #44C2EA;
}

.c-account-drop:hover .dropbox > ul > li:first-child a {
  padding-top: 0;
}

.c-account-drop:hover .dropbox > ul > li:last-child a {
  border: 0;
  padding-bottom: 0;
}

.c-account-login.c-account-drop:hover .dropbox {
  width: 200px;
  right: -85px;
}

.c-account-login.c-account-drop:hover .dropbox::before {
  right: 42px;
}

.c-facts-figure .c-mobile-sidebar.sticky-nav {
  padding-right: 16px;
}

.page-home .c-mobile-sidebar.sticky-nav {
  top: 49px;
}

.c-header {
  background-color: #FFF;
  padding-bottom: 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
  z-index: 199;
}

.c-header .c-navigation-wrap {
  position: relative;
}

.c-header .c-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 14px;
}

.c-header .c-menu-wrapper input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  left: -9999px;
  display: none;
}

.c-header .c-menu-wrapper .header-logo {
  display: inline-block;
  margin-right: auto;
}

.c-header .c-menu-wrapper .header-logo img {
  height: 44px;
}

@media (min-width: 1280px) {
  .c-header .c-menu-wrapper .header-logo img {
    height: 63px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
}

.sticky .c-search {
  margin-left: 0px;
}

@media (min-width: 1280px) {
  .sticky .c-search {
    margin-left: 24px;
  }
}

.sticky .c-account-login {
  display: none;
  margin-left: 52px;
}

@media (min-width: 1280px) {
  .sticky .c-account-login {
    display: inline-block;
  }
}

.sticky + main {
  margin-top: 69px;
}

@media (min-width: 1280px) {
  .sticky + main {
    margin-top: 86px;
  }
}

.sticky + .c-sub-navigation-igu {
  margin-top: 69px;
}

@media (min-width: 1280px) {
  .sticky + .c-sub-navigation-igu {
    margin-top: 86px;
  }
}

.sticky-nav {
  position: fixed;
  top: 54px;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out;
}

.body-lock {
  display: block;
  z-index: 100;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.c-search-bar {
  display: none;
  width: 100%;
  margin-left: 45.63px;
  position: relative;
}

@media (min-width: 768px) {
  .c-search-bar {
    margin-left: 30px;
  }
}

@media (min-width: 1280px) {
  .c-search-bar {
    margin-left: 120px;
  }
}

.c-search-bar form {
  width: 100%;
}

.c-search-bar input[type=text] {
  max-width: 877px;
  margin-left: auto;
  width: 100%;
  border-bottom: 1px solid #44C2EA;
  padding-bottom: 8px;
  color: #003F57;
}

@media (max-width: 767px) {
  .c-search-bar input[type=text] {
    font-size: 12px;
  }
}

@media (min-width: 1280px) {
  .c-search-bar input[type=text] {
    padding-bottom: 0px;
  }
}

.c-search-bar input[type=text]::-webkit-input-placeholder {
  color: #C7C7C7;
}

.c-search-bar button {
  position: absolute;
  right: -38px;
  width: 19px;
  height: 19px;
  top: 7px;
  z-index: 1;
  background-color: transparent;
  border: 0;
}

.c-search-bar--on-page {
  display: block;
  margin-top: 26px;
  margin-left: 0;
}

@media (min-width: 768px) {
  .c-search-bar--on-page {
    margin-top: 32px;
  }
}

@media (min-width: 1280px) {
  .c-search-bar--on-page {
    margin-top: 48px;
  }
}

.c-search-bar--on-page input[type=text] {
  border-bottom: 1px solid #6C8093;
}

@media (max-width: 767px) {
  .c-search-bar--on-page input[type=text] {
    font-size: 20px;
  }
}

.c-search-bar--on-page button {
  right: 0;
  border: 1px;
  background-image: url("/wp-content/themes/igu/src/images/icons/search.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.c-search-bar--on-page > div {
  color: #6C8093;
  margin-top: 16px;
}

.c-search-bar--on-page > div span {
  color: #7CB135;
  font-weight: bold;
}

.c-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  text-align: center;
  max-height: 560px;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .c-hero {
    margin-bottom: 32px;
    max-height: 280px;
  }
}

@media (min-width: 1280px) {
  .c-hero {
    margin-bottom: 48px;
    max-height: 480px;
  }
}

.c-hero picture {
  max-height: 560px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

@media (min-width: 768px) {
  .c-hero picture {
    max-height: 280px;
  }
}

@media (min-width: 1280px) {
  .c-hero picture {
    max-height: 480px;
  }
}

.c-hero picture img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: -1037px -164px;
     object-position: -1037px -164px;
}

@media (min-width: 768px) {
  .c-hero picture img {
    max-height: 280px;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

@media (min-width: 1280px) {
  .c-hero picture img {
    max-height: 480px;
  }
}

.c-hero h1, .c-hero h3 {
  margin: 0;
  color: white;
  max-width: 420px;
  -ms-flex-item-align: center;
      align-self: center;
}

.c-hero h1 {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 0 24px;
  }
}

@media (min-width: 768px) {
  .c-hero__content h3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    text-align: left;
    font-size: 38px;
    line-height: 49px;
  }
}

.c-hero__content--success {
  padding: 24px 0 40px;
  width: 100%;
  text-align: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  max-height: 100%;
}

@media (min-width: 768px) {
  .c-hero__content--success {
    max-width: 480px;
    padding: 32px 0 56px;
    margin: 0 auto;
  }
}

@media (min-width: 1280px) {
  .c-hero__content--success {
    max-width: 540px;
    padding: 48px 0 80px;
  }
}

.c-hero__content--success figure img {
  max-width: 46px;
  max-height: 46px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 768px) {
  .c-hero__content--success figure img {
    max-width: 63px;
    max-height: 63px;
    margin: 0 auto 30px;
  }
}

@media (min-width: 1280px) {
  .c-hero__content--success figure img {
    margin: 0 auto 38px;
  }
}

.c-hero__content--success h2 {
  color: #004875;
  margin: 0 0 6px;
}

@media (min-width: 1280px) {
  .c-hero__content--success h2 {
    margin: 0 0 8px;
    font-size: 44px;
  }
}

.c-hero__content--success p {
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 16px;
}

@media (min-width: 768px) {
  .c-hero__content--success p {
    margin: 0 0 24px;
  }
}

@media (min-width: 1280px) {
  .c-hero__content--success p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 32px;
  }
}

.c-hero__content--success a {
  margin: 0 auto;
  letter-spacing: 0.05em;
  padding: 16px 40px;
}

.c-hero--inner {
  height: 83px;
  background-color: #F5F8F9;
  text-align: left;
  padding: 0;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-hero--inner {
    height: 95px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-hero--inner {
    height: 150px;
    margin-bottom: 48px;
  }
}

.c-hero--inner h1 {
  margin-bottom: 0;
  max-width: 100%;
}

.c-hero--inner h1.h2, .c-hero--inner h2 {
  color: #004875;
  font-weight: bold;
  display: block;
}

.c-hero--inner h2.member {
  max-width: 637px;
}

@media (min-width: 1280px) {
  .c-hero--inner h2.member {
    margin-left: 94px;
  }
}

.c-hero--inner-newsletter {
  height: 100px;
  padding: 24px 0 0px;
}

@media (min-width: 768px) {
  .c-hero--inner-newsletter {
    padding: 56px 0 24px;
    height: 179px;
  }
}

@media (min-width: 1024px) {
  .c-hero--inner-newsletter {
    padding: 56px 0 36px;
  }
}

.c-hero--inner-newsletter .h2 {
  margin-bottom: 8px;
}

.c-hero--inner .eyebrow {
  margin-bottom: 4px;
  color: #6C8093;
}

@media (min-width: 768px) {
  .c-hero--inner .eyebrow {
    margin-bottom: 11px;
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  .c-hero--inner .eyebrow {
    margin-bottom: 14px;
    margin-top: 16px;
    font-size: 16px;
  }
}

.c-hero--inner-center {
  text-align: center;
  padding: 24px 0;
  height: auto;
}

@media (min-width: 1280px) {
  .c-hero--inner-center {
    padding: 40px 0;
  }
}

.c-hero--inner-center h1.h2, .c-hero--inner-center h2 {
  display: inline-block;
}

.c-hero--member {
  margin: 24px 16px;
  height: 266.5px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 768px) {
  .c-hero--member {
    padding: 32px 48px;
    height: 153px;
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (min-width: 1280px) {
  .c-hero--member {
    padding: 48.5px 80px;
    height: 186px;
  }
}

.c-hero--member figure {
  height: 144px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 768px) {
  .c-hero--member figure {
    height: 89px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

.c-hero--member figure img {
  border-radius: 50%;
  height: 144px;
  width: 144px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .c-hero--member figure img {
    height: 89px;
    width: 89px;
  }
}

.c-hero--member h3 {
  color: #004875;
  margin: 0 0 12px;
  max-width: 100%;
}

.c-hero--member span {
  margin: 0 0 16px;
  display: block;
  color: #6C8093;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .c-hero--member span {
    font-size: 12px;
    line-height: 17px;
  }
}

@media (min-width: 1280px) {
  .c-hero--member span {
    font-size: 16px;
    line-height: 22px;
  }
}

.c-hero--member span time {
  color: #2B333B;
}

@media (min-width: 768px) {
  .c-hero--member span {
    margin: 0 18px 0 0;
    font-size: 12px;
    line-height: 17px;
  }
}

@media (min-width: 1280px) {
  .c-hero--member span {
    font-size: initial;
    line-height: initial;
  }
}

.c-hero--member a {
  display: block;
  letter-spacing: 0.03em;
  font-size: 12px;
  line-height: 17px;
}

@media (min-width: 1280px) {
  .c-hero--member a {
    font-size: 14px;
    line-height: 20px;
  }
}

.c-hero--member a:hover {
  color: #44C2EA;
}

.c-hero--list-title {
  height: auto;
}

.page-success {
  background-color: #F3F9FA;
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 51, 59, 0.9);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.c-modal--is-close {
  display: none;
}

.c-modal--is-open {
  opacity: 1;
}

.c-modal-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-modal--loading .c-modal__content {
  background: unset;
}

.c-modal--loading .c-modal__content > .c-modal__desc > img {
  height: 100px;
}

.c-modal--loading .c-modal__content > .c-modal__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 44px 44px;
  width: 100%;
}

.c-modal--loading .c-modal__content > .c-modal__desc > p {
  color: white;
  text-align: center;
}

.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  background: white;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  min-height: 200px;
  width: 100%;
  text-align: left;
  background-color: #F3F9FA;
  padding: 56px 16px 22px 16px;
}

@media (min-width: 768px) {
  .c-modal__content {
    max-width: 592px;
    padding: 40px 64px;
  }
}

.c-modal__content h2, .c-modal__content h3, .c-modal__content h4, .c-modal__content .c-search-bar input[type=text], .c-search-bar .c-modal__content input[type=text], .c-modal__content .c-mobile-dropdown > ul > li > a, .c-modal__content h5, .c-modal__content .c-card-groups > div h4, .c-card-groups > div .c-modal__content h4, .c-modal__content .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-modal__content input[type=text], .c-modal__content .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-modal__content input[type=text], .c-modal__content .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-modal__content .c-mobile-dropdown > ul > li > a {
  color: #004875;
}

.c-modal__content--join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 541px;
  padding: 58px 53px;
}

.c-modal__content--join h4, .c-modal__content--join .c-search-bar input[type=text], .c-search-bar .c-modal__content--join input[type=text], .c-modal__content--join .c-mobile-dropdown > ul > li > a {
  text-align: center;
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .c-modal__content--join h4, .c-modal__content--join .c-search-bar input[type=text], .c-search-bar .c-modal__content--join input[type=text], .c-modal__content--join .c-mobile-dropdown > ul > li > a {
    font-size: 27px;
  }
}

.c-modal__content--join p {
  font-size: 12px;
  margin: 16px 0 32px;
}

@media (min-width: 1280px) {
  .c-modal__content--join p {
    font-size: 14px;
  }
}

.c-modal__content--join div a {
  padding: 16px 40px;
  margin-right: 8px;
}

.c-modal__content--join div > a:last-child {
  padding: 14px 40px;
  margin-left: 8px;
}

.c-modal__content--download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}

.c-modal__content--download h4, .c-modal__content--download .c-search-bar input[type=text], .c-search-bar .c-modal__content--download input[type=text], .c-modal__content--download .c-mobile-dropdown > ul > li > a {
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .c-modal__content--download h4, .c-modal__content--download .c-search-bar input[type=text], .c-search-bar .c-modal__content--download input[type=text], .c-modal__content--download .c-mobile-dropdown > ul > li > a {
    font-size: 27px;
  }
}

.c-modal__content--download p {
  font-size: 14px;
  line-height: 160%;
  color: #2B333B;
  max-width: 434px;
  margin: 0 0 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .c-modal__content--download p {
    font-size: 16px;
    margin: 0 0 16px;
  }
}

.c-modal__content--download.c-form {
  width: 100%;
}

.c-modal__content--download.c-form > div {
  padding: 0;
}

.c-modal__content--download .o-input--checkbox {
  margin-bottom: 0;
}

.c-modal__content .c-form__container--full .o-input--checkbox .o-input-group .o-input__label {
  width: 20px;
  height: 20px;
}

.c-modal__content .c-form__container--full .o-input--checkbox .o-input-group p {
  font-size: 14px;
  display: inline-block;
  width: 90%;
}

.c-modal__close {
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 16px;
  margin-left: auto;
  margin-bottom: 16px;
  width: 34px;
  height: 34px;
  background-image: url("/wp-content/themes/igu/src/images/icons/close.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  cursor: pointer;
  z-index: 99;
  color: white;
  border: 1px solid transparent;
}

.c-modal__group-cta {
  margin: 32px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-modal__group-cta a {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.c-modal__group-cta a.o-link {
  background: transparent;
}

.c-modal--delete .c-modal__content {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: none;
          transform: none;
  min-height: 124px;
  padding: 8px 24px 16px;
}

.c-modal--delete .c-modal__content > a {
  color: #6C8093;
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
}

.c-modal--delete .c-modal__content > a:first-child {
  display: block;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E6E9;
}

.c-modal--delete .c-modal__content > a:last-child {
  display: block;
  padding-top: 24px;
  padding-bottom: 16px;
}

.js-modal-shake {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-53%, -50%, 0);
            transform: translate3d(-53%, -50%, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(-52%, -50%, 0);
            transform: translate3d(-52%, -50%, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-48%, -50%, 0);
            transform: translate3d(-48%, -50%, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(-52%, -50%, 0);
            transform: translate3d(-52%, -50%, 0);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-53%, -50%, 0);
            transform: translate3d(-53%, -50%, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(-52%, -50%, 0);
            transform: translate3d(-52%, -50%, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-48%, -50%, 0);
            transform: translate3d(-48%, -50%, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(-52%, -50%, 0);
            transform: translate3d(-52%, -50%, 0);
  }
}

.c-featured-download {
  width: 100%;
}

.c-featured-download__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

@media (min-width: 768px) {
  .c-featured-download__content {
    margin-top: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media (min-width: 1280px) {
  .c-featured-download__content {
    margin-top: 32px;
  }
}

.c-featured-download__content > div {
  width: 100%;
  margin-right: 0;
}

.c-featured-download__content > div:nth-child(5), .c-featured-download__content > div:nth-child(6) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .c-featured-download__content > div:nth-child(5), .c-featured-download__content > div:nth-child(6) {
    display: none;
  }
}

@media (min-width: 1280px) {
  .c-featured-download__content > div:nth-child(5), .c-featured-download__content > div:nth-child(6) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .c-featured-download__content > div:nth-child(-n+3) {
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .c-featured-download__content > div:nth-child(-n+3) {
    margin-bottom: 36px;
  }
}

@media (min-width: 768px) {
  .c-featured-download__content > div:nth-child(4) {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .c-featured-download__content > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 16px);
            flex: 0 0 calc(50% - 16px);
    margin-right: 32px;
    width: 29%;
  }
}

@media (max-width: 1279px) {
  .c-featured-download__content > div:nth-child(2n+2) {
    margin-right: 0px;
  }
}

@media (min-width: 1280px) {
  .c-featured-download__content > div {
    margin-right: 70px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(32% - 35px);
            flex: 0 0 calc(32% - 35px);
  }
  .c-featured-download__content > div:nth-child(2n+2) {
    margin-right: 70px;
  }
  .c-featured-download__content > div:nth-child(3n+3) {
    margin-right: 0px;
  }
}

@media (min-width: 768px) {
  .c-featured-download--option-1__content > div.c-card-download--list-manual:nth-child(4) {
    margin-bottom: 16px;
  }
}

.c-section-featured {
  padding: 24px 16px 32px;
}

@media (min-width: 768px) {
  .c-section-featured {
    padding: 48px;
  }
}

@media (min-width: 1280px) {
  .c-section-featured {
    padding-top: 56px;
    padding-bottom: 74px;
  }
}

.c-section-featured--blue {
  background-color: #004875;
}

.c-section-featured--blue span, .c-section-featured--blue a, .c-section-featured--blue h4, .c-section-featured--blue .c-search-bar input[type=text], .c-search-bar .c-section-featured--blue input[type=text], .c-section-featured--blue .c-mobile-dropdown > ul > li > a, .c-section-featured--blue h3, .c-section-featured--blue h2, .c-section-featured--blue p, .c-section-featured--blue address {
  color: white;
}

.c-section-featured--blue > .c-card-events > .c-card-events-content h2 a,
.c-section-featured--blue > .c-card-events > .c-card-events-content h3 a,
.c-section-featured--blue > .c-card-events > .c-card-events-content h4 a,
.c-section-featured--blue > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a,
.c-search-bar .c-section-featured--blue > .c-card-events > .c-card-events-content input[type=text] a,
.c-section-featured--blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a {
  color: white;
}

.c-section-featured--blue > .c-card-events > .c-card-events-content h2 a:hover,
.c-section-featured--blue > .c-card-events > .c-card-events-content h3 a:hover,
.c-section-featured--blue > .c-card-events > .c-card-events-content h4 a:hover,
.c-section-featured--blue > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a:hover,
.c-search-bar .c-section-featured--blue > .c-card-events > .c-card-events-content input[type=text] a:hover,
.c-section-featured--blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a:hover {
  color: #44C2EA;
}

.c-section-featured--blue .c-card-events > div > span,
.c-section-featured--blue .c-card-events > div > address {
  color: white;
}

.c-section-featured--gray {
  background-color: #F3F9FA;
}

.c-section-featured--gray-membership {
  padding: 0 !important;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .c-section-featured--gray-membership {
    margin: 0 48px;
  }
}

@media (min-width: 1280px) {
  .c-section-featured--gray-membership {
    padding: 0 80px !important;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.c-section-featured--article > div {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-section-featured--no-image > div > div {
  margin-left: 0;
}

.c-featured-mid-section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  margin: 0 auto;
  max-width: 928px;
}

@media (min-width: 768px) {
  .c-featured-mid-section-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.c-featured-mid-section__left {
  max-width: 545px;
  width: 100%;
}

@media (min-width: 768px) {
  .c-featured-mid-section__left {
    margin-right: 60px;
  }
}

@media (min-width: 1024px) {
  .c-featured-mid-section__left {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .c-featured-mid-section__left-option-1 {
    margin-right: 29px;
  }
}

@media (min-width: 1024px) {
  .c-featured-mid-section__left-option-1 {
    margin-right: 0;
  }
}

.c-featured-mid-section__right {
  width: 100%;
  margin-top: 44px;
  /* &-option-1 {
            @include maxpoint($tablet) {}
        
            @include maxpoint($desktop) {}
        } */
}

@media (min-width: 768px) {
  .c-featured-mid-section__right {
    max-width: 311px;
    margin-left: auto;
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .c-featured-mid-section__right {
    max-width: 256px;
  }
}

.c-filtered-section {
  background-color: #F3F9FA;
}

.c-filtered-section-white {
  background-color: #fff;
}

.c-filtered-section-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 24px;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

@media (min-width: 768px) {
  .c-filtered-section-wrap {
    margin-top: 32px;
    margin-left: -16px;
    margin-right: -16px;
  }
}

.c-filtered-section-wrap > div {
  margin-bottom: 32px;
}

@media (min-width: 767px) {
  .c-filtered-section-wrap > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(47.6% - 16px);
            flex: 0 0 calc(47.6% - 16px);
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (min-width: 1024px) {
  .c-filtered-section-wrap > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(31.4% - 16px);
            flex: 0 0 calc(31.4% - 16px);
  }
}

@media (min-width: 1280px) {
  .c-filtered-section-wrap > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(31.9% - 16px);
            flex: 0 0 calc(31.9% - 16px);
  }
}

.c-filtered-section-no-result {
  text-align: center;
}

.c-filtered-section-no-result h4, .c-filtered-section-no-result .c-search-bar input[type=text], .c-search-bar .c-filtered-section-no-result input[type=text], .c-filtered-section-no-result .c-mobile-dropdown > ul > li > a {
  margin-bottom: 8px;
  margin-top: 16px;
  color: #004875;
}

@media (min-width: 1280px) {
  .c-form--membership {
    max-width: 783px;
  }
}

@media (min-width: 1280px) {
  .c-form__content {
    max-width: 617px;
  }
}

.c-form__content > h2 {
  color: #ffffff;
  margin: 0 0 16px;
}

@media (min-width: 768px) {
  .c-form__content > h2 {
    margin: 0 0 8px;
    font-size: 33px;
    line-height: 40px;
  }
}

@media (min-width: 1280px) {
  .c-form__content > h2 {
    margin: 0 0 21px;
    font-size: 51px;
    line-height: 61px;
  }
}

.c-form__content > p {
  color: #E2E6E9;
  font-size: 14px;
  line-height: 160%;
  margin: 0 0 24px;
}

@media (min-width: 768px) {
  .c-form__content > p {
    margin: 0 0 32px;
  }
}

@media (min-width: 1280px) {
  .c-form__content > p {
    font-size: 16px;
    line-height: 26px;
  }
}

.c-form__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (min-width: 1280px) {
  .c-form__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    max-height: 375px;
  }
}

.c-form__container > div {
  width: 100%;
}

@media (min-width: 1280px) {
  .c-form__container > div {
    max-width: 402px;
  }
  .c-form__container > div:last-of-type {
    max-width: 357px;
    margin-left: 24px;
  }
}

.c-form__container > div:first-child > div {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .c-form__container > div:first-child > div {
    margin-bottom: 22px;
  }
}

@media (min-width: 1280px) {
  .c-form__container > div:first-child > div:last-child {
    margin-bottom: 0;
  }
}

.c-form__container > button {
  display: block;
  margin: 0 0 0 auto;
  max-height: 94px;
}

.c-form__container textarea {
  height: 185px;
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .c-form__container textarea {
    height: 243px;
  }
}

.c-form--contact > .c-form__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  max-height: 100%;
}

.c-form--contact > .c-form__container > div {
  max-width: 100%;
}

.c-form--contact > .c-form__content p {
  margin-bottom: 32px;
}

.c-form--contact > .c-form__content h2 {
  margin-bottom: 8px;
}

.c-form--contact > .c-form__container > div:first-child > div {
  margin-bottom: 0;
}

.c-form--contact > .c-form__container > div:not(:last-child) {
  margin-bottom: 32px;
}

.c-form--contact > .c-form__container > div:nth-last-child(2) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-form--contact > .c-form__container > div:nth-last-child(2) {
    margin-bottom: 32px;
  }
}

.c-form--contact .c-form__container > div:last-of-type {
  margin-left: 0;
  max-width: 100%;
  padding-right: 10px;
}

.c-form--contact .c-form__container .o-button {
  margin-left: auto;
}

.c-map__content {
  max-width: 405.54px;
  margin: 32px auto;
}

@media (min-width: 768px) {
  .c-map__content {
    text-align: center;
    margin: 0 auto 40.5px;
  }
}

@media (min-width: 1280px) {
  .c-map__content {
    text-align: left;
    margin: 0 auto 48px;
    max-width: 514px;
  }
}

.c-map__content > h3 {
  margin: 0 0 8px;
  color: #004875;
}

@media (min-width: 768px) {
  .c-map__content > h3 {
    margin: 0 0 13px;
  }
}

@media (min-width: 1280px) {
  .c-map__content > h3 {
    margin: 0 0 8px;
  }
}

.c-map__content > p {
  color: #414D58;
}

.c-map__container {
  border: 1px solid black;
  width: 100%;
  max-height: 221.67px;
  margin: 0 auto;
  cursor: pointer;
}

@media (min-width: 768px) {
  .c-map__container {
    max-height: 334.34px;
    max-width: 939.08px;
  }
}

@media (min-width: 1280px) {
  .c-map__container {
    max-height: 462.5px;
  }
}

.c-section-with-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-section-with-sidebar__left {
  width: 0;
}

@media (min-width: 768px) {
  .c-section-with-sidebar__left {
    min-width: 208px;
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .c-section-with-sidebar__left {
    max-width: 257px;
    width: 100%;
    margin-right: 32px;
  }
}

.c-section-with-sidebar__right {
  width: 100%;
}

@media (min-width: 768px) {
  .c-section-with-sidebar__right {
    max-width: 830px;
    min-width: 0;
    width: 100%;
  }
}

.c-section-with-sidebar__right > div {
  white-space: normal;
}

.c-section-with-sidebar--three-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

@media (min-width: 768px) {
  .c-section-with-sidebar--three-col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

@media (min-width: 768px) {
  .c-section-with-sidebar--three-col .c-section-with-sidebar__left {
    min-width: 208px;
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .c-section-with-sidebar--three-col .c-section-with-sidebar__left {
    max-width: 257px;
    margin-right: 32px;
  }
}

.c-section-with-sidebar--three-col .c-section-with-sidebar__center {
  max-width: 548px;
  width: 100%;
}

.c-section-with-sidebar--three-col .c-section-with-sidebar__center > div a {
  color: #0069AA;
}

.c-section-with-sidebar--three-col .c-section-with-sidebar__center > div a:hover {
  color: #44C2EA;
}

.c-section-with-sidebar--three-col .c-section-with-sidebar__right {
  max-width: 262px;
  width: 100%;
  display: none;
}

@media (min-width: 1280px) {
  .c-section-with-sidebar--three-col .c-section-with-sidebar__right {
    display: block;
  }
}

.c-section-with-sidebar .c-subscribe form .o-input > input {
  width: 100%;
}

.c-section-with-sidebar .c-subscribe form .o-input--checkbox .o-input-group > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-section-with-sidebar .c-subscribe form .o-input--checkbox .o-input-group > div .o-input__label {
  width: 20px;
  height: 20px;
}

.c-section-with-sidebar .c-subscribe form .o-input--checkbox .o-input-group > div p {
  font-size: 14px;
}

.c-statistics-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  margin-bottom: 41px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

@media (min-width: 768px) {
  .c-statistics-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    margin-top: 16px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-statistics-wrap {
    margin-top: 24px;
    margin-bottom: 20px;
  }
}

.c-statistics-wrap > a {
  max-width: 147px;
  width: 100%;
}

@media (min-width: 768px) {
  .c-statistics-wrap > a {
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .c-statistics-wrap > a {
    max-width: 100%;
  }
}

.c-statistics-wrap > a:not(:last-child) {
  margin-right: 24px;
}

@media (min-width: 768px) {
  .c-statistics-wrap > a:not(:last-child) {
    margin-right: 32px;
  }
}

.c-statistics-wrap > a:last-child {
  margin-top: 33px;
}

@media (min-width: 768px) {
  .c-statistics-wrap > a:last-child {
    margin-top: 0;
  }
}

.c-news-wrap {
  position: relative;
  z-index: 1;
  padding-top: 16px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .c-news-wrap {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-news-wrap {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.c-news-wrap-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 1280px) {
  .c-news-wrap-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.c-news-wrap-content > div {
  max-width: 548px;
}

@media (min-width: 1280px) {
  .c-news-wrap-content > div {
    margin-right: 32px;
  }
}

.c-news-wrap-content > aside {
  max-width: 100%;
  width: 100%;
  padding: 16px;
  background-color: #F5F8F9;
}

@media (min-width: 1280px) {
  .c-news-wrap-content > aside {
    max-width: 255px;
  }
}

.c-news-wrap-content > aside.research-documents-home {
  padding: 24px 16px;
}

.c-news-wrap-content > aside > .eyebrow {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .c-news-wrap-content > aside > .eyebrow {
    margin-bottom: 22px;
  }
}

@media (min-width: 1280px) {
  .c-news-wrap-content > aside > .eyebrow {
    margin-bottom: 16px;
  }
}

.c-news-wrap-content > aside > div:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: #E2E6E9 1px solid;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-news-wrap-content > aside > div:not(:last-child) {
    margin-bottom: 16px;
  }
}

.c-news-wrap-content > aside > .c-card-news > div > p {
  margin-bottom: 8px;
}

.c-news-wrap--gray {
  background-color: #F3F9FA;
}

.c-news-wrap--extend-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  right: 0;
  border-left: 9999px solid #F3F9FA;
  -webkit-box-shadow: 9999px 0 0 #F3F9FA;
          box-shadow: 9999px 0 0 #F3F9FA;
  z-index: -1;
}

.c-news-wrap--home .c-card-newsroom-headline {
  display: none;
}

@media (max-width: 1023px) {
  .c-news-wrap--home .c-card-newsroom-headline {
    display: block;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .c-news-wrap--home .c-card-newsroom-headline {
    margin-bottom: 32px;
  }
}

@media (max-width: 1279px) {
  .c-news-wrap--home .c-news-wrap-content > .c-card-newsroom {
    max-width: 448px;
  }
}

@media (max-width: 1023px) {
  .c-news-wrap--home .c-news-wrap-content > .c-card-newsroom {
    max-width: 206px;
  }
}

@media (max-width: 767px) {
  .c-news-wrap--home .c-news-wrap-content > .c-card-newsroom {
    max-width: 100%;
  }
}

.c-news-wrap--home .c-news-wrap-content > aside {
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .c-news-wrap--home .c-news-wrap-content > aside {
    max-width: 208px;
  }
}

@media (min-width: 1280px) {
  .c-news-wrap--home .c-news-wrap-content > aside {
    max-width: 255px;
  }
}

@media (max-width: 1023px) {
  .c-news-wrap--home .c-news-wrap-content > aside > div:nth-child(3) {
    display: none;
  }
}

.c-articlenumber-wrap {
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .c-articlenumber-wrap {
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-articlenumber-wrap {
    padding-bottom: 48px;
  }
}

.c-articlenumber-wrap > .c-card-article-number {
  margin: 0 0 0 24px;
  /* @include maxpoint(1366px) {
        max-width: 100%;
    } */
}

@media (min-width: 768px) {
  .c-articlenumber-wrap > .c-card-article-number {
    max-width: none;
    margin: 0 0 0 53px;
  }
}

@media (min-width: 1280px) {
  .c-articlenumber-wrap > .c-card-article-number {
    margin: 0 0 0 113px;
  }
}

.c-resources-wrap {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (min-width: 1280px) {
  .c-resources-wrap {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.c-resources-wrap-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (min-width: 1280px) {
  .c-resources-wrap-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.c-resources-wrap-content > div:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-resources-wrap-content > div:not(:last-child) {
    margin-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-resources-wrap-content > div:not(:last-child) {
    margin-right: 32px;
    margin-bottom: 0;
  }
}

.c-video-wrap {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
  z-index: 1;
}

@media (min-width: 1280px) {
  .c-video-wrap {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.c-video-wrap .c-headline__header,
.c-video-wrap .c-card-video p,
.c-video-wrap .c-card-video h5,
.c-video-wrap .c-card-video .c-card-groups > div h4,
.c-card-groups > div .c-video-wrap .c-card-video h4,
.c-video-wrap .c-card-video .c-card-groups > div .c-search-bar input[type=text],
.c-card-groups > div .c-search-bar .c-video-wrap .c-card-video input[type=text],
.c-video-wrap .c-card-video .c-search-bar .c-card-groups > div input[type=text],
.c-search-bar .c-card-groups > div .c-video-wrap .c-card-video input[type=text],
.c-video-wrap .c-card-video .c-card-groups > div .c-mobile-dropdown > ul > li > a,
.c-card-groups > div .c-video-wrap .c-card-video .c-mobile-dropdown > ul > li > a,
.c-video-wrap .c-card-video h6,
.c-video-wrap .c-card-video .c-card-statistics h2 > span,
.c-card-statistics .c-video-wrap .c-card-video h2 > span,
.c-video-wrap .c-card-video .c-mobile-dropdown > ul > li > ul > li > a,
.c-video-wrap .c-card-video .published,
.c-video-wrap .c-card-video h3,
.c-video-wrap .c-card-video .published span {
  color: #FFF;
}

.c-video-wrap .c-headline__button {
  color: #FFF;
}

.c-video-wrap .c-headline__button:hover {
  color: #44C2EA;
}

.c-video-wrap-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

@media (min-width: 768px) {
  .c-video-wrap-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.c-video-wrap-content > div:not(:last-child) {
  margin-right: 24px;
}

.c-video-wrap--dark {
  background-color: #003F57;
}

.c-video-wrap--extend-bg {
  background-color: #003F57;
}

.c-video-wrap--extend-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9996px;
  right: 1px;
  border-left: 9999px solid #003F57;
  -webkit-box-shadow: 9999px 0 0 #003F57;
          box-shadow: 9999px 0 0 #003F57;
  z-index: -1;
}

@media (min-width: 768px) {
  .c-video-wrap--extend-bg::before {
    left: -9999px;
    right: 0;
  }
}

.c-subscribe > p {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 160%;
  color: #414D58;
}

.c-subscribe > p::before {
  content: url("/wp-content/themes/igu/src/images/icons/email-blue.svg");
  margin-right: 8px;
}

.c-subscribe b {
  color: #004875;
}

.c-subscribe--gray {
  padding: 16px;
  background-color: #F5FBFF;
}

@media (max-width: 767px) {
  .c-subscribe--mobile-no-top {
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .c-subscribe--mobile-no-top.mb-mt-40 {
    margin-top: 0 !important;
  }
}

.c-subscribe .o-button {
  width: 100%;
}

@media (min-width: 768px) {
  .c-subscribe .o-button {
    width: auto;
  }
}

.c-share-this {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row  nowrap;
          flex-flow: row  nowrap;
  margin-bottom: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .c-share-this {
    margin-bottom: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-share-this > p {
  color: #6C8093;
}

.c-share-this ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.c-share-this ul > li:not(:last-child) {
  margin-right: 14px;
}

.c-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-headline .o-button {
  white-space: nowrap;
}

.c-headline ~ p {
  max-width: 548px;
}

.c-headline__header {
  color: #004875;
  max-width: 65%;
}

.c-headline__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.c-headline--with-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  max-width: 736px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-headline--with-content p {
  margin-top: 11px;
}

@media (min-width: 768px) {
  .c-headline--with-content p {
    margin-top: 13px;
  }
}

@media (min-width: 1280px) {
  .c-headline--with-content p {
    margin-top: 22px;
  }
}

@media (max-width: 767px) {
  .c-headline--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-tab-content {
  position: relative;
}

@media (max-width: 767px) {
  .c-tab-content::after {
    content: "";
    background: linear-gradient(269.73deg, rgba(255, 255, 255, 0) 30.94%, #F3F9FA 97.36%);
    -webkit-transform: rotate(-179.84deg);
            transform: rotate(-179.84deg);
    width: 65px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
  }
}

.c-tab-content p a:visited,
.c-tab-content p a:link,
.c-tab-content p a {
  color: #0069AA;
}

.c-tab-content p a:visited:hover,
.c-tab-content p a:link:hover,
.c-tab-content p a:hover {
  color: #44C2EA;
}

.c-tab-content input[type="radio"] {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  left: -9999px;
}

.c-tab-content__wrap {
  display: none;
}

.c-tab-content--block .c-tab-content__wrap > div:first-child {
  padding-top: 0;
}

.c-tab-content--box .c-sub-navigation {
  background-color: #fff;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-tab-content--box .c-sub-navigation {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .c-tab-content--box .c-sub-navigation {
    padding: 0;
  }
  .c-tab-content--box .c-sub-navigation::before {
    display: none;
  }
}

.c-tab-content--box .c-sub-navigation::before {
  display: none;
}

.c-tab-content--box .c-sub-navigation > div {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 767px) {
  .c-tab-content--box .c-sub-navigation > div::before {
    display: none;
  }
}

.c-tab-content--box .c-sub-navigation > div > label {
  background-color: #fff;
  border: 1px solid #E2E6E9;
  border-radius: 3px;
  color: #0069AA;
  font-size: 12px;
  font-weight: normal;
  line-height: 140%;
  padding: 15px;
  text-align: center;
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

@media (min-width: 768px) {
  .c-tab-content--box .c-sub-navigation > div > label {
    border-radius: 0;
    font-size: 14px;
  }
}

.c-tab-content--box .c-sub-navigation > div > label:hover {
  color: #44C2EA;
  background-color: #F5F8F9;
  border: 1px solid #F5F8F9;
  font-weight: 400;
  text-shadow: none;
}

@media (min-width: 1024px) {
  .c-tab-content--box .c-sub-navigation > div > label:hover {
    font-size: 14px;
    line-height: 130%;
  }
}

.c-tab-content--box .c-sub-navigation > div > label:hover::before {
  display: none;
}

.c-tab-content--box .c-sub-navigation > div > label:not(:last-child) {
  margin-right: 8px;
}

@media (min-width: 768px) {
  .c-tab-content--box .c-sub-navigation > div > label:not(:last-child) {
    margin-right: 19px;
  }
}

@media (min-width: 1024px) {
  .c-tab-content--box .c-sub-navigation > div > label:not(:last-child) {
    margin-right: 9px;
  }
}

#tab-input-1:checked ~ .c-sub-navigation > div > label.tab-label-1 {
  color: #004875;
  font-weight: bold;
}

#tab-input-1:checked ~ .c-sub-navigation > div > label.tab-label-1::before {
  background-color: #44C2EA;
}

#tab-input-1:checked ~ .c-sub-navigation--box > div > label.tab-label-1 {
  color: #44C2EA;
  background-color: #F5F8F9;
  border: 1px solid #F5F8F9;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #tab-input-1:checked ~ .c-sub-navigation--box > div > label.tab-label-1 {
    font-size: 14px;
    line-height: 130%;
  }
}

#tab-input-1:checked ~ .c-sub-navigation--box > div > label.tab-label-1::before {
  display: none;
}

#tab-input-1:checked ~ .tab-content-1 {
  display: block;
}

.c-tab-content--block #tab-input-1:checked ~ .tab-content-1 {
  display: block;
}

#tab-input-2:checked ~ .c-sub-navigation > div > label.tab-label-2 {
  color: #004875;
  font-weight: bold;
}

#tab-input-2:checked ~ .c-sub-navigation > div > label.tab-label-2::before {
  background-color: #44C2EA;
}

#tab-input-2:checked ~ .c-sub-navigation--box > div > label.tab-label-2 {
  color: #44C2EA;
  background-color: #F5F8F9;
  border: 1px solid #F5F8F9;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #tab-input-2:checked ~ .c-sub-navigation--box > div > label.tab-label-2 {
    font-size: 14px;
    line-height: 130%;
  }
}

#tab-input-2:checked ~ .c-sub-navigation--box > div > label.tab-label-2::before {
  display: none;
}

#tab-input-2:checked ~ .tab-content-2 {
  display: block;
}

.c-tab-content--block #tab-input-2:checked ~ .tab-content-2 {
  display: block;
}

#tab-input-3:checked ~ .c-sub-navigation > div > label.tab-label-3 {
  color: #004875;
  font-weight: bold;
}

#tab-input-3:checked ~ .c-sub-navigation > div > label.tab-label-3::before {
  background-color: #44C2EA;
}

#tab-input-3:checked ~ .c-sub-navigation--box > div > label.tab-label-3 {
  color: #44C2EA;
  background-color: #F5F8F9;
  border: 1px solid #F5F8F9;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #tab-input-3:checked ~ .c-sub-navigation--box > div > label.tab-label-3 {
    font-size: 14px;
    line-height: 130%;
  }
}

#tab-input-3:checked ~ .c-sub-navigation--box > div > label.tab-label-3::before {
  display: none;
}

#tab-input-3:checked ~ .tab-content-3 {
  display: block;
}

.c-tab-content--block #tab-input-3:checked ~ .tab-content-3 {
  display: block;
}

#tab-input-4:checked ~ .c-sub-navigation > div > label.tab-label-4 {
  color: #004875;
  font-weight: bold;
}

#tab-input-4:checked ~ .c-sub-navigation > div > label.tab-label-4::before {
  background-color: #44C2EA;
}

#tab-input-4:checked ~ .c-sub-navigation--box > div > label.tab-label-4 {
  color: #44C2EA;
  background-color: #F5F8F9;
  border: 1px solid #F5F8F9;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #tab-input-4:checked ~ .c-sub-navigation--box > div > label.tab-label-4 {
    font-size: 14px;
    line-height: 130%;
  }
}

#tab-input-4:checked ~ .c-sub-navigation--box > div > label.tab-label-4::before {
  display: none;
}

#tab-input-4:checked ~ .tab-content-4 {
  display: block;
}

.c-tab-content--block #tab-input-4:checked ~ .tab-content-4 {
  display: block;
}

#tab-input-5:checked ~ .c-sub-navigation > div > label.tab-label-5 {
  color: #004875;
  font-weight: bold;
}

#tab-input-5:checked ~ .c-sub-navigation > div > label.tab-label-5::before {
  background-color: #44C2EA;
}

#tab-input-5:checked ~ .c-sub-navigation--box > div > label.tab-label-5 {
  color: #44C2EA;
  background-color: #F5F8F9;
  border: 1px solid #F5F8F9;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #tab-input-5:checked ~ .c-sub-navigation--box > div > label.tab-label-5 {
    font-size: 14px;
    line-height: 130%;
  }
}

#tab-input-5:checked ~ .c-sub-navigation--box > div > label.tab-label-5::before {
  display: none;
}

#tab-input-5:checked ~ .tab-content-5 {
  display: block;
}

.c-tab-content--block #tab-input-5:checked ~ .tab-content-5 {
  display: block;
}

#tab-input-6:checked ~ .c-sub-navigation > div > label.tab-label-6 {
  color: #004875;
  font-weight: bold;
}

#tab-input-6:checked ~ .c-sub-navigation > div > label.tab-label-6::before {
  background-color: #44C2EA;
}

#tab-input-6:checked ~ .c-sub-navigation--box > div > label.tab-label-6 {
  color: #44C2EA;
  background-color: #F5F8F9;
  border: 1px solid #F5F8F9;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #tab-input-6:checked ~ .c-sub-navigation--box > div > label.tab-label-6 {
    font-size: 14px;
    line-height: 130%;
  }
}

#tab-input-6:checked ~ .c-sub-navigation--box > div > label.tab-label-6::before {
  display: none;
}

#tab-input-6:checked ~ .tab-content-6 {
  display: block;
}

.c-tab-content--block #tab-input-6:checked ~ .tab-content-6 {
  display: block;
}

.c-back-to-top {
  text-align: center;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .c-back-to-top {
    margin-top: 56px;
  }
}

@media (min-width: 1280px) {
  .c-back-to-top {
    margin-top: 106px;
  }
}

.c-back-to-top > a {
  color: #44C2EA;
  font-weight: 500;
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 8px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-pagination-prev, .c-pagination-next {
  display: inline-block;
  width: 25px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.c-pagination-prev {
  background-image: url("/wp-content/themes/igu/src/images/arrow-prev.png");
  margin-right: 16px;
}

.c-pagination-next {
  background-image: url("/wp-content/themes/igu/src/images/arrow-next.png");
  margin-left: 16px;
}

.c-pagination > ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.c-pagination > ul > li {
  width: 32px;
  height: 32px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-pagination > ul > li:not(:last-child) {
  margin-right: 0;
}

@media (min-width: 768px) {
  .c-pagination > ul > li:not(:last-child) {
    margin-right: 16px;
  }
}

.c-pagination > ul > li > a {
  color: #0069AA;
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-pagination > ul > li > a {
    font-size: 16px;
  }
}

.c-pagination > ul > li > a:hover {
  color: #44C2EA;
}

.c-pagination > ul > li > span {
  border-radius: 100%;
  background-color: #44C2EA;
  color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  height: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-pagination > ul > li > span.disabled {
  background-color: transparent;
  color: #C7C7C7;
}

.c-pagination .has-next {
  -webkit-filter: invert(20%) sepia(99%) saturate(2506%) hue-rotate(187deg) brightness(91%) contrast(101%);
          filter: invert(20%) sepia(99%) saturate(2506%) hue-rotate(187deg) brightness(91%) contrast(101%);
}

.c-pagination--search {
  margin-top: 16px;
}

.c-useful-link {
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .c-useful-link {
    padding-top: 37px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-useful-link {
    padding-top: 55px;
    padding-bottom: 48px;
  }
}

.c-masonry {
  margin-top: 40px;
}

@media (min-width: 1280px) {
  .c-masonry {
    margin-top: 32px;
  }
}

.c-masonry.flexmasonry-cols-2 .flexmasonry-item {
  width: calc(46% - 16px);
  margin: 0 0 0 34px;
}

.c-masonry.flexmasonry-cols-3 .flexmasonry-item {
  width: calc(33.333% - 16px);
  margin-right: 32px;
}

.c-masonry a {
  color: #0069AA;
}

.c-masonry a:hover {
  color: #44C2EA;
}

.c-masonry > div {
  page-break-inside: avoid;
  padding-bottom: 32px;
}

.c-masonry > div > h5, .c-card-groups.c-masonry > div > h4, .c-card-groups > div .c-search-bar .c-masonry > div > input[type=text], .c-search-bar .c-card-groups.c-masonry > div > input[type=text] {
  margin-bottom: 16px;
}

.c-masonry > div ul li:not(:last-child) {
  margin-bottom: 8px;
}

.c-masonry--member {
  background-color: #F8FCFE;
}

.c-masonry--member > div {
  padding-bottom: 24px;
  padding-top: 40px;
}

.c-content-section--gray {
  background-color: #F3F9FA;
}

.c-content-section--blue {
  background-color: #003F57;
}

.c-content-section--blue span, .c-content-section--blue a, .c-content-section--blue h4, .c-content-section--blue .c-search-bar input[type=text], .c-search-bar .c-content-section--blue input[type=text], .c-content-section--blue .c-mobile-dropdown > ul > li > a, .c-content-section--blue h3, .c-content-section--blue h2, .c-content-section--blue p, .c-content-section--blue address,
.c-content-section--blue .c-headline__header,
.c-content-section--blue .c-card-video > div > h5,
.c-content-section--blue .c-card-groups.c-card-video > div > h4,
.c-content-section--blue .c-card-groups > div .c-search-bar .c-card-video > div > input[type=text],
.c-card-groups > div .c-search-bar .c-content-section--blue .c-card-video > div > input[type=text],
.c-content-section--blue .c-search-bar .c-card-groups.c-card-video > div > input[type=text],
.c-search-bar .c-content-section--blue .c-card-groups.c-card-video > div > input[type=text],
.c-content-section--blue .c-card-video > div > h6,
.c-content-section--blue .c-card-video > div > span.published > span {
  color: white;
}

.c-content-section--blue > .c-card-events > .c-card-events-content h2 a:visited,
.c-content-section--blue > .c-card-events > .c-card-events-content h3 a:visited,
.c-content-section--blue > .c-card-events > .c-card-events-content h4 a:visited,
.c-content-section--blue > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a:visited,
.c-search-bar .c-content-section--blue > .c-card-events > .c-card-events-content input[type=text] a:visited,
.c-content-section--blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a:visited {
  color: white;
}

.c-content-section--blue .c-card-events > div > span,
.c-content-section--blue .c-card-events > div > address {
  color: white;
}

.page-dashboard .c-content-section {
  padding-bottom: 16px;
}

.page-dashboard .c-content-section > div > .c-col-3 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.page-dashboard .c-content-section > div > .c-col-3 > div {
  margin-bottom: 32px;
}

.page-dashboard .c-content-section > div > .c-col-3 > *:nth-child(2) ~ div {
  display: none;
}

@media (min-width: 1280px) {
  .page-dashboard .c-content-section > div > .c-col-3 > *:nth-child(2) ~ div {
    display: block;
  }
}

@media (min-width: 1280px) {
  .page-dashboard .c-content-section > div > .c-col-3 > *:nth-child(3) ~ div {
    display: none;
  }
}

.page-dashboard .c-content-section > div > .c-col-3.show-all-block > div {
  display: block;
}

@media (max-width: 767px) {
  .page-dashboard .c-content-section .o-button--tertiary:hover {
    color: #0069AA;
  }
}

.c-breadcrumbs {
  border-top: 6px solid #F5F8F9;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 56px;
  align-items: center;
}

.c-breadcrumbs > div > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-breadcrumbs > div > ul > li {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-breadcrumbs > div > ul > li {
    font-size: 14px;
  }
}

.c-breadcrumbs > div > ul > li:not(:last-child) {
  padding-right: 24px;
  position: relative;
}

.c-breadcrumbs > div > ul > li:not(:last-child)::before {
  content: "";
  position: absolute;
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 7px;
  height: 12px;
  top: 6px;
  right: 8px;
}

.c-breadcrumbs > div > ul > li:last-child {
  font-weight: bold;
  color: #003F57;
}

.c-breadcrumbs a {
  color: #44C2EA;
}

.c-breadcrumbs img {
  position: relative;
  top: 2px;
}

.c-breadcrumbs--no-border {
  border: 0;
}

.members-meetings-template-default .c-breadcrumbs {
  border: 0;
}

.c-two-column-text {
  padding: 24px 0 40px;
}

@media (min-width: 768px) {
  .c-two-column-text {
    padding: 32px 0 56px;
  }
}

@media (min-width: 1024px) {
  .c-two-column-text {
    padding: 48px 0 80px;
  }
}

.c-two-column-text-content {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}

@media (min-width: 768px) {
  .c-two-column-text-content {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

@media (min-width: 1280px) {
  .c-two-column-text-content {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.c-two-column-text-content > p:not(:last-child) {
  margin-bottom: 16px;
}

.c-two-column-text-content a {
  color: #0069AA;
}

.c-two-column-text-content a:hover {
  color: #44C2EA;
}

.c-two-column-text--narrow-928 {
  max-width: 928px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .c-two-column-text--narrow-928 {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1024px) {
  .c-two-column-text--narrow-928 {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-one-column-text {
  padding: 24px 0 40px;
}

@media (min-width: 768px) {
  .c-one-column-text {
    padding: 32px 0 56px;
  }
}

@media (min-width: 1024px) {
  .c-one-column-text {
    padding: 48px 0 80px;
  }
}

.c-one-column-text-content > p:not(:last-child) {
  margin-bottom: 16px;
}

.c-one-column-text-content a {
  color: #0069AA;
}

.c-one-column-text-content a:hover {
  color: #44C2EA;
}

.c-one-column-text--narrow-928 {
  max-width: 928px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .c-one-column-text--narrow-928 {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1024px) {
  .c-one-column-text--narrow-928 {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-news-inner-wrap {
  background-color: #F5F8F9;
}

.c-news-inner-wrap--narrow-928 > .c-card-download {
  max-width: 928px;
  padding: 0 16px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .c-news-inner-wrap--narrow-928 > .c-card-download {
    padding: 0 48px;
  }
}

@media (min-width: 1024px) {
  .c-news-inner-wrap--narrow-928 > .c-card-download {
    padding: 0;
  }
}

.c-search-filter {
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
}

.c-search-filter > div:nth-child(1),
.c-search-filter > div:nth-child(1) > div > button,
.c-search-filter > div:nth-child(1) > div > ul {
  min-width: 105px;
}

@media (min-width: 768px) {
  .c-search-filter > div:nth-child(1),
  .c-search-filter > div:nth-child(1) > div > button,
  .c-search-filter > div:nth-child(1) > div > ul {
    min-width: 130px;
  }
}

.c-search-filter > div:nth-child(2),
.c-search-filter > div:nth-child(2) > div > button,
.c-search-filter > div:nth-child(2) > div > ul {
  min-width: 95px;
}

@media (min-width: 768px) {
  .c-search-filter > div:nth-child(2),
  .c-search-filter > div:nth-child(2) > div > button,
  .c-search-filter > div:nth-child(2) > div > ul {
    min-width: 100px;
  }
}

.c-search-filter > div:nth-child(1) > div > button > span,
.c-search-filter > div:nth-child(2) > div > button > span {
  padding-right: 10px;
}

@media (min-width: 768px) {
  .c-search-filter > div:nth-child(1) > div > button > span,
  .c-search-filter > div:nth-child(2) > div > button > span {
    padding-right: 20px;
  }
}

.c-search-filter > button {
  margin-left: auto;
  font-family: "HK Grotesk", sans-serif;
  color: #004875;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.05em;
  border: 0;
  background-color: transparent;
}

@media (min-width: 768px) {
  .c-search-filter > button {
    font-size: 16px;
  }
}

.c-search-result {
  margin-top: 42px;
}

.c-chart-container {
  position: relative;
  width: 100%;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .c-chart-container {
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-chart-container {
    padding-bottom: 48px;
  }
}

.c-chart-container canvas {
  height: 190px !important;
}

@media (min-width: 768px) {
  .c-chart-container canvas {
    height: 350px !important;
  }
}

.c-membership-section {
  max-width: 540px;
  /* & > div:not(:first-child) {
        padding-top: 24px;
    
        @include maxpoint($tablet) {
            padding-top: 32px;
        }
    } */
}

.c-membership-section > div {
  margin-bottom: 0 !important;
  padding-top: 24px;
}

@media (min-width: 768px) {
  .c-membership-section > div {
    padding-top: 32px;
  }
}

.c-terms-and-conditions-wrap h1,
.c-terms-and-conditions-wrap h2,
.c-terms-and-conditions-wrap h3,
.c-terms-and-conditions-wrap h4,
.c-terms-and-conditions-wrap .c-search-bar input[type=text],
.c-search-bar .c-terms-and-conditions-wrap input[type=text],
.c-terms-and-conditions-wrap .c-mobile-dropdown > ul > li > a,
.c-terms-and-conditions-wrap h5,
.c-terms-and-conditions-wrap .c-card-groups > div h4,
.c-card-groups > div .c-terms-and-conditions-wrap h4,
.c-terms-and-conditions-wrap .c-card-groups > div .c-search-bar input[type=text],
.c-card-groups > div .c-search-bar .c-terms-and-conditions-wrap input[type=text],
.c-terms-and-conditions-wrap .c-search-bar .c-card-groups > div input[type=text],
.c-search-bar .c-card-groups > div .c-terms-and-conditions-wrap input[type=text],
.c-terms-and-conditions-wrap .c-card-groups > div .c-mobile-dropdown > ul > li > a,
.c-card-groups > div .c-terms-and-conditions-wrap .c-mobile-dropdown > ul > li > a,
.c-terms-and-conditions-wrap ul,
.c-terms-and-conditions-wrap ol {
  margin-bottom: 32px;
}

.c-terms-and-conditions-wrap h6, .c-terms-and-conditions-wrap .c-card-statistics h2 > span, .c-card-statistics .c-terms-and-conditions-wrap h2 > span, .c-terms-and-conditions-wrap .c-mobile-dropdown > ul > li > ul > li > a {
  margin-bottom: 16px;
}

.c-terms-and-conditions-wrap a, .c-terms-and-conditions-wrap a:visited {
  color: #0069AA;
}

.c-terms-and-conditions-wrap a:hover, .c-terms-and-conditions-wrap a:visited:hover {
  color: #44C2EA;
}

.c-terms-and-conditions-wrap p:not(:last-child) {
  margin-bottom: 32px;
}

.c-terms-and-conditions-wrap ul li {
  padding-left: 24px;
  position: relative;
}

.c-terms-and-conditions-wrap ul li:not(:last-child) {
  margin-bottom: 16px;
}

.c-terms-and-conditions-wrap ul li::before {
  content: "";
  background-color: #7CB135;
  border-radius: 50%;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  position: absolute;
  top: 9px;
  left: 0;
}

@media (min-width: 768px) {
  .c-terms-and-conditions-wrap ul li::before {
    margin-right: 16px;
  }
}

/* .c-facts-figure .c-mobile-sidebar {
    padding-left: 0;
    padding-right: 0px;
    margin-bottom: 24px;
} */
@media (max-width: 767px) {
  .c-facts-figure {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .c-facts-figure .c-section-with-sidebar {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
  }
}

.c-section-twitter {
  background-color: #F5FBFF;
}

.c-section-twitter #ctf .ctf-header {
  border-bottom: none;
}

@media (min-width: 1280px) {
  .c-section-twitter #ctf .ctf-tweets .ctf-owl-item {
    padding: 0 15px;
  }
}

.c-section-twitter #ctf .ctf-tweets .ctf-owl-item .ctf-item {
  padding: 24px 24px 26px;
}

@media (min-width: 1280px) {
  .c-section-twitter #ctf .ctf-tweets .ctf-owl-item .ctf-item {
    padding: 24px 23px 25px;
  }
}

.c-section-twitter #ctf .ctf-tweets .ctf-owl-item #ctf-more {
  color: #0069AA;
}

.c-section-twitter #ctf .ctf-tweets .ctf-owl-item #ctf-more:hover {
  color: #44C2EA;
}

@media (max-width: 1279px) {
  .c-overview .o-three-column-content .o-three-column-content__left {
    max-width: none;
    min-width: auto;
    width: 160px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .c-overview .o-three-column-content .o-three-column-content__left {
    width: 30px;
  }
}

.cmApp_signupContainer.cmApp_embedded {
  width: auto;
  padding: 0;
}

.cmApp_signupContainer label {
  font-size: 10px;
  font-family: "HK Grotesk", sans-serif;
  font-weight: bold;
  color: #004875;
  /* float: left; */
  margin-left: 5px;
  text-transform: uppercase;
}

.c-igu-organization input[type="checkbox"] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  left: -9999px;
}

.c-organization-container > p {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-organization-container > p {
    margin-bottom: 32px;
  }
}

.c-organization-container label {
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin-bottom: 24px;
  position: relative;
  color: #2B333B;
}

@media (min-width: 768px) {
  .c-organization-container label {
    margin-bottom: 32px;
  }
}

.c-organization-container label:hover {
  color: #44C2EA;
}

.c-organization-container label::before {
  content: url("/wp-content/themes/igu/src/images/icons/chevron-down.png");
  display: inline-block;
  margin-right: 8px;
}

.c-organization-container > div {
  display: none;
  opacity: 0;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
}

.c-organization-container input[type="checkbox"] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  left: -9999px;
}

#member-1:checked ~ .member-content-1 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-1:checked ~ .member-content-1 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-2:checked ~ .member-content-2 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-2:checked ~ .member-content-2 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-3:checked ~ .member-content-3 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-3:checked ~ .member-content-3 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-4:checked ~ .member-content-4 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-4:checked ~ .member-content-4 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-5:checked ~ .member-content-5 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-5:checked ~ .member-content-5 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-6:checked ~ .member-content-6 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-6:checked ~ .member-content-6 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-7:checked ~ .member-content-7 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-7:checked ~ .member-content-7 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-8:checked ~ .member-content-8 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-8:checked ~ .member-content-8 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-9:checked ~ .member-content-9 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-9:checked ~ .member-content-9 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-10:checked ~ .member-content-10 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-10:checked ~ .member-content-10 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-11:checked ~ .member-content-11 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-11:checked ~ .member-content-11 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-12:checked ~ .member-content-12 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-12:checked ~ .member-content-12 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-13:checked ~ .member-content-13 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-13:checked ~ .member-content-13 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-14:checked ~ .member-content-14 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-14:checked ~ .member-content-14 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-15:checked ~ .member-content-15 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-15:checked ~ .member-content-15 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-16:checked ~ .member-content-16 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-16:checked ~ .member-content-16 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-17:checked ~ .member-content-17 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-17:checked ~ .member-content-17 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-18:checked ~ .member-content-18 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-18:checked ~ .member-content-18 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-19:checked ~ .member-content-19 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-19:checked ~ .member-content-19 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

#member-20:checked ~ .member-content-20 > label::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#member-20:checked ~ .member-content-20 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.ctf-tweet-content .ctf-tweet-text,
.ctf-tweet-content p {
  font-size: 14px;
}

.ctf-tweet-content a,
.ctf-tweet-content a:visited {
  color: #0069AA;
}

.ctf-tweet-content a:hover,
.ctf-tweet-content a:visited:hover {
  color: #44C2EA;
}

.ctf-header-img-hover {
  display: block !important;
  background: #1b95e0 !important;
}

.c-success-msg {
  color: #329E77;
  background: #E2F7F0;
  border: 1px solid #329E77;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 16px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 100%;
  max-width: 300px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  z-index: 999;
  display: none;
}

@media (min-width: 768px) {
  .c-success-msg {
    padding: 12px 26px 12px 16px;
    bottom: 24px;
    right: 24px;
    max-width: 382px;
  }
}

.c-success-msg a {
  display: none;
  position: absolute;
  right: 16px;
  top: 18px;
  width: 14px;
  height: 14px;
  background-image: url("/wp-content/themes/igu/src/images/icons/green-x-ico.svg");
}

@media (min-width: 768px) {
  .c-success-msg a {
    display: inline-block;
    right: 26px;
  }
}

.c-success-msg--top-static {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 24px 0;
  text-align: center;
  font-size: 14px;
  z-index: 1;
}

@media (min-width: 1024px) {
  .c-success-msg--top-static {
    font-size: 15px;
  }
}

.c-success-msg--top-static a {
  position: relative;
  top: 2px;
  right: 0;
  margin-left: 16px;
  display: inline-block;
}

.c-success-msg--error {
  background-color: #E2E6E9;
  border: 1px #F03F3F solid;
  color: #F03F3F;
}

.c-success-msg--error a {
  background-image: url("/wp-content/themes/igu/src/images/icons/green-x-ico.svg");
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

/* Change color of all headings on featured section of Single inner pages */
.single .c-section-featured > div > div h2 {
  color: #004875;
}

.single-news .c-featured-download .c-card-download .c-card-download-content h5, .single-news .c-featured-download .c-card-download .c-card-download-content .c-card-groups > div h4, .c-card-groups > div .single-news .c-featured-download .c-card-download .c-card-download-content h4, .single-news .c-featured-download .c-card-download .c-card-download-content .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .single-news .c-featured-download .c-card-download .c-card-download-content input[type=text], .single-news .c-featured-download .c-card-download .c-card-download-content .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .single-news .c-featured-download .c-card-download .c-card-download-content input[type=text], .single-news .c-featured-download .c-card-download .c-card-download-content .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .single-news .c-featured-download .c-card-download .c-card-download-content .c-mobile-dropdown > ul > li > a {
  color: #004875;
}

.c-error {
  text-align: center;
}

.c-error--content img {
  margin-bottom: 21px;
}

@media (min-width: 768px) {
  .c-error--content img {
    margin-bottom: 30px;
  }
}

.c-error--content h2 {
  color: #004875;
  margin-bottom: 6px;
}

@media (min-width: 1280px) {
  .c-error--content h2 {
    margin-bottom: 8px;
  }
}

.c-error .o-button {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .c-error .o-button {
    margin-top: 24px;
  }
}

.c-collab-upper {
  padding-top: 24px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .c-collab-upper {
    padding-top: 32px;
    padding-bottom: 28px;
  }
}

@media (min-width: 1280px) {
  .c-collab-upper {
    padding-top: 47px;
    padding-bottom: 36px;
  }
}

.c-collab-upper h3 {
  color: #004875;
  margin-bottom: 12px;
}

@media (min-width: 1280px) {
  .c-collab-upper h3 {
    margin-bottom: 16px;
  }
}

.c-collab-upper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  max-width: 588px;
}

.c-collab-upper-content p {
  margin-bottom: 13px;
}

@media (min-width: 1280px) {
  .c-collab-upper-content p {
    margin-bottom: 10px;
  }
}

.c-collab-upper-content p .updated,
.c-collab-upper-content p .group {
  color: #6C8093;
  display: block;
}

@media (max-width: 767px) {
  .c-collab-upper-content p time {
    display: block;
  }
}

.c-collab-upper-content a {
  font-weight: bold;
  color: #0069AA;
  margin-top: auto;
}

.c-collab-upper-content a:hover {
  color: #44C2EA;
}

.c-collab-upper-content > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-collab-upper-content__left {
  max-width: 50%;
  min-width: 50%;
}

@media (min-width: 768px) {
  .c-collab-upper-content__left {
    max-width: 230px;
    min-width: 230px;
  }
}

@media (min-width: 1280px) {
  .c-collab-upper-content__left {
    max-width: 185px;
    min-width: 185px;
    margin-right: 103px;
  }
}

.c-collab-bottom {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .c-collab-bottom {
    padding-bottom: 56px;
  }
}

@media (min-width: 1280px) {
  .c-collab-bottom {
    padding-bottom: 80px;
  }
}

.c-igu-secretariat {
  padding-top: 27px;
  padding-bottom: 35px;
}

@media (min-width: 768px) {
  .c-igu-secretariat {
    padding-top: 37px;
    padding-bottom: 37px;
  }
}

@media (min-width: 1280px) {
  .c-igu-secretariat {
    padding-top: 54px;
    padding-bottom: 39px;
  }
}

.c-igu-secretariat .section-head, .c-igu-secretariat .c-headline__header {
  margin-bottom: 27px;
}

@media (min-width: 768px) {
  .c-igu-secretariat .section-head, .c-igu-secretariat .c-headline__header {
    margin-bottom: 29px;
  }
}

@media (min-width: 1280px) {
  .c-igu-secretariat .section-head, .c-igu-secretariat .c-headline__header {
    margin-bottom: 30px;
  }
}

.c-igu-secretariat .igu-secretariat-featured figure {
  max-width: 343px;
  max-height: 172px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-igu-secretariat .igu-secretariat-featured figure {
    max-width: 440px;
    max-height: 240px;
  }
}

@media (min-width: 1024px) {
  .c-igu-secretariat .igu-secretariat-featured figure {
    max-width: 640px;
    max-height: 322px;
  }
}

.c-igu-secretariat .igu-secretariat-featured figure img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 343px;
  min-width: 343px;
  max-height: 172px;
}

@media (min-width: 768px) {
  .c-igu-secretariat .igu-secretariat-featured figure img {
    max-width: 440px;
    min-width: 440px;
    max-height: 240px;
  }
}

@media (min-width: 1024px) {
  .c-igu-secretariat .igu-secretariat-featured figure img {
    max-width: 640px;
    min-width: 640px;
    max-height: 322px;
  }
}

.c-igu-secretariat .igu-secretariat-featured h3 {
  color: #004875;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .c-igu-secretariat .igu-secretariat-featured h3 {
    margin-bottom: 8px;
  }
}

.c-igu-secretariat .igu-secretariat-featured h3 a {
  color: #0069AA;
}

.c-igu-secretariat .igu-secretariat-featured h3 a:hover {
  color: #44C2EA;
}

.c-igu-secretariat .igu-secretariat-featured p {
  color: #2B333B;
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-igu-secretariat .igu-secretariat-featured p {
    font-size: 16px;
  }
}

.c-igu-secretariat .igu-secretariat-featured .published {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .c-igu-secretariat .igu-secretariat-featured .published {
    margin-top: 16px;
  }
}

.c-igu-secretariat .igu-secretariat-featured .published span {
  color: #6C8093;
}

.c-igu-secretariat .eyebrow {
  margin-bottom: 22px;
}

@media (min-width: 1280px) {
  .c-igu-secretariat .eyebrow {
    margin-bottom: 16px;
  }
}

.c-administrators-contact-references {
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .c-administrators-contact-references {
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .c-administrators-contact-references {
    padding-bottom: 56px;
  }
}

.c-administrators-contact-references .section-head, .c-administrators-contact-references .c-headline__header {
  margin-bottom: 27px;
}

@media (min-width: 768px) {
  .c-administrators-contact-references .section-head, .c-administrators-contact-references .c-headline__header {
    margin-bottom: 29px;
  }
}

@media (min-width: 1280px) {
  .c-administrators-contact-references .section-head, .c-administrators-contact-references .c-headline__header {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .c-administrators-contact-references-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-executive-meetings {
  padding-top: 25px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .c-executive-meetings {
    padding-top: 33px;
    padding-bottom: 56px;
  }
}

@media (min-width: 1280px) {
  .c-executive-meetings {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

.c-executive-meetings .eyebrow {
  margin-bottom: 22px;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .c-executive-meetings .eyebrow {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .c-executive-meetings .eyebrow {
    margin-bottom: 16px;
  }
}

.c-executive-meetings .o-container-right-sidebar__right {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .c-executive-meetings .o-container-right-sidebar__right {
    margin-top: 0;
  }
}

.c-executive-meetings .c-search-filter {
  margin-top: 0;
}

.c-executive-meetings-details {
  padding-top: 32px;
  padding-bottom: 0px;
}

@media (min-width: 768px) {
  .c-executive-meetings-details {
    padding-top: 33px;
    padding-bottom: 0px;
  }
}

@media (min-width: 1280px) {
  .c-executive-meetings-details {
    padding-top: 48px;
    padding-bottom: 0px;
  }
}

.c-executive-meetings-details a {
  color: #004875;
}

.c-executive-meetings-details__content {
  width: 343px;
  margin: auto;
}

@media (min-width: 768px) {
  .c-executive-meetings-details__content {
    width: 556px;
  }
}

@media (min-width: 1280px) {
  .c-executive-meetings-details__content {
    width: 544px;
  }
}

.c-executive-meetings-details__content .c-sub-navigation > div > label:not(:last-child) {
  margin-right: 24px;
}

.c-downloadable {
  margin: 40px auto;
  width: 100%;
}

@media (min-width: 768px) {
  .c-downloadable {
    width: 544px;
  }
}

.c-downloadable h4, .c-downloadable .c-search-bar input[type=text], .c-search-bar .c-downloadable input[type=text], .c-downloadable .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 30px;
  font-size: 18px;
}

@media (min-width: 768px) {
  .c-downloadable h4, .c-downloadable .c-search-bar input[type=text], .c-search-bar .c-downloadable input[type=text], .c-downloadable .c-mobile-dropdown > ul > li > a {
    font-size: 23px;
  }
}

.c-downloadable-list {
  width: 100%;
  margin: 0px auto;
}

@media (min-width: 768px) {
  .c-downloadable-list {
    margin: 40px auto;
  }
}

.c-downloadable-list h4, .c-downloadable-list .c-search-bar input[type=text], .c-search-bar .c-downloadable-list input[type=text], .c-downloadable-list .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 30px;
}

.c-meetings-registration-form {
  padding-top: 24px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .c-meetings-registration-form {
    padding-top: 48px;
    padding-bottom: 88px;
  }
}

@media (min-width: 1280px) {
  .c-meetings-registration-form {
    padding-bottom: 80px;
  }
}

.c-meetings-registration-form .content-wrap {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-meetings-registration-form .content-wrap {
    margin-bottom: 32px;
  }
}

.c-meetings-registration-form .content-wrap h4, .c-meetings-registration-form .content-wrap .c-search-bar input[type=text], .c-search-bar .c-meetings-registration-form .content-wrap input[type=text], .c-meetings-registration-form .content-wrap .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .c-meetings-registration-form .content-wrap h4, .c-meetings-registration-form .content-wrap .c-search-bar input[type=text], .c-search-bar .c-meetings-registration-form .content-wrap input[type=text], .c-meetings-registration-form .content-wrap .c-mobile-dropdown > ul > li > a {
    margin-bottom: 16px;
  }
}

.c-meetings-registration-form .content-wrap span,
.c-meetings-registration-form .content-wrap address {
  color: #2B333B;
  display: block;
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-meetings-registration-form .content-wrap span,
  .c-meetings-registration-form .content-wrap address {
    font-size: 14px;
  }
}

.c-meetings-registration-form .content-wrap span img,
.c-meetings-registration-form .content-wrap address img {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 3px;
}

@media (min-width: 768px) {
  .c-meetings-registration-form .content-wrap span img,
  .c-meetings-registration-form .content-wrap address img {
    margin-right: 10px;
  }
}

.c-meetings-registration-form .content-wrap address {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .c-meetings-registration-form .content-wrap address {
    margin-top: 9px;
  }
}

.c-meetings-registration-form .form-wrap > p {
  color: #414D58;
  font-size: 14px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .c-meetings-registration-form .form-wrap > p {
    margin-bottom: 32px;
  }
}

.c-meetings-registration-form .form-wrap > .c-form .o-select > .select-dropdown {
  border: 1px solid #A7B3BE;
  padding: 0 16px;
  position: relative;
}

.c-meetings-registration-form .form-wrap > .c-form .o-select > .select-dropdown button {
  height: 58px;
}

.c-meetings-registration-form .form-wrap > .c-form .o-select > .select-dropdown button span {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
}

.c-meetings-registration-form .form-wrap > .c-form .submit-wrap {
  text-align: right;
}

.c-meetings-registration-form .form-wrap > .c-form .submit-wrap button {
  min-width: 93px;
  height: 58px;
}

@media (min-width: 1280px) {
  .c-meetings-registration-form .form-wrap > .c-form .submit-wrap button {
    min-width: 188px;
  }
}

.c-edit-profile {
  padding-top: 24px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .c-edit-profile {
    padding-top: 32px;
    padding-bottom: 56px;
  }
}

@media (min-width: 1280px) {
  .c-edit-profile {
    padding-top: 47px;
    padding-bottom: 80px;
  }
}

.c-edit-profile .o-container-right-sidebar__right {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .c-edit-profile .o-container-right-sidebar__right {
    margin-top: 0;
  }
}

.c-edit-profile .content-wrap {
  background-color: #F3F9FA;
  padding: 24px 15px 24px 16px;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap {
    padding: 32px 48px;
  }
}

@media (min-width: 1280px) {
  .c-edit-profile .content-wrap {
    padding: 48px 49px 48px 48px;
  }
}

.c-edit-profile .content-wrap .profile-wrap {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .profile-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1280px) {
  .c-edit-profile .content-wrap .profile-wrap {
    margin-bottom: 32px;
  }
}

.c-edit-profile .content-wrap .profile-wrap figure {
  width: 160px;
  height: 160px;
  min-width: 160px;
  min-height: 160px;
  margin: 0 auto 17px;
  position: relative;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .profile-wrap figure {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    margin: 0 24px 0 0;
  }
}

.c-edit-profile .content-wrap .profile-wrap figure > img {
  border: 1px solid #E2E6E9;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 160px;
  height: 160px;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .profile-wrap figure > img {
    width: 96px;
    height: 96px;
  }
}

.c-edit-profile .content-wrap .profile-wrap figure > .edit-photo {
  background-color: #fff;
  border: 1px solid #E2E6E9;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  text-align: center;
  width: 49px;
  height: 49px;
  min-width: 49px;
  min-height: 49px;
  line-height: 49px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .profile-wrap figure > .edit-photo {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    line-height: 30px;
  }
}

.c-edit-profile .content-wrap .profile-wrap div {
  text-align: center;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .profile-wrap div {
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .c-edit-profile .content-wrap .profile-wrap div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-edit-profile .content-wrap .profile-wrap div h3 {
  color: #004875;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .profile-wrap div h3 {
    width: 100%;
  }
}

.c-edit-profile .content-wrap .profile-wrap div span {
  color: #6C8093;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  display: block;
}

@media (min-width: 1280px) {
  .c-edit-profile .content-wrap .profile-wrap div span {
    font-size: 14px;
    font-weight: normal;
  }
}

.c-edit-profile .content-wrap .profile-wrap div span img {
  display: inline-block;
  margin-right: 9px;
  position: relative;
  top: 2px;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .profile-wrap div span img {
    margin-right: 10px;
  }
}

@media (min-width: 1280px) {
  .c-edit-profile .content-wrap .profile-wrap div span img {
    margin-right: 12px;
  }
}

.c-edit-profile .content-wrap .profile-wrap div a {
  color: #0069AA;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .profile-wrap div a {
    margin-top: 17px;
  }
}

@media (min-width: 1280px) {
  .c-edit-profile .content-wrap .profile-wrap div a {
    font-size: 14px;
    font-weight: normal;
    margin-top: 0;
  }
}

.c-edit-profile .content-wrap .profile-wrap div a:hover {
  color: #44C2EA;
}

.c-edit-profile .content-wrap .c-form .o-select {
  background-color: transparent;
}

.c-edit-profile .content-wrap .c-form .o-select > .select-dropdown {
  background-color: #fff;
  border: 1px solid #A7B3BE;
  padding: 0 16px;
  position: relative;
}

.c-edit-profile .content-wrap .c-form .o-select > .select-dropdown button {
  height: 58px;
}

.c-edit-profile .content-wrap .c-form .o-select > .select-dropdown button span {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
}

.c-edit-profile .content-wrap .c-form .o-select.has-error > .select-dropdown {
  border: 1px solid #F03F3F !important;
}

.c-edit-profile .content-wrap .c-form .o-select.has-error:after {
  top: 27%;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .c-form .submit-wrap {
    text-align: right;
  }
}

.c-edit-profile .content-wrap .c-form .submit-wrap button {
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .c-form .submit-wrap button {
    width: auto;
    margin-bottom: 0;
  }
}

.c-edit-profile .content-wrap .c-form .submit-wrap a {
  padding: 14px 40px;
  width: 100%;
}

@media (min-width: 768px) {
  .c-edit-profile .content-wrap .c-form .submit-wrap a {
    margin-left: 16px;
    width: auto;
  }
}

.c-edit-profile .c-sidebar-container {
  padding: 24px;
}

.c-edit-profile .c-sidebar-container h5, .c-edit-profile .c-sidebar-container .c-card-groups > div h4, .c-card-groups > div .c-edit-profile .c-sidebar-container h4, .c-edit-profile .c-sidebar-container .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-edit-profile .c-sidebar-container input[type=text], .c-edit-profile .c-sidebar-container .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-edit-profile .c-sidebar-container input[type=text], .c-edit-profile .c-sidebar-container .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-edit-profile .c-sidebar-container .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 2px;
}

.c-edit-profile .c-sidebar-container p {
  color: #2B333B;
  font-size: 14px;
}

@media (min-width: 1280px) {
  .c-edit-profile .c-sidebar-container p {
    font-size: 16px;
  }
}

.c-edit-profile .c-sidebar-container .o-button {
  font-size: 14px;
  letter-spacing: normal;
  margin-top: 24px;
  padding: 10px 24px;
}

@media (min-width: 768px) {
  .c-edit-profile .c-sidebar-container .o-button {
    padding: 10px 18px;
    min-width: 160px;
  }
}

@media (min-width: 1280px) {
  .c-edit-profile .c-sidebar-container .o-button {
    font-size: 16px;
    margin-top: 32px;
    padding: 8px 24px;
    min-width: initial;
  }
}

.c-edit-profile .hidden {
  display: none;
}

.page-membership-list .c-mobile-sidebar {
  height: 74px;
  padding: 16px 16px 0;
}

.page-membership-list .c-mobile-sidebar > div {
  padding-top: 8px;
}

.page-profile #profile-avatar {
  position: relative;
  z-index: -100;
}

.page-profile .profile-wrap div {
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .page-profile .profile-wrap div {
    min-height: 63px;
  }
}

@media (min-width: 1280px) {
  .page-profile .profile-wrap div {
    min-height: 78px;
  }
}

@media (min-width: 1024px) {
  .page-profile .profile-wrap div .js-edit-profile {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.single-committees .site-main {
  padding-bottom: 64px;
}

.page-newsletters .c-card-membership .o-button {
  width: 100%;
}

@media (min-width: 768px) {
  .page-newsletters .c-card-membership .o-button {
    max-width: auto;
    width: auto;
  }
}

.single-members-event .c-subscribe {
  margin-top: 0px !important;
}

.single-triennium .c-section-featured {
  padding-bottom: 0;
}

.single-members-event .c-section-featured--article + .o-container-custom .c-one-column-text {
  padding-top: 0px;
}

@media (min-width: 768px) {
  .c-resources-upload {
    padding: 0;
  }
}

.c-resources-upload--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) {
  .c-resources-upload--header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.c-resources-upload--header__subhead {
  color: #6C8093;
  font-family: "HK Grotesk", sans-serif;
  font-weight: normal;
  font-size: 14px;
  margin-top: 8px;
  line-height: 160%;
  margin-right: 4px;
}

@media (min-width: 768px) {
  .c-resources-upload--header__subhead {
    font-size: 16px;
    margin-right: 0px;
  }
}

.c-resources-upload--header-right {
  max-width: 111px;
  width: 100%;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .c-resources-upload--header-right {
    margin-top: 0;
    max-width: 140px;
  }
}

.c-resources-upload--header-right > div a {
  color: #0069AA;
  letter-spacing: 0.05em;
  font-family: "HK Grotesk", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 160%;
}

@media (min-width: 768px) {
  .c-resources-upload--header-right > div a {
    font-size: 16px;
  }
}

.c-resources-upload--header-right > div a > svg {
  position: relative;
  top: 2px;
  margin-right: 0px;
}

@media (min-width: 768px) {
  .c-resources-upload--header-right > div a > svg {
    margin-right: 8px;
  }
}

.c-resources-upload--header-right > span {
  color: #6C8093;
  font-family: "HK Grotesk", sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: 11px;
  line-height: 100%;
  display: block;
  margin-left: 26px;
  margin-top: 8px;
}

.c-resources-upload--body {
  margin-top: 24px;
}

.c-resources-upload--body__head {
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #A7B3BE;
}

@media (min-width: 768px) {
  .c-resources-upload--body__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.c-resources-upload--body__head li {
  color: #414D58;
  font-weight: bold;
  font-size: 14px;
  line-height: 130%;
  text-transform: capitalize;
}

.c-resources-upload--body__head li:nth-child(1) {
  width: 100%;
  max-width: 178px;
  padding-right: 16px;
}

@media (min-width: 1280px) {
  .c-resources-upload--body__head li:nth-child(1) {
    max-width: 374px;
  }
}

.c-resources-upload--body__head li:nth-child(2) {
  width: 100%;
  max-width: 149px;
  padding-right: 16px;
}

.c-resources-upload--body__head li:nth-child(3) > svg {
  position: relative;
  top: 2px;
}

.c-resources-upload--body__head li:nth-child(3):hover {
  color: #44C2EA;
  cursor: pointer;
}

.c-resources-upload--body__head li:nth-child(3):hover svg path {
  fill: #44C2EA;
}

.c-resources-upload--body__head li:nth-child(3)[data-sort="oldest"] svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-resources-upload--body__row-desktop {
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 100%;
  border-bottom: 1px solid #E2E6E9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .c-resources-upload--body__row-desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-resources-upload--body__row-desktop > li {
  color: #414D58;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 110%;
}

.c-resources-upload--body__row-desktop > li:nth-child(1) {
  line-height: 120%;
  max-width: 40px;
  width: 100%;
  padding-right: 8px;
}

.c-resources-upload--body__row-desktop > li:nth-child(1) img {
  width: 32px;
  height: 32px;
}

.c-resources-upload--body__row-desktop > li:nth-child(2) {
  padding-right: 16px;
  max-width: 137px;
  width: 100%;
}

@media (min-width: 1280px) {
  .c-resources-upload--body__row-desktop > li:nth-child(2) {
    max-width: 334px;
  }
}

.c-resources-upload--body__row-desktop > li:nth-child(3) {
  max-width: 150px;
  width: 100%;
  padding-right: 16px;
  font-weight: normal;
}

.c-resources-upload--body__row-desktop > li:nth-child(4) {
  position: relative;
  max-width: 108px;
  width: 100%;
  font-weight: normal;
  font-size: 11px;
  line-height: 100%;
  height: 27px;
}

.c-resources-upload--body__row-desktop > li:nth-child(4) > div {
  position: relative;
  right: 0;
  top: 6px;
  display: inline-block;
  margin-left: 14px;
  cursor: pointer;
}

.c-resources-upload--body__row-desktop .dropdown-thumb {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  top: 15px;
  right: -105px;
  z-index: 100;
  width: 123px;
  padding: 24px 16px 24px;
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
}

.c-resources-upload--body__row-desktop .dropdown-thumb ul {
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.c-resources-upload--body__row-desktop .dropdown-thumb ul li {
  display: block;
}

.c-resources-upload--body__row-desktop .dropdown-thumb ul li:first-child {
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E6E9;
}

.c-resources-upload--body__row-desktop .dropdown-thumb ul li:last-child {
  padding-top: 16px;
}

.c-resources-upload--body__row-desktop .dropdown-thumb ul li a {
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
  color: #6C8093;
}

.c-resources-upload--body__row-desktop .dropdown-thumb ul li a:hover {
  color: #44C2EA;
  font-weight: bold;
  font-size: 16px;
  line-height: 160%;
}

.c-resources-upload--body__row-desktop .dropdown-thumb--delete {
  padding: 16px;
}

.c-resources-upload--body__row-desktop .dropdown-thumb--delete ul > li:first-child {
  border: 0;
  padding: 0;
}

.c-resources-upload--body__row-desktop .drop-down:hover .dropdown-thumb {
  display: block;
}

.c-resources-upload--body__row-mobile {
  border-bottom: 1px solid #E2E6E9;
  margin-bottom: 16px;
  padding-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 768px) {
  .c-resources-upload--body__row-mobile {
    display: none;
  }
}

.c-resources-upload--body__row-mobile .ru-file {
  margin-right: 16px;
}

.c-resources-upload--body__row-mobile .ru-file img, .c-resources-upload--body__row-mobile .ru-file svg {
  width: 64px;
  height: 64px;
}

.c-resources-upload--body__row-mobile .ru-upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  width: 100%;
}

.c-resources-upload--body__row-mobile .ru-upload span.file-name {
  display: inline-block;
  color: #414D58;
  font-weight: bold;
  font-size: 14px;
  line-height: 120%;
}

@media (min-width: 768px) {
  .c-resources-upload--body__row-mobile .ru-upload span.file-name {
    font-weight: normal;
    font-size: 12px;
    line-height: 110%;
  }
}

.c-resources-upload--body__row-mobile .ru-upload span.uploader {
  color: #414D58;
  font-weight: normal;
  font-size: 11px;
  line-height: 100%;
  display: block;
  margin-top: 8px;
}

.c-resources-upload--body__row-mobile .ru-upload > div:first-child {
  margin-right: 16px;
  width: 50%;
}

.c-resources-upload--body__row-mobile .ru-upload > div:last-child {
  width: 50%;
}

.c-resources-upload--body__row-mobile .ru-upload svg {
  position: relative;
  top: 4px;
}

.c-resources-upload--sorter {
  background: #F5F8F9;
  height: 46px;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
  padding-right: 4px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) {
  .c-resources-upload--sorter {
    display: none;
  }
}

.c-resources-upload--sorter > div:first-child {
  color: #003F57;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 160%;
}

.c-resources-upload--sorter .select-dropdown__button {
  font-size: 14px;
}

.c-resources-upload--sorter .o-select--arrow::after {
  width: 9px;
}

.c-resources-upload--sorter .select-dropdown {
  padding: 5px 15px 0 0;
}

.c-resources-upload--sorter .o-select {
  background: none;
}

.page-member-newsletter {
  background-color: #F5F8F9;
  padding-bottom: 40px;
}

.page-member-newsletter .o-container-right-sidebar-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

@media (min-width: 1024px) {
  .page-member-newsletter .o-container-right-sidebar-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.page-member-newsletter .o-container-right-sidebar__left {
  max-width: 736px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .page-member-newsletter .o-container-right-sidebar__left {
    margin-top: 0;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .page-member-newsletter .o-container-right-sidebar__left {
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .page-member-newsletter .o-container-right-sidebar__left {
    margin-right: 32px;
  }
}

.page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  padding: 16px;
}

@media (min-width: 768px) {
  .page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    padding: 24px;
  }
}

.page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured h4, .page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured .c-search-bar input[type=text], .c-search-bar .page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured input[type=text], .page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured .c-mobile-dropdown > ul > li > a {
  color: #004875;
}

.page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured > figure.img-mobile {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 424px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured > figure.img-mobile {
    display: none;
  }
}

.page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured > figure.img-desktop {
  display: none;
}

@media (min-width: 768px) {
  .page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured > figure.img-desktop {
    display: block;
    max-width: 231px;
    width: 100%;
  }
}

.page-member-newsletter .o-container-right-sidebar__left .c-card-reports--featured > figure.img-desktop img {
  max-height: 315px;
  height: 100%;
}

.page-member-newsletter .o-container-right-sidebar__right {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .page-member-newsletter .o-container-right-sidebar__right {
    max-width: 352px;
  }
}

.page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div {
    max-width: 352px;
  }
}

.page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div:first-child {
  position: relative;
}

@media (min-width: 768px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div:first-child {
    margin-right: 24px;
  }
  .page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div:first-child::after {
    content: "";
    background-color: #E2E6E9;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -24px;
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div:first-child {
    margin-right: 0;
  }
  .page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div:first-child::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div:last-child {
    margin-left: 24px;
  }
}

@media (min-width: 1024px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-cards--tablet-wrap > div:last-child {
    margin-left: 0;
  }
}

.page-member-newsletter .o-container-right-sidebar__right aside {
  padding: 0;
}

.page-member-newsletter .o-container-right-sidebar__right .c-side-card--report span {
  font-size: 12px;
}

.page-member-newsletter .o-container-right-sidebar__right .c-side-card__content {
  display: block;
}

.page-member-newsletter .o-container-right-sidebar__right .c-side-card__content h6, .page-member-newsletter .o-container-right-sidebar__right .c-side-card__content .c-card-statistics h2 > span, .c-card-statistics .page-member-newsletter .o-container-right-sidebar__right .c-side-card__content h2 > span, .page-member-newsletter .o-container-right-sidebar__right .c-side-card__content .c-mobile-dropdown > ul > li > ul > li > a {
  color: #004875;
}

.page-member-newsletter .o-container-right-sidebar__right .c-side-card__content p {
  color: #414D58;
}

@media (min-width: 1024px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-card__content p {
    max-width: 162px;
  }
}

@media (min-width: 1280px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-card__content p {
    max-width: 100%;
  }
}

.page-member-newsletter .o-container-right-sidebar__right .c-side-card__content figure {
  float: right;
  margin-left: 40px;
  margin-right: 21px;
}

@media (min-width: 768px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-card__content figure {
    margin-left: 36px;
  }
}

@media (min-width: 1024px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-card__content figure {
    margin-left: 48px;
    max-width: 162px;
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .page-member-newsletter .o-container-right-sidebar__right .c-side-card__content figure {
    max-width: 100%;
  }
}

.page-member-newsletter .o-container-right-sidebar__right .c-side-card__content figure > img {
  width: 68px;
  height: 96px;
}

.page-member-newsletter .o-container-right-sidebar__right a {
  text-align: left;
}

.page-newsletter > div {
  background-color: white;
}

@media (max-width: 767px) {
  .page-newsletter .c-headline__filter {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.page-newsletter .c-headline--newsletter .select-dropdown__button::before {
  top: 0;
}

.page-newsletter .o-select-sort button::before {
  display: none;
}

.page-newsletter .newsletter-container {
  margin-left: -12px;
  margin-right: -12px;
}

@media (min-width: 1024px) {
  .page-newsletter .newsletter-container {
    margin-left: -16px;
    margin-right: -16px;
  }
}

.page-newsletter .newsletter-container > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 6px);
          flex: 1 0 calc(50% - 6px);
  padding-left: 12px;
  padding-right: 12px;
  margin: 0;
  max-width: 183px;
}

@media (min-width: 411px) {
  .page-newsletter .newsletter-container > div {
    max-width: 202px;
  }
}

@media (min-width: 768px) {
  .page-newsletter .newsletter-container > div {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(36% - 12px);
            flex: 1 0 calc(36% - 12px);
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .page-newsletter .newsletter-container > div {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(23% - 16px);
            flex: 1 0 calc(23% - 16px);
    padding: 0;
  }
}

.page-newsletter .newsletter-container .c-card-presentations {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .page-newsletter .newsletter-container .c-card-presentations {
    max-width: 232px;
  }
}

@media (min-width: 1024px) {
  .page-newsletter .newsletter-container .c-card-presentations {
    max-width: 288px;
    margin-bottom: 48px;
    margin-left: 16px;
    margin-right: 16px;
  }
}

.page-newsletter .newsletter-container .c-card-presentations h6, .page-newsletter .newsletter-container .c-card-presentations .c-card-statistics h2 > span, .c-card-statistics .page-newsletter .newsletter-container .c-card-presentations h2 > span, .page-newsletter .newsletter-container .c-card-presentations .c-mobile-dropdown > ul > li > ul > li > a {
  color: #004875;
}

.page-newsletter .newsletter-container .c-card-presentations > figure {
  height: 237px;
  margin-bottom: 16px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .page-newsletter .newsletter-container .c-card-presentations > figure {
    width: 100%;
    height: 100%;
    max-height: 312px;
  }
}

@media (min-width: 1024px) {
  .page-newsletter .newsletter-container .c-card-presentations > figure {
    max-height: 363px;
  }
}

.page-newsletter .newsletter-container .c-card-presentations > figure img {
  max-height: 237px;
  height: 100vh;
}

@media (min-width: 768px) {
  .page-newsletter .newsletter-container .c-card-presentations > figure img {
    max-height: 312px;
  }
}

@media (min-width: 1024px) {
  .page-newsletter .newsletter-container .c-card-presentations > figure img {
    max-height: 363px;
  }
}

.page-newsletter .newsletter-container .c-card-presentations a {
  text-align: left;
  margin-top: auto;
  position: relative;
}

@media (min-width: 768px) {
  .page-newsletter .newsletter-container .c-card-presentations a {
    padding-top: 12px;
  }
}

.page-newsletter .newsletter-container .c-card-presentations a.js-download-file {
  padding-left: 40px;
}

.page-newsletter .newsletter-container .c-card-presentations a.js-download-file::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 768px) {
  .page-newsletter .newsletter-container .c-card-presentations a.js-download-file::before {
    top: 14px;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.page-newsletter .newsletter-container .c-card-presentations a:hover::after {
  color: #44C2EA;
}

.page-contact .c-card-press-release-contact figure img {
  max-height: 100%;
}

.nav {
  display: none;
  margin-right: 70px;
}

.nav input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  position: absolute;
  left: -9999px;
}

@media (min-width: 1280px) {
  .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav:hover > li > a {
  color: #6C8093;
}

.nav > li > a {
  color: #0069AA;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-transform: capitalize;
  -webkit-transition: 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  padding-bottom: 30px;
  position: relative;
}

.nav > li:not(:first-child) {
  margin-left: 56px;
}

.nav > li > a {
  position: relative;
}

.nav > li > a:before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("/wp-content/themes/igu/src/images/Chevron - Down.png");
  background-repeat: no-repeat;
  width: 9px;
  height: 5px;
  right: -18px;
  top: 8px;
}

.nav > li:hover {
  /* old design */
  /*& > a::before {
            content: "";
            background-color: #44C2EA;
            height: 2px;
            width: 100%;
            display: block;
            position: absolute;
            bottom: 0;
        }*/
}

.nav > li:hover > div > ul {
  display: block;
}

.nav > li:hover > a {
  color: #44C2EA;
}

.nav > li:hover > a::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.nav > li.drop-menu-5 .dropdown-menu-2 .dropdown-2 > li .drop::before,
.nav > li.drop-menu-1 > a:before {
  display: none;
}

/* mega menu */
.dropdown-menu {
  width: 100%;
  max-width: 100%;
  left: 0;
  top: 89px;
  right: 0;
  background-color: #FFF;
  text-align: left;
  z-index: 9999;
  position: absolute;
  overflow: hidden;
  -webkit-transition: all 0s ease 10s;
  transition: all 0s ease 10s;
  /*delay 1s*/
  display: none;
  -webkit-box-shadow: 0px 6px 22px -8px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px -8px rgba(166, 166, 166, 0.3);
}

.dropdown-menu > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
}

.dropdown-menu__sidebar {
  background: #F5F8F9;
  width: 100%;
  max-width: 262px;
  position: relative;
  padding-top: 40px;
  padding-right: 24px;
  padding-bottom: 40px;
}

.dropdown-menu__sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200%;
  display: block;
  background: #F5F8F9;
  right: 262px;
}

.dropdown-menu__sidebar > ul > li:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E2E6E9;
}

.dropdown-menu__sidebar > ul > li > label {
  color: #6C8093;
  display: block;
  position: relative;
  cursor: pointer;
}

.dropdown-menu__content {
  padding-top: 32px;
  padding-bottom: 40px;
  display: none;
  width: 100%;
}

@media (min-width: 768px) {
  .dropdown-menu__content {
    padding-top: 40px;
  }
}

.dropdown-menu__content > div {
  margin-left: 24px;
  display: none;
}

.dropdown-menu__content > div.sub-menu-content-1 .c-card-nav > figure,
.dropdown-menu__content > div.sub-menu-content-2 .c-card-nav > figure {
  max-width: 448px;
  max-height: 272px;
}

.dropdown-menu__content > div.sub-menu-content-1 .c-card-nav > figure img,
.dropdown-menu__content > div.sub-menu-content-2 .c-card-nav > figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.dropdown-menu__content .c-col-3--link h5.u-pr-100 a, .dropdown-menu__content .c-col-3--link .c-card-groups > div h4.u-pr-100 a, .c-card-groups > div .dropdown-menu__content .c-col-3--link h4.u-pr-100 a, .dropdown-menu__content .c-col-3--link .c-card-groups > div .c-search-bar input.u-pr-100[type=text] a, .c-card-groups > div .c-search-bar .dropdown-menu__content .c-col-3--link input.u-pr-100[type=text] a, .dropdown-menu__content .c-col-3--link .c-search-bar .c-card-groups > div input.u-pr-100[type=text] a, .c-search-bar .c-card-groups > div .dropdown-menu__content .c-col-3--link input.u-pr-100[type=text] a, .dropdown-menu__content .c-col-3--link .c-card-groups > div .c-mobile-dropdown > ul > li > a.u-pr-100 a, .c-card-groups > div .dropdown-menu__content .c-col-3--link .c-mobile-dropdown > ul > li > a.u-pr-100 a {
  color: #0069AA;
}

.dropdown-menu__content .c-col-3--link h5.u-pr-100 a:hover, .dropdown-menu__content .c-col-3--link .c-card-groups > div h4.u-pr-100 a:hover, .c-card-groups > div .dropdown-menu__content .c-col-3--link h4.u-pr-100 a:hover, .dropdown-menu__content .c-col-3--link .c-card-groups > div .c-search-bar input.u-pr-100[type=text] a:hover, .c-card-groups > div .c-search-bar .dropdown-menu__content .c-col-3--link input.u-pr-100[type=text] a:hover, .dropdown-menu__content .c-col-3--link .c-search-bar .c-card-groups > div input.u-pr-100[type=text] a:hover, .c-search-bar .c-card-groups > div .dropdown-menu__content .c-col-3--link input.u-pr-100[type=text] a:hover, .dropdown-menu__content .c-col-3--link .c-card-groups > div .c-mobile-dropdown > ul > li > a.u-pr-100 a:hover, .c-card-groups > div .dropdown-menu__content .c-col-3--link .c-mobile-dropdown > ul > li > a.u-pr-100 a:hover {
  color: #44C2EA;
}

.dropdown-menu__content h3 {
  color: #0069AA;
  margin: 0 16px 0 0;
}

@media (min-width: 768px) {
  .dropdown-menu__content h3 {
    margin: 0 24px 0 0;
  }
}

@media (min-width: 1280px) {
  .dropdown-menu__content h3 {
    margin: 0 32px 0 0;
  }
}

.dropdown-menu__content h3 > a {
  color: #0069AA;
}

.dropdown-menu__content h3 > a:hover {
  color: #44C2EA;
}

.dropdown-menu--single > div {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding-bottom: 40px;
}

.dropdown-menu--single > div h3.u-pr-100 a {
  color: #0069AA;
}

.dropdown-menu--single > div h3.u-pr-100 a:hover {
  color: #44C2EA;
}

.dropdown-menu--single .c-card-reports > div > h4 > a, .dropdown-menu--single .c-search-bar .c-card-reports > div > input[type=text] > a, .c-search-bar .dropdown-menu--single .c-card-reports > div > input[type=text] > a {
  font-size: 20px;
}

/* new menu */
.dropdown-menu-2 input[type="checkbox"] {
  display: none;
}

.dropdown-menu-2 .sub-menu2 {
  display: none;
}

.dropdown-menu-2 .sub-menu2 > li {
  padding: 16px 0 0 0;
}

.dropdown-menu-2 #sub-1:checked ~ ul.dropdown-2 > li > label.drop + ul.sub-menu2 {
  display: block;
}

.dropdown-menu-2 #sub-1:checked label:active {
  color: #44C2EA;
  font-weight: 400;
}

.dropdown-menu-2 #sub-1:checked ~ .dropdown-2 .drop::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown-menu-2 .dropdown-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: none;
  z-index: 9999;
  position: absolute;
  background: white;
  top: 69px;
}

.dropdown-menu-2 .dropdown-2 > li {
  padding: 16px 0;
  border-bottom: 1px solid #C7C7C7;
  margin: 0 24px;
}

.dropdown-menu-2 .dropdown-2 > li:last-child {
  border-bottom: none;
}

.dropdown-menu-2 .dropdown-2 > li {
  position: relative;
}

.dropdown-menu-2 .dropdown-2 > li .drop::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("/wp-content/themes/igu/src/images/Chevron - Down.png");
  background-repeat: no-repeat;
  width: 9px;
  height: 5px;
  left: 130px;
  top: 27px;
}

.dropdown-menu-2 .dropdown-2 a, .dropdown-menu-2 .dropdown-2 label {
  color: #6C8093;
  cursor: pointer;
}

.dropdown-menu-2 .dropdown-2 a:hover, .dropdown-menu-2 .dropdown-2 label:hover {
  color: #44C2EA;
  font-weight: 400;
}

/*#menu-1:checked ~ li.drop-menu-1 > a + div {
        display: block;
    }*/
#menu-1:checked ~ li.drop-menu-1 > a > div.dropdown-menu-2 + ul.dropdown-2 {
  display: block;
}

/*#menu-2:checked ~ li.drop-menu-2 > a + div {
        display: block;
    }*/
#menu-2:checked ~ li.drop-menu-2 > a > div.dropdown-menu-2 + ul.dropdown-2 {
  display: block;
}

/*#menu-3:checked ~ li.drop-menu-3 > a + div {
        display: block;
    }*/
#menu-3:checked ~ li.drop-menu-3 > a > div.dropdown-menu-2 + ul.dropdown-2 {
  display: block;
}

/*#menu-4:checked ~ li.drop-menu-4 > a + div {
        display: block;
    }*/
#menu-4:checked ~ li.drop-menu-4 > a > div.dropdown-menu-2 + ul.dropdown-2 {
  display: block;
}

/*#menu-5:checked ~ li.drop-menu-5 > a + div {
        display: block;
    }*/
#menu-5:checked ~ li.drop-menu-5 > a > div.dropdown-menu-2 + ul.dropdown-2 {
  display: block;
}

/*#menu-6:checked ~ li.drop-menu-6 > a + div {
        display: block;
    }*/
#menu-6:checked ~ li.drop-menu-6 > a > div.dropdown-menu-2 + ul.dropdown-2 {
  display: block;
}

#natural-gas-advantage-1:checked ~ div ul li label.side-nav-1,
#events-1:checked ~ div ul li label.side-nav-1,
#membership-1:checked ~ div ul li label.side-nav-1,
#newsroom-1:checked ~ div ul li label.side-nav-1,
#about-1:checked ~ div ul li label.side-nav-1 {
  color: #004875;
  font-weight: bold;
}

#natural-gas-advantage-1:checked ~ div ul li label.side-nav-1::after,
#events-1:checked ~ div ul li label.side-nav-1::after,
#membership-1:checked ~ div ul li label.side-nav-1::after,
#newsroom-1:checked ~ div ul li label.side-nav-1::after,
#about-1:checked ~ div ul li label.side-nav-1::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 7px;
  height: 11px;
  display: inline-block;
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#natural-gas-advantage-1:checked ~ div.menu-content-1,
#natural-gas-advantage-1:checked ~ div .sub-menu-content-1,
#events-1:checked ~ div.menu-content-1,
#events-1:checked ~ div .sub-menu-content-1,
#membership-1:checked ~ div.menu-content-1,
#membership-1:checked ~ div .sub-menu-content-1,
#newsroom-1:checked ~ div.menu-content-1,
#newsroom-1:checked ~ div .sub-menu-content-1,
#about-1:checked ~ div.menu-content-1,
#about-1:checked ~ div .sub-menu-content-1 {
  display: block;
}

#natural-gas-advantage-2:checked ~ div ul li label.side-nav-2,
#events-2:checked ~ div ul li label.side-nav-2,
#membership-2:checked ~ div ul li label.side-nav-2,
#newsroom-2:checked ~ div ul li label.side-nav-2,
#about-2:checked ~ div ul li label.side-nav-2 {
  color: #004875;
  font-weight: bold;
}

#natural-gas-advantage-2:checked ~ div ul li label.side-nav-2::after,
#events-2:checked ~ div ul li label.side-nav-2::after,
#membership-2:checked ~ div ul li label.side-nav-2::after,
#newsroom-2:checked ~ div ul li label.side-nav-2::after,
#about-2:checked ~ div ul li label.side-nav-2::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 7px;
  height: 11px;
  display: inline-block;
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#natural-gas-advantage-2:checked ~ div.menu-content-2,
#natural-gas-advantage-2:checked ~ div .sub-menu-content-2,
#events-2:checked ~ div.menu-content-2,
#events-2:checked ~ div .sub-menu-content-2,
#membership-2:checked ~ div.menu-content-2,
#membership-2:checked ~ div .sub-menu-content-2,
#newsroom-2:checked ~ div.menu-content-2,
#newsroom-2:checked ~ div .sub-menu-content-2,
#about-2:checked ~ div.menu-content-2,
#about-2:checked ~ div .sub-menu-content-2 {
  display: block;
}

#natural-gas-advantage-3:checked ~ div ul li label.side-nav-3,
#events-3:checked ~ div ul li label.side-nav-3,
#membership-3:checked ~ div ul li label.side-nav-3,
#newsroom-3:checked ~ div ul li label.side-nav-3,
#about-3:checked ~ div ul li label.side-nav-3 {
  color: #004875;
  font-weight: bold;
}

#natural-gas-advantage-3:checked ~ div ul li label.side-nav-3::after,
#events-3:checked ~ div ul li label.side-nav-3::after,
#membership-3:checked ~ div ul li label.side-nav-3::after,
#newsroom-3:checked ~ div ul li label.side-nav-3::after,
#about-3:checked ~ div ul li label.side-nav-3::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 7px;
  height: 11px;
  display: inline-block;
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#natural-gas-advantage-3:checked ~ div.menu-content-3,
#natural-gas-advantage-3:checked ~ div .sub-menu-content-3,
#events-3:checked ~ div.menu-content-3,
#events-3:checked ~ div .sub-menu-content-3,
#membership-3:checked ~ div.menu-content-3,
#membership-3:checked ~ div .sub-menu-content-3,
#newsroom-3:checked ~ div.menu-content-3,
#newsroom-3:checked ~ div .sub-menu-content-3,
#about-3:checked ~ div.menu-content-3,
#about-3:checked ~ div .sub-menu-content-3 {
  display: block;
}

#natural-gas-advantage-4:checked ~ div ul li label.side-nav-4,
#events-4:checked ~ div ul li label.side-nav-4,
#membership-4:checked ~ div ul li label.side-nav-4,
#newsroom-4:checked ~ div ul li label.side-nav-4,
#about-4:checked ~ div ul li label.side-nav-4 {
  color: #004875;
  font-weight: bold;
}

#natural-gas-advantage-4:checked ~ div ul li label.side-nav-4::after,
#events-4:checked ~ div ul li label.side-nav-4::after,
#membership-4:checked ~ div ul li label.side-nav-4::after,
#newsroom-4:checked ~ div ul li label.side-nav-4::after,
#about-4:checked ~ div ul li label.side-nav-4::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 7px;
  height: 11px;
  display: inline-block;
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#natural-gas-advantage-4:checked ~ div.menu-content-4,
#natural-gas-advantage-4:checked ~ div .sub-menu-content-4,
#events-4:checked ~ div.menu-content-4,
#events-4:checked ~ div .sub-menu-content-4,
#membership-4:checked ~ div.menu-content-4,
#membership-4:checked ~ div .sub-menu-content-4,
#newsroom-4:checked ~ div.menu-content-4,
#newsroom-4:checked ~ div .sub-menu-content-4,
#about-4:checked ~ div.menu-content-4,
#about-4:checked ~ div .sub-menu-content-4 {
  display: block;
}

#natural-gas-advantage-5:checked ~ div ul li label.side-nav-5,
#events-5:checked ~ div ul li label.side-nav-5,
#membership-5:checked ~ div ul li label.side-nav-5,
#newsroom-5:checked ~ div ul li label.side-nav-5,
#about-5:checked ~ div ul li label.side-nav-5 {
  color: #004875;
  font-weight: bold;
}

#natural-gas-advantage-5:checked ~ div ul li label.side-nav-5::after,
#events-5:checked ~ div ul li label.side-nav-5::after,
#membership-5:checked ~ div ul li label.side-nav-5::after,
#newsroom-5:checked ~ div ul li label.side-nav-5::after,
#about-5:checked ~ div ul li label.side-nav-5::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 7px;
  height: 11px;
  display: inline-block;
  background-image: url("/wp-content/themes/igu/src/images/icons/chevron-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#natural-gas-advantage-5:checked ~ div.menu-content-5,
#natural-gas-advantage-5:checked ~ div .sub-menu-content-5,
#events-5:checked ~ div.menu-content-5,
#events-5:checked ~ div .sub-menu-content-5,
#membership-5:checked ~ div.menu-content-5,
#membership-5:checked ~ div .sub-menu-content-5,
#newsroom-5:checked ~ div.menu-content-5,
#newsroom-5:checked ~ div .sub-menu-content-5,
#about-5:checked ~ div.menu-content-5,
#about-5:checked ~ div .sub-menu-content-5 {
  display: block;
}

.c-search {
  margin-left: 4px;
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

@media (min-width: 768px) {
  .c-search {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

@media (min-width: 1280px) {
  .c-search {
    margin-left: 32.5px;
  }
}

.c-search img {
  position: relative;
  top: 14px;
}

@media (min-width: 768px) {
  .c-search img {
    top: 3px;
  }
}

@media (min-width: 1280px) {
  .c-search img {
    top: 2px;
  }
}

.c-search .c-search-close {
  position: relative;
  top: -8px;
  right: 0px;
  display: none;
}

@media (min-width: 768px) {
  .c-search .c-search-close {
    position: absolute;
    top: -8px;
    right: -40px;
  }
}

@media (min-width: 1280px) {
  .c-search .c-search-close {
    right: -52px;
  }
}

#search-menu:checked ~ .nav {
  display: none;
}

#search-menu:checked ~ .burger-menu {
  display: none;
}

#search-menu:checked ~ .c-search-bar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#search-menu:checked ~ .c-search {
  margin-left: 20px;
}

@media (max-width: 767px) {
  #search-menu:checked ~ .c-search {
    margin-right: -8px;
  }
}

#search-menu:checked ~ .c-search .c-search-close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.burger-menu,
.close-menu {
  display: inline-block;
  position: relative;
  width: 34px;
  height: 32px;
  background-image: url("/wp-content/themes/igu/src/images/icons/burger.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1280px) {
  .burger-menu,
  .close-menu {
    display: none !important;
  }
}

.close-menu {
  display: none;
  background-image: url("/wp-content/themes/igu/src/images/icons/close-green.svg");
}

#burger-menu:checked ~ .c-mobile-dropdown {
  display: block;
}

#burger-menu:checked ~ .close-menu {
  display: inline-block;
}

#burger-menu:checked ~ .burger-menu {
  display: none;
}

#close-menu:checked ~ .burger-menu {
  display: inline-block;
}

#close-menu:checked ~ .close-menu {
  display: none;
}

#close-menu:checked ~ .c-mobile-dropdown {
  display: none;
}

.c-mobile-dropdown {
  display: none;
  position: absolute;
  top: 69px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  padding-left: 16px;
  padding-right: 16px;
  z-index: 9999;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .c-mobile-dropdown {
    padding-left: 44px;
    padding-right: 49px;
  }
}

@media (min-width: 1280px) {
  .c-mobile-dropdown {
    display: none !important;
  }
}

.c-mobile-dropdown input[type="checkbox"] {
  display: none;
  position: absolute;
  text-indent: -9999px;
}

.c-mobile-dropdown label {
  display: none;
}

@media (max-width: 1279px) {
  .c-mobile-dropdown label {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("/wp-content/themes/igu/src/images/icons/chevron.svg");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 50ms ease-in-out;
    transition: all 50ms ease-in-out;
    z-index: 1;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.c-mobile-dropdown > ul {
  padding-top: 24px;
  height: 90%;
  overflow-y: auto;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .c-mobile-dropdown > ul {
    padding-top: 64px;
  }
}

.c-mobile-dropdown > ul > li {
  position: relative;
}

.c-mobile-dropdown > ul > li:not(:last-child) {
  margin-bottom: 24px;
}

.c-mobile-dropdown > ul > li > a {
  color: #004875;
  padding-bottom: 16px;
  display: block;
  border-bottom: 1px solid #DBF1FF;
}

.c-mobile-dropdown > ul > li > ul {
  padding: 16px 16px 0 16px;
  display: none;
}

.c-mobile-dropdown > ul > li > ul > li > a {
  color: #6C8093;
  display: block;
}

.c-mobile-dropdown > ul > li > ul > li:not(:last-child) > a {
  padding-bottom: 16px;
}

.c-mobile-dropdown > ul > li > ul > li:not(:last-child) > a:hover {
  color: #44C2EA;
}

.c-mobile-dropdown > ul > li > ul > li.is-active > a {
  color: #44C2EA;
}

.c-mobile-dropdown #nav-accordion-0:checked ~ .nav-accordion-label-0 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-mobile-dropdown #nav-accordion-0:checked ~ .nav-accordion-label-0 ~ ul {
  display: block;
}

.c-mobile-dropdown #nav-accordion-1:checked ~ .nav-accordion-label-1 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-mobile-dropdown #nav-accordion-1:checked ~ .nav-accordion-label-1 ~ ul {
  display: block;
}

.c-mobile-dropdown #nav-accordion-2:checked ~ .nav-accordion-label-2 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-mobile-dropdown #nav-accordion-2:checked ~ .nav-accordion-label-2 ~ ul {
  display: block;
}

.c-mobile-dropdown #nav-accordion-3:checked ~ .nav-accordion-label-3 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-mobile-dropdown #nav-accordion-3:checked ~ .nav-accordion-label-3 ~ ul {
  display: block;
}

.c-mobile-dropdown #nav-accordion-4:checked ~ .nav-accordion-label-4 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-mobile-dropdown #nav-accordion-4:checked ~ .nav-accordion-label-4 ~ ul {
  display: block;
}

.c-mobile-dropdown #nav-accordion-5:checked ~ .nav-accordion-label-5 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-mobile-dropdown #nav-accordion-5:checked ~ .nav-accordion-label-5 ~ ul {
  display: block;
}

.c-mobile-dropdown #nav-accordion-6:checked ~ .nav-accordion-label-6 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.c-mobile-dropdown #nav-accordion-6:checked ~ .nav-accordion-label-6 ~ ul {
  display: block;
}

.c-sub-navigation {
  background-color: #F3F9FA;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
}

.c-sub-navigation::-webkit-scrollbar {
  width: 0;
  display: none;
}

.c-sub-navigation::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

.c-sub-navigation::-webkit-scrollbar-thumb {
  background-color: transparent;
  outline: 1px solid transparent;
}

@media (max-width: 767px) {
  .c-sub-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    padding: 0 0 0 55px;
  }
}

@media (min-width: 768px) {
  .c-sub-navigation {
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .c-sub-navigation {
    overflow: none;
  }
}

@media (min-width: 1280px) {
  .c-sub-navigation {
    margin-bottom: 48px;
  }
}

.c-sub-navigation > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

@media (max-width: 767px) {
  .c-sub-navigation > div {
    padding-right: 65px;
  }
  .c-sub-navigation > div::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #E2E6E9;
  }
}

.c-sub-navigation::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #E2E6E9;
}

.c-sub-navigation > div > label {
  color: #6C8093;
  font-weight: 500;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 56px;
  position: relative;
  line-height: 130%;
  white-space: nowrap;
}

.c-sub-navigation > div > label::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: transparent;
}

@media (min-width: 1280px) {
  .c-sub-navigation > div > label:hover {
    color: #44C2EA;
    text-shadow: 0 0 0.35px #44C2EA, 0 0 0.35px #44C2EA;
  }
  .c-sub-navigation > div > label:hover::before {
    background-color: #44C2EA;
  }
}

.c-sub-navigation > div > label:not(:last-child) {
  margin-right: 16px;
}

@media (min-width: 768px) {
  .c-sub-navigation > div > label:not(:last-child) {
    margin-right: 40px;
  }
}

.c-sub-navigation-igu {
  background-color: #F3F9FA;
  border-bottom: 1px solid #E2E6E9;
  position: relative;
  /* @include maxpoint($tablet) {
        padding-top: 17px;
        padding-bottom: 18px;
    }
    
    @include maxpoint($desktop) {
        padding-top: 18px;
        padding-bottom: 17px;
    } */
}

.c-sub-navigation-igu > div > div {
  overflow: hidden;
  height: 48px;
}

@media (min-width: 768px) {
  .c-sub-navigation-igu > div > div {
    height: 56px;
  }
}

.c-sub-navigation-igu .c-sub-navigation-igu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 65px;
}

@media (min-width: 768px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content {
    height: 73px;
  }
}

@media (min-width: 1280px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content {
    height: unset;
  }
}

.c-sub-navigation-igu .c-sub-navigation-igu-content::-webkit-scrollbar {
  width: 0;
  scrollbar-width: none;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

.c-sub-navigation-igu .c-sub-navigation-igu-content::-webkit-scrollbar-thumb {
  background-color: transparent;
  outline: 1px solid transparent;
}

@media (max-width: 1279px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content {
    overflow-x: auto;
  }
}

@media (min-width: 1280px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-sub-navigation-igu .c-sub-navigation-igu-content a {
  color: #6C8093;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  padding-top: 14px;
  padding-bottom: 12px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content a {
    padding-top: 17px;
  }
}

@media (min-width: 1280px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content a {
    padding-top: 18px;
  }
}

.c-sub-navigation-igu .c-sub-navigation-igu-content a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: transparent;
}

@media (min-width: 1280px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content a::before {
    bottom: -1px;
  }
}

.c-sub-navigation-igu .c-sub-navigation-igu-content a:hover {
  color: #44C2EA;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content a:hover::before {
  background-color: #44C2EA;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content a.active {
  color: #004875;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content a.active::before {
  background-color: #44C2EA;
}

@media (min-width: 768px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content a {
    font-size: 16px;
    font-weight: 500;
  }
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more {
  color: #6C8093;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-top: 18px;
}

@media (min-width: 1024px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more {
    font-size: 16px;
    font-weight: 500;
  }
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -19px;
  width: 100%;
  height: 2px;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more::after {
  content: "";
  width: 100px;
  height: 30px;
  background-color: transparent;
  display: block;
  position: absolute;
  top: 18px;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more div {
  display: none;
  z-index: 9999;
  position: absolute;
  background: white;
  top: 44px;
  left: -30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0px 16px;
  pointer-events: auto;
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more div a {
  margin-right: 0;
  border-bottom: #E2E6E9 1px solid;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
  display: block;
  padding: 16px 0;
  width: 100%;
  text-align: left;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more div a:hover {
  font-weight: 400;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more div a:hover::before {
  border: 0;
  background-color: transparent;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more div a:last-child {
  border: 0;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more:hover::before {
  background-color: #44C2EA;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content .js-class-more:hover div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-sub-navigation-igu .c-sub-navigation-igu-content a:not(:last-child) {
  margin-right: 18px;
}

@media (min-width: 768px) {
  .c-sub-navigation-igu .c-sub-navigation-igu-content a:not(:last-child) {
    margin-right: 39px;
  }
}

.c-side-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .c-side-cards {
    max-width: 256px;
  }
}

@media (min-width: 768px) {
  .c-side-cards--tablet-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .c-side-cards--tablet-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
}

@media (max-width: 1023px) {
  .c-side-cards--tablet-wrap .c-side-card:not(:first-child),
  .c-side-cards--tablet-wrap .c-side-card:not(:last-child) {
    margin-top: 0;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 767px) {
  .c-side-cards--tablet-wrap .c-side-card:not(:last-child) {
    border-bottom: 1px solid #E2E6E9;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .c-side-cards--tablet-wrap > div {
    margin-top: 0;
    max-width: 262px;
    width: 30vw;
    min-width: 208px;
  }
}

@media (min-width: 1024px) {
  .c-side-cards--tablet-wrap > div {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .c-side-cards--tablet-wrap > div > span > span {
    display: block;
    margin-top: -8px;
  }
}

@media (min-width: 1024px) {
  .c-side-cards--tablet-wrap > div > span > span {
    display: inline;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .c-side-cards--tablet-wrap > div:not(:last-child) {
    margin-right: 20px;
  }
}

@media (min-width: 1024px) {
  .c-side-cards--tablet-wrap > div:not(:last-child) {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .c-side-cards--tablet-wrap .c-side-card--report > div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (min-width: 1280px) {
  .c-side-cards--tablet-wrap .c-side-card--report > div {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .c-side-cards--tablet-wrap .c-side-card--report > div > figure {
    margin-left: 20px;
  }
}

@media (min-width: 1280px) {
  .c-side-cards--tablet-wrap .c-side-card--report > div > figure {
    margin-left: 0;
  }
}

.c-side-cards--last-item {
  padding-bottom: 0px !important;
}

.c-side-cards--last-item > div {
  margin-bottom: 0px !important;
  padding-bottom: 8px !important;
}

.c-side-cards--last-item > div > .c-side-card__content > h6, .c-card-statistics .c-side-cards--last-item > div > h2.c-side-card__content > span {
  margin-bottom: 4px;
}

.c-side-cards--last-item > div > .c-side-card__content > p {
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-side-cards--last-item > div > .c-side-card__content > p {
    font-size: 16px;
  }
}

.c-side-cards--last-item > div > .c-side-card__content > span {
  font-size: 12px;
  margin: 0;
  color: #6C8093;
}

@media (min-width: 768px) {
  .c-side-cards--last-item > div > .c-side-card__content > span {
    font-size: 14px;
  }
}

.c-side-cards--last-item > div > .c-side-card__content > span > span {
  color: #414D58;
}

.c-side-cards--last-item > div:not(:last-child) {
  margin-bottom: 16px !important;
  padding-bottom: 24px !important;
}

.c-side-cards > address {
  color: #414D58;
}

.c-side-cards a {
  color: #0069AA;
}

.c-side-cards a:hover {
  color: #44C2EA;
}

.c-side-cards div {
  color: #414D58;
}

@media (max-width: 1023px) {
  .c-side-cards--hide-last-tb > div:nth-child(2) {
    border-bottom: 0;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .c-side-cards--hide-last-tb > div:nth-child(3) {
    display: none;
  }
}

.c-side-card {
  width: 100%;
  height: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

@media (min-width: 768px) {
  .c-side-card {
    max-width: 224px;
  }
}

.c-side-card:not(:last-child) {
  border-bottom: 1px solid #E2E6E9;
  padding-bottom: 16px;
}

.c-side-card > .c-side-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.c-side-card > .c-side-card__content > h3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  color: #0069AA;
  margin: 0 0 8px 0;
}

.c-side-card > .c-side-card__content > h3 a {
  color: #0069AA;
}

.c-side-card > .c-side-card__content > h3 a:hover {
  color: #44C2EA;
}

.c-side-card > .c-side-card__content > span {
  color: #6C8093;
  font-size: 12px;
  margin: 0 0 16px 0;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .c-side-card > .c-side-card__content > span {
    font-size: 14px;
  }
}

.c-side-card > .c-side-card__content > span > span {
  color: #414D58;
}

.c-side-card > .c-side-card__content > p {
  color: #2B333B;
  font-size: 14px;
  line-height: 160%;
  margin: 0 0 16px 0;
}

@media (min-width: 768px) {
  .c-side-card > .c-side-card__content > p {
    font-size: 16px;
  }
}

.c-side-card > figure {
  max-height: 62px;
  max-width: 48px;
  min-width: 48px;
  margin: 0;
}

.c-side-card > figure > img,
.c-side-card > figure > a > img {
  height: 62px;
  width: 48px;
}

.c-side-card > figure > a {
  display: block;
}

.c-side-card--report {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  max-width: 100%;
}

.c-side-card--report h5, .c-side-card--report .c-card-groups > div h4, .c-card-groups > div .c-side-card--report h4, .c-side-card--report .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .c-side-card--report input[type=text], .c-side-card--report .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .c-side-card--report input[type=text], .c-side-card--report .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .c-side-card--report .c-mobile-dropdown > ul > li > a {
  margin-bottom: 8px;
}

.c-side-card--report > span {
  font-size: 12px;
  color: #6C8093;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .c-side-card--report > span {
    font-size: 14px;
  }
}

.c-side-card--report > span > span {
  color: #414D58;
}

.c-side-card--report:not(:first-child) {
  padding-top: 16px;
}

.c-side-card--report > .c-side-card__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-side-card--report > .c-side-card__content h6 a, .c-side-card--report > .c-side-card__content .c-card-statistics h2 > span a, .c-card-statistics .c-side-card--report > .c-side-card__content h2 > span a, .c-side-card--report > .c-side-card__content .c-mobile-dropdown > ul > li > ul > li > a a {
  color: #0069AA;
}

.c-side-card--report > .c-side-card__content h6 a:hover, .c-side-card--report > .c-side-card__content .c-card-statistics h2 > span a:hover, .c-card-statistics .c-side-card--report > .c-side-card__content h2 > span a:hover, .c-side-card--report > .c-side-card__content .c-mobile-dropdown > ul > li > ul > li > a a:hover {
  color: #44C2EA;
}

.c-side-card--report > .c-side-card__content > figure {
  max-height: 62px;
  max-width: 48px;
  min-width: 48px;
  margin: 0 0 0 auto;
  margin-left: 8px;
}

.c-side-card--report > .c-side-card__content > figure > img,
.c-side-card--report > .c-side-card__content > figure > a > img {
  height: 62px;
  width: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-side-card--presentation {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

.c-side-card--presentation > .c-side-card__content {
  width: 100%;
  margin-right: 8px;
}

.c-side-card--presentation > figure {
  max-width: 48px;
}

.c-side-card--presentation > figure > img {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-side-card--presentation > .c-side-card__content > span {
  margin-bottom: 0;
}

.c-side-card--news > .c-side-card__content > span {
  font-size: 16px;
}

.c-side-card--news > div > h6 {
  margin-bottom: 8px;
}

.c-side-card--news > div > h6 a:hover {
  color: #44C2EA;
}

.c-side-card--news > div > p {
  margin-bottom: 8px;
}

.c-side-card--news > div > .published {
  color: #6C8093;
  font-size: 14px;
}

.c-side-card--news > div > .published span {
  color: #414D58;
}

.c-side-card--newsroom > div > .published > span {
  color: #414D58;
}

.c-side-card--contact {
  border: 0 !important;
  padding: 0 !important;
  max-width: 100%;
}

.c-side-card--contact h6, .c-side-card--contact .c-card-statistics h2 > span, .c-card-statistics .c-side-card--contact h2 > span, .c-side-card--contact .c-mobile-dropdown > ul > li > ul > li > a {
  color: #004875;
  margin-bottom: 4px;
}

.c-side-card--contact > .c-side-card__content > p {
  margin-bottom: 0;
}

.c-side-detect {
  top: 100px;
  z-index: 10;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  display: none;
  position: sticky;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .c-side-detect {
    display: block;
    max-width: 208px;
  }
}

@media (min-width: 1280px) {
  .c-side-detect {
    max-width: 257px;
  }
}

.c-side-detect > ul {
  position: relative;
  margin-bottom: 32px;
}

.c-side-detect > ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0;
  background-color: #E7E7E7;
  width: 1px;
  height: 100%;
  z-index: 10;
}

.c-side-detect > ul > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #414D58;
  padding: 8px 0 8px 14.16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  line-height: 110%;
}

.c-side-detect > ul > li > a.is-active {
  font-weight: bold;
  color: #004875;
}

.c-side-detect > ul > li > a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  height: 41px;
  width: 3px;
  background-color: #7CB135;
}

.c-side-detect p b {
  color: #004875;
}

.c-side-detect.invert-content > ul::before {
  background-color: white;
}

.c-side-detect.invert-content p,
.c-side-detect.invert-content p b,
.c-side-detect.invert-content > ul > li > a {
  color: white;
}

.c-side-detect.invert-content .c-subscribe > p::before {
  content: url("/wp-content/themes/igu/src/images/icons/email-green.svg");
}

.c-side-detect.invert-content .c-subscribe label {
  color: white;
}

.page-natural-gas-advantage .c-side-detect {
  height: 100%;
}

.c-sidebar-container {
  background-color: #F5F8F9;
  padding: 16px;
}

.c-sidebar-container .c-side-cards > .c-card-events--dated-card:not(:last-child) {
  padding-bottom: 0 !important;
}

.c-sidebar-container .c-side-cards--span > div > div > span {
  font-size: 12px;
}

@media (min-width: 768px) {
  .c-sidebar-container .c-side-cards--span > div > div > span {
    font-size: 14px;
  }
}

.c-sidebar-container--no-bg {
  background: none;
}

@media (min-width: 768px) {
  .c-sidebar-container--tablet-wrap {
    padding: 0;
    margin-top: 30px;
    margin-bottom: 42px;
  }
}

@media (min-width: 1024px) {
  .c-sidebar-container--tablet-wrap {
    padding: 16px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.c-sidebar-container--first-img > img:first-child {
  max-height: 130px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.12);
}

.c-sidebar-container--no-padding {
  padding: 0;
}

.c-sidebar-container--press-release, .c-sidebar-container--latest-news {
  padding: 24px 16px 16px;
}

.c-mobile-sidebar {
  padding: 0 16px;
  margin-top: 0px;
  background-color: white;
}

@media (min-width: 768px) {
  .c-mobile-sidebar {
    display: none;
  }
}

.c-mobile-sidebar > div {
  background-color: #F5F8F9;
  padding-left: 0;
}

.c-mobile-sidebar > div.active-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  right: 0;
  background-color: white;
  height: 13px;
  width: 99%;
  z-index: 10;
}

.c-mobile-sidebar > div button {
  padding-left: 16px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-mobile-sidebar > div button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  background-color: #7CB135;
  width: 3px;
}

.c-mobile-sidebar > div::after {
  top: 40%;
}

.c-mobile-sidebar--home {
  margin-top: 0;
  height: 74px;
  padding: 16px 24px 0;
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3);
  margin-bottom: 32px;
}

.c-mobile-sidebar--home > div {
  background-color: transparent;
}

.c-mobile-sidebar.sticky-nav {
  top: 69px;
  margin-top: 0;
  margin-bottom: 0;
}

.mobile-sidebar-wrap {
  height: 54px;
  margin-top: 24px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .mobile-sidebar-wrap {
    height: 0;
    display: none;
  }
}

.mobile-sidebar-wrap--facts-figure {
  margin-bottom: 32px;
}

.c-footer {
  background-color: #0069AA;
  padding-top: 24px;
}

@media (min-width: 768px) {
  .c-footer {
    padding-top: 32px;
  }
}

@media (min-width: 1280px) {
  .c-footer {
    padding-top: 56px;
  }
}

.c-footer input[type="checkbox"] {
  display: none;
  position: absolute;
  text-indent: -9999px;
}

.c-footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .c-footer > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-footer-left {
  width: 100%;
  text-align: left;
  padding-bottom: 36px;
}

@media (min-width: 768px) {
  .c-footer-left {
    max-width: 152px;
    padding-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .c-footer-left {
    max-width: 256px;
  }
}

.c-footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.c-footer .footer-logo img {
  max-height: 70px;
  height: 100%;
}

@media (min-width: 768px) {
  .c-footer .footer-logo img {
    max-height: 67.73px;
  }
}

@media (min-width: 1280px) {
  .c-footer .footer-logo img {
    max-height: 115px;
  }
}

.c-footer__item {
  width: 100%;
  text-align: left;
  position: relative;
}

@media (min-width: 768px) {
  .c-footer__item {
    max-width: 152px;
    margin-bottom: 48px;
  }
}

@media (min-width: 1024px) {
  .c-footer__item {
    max-width: 240px;
  }
}

@media (min-width: 1280px) {
  .c-footer__item {
    max-width: 256px;
  }
}

.c-footer__item:not(:nth-child(3n)) {
  margin-right: 0px;
}

@media (min-width: 768px) {
  .c-footer__item:not(:nth-child(3n)) {
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {
  .c-footer__item:not(:nth-child(3n)) {
    margin-right: 32px;
  }
}

.c-footer__item > ul {
  display: none;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .c-footer__item > ul {
    display: block;
    margin-bottom: 0;
  }
}

.c-footer__item > ul > li:not(:last-child) {
  margin-bottom: 8px;
}

.c-footer__item > ul > li > a {
  color: #FFFFFF;
  font-weight: normal;
}

.c-footer__item > ul > li > a:hover {
  color: #44C2EA;
}

.c-footer a.eyebrow {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.c-footer a.eyebrow {
  color: #FFFFFF;
  margin-bottom: 24px;
  display: block;
  position: relative;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.c-footer a.eyebrow:hover {
  color: #44C2EA;
}

.c-footer label {
  display: none;
}

@media (max-width: 767px) {
  .c-footer label {
    display: inline-block;
    position: absolute;
    top: -3px;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("/wp-content/themes/igu/src/images/icons/chevron.svg");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 50ms ease-in-out;
    transition: all 50ms ease-in-out;
    z-index: 1;
  }
}

.c-footer #footer-accordion-1:checked ~ div > .footer-accordion-label-1 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-footer #footer-accordion-1:checked ~ div > .footer-accordion-label-1 ~ a {
  color: #44C2EA;
}

.c-footer #footer-accordion-1:checked ~ div > .footer-accordion-label-1 ~ ul {
  display: block;
}

.c-footer #footer-accordion-2:checked ~ div > .footer-accordion-label-2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-footer #footer-accordion-2:checked ~ div > .footer-accordion-label-2 ~ a {
  color: #44C2EA;
}

.c-footer #footer-accordion-2:checked ~ div > .footer-accordion-label-2 ~ ul {
  display: block;
}

.c-footer #footer-accordion-3:checked ~ div > .footer-accordion-label-3 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-footer #footer-accordion-3:checked ~ div > .footer-accordion-label-3 ~ a {
  color: #44C2EA;
}

.c-footer #footer-accordion-3:checked ~ div > .footer-accordion-label-3 ~ ul {
  display: block;
}

.c-footer #footer-accordion-4:checked ~ div > .footer-accordion-label-4 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-footer #footer-accordion-4:checked ~ div > .footer-accordion-label-4 ~ a {
  color: #44C2EA;
}

.c-footer #footer-accordion-4:checked ~ div > .footer-accordion-label-4 ~ ul {
  display: block;
}

.c-footer #footer-accordion-5:checked ~ div > .footer-accordion-label-5 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-footer #footer-accordion-5:checked ~ div > .footer-accordion-label-5 ~ a {
  color: #44C2EA;
}

.c-footer #footer-accordion-5:checked ~ div > .footer-accordion-label-5 ~ ul {
  display: block;
}

.c-footer #footer-accordion-6:checked ~ div > .footer-accordion-label-6 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-footer #footer-accordion-6:checked ~ div > .footer-accordion-label-6 ~ a {
  color: #44C2EA;
}

.c-footer #footer-accordion-6:checked ~ div > .footer-accordion-label-6 ~ ul {
  display: block;
}

.c-footer .bottom-footer {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 52px;
  padding-top: 24px;
}

@media (min-width: 768px) {
  .c-footer .bottom-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0;
    padding-top: 0px;
  }
}

.c-footer .bottom-footer::before {
  content: "";
  display: block;
  border-top: 1px solid #44C2EA;
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
}

@media (min-width: 768px) {
  .c-footer .bottom-footer::before {
    left: 48px;
    right: 48px;
  }
}

@media (min-width: 1280px) {
  .c-footer .bottom-footer::before {
    left: 80px;
    right: 80px;
  }
}

.c-footer .bottom-footer > div:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 768px) {
  .c-footer .bottom-footer > div:first-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-footer .bottom-footer > div:first-child > div:first-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 768px) {
  .c-footer .bottom-footer > div:first-child > div:first-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.c-footer .bottom-footer > div:first-child > div:last-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .c-footer .bottom-footer > div:first-child > div:last-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0;
  }
}

.c-footer .bottom-footer > div:last-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 768px) {
  .c-footer .bottom-footer > div:last-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.c-footer .bottom-footer > div {
  text-align: center;
}

@media (min-width: 768px) {
  .c-footer .bottom-footer > div {
    text-align: left;
  }
}

.c-footer .bottom-footer > div > div > span, .c-footer .bottom-footer > div > div > a {
  color: #F7F7F7;
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}

.c-footer .bottom-footer > div > div > a {
  display: inline-block;
  margin-left: 16px;
}

@media (min-width: 1280px) {
  .c-footer .bottom-footer > div > div > a {
    margin-left: 24px;
  }
}

.c-footer .bottom-footer > div > div > a:hover {
  color: #44C2EA;
}

.c-footer .bottom-footer > div > div > a:first-child {
  margin-left: 0;
}

@media (min-width: 1280px) {
  .c-footer .bottom-footer > div > div > a:first-child {
    margin-left: 24px;
  }
}

.c-footer .bottom-footer ul {
  margin: 0 0 26px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .c-footer .bottom-footer ul {
    margin: 0;
  }
}

.c-footer .bottom-footer ul > li {
  margin: 0;
  display: inline-block;
}

.c-footer .bottom-footer ul > li:not(:first-child) > a {
  margin-left: 16px;
}

.c-save-article {
  padding: 24px 58px;
  background-color: #F3F9FA;
  text-align: center;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .c-save-article {
    padding: 32px 0;
    margin-top: 56px;
  }
}

@media (min-width: 1280px) {
  .c-save-article {
    padding: 32px 0 48px;
    margin-top: 0px;
  }
}

.c-save-article h4, .c-save-article .c-search-bar input[type=text], .c-search-bar .c-save-article input[type=text], .c-save-article .c-mobile-dropdown > ul > li > a {
  color: #004875;
  margin-bottom: 8px;
}

.c-save-article p {
  margin-bottom: 24px;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .c-save-article p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .c-save-article--mobile-no-top {
    margin-top: 0 !important;
  }
}

@media (min-width: 768px) {
  .c-save-article--article {
    padding: 32px 24px;
  }
}

@media (min-width: 1280px) {
  .c-save-article--article {
    padding: 32px 32px 48px;
  }
}

/* ==================================================
loading message
================================================== */
.data-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ==================================================
  popups
  ================================================== */
.leaflet-popup-content-wrapper {
  overflow: auto;
  -webkit-box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3) !important;
          box-shadow: 0px 6px 22px rgba(166, 166, 166, 0.3) !important;
  border-radius: 0 !important;
  padding: 0;
  border-top: 0px solid red;
}

.leaflet-popup-content {
  padding: 0;
  margin: 16px !important;
  width: 130px;
}

.leaflet-popup-content .marker-popup {
  width: 125px;
}

.leaflet-popup-content .marker-popup > span {
  font-weight: bold;
  color: #0087DB;
}

.leaflet-popup-content .marker-popup > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  margin-top: 4px;
}

.leaflet-popup-content .marker-popup > div > span {
  color: #6C8093;
  font-size: 12px;
  font-weight: 500;
}

.leaflet-popup-content .marker-popup .country {
  display: block;
  color: #0069AA;
}

.leaflet-popup-content .marker-popup .city {
  font-weight: normal;
  color: #004875;
}

.leaflet-popup-content .marker-popup dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0;
}

.leaflet-popup-content .marker-popup dl > dt {
  width: 100%;
}

.leaflet-popup-content .marker-popup dl > dt b {
  font-size: 12px;
  font-family: "Tiempos Headline", sans-serif;
  color: #004875;
}

.leaflet-popup-content .marker-popup .air-quality {
  margin-bottom: 4px;
  display: block;
  position: relative;
}

.leaflet-popup-content .marker-popup .air-quality.good {
  color: #7CB135;
}

.leaflet-popup-content .marker-popup .air-quality.good::before {
  content: 'Good';
}

.leaflet-popup-content .marker-popup .air-quality.moderate {
  color: #fdd74b;
}

.leaflet-popup-content .marker-popup .air-quality.moderate::before {
  content: 'Moderate';
}

.leaflet-popup-content .marker-popup .air-quality.unhealthy-1 {
  color: #fe9b57;
}

.leaflet-popup-content .marker-popup .air-quality.unhealthy-1::before {
  content: 'Unhealthy for sensitive groups';
}

.leaflet-popup-content .marker-popup .air-quality.unhealthy-2 {
  color: #fe6a69;
}

.leaflet-popup-content .marker-popup .air-quality.unhealthy-2::before {
  content: 'Unhealthy';
}

.leaflet-popup-content .marker-popup .air-quality.unhealthy-3 {
  color: #a97abc;
}

.leaflet-popup-content .marker-popup .air-quality.unhealthy-3::before {
  content: 'Very unhealthy';
}

.leaflet-popup-content .marker-popup .air-quality.hazardous {
  color: #a87383;
}

.leaflet-popup-content .marker-popup .air-quality.hazardous::before {
  content: 'Hazardous';
}

.leaflet-popup-tip-container {
  display: none;
  padding: 0;
}

.leaflet-popup-close-button {
  display: none;
}

.browse__map--infowindow--section + .browse__map--infowindow--section {
  border-top: 1px solid #ccc;
}

.browse__map--sidebar .browse__map--infowindow--section + .browse__map--infowindow--section {
  border-top: 0;
  margin-top: 8px;
}

.browse__map--infowindow--item {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.browse__map--sidebar .browse__map--infowindow--item {
  background: #fff;
}

.browse__map--infowindow--details {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.browse__map--infowindow--actions {
  border-top: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}

.browse__map--infowindow--actions > button,
.browse__map--infowindow--actions > a {
  width: 50%;
  padding: 12px 0;
  text-align: center;
}

.browse__map--infowindow--actions > button:first-child,
.browse__map--infowindow--actions > a:first-child {
  border-right: 1px solid #ccc;
}

.browse__map--infowindow--image {
  margin-right: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.browse__map--infowindow--image img {
  display: block;
  width: 60px;
  height: auto;
}

/* ==================================================
  marker cluster customisation 
  ================================================== */
.leaflet-marker-icon.marker-cluster-small,
.leaflet-marker-icon.marker-cluster-medium,
.leaflet-marker-icon.marker-cluster-large {
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
}

.leaflet-marker-icon.marker-cluster-small > div,
.leaflet-marker-icon.marker-cluster-medium > div,
.leaflet-marker-icon.marker-cluster-large > div {
  background: transparent;
}

.marker-cluster div {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.marker-cluster span {
  line-height: 42px;
}

.leaflet-marker-pane img {
  margin-left: -5px !important;
  margin-top: -14px !important;
}

.div-country-icon > span {
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  width: 12px;
  height: 16px;
  color: #6C8093;
  background-image: url("/wp-content/themes/igu/src/images/icons/Pin.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-airvisual {
  text-align: center;
}

.c-airvisual h3 {
  color: #0069AA;
  font-family: "Tiempos Headline", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 130%;
  text-align: center;
}

#mapid, .leaflet-container {
  height: 590px;
}

.c-airvisual-map {
  z-index: 0;
}

.leaflet-bar a {
  width: 46px !important;
  height: 46px !important;
  line-height: 42px !important;
  border-radius: 0 !important;
  font-size: 26px;
  font-weight: normal !important;
  border: 1px solid #7CB135;
  color: #0069AA !important;
}

.leaflet-left .leaflet-control {
  margin-left: 20px !important;
  margin-bottom: 20px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* ==================================================
  Legend customisation 
  ================================================== */
.leaflet-center {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 100%;
}

.leaflet-center .leaflet-control {
  width: 100%;
}

.c-legend {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 16px;
  min-width: 150px;
}

@media (max-width: 767px) {
  .c-legend {
    display: none;
  }
}

.c-legend p {
  margin-bottom: 8px;
}

.c-legend p:last-child {
  margin-bottom: 0;
}

.c-legend p span {
  display: inline-block;
}

.c-legend p i {
  width: 18px;
  height: 18px;
  float: left;
  margin: 0 8px 0 0;
}

.c-legend p i.good {
  background-color: #7CB135;
}

.c-legend p i.moderate {
  background-color: #fdd74b;
}

.c-legend p i.unhealthy-1 {
  background-color: #fe9b57;
}

.c-legend p i.unhealthy-2 {
  background-color: #fe6a69;
}

.c-legend p i.unhealthy-3 {
  background-color: #a97abc;
}

.c-legend p i.hazardous {
  background-color: #a87383;
}

.c-legend--vertical-center {
  background-color: transparent;
}

@media (max-width: 767px) {
  .c-legend--vertical-center {
    display: none;
  }
}

.c-legend--vertical-center ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  text-align: center;
}

.c-legend--vertical-center ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0px 6px;
  color: #fff;
}

@media (min-width: 768px) {
  .c-legend--vertical-center ul li {
    font-size: 11px;
  }
}

@media (min-width: 1280px) {
  .c-legend--vertical-center ul li {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.c-legend--vertical-center ul li:first-child {
  border-radius: 10px 0 0 10px;
}

.c-legend--vertical-center ul li:last-child {
  border-radius: 0 10px 10px 0;
}

.c-legend--vertical-center ul li.good {
  background-color: #7CB135;
}

.c-legend--vertical-center ul li.moderate {
  background-color: #fdd74b;
}

.c-legend--vertical-center ul li.unhealthy-1 {
  background-color: #fe9b57;
}

.c-legend--vertical-center ul li.unhealthy-2 {
  background-color: #fe6a69;
}

.c-legend--vertical-center ul li.unhealthy-3 {
  background-color: #a97abc;
}

.c-legend--vertical-center ul li.hazardous {
  background-color: #a87383;
}

@media (min-width: 768px) {
  .leaflet-bottom.leaflet-center {
    bottom: -20px;
  }
}

@media (min-width: 1280px) {
  .leaflet-bottom.leaflet-center {
    width: auto;
    bottom: 0;
  }
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .u-dn-mb {
    display: none;
  }
  .u-db-mb {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .u-dn-tb {
    display: none;
  }
  .u-db-tb {
    display: block;
  }
}

@media screen and (min-width: 1280px) and (max-width: 2500px) {
  .u-dn-dt {
    display: none;
  }
  .u-db-dt {
    display: block;
  }
}

@media (min-width: 320px) {
  .u-df-mb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-df-mb-fd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .u-df-mb-fd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .u-df-mb-fd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .u-df-mb-fd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .u-df-mb-jc-s {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .u-df-mb-jc-e {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .u-df-mb-jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-df-mb-jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-df-mb-jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .u-df-mb-jc-se {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .u-df-mb-nw {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .u-df-mb-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-df-mb-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .u-df-mb-ac-s {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .u-df-mb-ac-e {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .u-df-mb-ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .u-df-mb-ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .u-df-mb-ac-str {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .u-df-mb-ai-s {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .u-df-mb-ai-e {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .u-df-mb-ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-df-mb-ai-sa {
    -webkit-box-align: space-around;
        -ms-flex-align: space-around;
            align-items: space-around;
  }
  .u-df-mb-ai-str {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .u-df-mb-as-s {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .u-df-mb-as-e {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .u-df-mb-as-c {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .u-df-mb-as-b {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .u-df-mb-as-str {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .u-ta-mb-c {
    text-align: center;
  }
  .u-ta-mb-l {
    text-align: left;
  }
  .u-ta-mb-r {
    text-align: right;
  }
  .u-ta-mb-j {
    text-align: justify;
  }
}

@media (min-width: 320px) {
  .mb-p-0 {
    padding: 0px;
  }
  .mb-pt-0 {
    padding-top: 0px !important;
  }
  .mb-pb-0 {
    padding-bottom: 0px !important;
  }
  .mb-pl-0 {
    padding-left: 0px;
  }
  .mb-pr-0 {
    padding-right: 0px;
  }
  .mb-px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .mb-m-0 {
    margin: 0px !important;
  }
  .mb-mt-0 {
    margin-top: 0px !important;
  }
  .mb-mb-0 {
    margin-bottom: 0px !important;
  }
  .mb-ml-0 {
    margin-left: 0px !important;
  }
  .mb-mr-0 {
    margin-right: 0px !important;
  }
  .mb-my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mb-p-4 {
    padding: 4px;
  }
  .mb-pt-4 {
    padding-top: 4px !important;
  }
  .mb-pb-4 {
    padding-bottom: 4px !important;
  }
  .mb-pl-4 {
    padding-left: 4px;
  }
  .mb-pr-4 {
    padding-right: 4px;
  }
  .mb-px-4 {
    padding-left: 4px;
    padding-right: 4px;
  }
  .mb-m-4 {
    margin: 4px !important;
  }
  .mb-mt-4 {
    margin-top: 4px !important;
  }
  .mb-mb-4 {
    margin-bottom: 4px !important;
  }
  .mb-ml-4 {
    margin-left: 4px !important;
  }
  .mb-mr-4 {
    margin-right: 4px !important;
  }
  .mb-my-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .mb-p-8 {
    padding: 8px;
  }
  .mb-pt-8 {
    padding-top: 8px !important;
  }
  .mb-pb-8 {
    padding-bottom: 8px !important;
  }
  .mb-pl-8 {
    padding-left: 8px;
  }
  .mb-pr-8 {
    padding-right: 8px;
  }
  .mb-px-8 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .mb-m-8 {
    margin: 8px !important;
  }
  .mb-mt-8 {
    margin-top: 8px !important;
  }
  .mb-mb-8 {
    margin-bottom: 8px !important;
  }
  .mb-ml-8 {
    margin-left: 8px !important;
  }
  .mb-mr-8 {
    margin-right: 8px !important;
  }
  .mb-my-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .mb-p-12 {
    padding: 12px;
  }
  .mb-pt-12 {
    padding-top: 12px !important;
  }
  .mb-pb-12 {
    padding-bottom: 12px !important;
  }
  .mb-pl-12 {
    padding-left: 12px;
  }
  .mb-pr-12 {
    padding-right: 12px;
  }
  .mb-px-12 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .mb-m-12 {
    margin: 12px !important;
  }
  .mb-mt-12 {
    margin-top: 12px !important;
  }
  .mb-mb-12 {
    margin-bottom: 12px !important;
  }
  .mb-ml-12 {
    margin-left: 12px !important;
  }
  .mb-mr-12 {
    margin-right: 12px !important;
  }
  .mb-my-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .mb-p-16 {
    padding: 16px;
  }
  .mb-pt-16 {
    padding-top: 16px !important;
  }
  .mb-pb-16 {
    padding-bottom: 16px !important;
  }
  .mb-pl-16 {
    padding-left: 16px;
  }
  .mb-pr-16 {
    padding-right: 16px;
  }
  .mb-px-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .mb-m-16 {
    margin: 16px !important;
  }
  .mb-mt-16 {
    margin-top: 16px !important;
  }
  .mb-mb-16 {
    margin-bottom: 16px !important;
  }
  .mb-ml-16 {
    margin-left: 16px !important;
  }
  .mb-mr-16 {
    margin-right: 16px !important;
  }
  .mb-my-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .mb-p-20 {
    padding: 20px;
  }
  .mb-pt-20 {
    padding-top: 20px !important;
  }
  .mb-pb-20 {
    padding-bottom: 20px !important;
  }
  .mb-pl-20 {
    padding-left: 20px;
  }
  .mb-pr-20 {
    padding-right: 20px;
  }
  .mb-px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mb-m-20 {
    margin: 20px !important;
  }
  .mb-mt-20 {
    margin-top: 20px !important;
  }
  .mb-mb-20 {
    margin-bottom: 20px !important;
  }
  .mb-ml-20 {
    margin-left: 20px !important;
  }
  .mb-mr-20 {
    margin-right: 20px !important;
  }
  .mb-my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mb-p-24 {
    padding: 24px;
  }
  .mb-pt-24 {
    padding-top: 24px !important;
  }
  .mb-pb-24 {
    padding-bottom: 24px !important;
  }
  .mb-pl-24 {
    padding-left: 24px;
  }
  .mb-pr-24 {
    padding-right: 24px;
  }
  .mb-px-24 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .mb-m-24 {
    margin: 24px !important;
  }
  .mb-mt-24 {
    margin-top: 24px !important;
  }
  .mb-mb-24 {
    margin-bottom: 24px !important;
  }
  .mb-ml-24 {
    margin-left: 24px !important;
  }
  .mb-mr-24 {
    margin-right: 24px !important;
  }
  .mb-my-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .mb-p-28 {
    padding: 28px;
  }
  .mb-pt-28 {
    padding-top: 28px !important;
  }
  .mb-pb-28 {
    padding-bottom: 28px !important;
  }
  .mb-pl-28 {
    padding-left: 28px;
  }
  .mb-pr-28 {
    padding-right: 28px;
  }
  .mb-px-28 {
    padding-left: 28px;
    padding-right: 28px;
  }
  .mb-m-28 {
    margin: 28px !important;
  }
  .mb-mt-28 {
    margin-top: 28px !important;
  }
  .mb-mb-28 {
    margin-bottom: 28px !important;
  }
  .mb-ml-28 {
    margin-left: 28px !important;
  }
  .mb-mr-28 {
    margin-right: 28px !important;
  }
  .mb-my-28 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .mb-p-32 {
    padding: 32px;
  }
  .mb-pt-32 {
    padding-top: 32px !important;
  }
  .mb-pb-32 {
    padding-bottom: 32px !important;
  }
  .mb-pl-32 {
    padding-left: 32px;
  }
  .mb-pr-32 {
    padding-right: 32px;
  }
  .mb-px-32 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .mb-m-32 {
    margin: 32px !important;
  }
  .mb-mt-32 {
    margin-top: 32px !important;
  }
  .mb-mb-32 {
    margin-bottom: 32px !important;
  }
  .mb-ml-32 {
    margin-left: 32px !important;
  }
  .mb-mr-32 {
    margin-right: 32px !important;
  }
  .mb-my-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .mb-p-36 {
    padding: 36px;
  }
  .mb-pt-36 {
    padding-top: 36px !important;
  }
  .mb-pb-36 {
    padding-bottom: 36px !important;
  }
  .mb-pl-36 {
    padding-left: 36px;
  }
  .mb-pr-36 {
    padding-right: 36px;
  }
  .mb-px-36 {
    padding-left: 36px;
    padding-right: 36px;
  }
  .mb-m-36 {
    margin: 36px !important;
  }
  .mb-mt-36 {
    margin-top: 36px !important;
  }
  .mb-mb-36 {
    margin-bottom: 36px !important;
  }
  .mb-ml-36 {
    margin-left: 36px !important;
  }
  .mb-mr-36 {
    margin-right: 36px !important;
  }
  .mb-my-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .mb-p-40 {
    padding: 40px;
  }
  .mb-pt-40 {
    padding-top: 40px !important;
  }
  .mb-pb-40 {
    padding-bottom: 40px !important;
  }
  .mb-pl-40 {
    padding-left: 40px;
  }
  .mb-pr-40 {
    padding-right: 40px;
  }
  .mb-px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .mb-m-40 {
    margin: 40px !important;
  }
  .mb-mt-40 {
    margin-top: 40px !important;
  }
  .mb-mb-40 {
    margin-bottom: 40px !important;
  }
  .mb-ml-40 {
    margin-left: 40px !important;
  }
  .mb-mr-40 {
    margin-right: 40px !important;
  }
  .mb-my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mb-p-44 {
    padding: 44px;
  }
  .mb-pt-44 {
    padding-top: 44px !important;
  }
  .mb-pb-44 {
    padding-bottom: 44px !important;
  }
  .mb-pl-44 {
    padding-left: 44px;
  }
  .mb-pr-44 {
    padding-right: 44px;
  }
  .mb-px-44 {
    padding-left: 44px;
    padding-right: 44px;
  }
  .mb-m-44 {
    margin: 44px !important;
  }
  .mb-mt-44 {
    margin-top: 44px !important;
  }
  .mb-mb-44 {
    margin-bottom: 44px !important;
  }
  .mb-ml-44 {
    margin-left: 44px !important;
  }
  .mb-mr-44 {
    margin-right: 44px !important;
  }
  .mb-my-44 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .mb-p-48 {
    padding: 48px;
  }
  .mb-pt-48 {
    padding-top: 48px !important;
  }
  .mb-pb-48 {
    padding-bottom: 48px !important;
  }
  .mb-pl-48 {
    padding-left: 48px;
  }
  .mb-pr-48 {
    padding-right: 48px;
  }
  .mb-px-48 {
    padding-left: 48px;
    padding-right: 48px;
  }
  .mb-m-48 {
    margin: 48px !important;
  }
  .mb-mt-48 {
    margin-top: 48px !important;
  }
  .mb-mb-48 {
    margin-bottom: 48px !important;
  }
  .mb-ml-48 {
    margin-left: 48px !important;
  }
  .mb-mr-48 {
    margin-right: 48px !important;
  }
  .mb-my-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .mb-p-52 {
    padding: 52px;
  }
  .mb-pt-52 {
    padding-top: 52px !important;
  }
  .mb-pb-52 {
    padding-bottom: 52px !important;
  }
  .mb-pl-52 {
    padding-left: 52px;
  }
  .mb-pr-52 {
    padding-right: 52px;
  }
  .mb-px-52 {
    padding-left: 52px;
    padding-right: 52px;
  }
  .mb-m-52 {
    margin: 52px !important;
  }
  .mb-mt-52 {
    margin-top: 52px !important;
  }
  .mb-mb-52 {
    margin-bottom: 52px !important;
  }
  .mb-ml-52 {
    margin-left: 52px !important;
  }
  .mb-mr-52 {
    margin-right: 52px !important;
  }
  .mb-my-52 {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .mb-p-56 {
    padding: 56px;
  }
  .mb-pt-56 {
    padding-top: 56px !important;
  }
  .mb-pb-56 {
    padding-bottom: 56px !important;
  }
  .mb-pl-56 {
    padding-left: 56px;
  }
  .mb-pr-56 {
    padding-right: 56px;
  }
  .mb-px-56 {
    padding-left: 56px;
    padding-right: 56px;
  }
  .mb-m-56 {
    margin: 56px !important;
  }
  .mb-mt-56 {
    margin-top: 56px !important;
  }
  .mb-mb-56 {
    margin-bottom: 56px !important;
  }
  .mb-ml-56 {
    margin-left: 56px !important;
  }
  .mb-mr-56 {
    margin-right: 56px !important;
  }
  .mb-my-56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .mb-p-60 {
    padding: 60px;
  }
  .mb-pt-60 {
    padding-top: 60px !important;
  }
  .mb-pb-60 {
    padding-bottom: 60px !important;
  }
  .mb-pl-60 {
    padding-left: 60px;
  }
  .mb-pr-60 {
    padding-right: 60px;
  }
  .mb-px-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .mb-m-60 {
    margin: 60px !important;
  }
  .mb-mt-60 {
    margin-top: 60px !important;
  }
  .mb-mb-60 {
    margin-bottom: 60px !important;
  }
  .mb-ml-60 {
    margin-left: 60px !important;
  }
  .mb-mr-60 {
    margin-right: 60px !important;
  }
  .mb-my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mb-p-64 {
    padding: 64px;
  }
  .mb-pt-64 {
    padding-top: 64px !important;
  }
  .mb-pb-64 {
    padding-bottom: 64px !important;
  }
  .mb-pl-64 {
    padding-left: 64px;
  }
  .mb-pr-64 {
    padding-right: 64px;
  }
  .mb-px-64 {
    padding-left: 64px;
    padding-right: 64px;
  }
  .mb-m-64 {
    margin: 64px !important;
  }
  .mb-mt-64 {
    margin-top: 64px !important;
  }
  .mb-mb-64 {
    margin-bottom: 64px !important;
  }
  .mb-ml-64 {
    margin-left: 64px !important;
  }
  .mb-mr-64 {
    margin-right: 64px !important;
  }
  .mb-my-64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
}

@media (min-width: 768px) {
  .u-df-tb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-df-tb-fd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .u-df-tb-fd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .u-df-tb-fd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .u-df-tb-fd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .u-df-tb-jc-s {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .u-df-tb-jc-e {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .u-df-tb-jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-df-tb-jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-df-tb-jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .u-df-tb-jc-se {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .u-df-tb-nw {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .u-df-tb-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-df-tb-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .u-df-tb-ac-s {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .u-df-tb-ac-e {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .u-df-tb-ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .u-df-tb-ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .u-df-tb-ac-str {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .u-df-tb-ai-s {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .u-df-tb-ai-e {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .u-df-tb-ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-df-tb-ai-sa {
    -webkit-box-align: space-around;
        -ms-flex-align: space-around;
            align-items: space-around;
  }
  .u-df-tb-ai-str {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .u-df-tb-as-s {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .u-df-tb-as-e {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .u-df-tb-as-c {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .u-df-tb-as-b {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .u-df-tb-as-str {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .u-ta-tb-c {
    text-align: center;
  }
  .u-ta-tb-l {
    text-align: left;
  }
  .u-ta-tb-r {
    text-align: right;
  }
  .u-ta-tb-j {
    text-align: justify;
  }
}

@media (min-width: 768px) {
  .tb-p-0 {
    padding: 0px;
  }
  .tb-pt-0 {
    padding-top: 0px !important;
  }
  .tb-pb-0 {
    padding-bottom: 0px !important;
  }
  .tb-pl-0 {
    padding-left: 0px;
  }
  .tb-pr-0 {
    padding-right: 0px;
  }
  .tb-px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .tb-m-0 {
    margin: 0px !important;
  }
  .tb-mt-0 {
    margin-top: 0px !important;
  }
  .tb-mb-0 {
    margin-bottom: 0px !important;
  }
  .tb-ml-0 {
    margin-left: 0px !important;
  }
  .tb-mr-0 {
    margin-right: 0px !important;
  }
  .tb-my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .tb-p-4 {
    padding: 4px;
  }
  .tb-pt-4 {
    padding-top: 4px !important;
  }
  .tb-pb-4 {
    padding-bottom: 4px !important;
  }
  .tb-pl-4 {
    padding-left: 4px;
  }
  .tb-pr-4 {
    padding-right: 4px;
  }
  .tb-px-4 {
    padding-left: 4px;
    padding-right: 4px;
  }
  .tb-m-4 {
    margin: 4px !important;
  }
  .tb-mt-4 {
    margin-top: 4px !important;
  }
  .tb-mb-4 {
    margin-bottom: 4px !important;
  }
  .tb-ml-4 {
    margin-left: 4px !important;
  }
  .tb-mr-4 {
    margin-right: 4px !important;
  }
  .tb-my-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .tb-p-8 {
    padding: 8px;
  }
  .tb-pt-8 {
    padding-top: 8px !important;
  }
  .tb-pb-8 {
    padding-bottom: 8px !important;
  }
  .tb-pl-8 {
    padding-left: 8px;
  }
  .tb-pr-8 {
    padding-right: 8px;
  }
  .tb-px-8 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .tb-m-8 {
    margin: 8px !important;
  }
  .tb-mt-8 {
    margin-top: 8px !important;
  }
  .tb-mb-8 {
    margin-bottom: 8px !important;
  }
  .tb-ml-8 {
    margin-left: 8px !important;
  }
  .tb-mr-8 {
    margin-right: 8px !important;
  }
  .tb-my-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .tb-p-12 {
    padding: 12px;
  }
  .tb-pt-12 {
    padding-top: 12px !important;
  }
  .tb-pb-12 {
    padding-bottom: 12px !important;
  }
  .tb-pl-12 {
    padding-left: 12px;
  }
  .tb-pr-12 {
    padding-right: 12px;
  }
  .tb-px-12 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .tb-m-12 {
    margin: 12px !important;
  }
  .tb-mt-12 {
    margin-top: 12px !important;
  }
  .tb-mb-12 {
    margin-bottom: 12px !important;
  }
  .tb-ml-12 {
    margin-left: 12px !important;
  }
  .tb-mr-12 {
    margin-right: 12px !important;
  }
  .tb-my-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .tb-p-16 {
    padding: 16px;
  }
  .tb-pt-16 {
    padding-top: 16px !important;
  }
  .tb-pb-16 {
    padding-bottom: 16px !important;
  }
  .tb-pl-16 {
    padding-left: 16px;
  }
  .tb-pr-16 {
    padding-right: 16px;
  }
  .tb-px-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .tb-m-16 {
    margin: 16px !important;
  }
  .tb-mt-16 {
    margin-top: 16px !important;
  }
  .tb-mb-16 {
    margin-bottom: 16px !important;
  }
  .tb-ml-16 {
    margin-left: 16px !important;
  }
  .tb-mr-16 {
    margin-right: 16px !important;
  }
  .tb-my-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .tb-p-20 {
    padding: 20px;
  }
  .tb-pt-20 {
    padding-top: 20px !important;
  }
  .tb-pb-20 {
    padding-bottom: 20px !important;
  }
  .tb-pl-20 {
    padding-left: 20px;
  }
  .tb-pr-20 {
    padding-right: 20px;
  }
  .tb-px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tb-m-20 {
    margin: 20px !important;
  }
  .tb-mt-20 {
    margin-top: 20px !important;
  }
  .tb-mb-20 {
    margin-bottom: 20px !important;
  }
  .tb-ml-20 {
    margin-left: 20px !important;
  }
  .tb-mr-20 {
    margin-right: 20px !important;
  }
  .tb-my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .tb-p-24 {
    padding: 24px;
  }
  .tb-pt-24 {
    padding-top: 24px !important;
  }
  .tb-pb-24 {
    padding-bottom: 24px !important;
  }
  .tb-pl-24 {
    padding-left: 24px;
  }
  .tb-pr-24 {
    padding-right: 24px;
  }
  .tb-px-24 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .tb-m-24 {
    margin: 24px !important;
  }
  .tb-mt-24 {
    margin-top: 24px !important;
  }
  .tb-mb-24 {
    margin-bottom: 24px !important;
  }
  .tb-ml-24 {
    margin-left: 24px !important;
  }
  .tb-mr-24 {
    margin-right: 24px !important;
  }
  .tb-my-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .tb-p-28 {
    padding: 28px;
  }
  .tb-pt-28 {
    padding-top: 28px !important;
  }
  .tb-pb-28 {
    padding-bottom: 28px !important;
  }
  .tb-pl-28 {
    padding-left: 28px;
  }
  .tb-pr-28 {
    padding-right: 28px;
  }
  .tb-px-28 {
    padding-left: 28px;
    padding-right: 28px;
  }
  .tb-m-28 {
    margin: 28px !important;
  }
  .tb-mt-28 {
    margin-top: 28px !important;
  }
  .tb-mb-28 {
    margin-bottom: 28px !important;
  }
  .tb-ml-28 {
    margin-left: 28px !important;
  }
  .tb-mr-28 {
    margin-right: 28px !important;
  }
  .tb-my-28 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .tb-p-32 {
    padding: 32px;
  }
  .tb-pt-32 {
    padding-top: 32px !important;
  }
  .tb-pb-32 {
    padding-bottom: 32px !important;
  }
  .tb-pl-32 {
    padding-left: 32px;
  }
  .tb-pr-32 {
    padding-right: 32px;
  }
  .tb-px-32 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .tb-m-32 {
    margin: 32px !important;
  }
  .tb-mt-32 {
    margin-top: 32px !important;
  }
  .tb-mb-32 {
    margin-bottom: 32px !important;
  }
  .tb-ml-32 {
    margin-left: 32px !important;
  }
  .tb-mr-32 {
    margin-right: 32px !important;
  }
  .tb-my-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .tb-p-36 {
    padding: 36px;
  }
  .tb-pt-36 {
    padding-top: 36px !important;
  }
  .tb-pb-36 {
    padding-bottom: 36px !important;
  }
  .tb-pl-36 {
    padding-left: 36px;
  }
  .tb-pr-36 {
    padding-right: 36px;
  }
  .tb-px-36 {
    padding-left: 36px;
    padding-right: 36px;
  }
  .tb-m-36 {
    margin: 36px !important;
  }
  .tb-mt-36 {
    margin-top: 36px !important;
  }
  .tb-mb-36 {
    margin-bottom: 36px !important;
  }
  .tb-ml-36 {
    margin-left: 36px !important;
  }
  .tb-mr-36 {
    margin-right: 36px !important;
  }
  .tb-my-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .tb-p-40 {
    padding: 40px;
  }
  .tb-pt-40 {
    padding-top: 40px !important;
  }
  .tb-pb-40 {
    padding-bottom: 40px !important;
  }
  .tb-pl-40 {
    padding-left: 40px;
  }
  .tb-pr-40 {
    padding-right: 40px;
  }
  .tb-px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .tb-m-40 {
    margin: 40px !important;
  }
  .tb-mt-40 {
    margin-top: 40px !important;
  }
  .tb-mb-40 {
    margin-bottom: 40px !important;
  }
  .tb-ml-40 {
    margin-left: 40px !important;
  }
  .tb-mr-40 {
    margin-right: 40px !important;
  }
  .tb-my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .tb-p-44 {
    padding: 44px;
  }
  .tb-pt-44 {
    padding-top: 44px !important;
  }
  .tb-pb-44 {
    padding-bottom: 44px !important;
  }
  .tb-pl-44 {
    padding-left: 44px;
  }
  .tb-pr-44 {
    padding-right: 44px;
  }
  .tb-px-44 {
    padding-left: 44px;
    padding-right: 44px;
  }
  .tb-m-44 {
    margin: 44px !important;
  }
  .tb-mt-44 {
    margin-top: 44px !important;
  }
  .tb-mb-44 {
    margin-bottom: 44px !important;
  }
  .tb-ml-44 {
    margin-left: 44px !important;
  }
  .tb-mr-44 {
    margin-right: 44px !important;
  }
  .tb-my-44 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .tb-p-48 {
    padding: 48px;
  }
  .tb-pt-48 {
    padding-top: 48px !important;
  }
  .tb-pb-48 {
    padding-bottom: 48px !important;
  }
  .tb-pl-48 {
    padding-left: 48px;
  }
  .tb-pr-48 {
    padding-right: 48px;
  }
  .tb-px-48 {
    padding-left: 48px;
    padding-right: 48px;
  }
  .tb-m-48 {
    margin: 48px !important;
  }
  .tb-mt-48 {
    margin-top: 48px !important;
  }
  .tb-mb-48 {
    margin-bottom: 48px !important;
  }
  .tb-ml-48 {
    margin-left: 48px !important;
  }
  .tb-mr-48 {
    margin-right: 48px !important;
  }
  .tb-my-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .tb-p-52 {
    padding: 52px;
  }
  .tb-pt-52 {
    padding-top: 52px !important;
  }
  .tb-pb-52 {
    padding-bottom: 52px !important;
  }
  .tb-pl-52 {
    padding-left: 52px;
  }
  .tb-pr-52 {
    padding-right: 52px;
  }
  .tb-px-52 {
    padding-left: 52px;
    padding-right: 52px;
  }
  .tb-m-52 {
    margin: 52px !important;
  }
  .tb-mt-52 {
    margin-top: 52px !important;
  }
  .tb-mb-52 {
    margin-bottom: 52px !important;
  }
  .tb-ml-52 {
    margin-left: 52px !important;
  }
  .tb-mr-52 {
    margin-right: 52px !important;
  }
  .tb-my-52 {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .tb-p-56 {
    padding: 56px;
  }
  .tb-pt-56 {
    padding-top: 56px !important;
  }
  .tb-pb-56 {
    padding-bottom: 56px !important;
  }
  .tb-pl-56 {
    padding-left: 56px;
  }
  .tb-pr-56 {
    padding-right: 56px;
  }
  .tb-px-56 {
    padding-left: 56px;
    padding-right: 56px;
  }
  .tb-m-56 {
    margin: 56px !important;
  }
  .tb-mt-56 {
    margin-top: 56px !important;
  }
  .tb-mb-56 {
    margin-bottom: 56px !important;
  }
  .tb-ml-56 {
    margin-left: 56px !important;
  }
  .tb-mr-56 {
    margin-right: 56px !important;
  }
  .tb-my-56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .tb-p-60 {
    padding: 60px;
  }
  .tb-pt-60 {
    padding-top: 60px !important;
  }
  .tb-pb-60 {
    padding-bottom: 60px !important;
  }
  .tb-pl-60 {
    padding-left: 60px;
  }
  .tb-pr-60 {
    padding-right: 60px;
  }
  .tb-px-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .tb-m-60 {
    margin: 60px !important;
  }
  .tb-mt-60 {
    margin-top: 60px !important;
  }
  .tb-mb-60 {
    margin-bottom: 60px !important;
  }
  .tb-ml-60 {
    margin-left: 60px !important;
  }
  .tb-mr-60 {
    margin-right: 60px !important;
  }
  .tb-my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .tb-p-64 {
    padding: 64px;
  }
  .tb-pt-64 {
    padding-top: 64px !important;
  }
  .tb-pb-64 {
    padding-bottom: 64px !important;
  }
  .tb-pl-64 {
    padding-left: 64px;
  }
  .tb-pr-64 {
    padding-right: 64px;
  }
  .tb-px-64 {
    padding-left: 64px;
    padding-right: 64px;
  }
  .tb-m-64 {
    margin: 64px !important;
  }
  .tb-mt-64 {
    margin-top: 64px !important;
  }
  .tb-mb-64 {
    margin-bottom: 64px !important;
  }
  .tb-ml-64 {
    margin-left: 64px !important;
  }
  .tb-mr-64 {
    margin-right: 64px !important;
  }
  .tb-my-64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
}

@media (min-width: 1280px) {
  .u-df-dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-df-dt-fd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .u-df-dt-fd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .u-df-dt-fd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .u-df-dt-fd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .u-df-dt-jc-s {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .u-df-dt-jc-e {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .u-df-dt-jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-df-dt-jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-df-dt-jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .u-df-dt-jc-se {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .u-df-dt-nw {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .u-df-dt-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-df-dt-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .u-df-dt-ac-s {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .u-df-dt-ac-e {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .u-df-dt-ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .u-df-dt-ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .u-df-dt-ac-str {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .u-df-dt-ai-s {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .u-df-dt-ai-e {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .u-df-dt-ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-df-dt-ai-sa {
    -webkit-box-align: space-around;
        -ms-flex-align: space-around;
            align-items: space-around;
  }
  .u-df-dt-ai-str {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .u-df-dt-as-s {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .u-df-dt-as-e {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .u-df-dt-as-c {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .u-df-dt-as-b {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .u-df-dt-as-str {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .u-ta-dt-c {
    text-align: center;
  }
  .u-ta-dt-l {
    text-align: left;
  }
  .u-ta-dt-r {
    text-align: right;
  }
  .u-ta-dt-j {
    text-align: justify;
  }
}

@media (min-width: 1280px) {
  .dt-p-0 {
    padding: 0px;
  }
  .dt-pt-0 {
    padding-top: 0px !important;
  }
  .dt-pb-0 {
    padding-bottom: 0px !important;
  }
  .dt-pl-0 {
    padding-left: 0px;
  }
  .dt-pr-0 {
    padding-right: 0px;
  }
  .dt-px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .dt-m-0 {
    margin: 0px !important;
  }
  .dt-mt-0 {
    margin-top: 0px !important;
  }
  .dt-mb-0 {
    margin-bottom: 0px !important;
  }
  .dt-ml-0 {
    margin-left: 0px !important;
  }
  .dt-mr-0 {
    margin-right: 0px !important;
  }
  .dt-my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .dt-p-4 {
    padding: 4px;
  }
  .dt-pt-4 {
    padding-top: 4px !important;
  }
  .dt-pb-4 {
    padding-bottom: 4px !important;
  }
  .dt-pl-4 {
    padding-left: 4px;
  }
  .dt-pr-4 {
    padding-right: 4px;
  }
  .dt-px-4 {
    padding-left: 4px;
    padding-right: 4px;
  }
  .dt-m-4 {
    margin: 4px !important;
  }
  .dt-mt-4 {
    margin-top: 4px !important;
  }
  .dt-mb-4 {
    margin-bottom: 4px !important;
  }
  .dt-ml-4 {
    margin-left: 4px !important;
  }
  .dt-mr-4 {
    margin-right: 4px !important;
  }
  .dt-my-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .dt-p-8 {
    padding: 8px;
  }
  .dt-pt-8 {
    padding-top: 8px !important;
  }
  .dt-pb-8 {
    padding-bottom: 8px !important;
  }
  .dt-pl-8 {
    padding-left: 8px;
  }
  .dt-pr-8 {
    padding-right: 8px;
  }
  .dt-px-8 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .dt-m-8 {
    margin: 8px !important;
  }
  .dt-mt-8 {
    margin-top: 8px !important;
  }
  .dt-mb-8 {
    margin-bottom: 8px !important;
  }
  .dt-ml-8 {
    margin-left: 8px !important;
  }
  .dt-mr-8 {
    margin-right: 8px !important;
  }
  .dt-my-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .dt-p-12 {
    padding: 12px;
  }
  .dt-pt-12 {
    padding-top: 12px !important;
  }
  .dt-pb-12 {
    padding-bottom: 12px !important;
  }
  .dt-pl-12 {
    padding-left: 12px;
  }
  .dt-pr-12 {
    padding-right: 12px;
  }
  .dt-px-12 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .dt-m-12 {
    margin: 12px !important;
  }
  .dt-mt-12 {
    margin-top: 12px !important;
  }
  .dt-mb-12 {
    margin-bottom: 12px !important;
  }
  .dt-ml-12 {
    margin-left: 12px !important;
  }
  .dt-mr-12 {
    margin-right: 12px !important;
  }
  .dt-my-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .dt-p-16 {
    padding: 16px;
  }
  .dt-pt-16 {
    padding-top: 16px !important;
  }
  .dt-pb-16 {
    padding-bottom: 16px !important;
  }
  .dt-pl-16 {
    padding-left: 16px;
  }
  .dt-pr-16 {
    padding-right: 16px;
  }
  .dt-px-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .dt-m-16 {
    margin: 16px !important;
  }
  .dt-mt-16 {
    margin-top: 16px !important;
  }
  .dt-mb-16 {
    margin-bottom: 16px !important;
  }
  .dt-ml-16 {
    margin-left: 16px !important;
  }
  .dt-mr-16 {
    margin-right: 16px !important;
  }
  .dt-my-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .dt-p-20 {
    padding: 20px;
  }
  .dt-pt-20 {
    padding-top: 20px !important;
  }
  .dt-pb-20 {
    padding-bottom: 20px !important;
  }
  .dt-pl-20 {
    padding-left: 20px;
  }
  .dt-pr-20 {
    padding-right: 20px;
  }
  .dt-px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .dt-m-20 {
    margin: 20px !important;
  }
  .dt-mt-20 {
    margin-top: 20px !important;
  }
  .dt-mb-20 {
    margin-bottom: 20px !important;
  }
  .dt-ml-20 {
    margin-left: 20px !important;
  }
  .dt-mr-20 {
    margin-right: 20px !important;
  }
  .dt-my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .dt-p-24 {
    padding: 24px;
  }
  .dt-pt-24 {
    padding-top: 24px !important;
  }
  .dt-pb-24 {
    padding-bottom: 24px !important;
  }
  .dt-pl-24 {
    padding-left: 24px;
  }
  .dt-pr-24 {
    padding-right: 24px;
  }
  .dt-px-24 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .dt-m-24 {
    margin: 24px !important;
  }
  .dt-mt-24 {
    margin-top: 24px !important;
  }
  .dt-mb-24 {
    margin-bottom: 24px !important;
  }
  .dt-ml-24 {
    margin-left: 24px !important;
  }
  .dt-mr-24 {
    margin-right: 24px !important;
  }
  .dt-my-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .dt-p-28 {
    padding: 28px;
  }
  .dt-pt-28 {
    padding-top: 28px !important;
  }
  .dt-pb-28 {
    padding-bottom: 28px !important;
  }
  .dt-pl-28 {
    padding-left: 28px;
  }
  .dt-pr-28 {
    padding-right: 28px;
  }
  .dt-px-28 {
    padding-left: 28px;
    padding-right: 28px;
  }
  .dt-m-28 {
    margin: 28px !important;
  }
  .dt-mt-28 {
    margin-top: 28px !important;
  }
  .dt-mb-28 {
    margin-bottom: 28px !important;
  }
  .dt-ml-28 {
    margin-left: 28px !important;
  }
  .dt-mr-28 {
    margin-right: 28px !important;
  }
  .dt-my-28 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .dt-p-32 {
    padding: 32px;
  }
  .dt-pt-32 {
    padding-top: 32px !important;
  }
  .dt-pb-32 {
    padding-bottom: 32px !important;
  }
  .dt-pl-32 {
    padding-left: 32px;
  }
  .dt-pr-32 {
    padding-right: 32px;
  }
  .dt-px-32 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .dt-m-32 {
    margin: 32px !important;
  }
  .dt-mt-32 {
    margin-top: 32px !important;
  }
  .dt-mb-32 {
    margin-bottom: 32px !important;
  }
  .dt-ml-32 {
    margin-left: 32px !important;
  }
  .dt-mr-32 {
    margin-right: 32px !important;
  }
  .dt-my-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .dt-p-36 {
    padding: 36px;
  }
  .dt-pt-36 {
    padding-top: 36px !important;
  }
  .dt-pb-36 {
    padding-bottom: 36px !important;
  }
  .dt-pl-36 {
    padding-left: 36px;
  }
  .dt-pr-36 {
    padding-right: 36px;
  }
  .dt-px-36 {
    padding-left: 36px;
    padding-right: 36px;
  }
  .dt-m-36 {
    margin: 36px !important;
  }
  .dt-mt-36 {
    margin-top: 36px !important;
  }
  .dt-mb-36 {
    margin-bottom: 36px !important;
  }
  .dt-ml-36 {
    margin-left: 36px !important;
  }
  .dt-mr-36 {
    margin-right: 36px !important;
  }
  .dt-my-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .dt-p-40 {
    padding: 40px;
  }
  .dt-pt-40 {
    padding-top: 40px !important;
  }
  .dt-pb-40 {
    padding-bottom: 40px !important;
  }
  .dt-pl-40 {
    padding-left: 40px;
  }
  .dt-pr-40 {
    padding-right: 40px;
  }
  .dt-px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .dt-m-40 {
    margin: 40px !important;
  }
  .dt-mt-40 {
    margin-top: 40px !important;
  }
  .dt-mb-40 {
    margin-bottom: 40px !important;
  }
  .dt-ml-40 {
    margin-left: 40px !important;
  }
  .dt-mr-40 {
    margin-right: 40px !important;
  }
  .dt-my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .dt-p-44 {
    padding: 44px;
  }
  .dt-pt-44 {
    padding-top: 44px !important;
  }
  .dt-pb-44 {
    padding-bottom: 44px !important;
  }
  .dt-pl-44 {
    padding-left: 44px;
  }
  .dt-pr-44 {
    padding-right: 44px;
  }
  .dt-px-44 {
    padding-left: 44px;
    padding-right: 44px;
  }
  .dt-m-44 {
    margin: 44px !important;
  }
  .dt-mt-44 {
    margin-top: 44px !important;
  }
  .dt-mb-44 {
    margin-bottom: 44px !important;
  }
  .dt-ml-44 {
    margin-left: 44px !important;
  }
  .dt-mr-44 {
    margin-right: 44px !important;
  }
  .dt-my-44 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .dt-p-48 {
    padding: 48px;
  }
  .dt-pt-48 {
    padding-top: 48px !important;
  }
  .dt-pb-48 {
    padding-bottom: 48px !important;
  }
  .dt-pl-48 {
    padding-left: 48px;
  }
  .dt-pr-48 {
    padding-right: 48px;
  }
  .dt-px-48 {
    padding-left: 48px;
    padding-right: 48px;
  }
  .dt-m-48 {
    margin: 48px !important;
  }
  .dt-mt-48 {
    margin-top: 48px !important;
  }
  .dt-mb-48 {
    margin-bottom: 48px !important;
  }
  .dt-ml-48 {
    margin-left: 48px !important;
  }
  .dt-mr-48 {
    margin-right: 48px !important;
  }
  .dt-my-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .dt-p-52 {
    padding: 52px;
  }
  .dt-pt-52 {
    padding-top: 52px !important;
  }
  .dt-pb-52 {
    padding-bottom: 52px !important;
  }
  .dt-pl-52 {
    padding-left: 52px;
  }
  .dt-pr-52 {
    padding-right: 52px;
  }
  .dt-px-52 {
    padding-left: 52px;
    padding-right: 52px;
  }
  .dt-m-52 {
    margin: 52px !important;
  }
  .dt-mt-52 {
    margin-top: 52px !important;
  }
  .dt-mb-52 {
    margin-bottom: 52px !important;
  }
  .dt-ml-52 {
    margin-left: 52px !important;
  }
  .dt-mr-52 {
    margin-right: 52px !important;
  }
  .dt-my-52 {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .dt-p-56 {
    padding: 56px;
  }
  .dt-pt-56 {
    padding-top: 56px !important;
  }
  .dt-pb-56 {
    padding-bottom: 56px !important;
  }
  .dt-pl-56 {
    padding-left: 56px;
  }
  .dt-pr-56 {
    padding-right: 56px;
  }
  .dt-px-56 {
    padding-left: 56px;
    padding-right: 56px;
  }
  .dt-m-56 {
    margin: 56px !important;
  }
  .dt-mt-56 {
    margin-top: 56px !important;
  }
  .dt-mb-56 {
    margin-bottom: 56px !important;
  }
  .dt-ml-56 {
    margin-left: 56px !important;
  }
  .dt-mr-56 {
    margin-right: 56px !important;
  }
  .dt-my-56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .dt-p-60 {
    padding: 60px;
  }
  .dt-pt-60 {
    padding-top: 60px !important;
  }
  .dt-pb-60 {
    padding-bottom: 60px !important;
  }
  .dt-pl-60 {
    padding-left: 60px;
  }
  .dt-pr-60 {
    padding-right: 60px;
  }
  .dt-px-60 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .dt-m-60 {
    margin: 60px !important;
  }
  .dt-mt-60 {
    margin-top: 60px !important;
  }
  .dt-mb-60 {
    margin-bottom: 60px !important;
  }
  .dt-ml-60 {
    margin-left: 60px !important;
  }
  .dt-mr-60 {
    margin-right: 60px !important;
  }
  .dt-my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .dt-p-64 {
    padding: 64px;
  }
  .dt-pt-64 {
    padding-top: 64px !important;
  }
  .dt-pb-64 {
    padding-bottom: 64px !important;
  }
  .dt-pl-64 {
    padding-left: 64px;
  }
  .dt-pr-64 {
    padding-right: 64px;
  }
  .dt-px-64 {
    padding-left: 64px;
    padding-right: 64px;
  }
  .dt-m-64 {
    margin: 64px !important;
  }
  .dt-mt-64 {
    margin-top: 64px !important;
  }
  .dt-mb-64 {
    margin-bottom: 64px !important;
  }
  .dt-ml-64 {
    margin-left: 64px !important;
  }
  .dt-mr-64 {
    margin-right: 64px !important;
  }
  .dt-my-64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
}

.u-capitalize {
  text-transform: capitalize;
}

.img-responsive, .img-responsive--full {
  width: auto;
  max-width: 100%;
  height: auto;
}

.img-responsive--full {
  width: 100%;
}

.u-pr-250 {
  color: #003F57 !important;
}

.u-pr-200 {
  color: #004875 !important;
}

.u-pr-100 {
  color: #0069AA;
}

.u-pr-50 {
  color: #44C2EA;
}

.u-font-green {
  color: #7CB135;
}

.u-font-red {
  color: #F03F3F;
}

.u-font-yellow {
  color: #FCE205;
}

.u-font--primary {
  font-family: "Merriweather", sans-serif;
}

.u-font--secondary {
  font-family: "HK Grotesk", sans-serif;
}

.u-gray-100 {
  color: #C7C7C7;
}

.u-gray-150 {
  color: #E2E6E9;
}

.u-gray-200 {
  color: #A7B3BE;
}

.u-gray-300 {
  color: #6C8093;
}

.u-gray-400 {
  color: #414D58;
}

.u-gray-500 {
  color: #2B333B;
}

.u-bg-gray-100 {
  background-color: #F3F9FA;
}

.u-bg-white {
  background-color: white;
}

.u-bg-dark-blue {
  background-color: #004875;
}

.u-bg-dark-blue .c-headline__header {
  color: white;
}

.u-bg-dark-blue span, .u-bg-dark-blue a, .u-bg-dark-blue h4, .u-bg-dark-blue .c-search-bar input[type=text], .c-search-bar .u-bg-dark-blue input[type=text], .u-bg-dark-blue .c-mobile-dropdown > ul > li > a, .u-bg-dark-blue h3, .u-bg-dark-blue h2, .u-bg-dark-blue h5, .u-bg-dark-blue .c-card-groups > div h4, .c-card-groups > div .u-bg-dark-blue h4, .u-bg-dark-blue .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .u-bg-dark-blue input[type=text], .u-bg-dark-blue .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .u-bg-dark-blue input[type=text], .u-bg-dark-blue .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .u-bg-dark-blue .c-mobile-dropdown > ul > li > a, .u-bg-dark-blue h6, .u-bg-dark-blue .c-card-statistics h2 > span, .c-card-statistics .u-bg-dark-blue h2 > span, .u-bg-dark-blue .c-mobile-dropdown > ul > li > ul > li > a, .u-bg-dark-blue p, .u-bg-dark-blue address {
  color: white;
}

.u-bg-dark-blue > .c-card-events > .c-card-events-content h2 a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content h3 a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content h4 a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a,
.c-search-bar .u-bg-dark-blue > .c-card-events > .c-card-events-content input[type=text] a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content h5 a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-card-groups > div h4 a,
.c-card-groups > div .u-bg-dark-blue > .c-card-events > .c-card-events-content h4 a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text] a,
.c-card-groups > div .c-search-bar .u-bg-dark-blue > .c-card-events > .c-card-events-content input[type=text] a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text] a,
.c-search-bar .c-card-groups > div .u-bg-dark-blue > .c-card-events > .c-card-events-content input[type=text] a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a a,
.c-card-groups > div .u-bg-dark-blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a,
.u-bg-dark-blue > .c-card-events > .c-card-events-content h6,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-card-statistics h2 > span,
.c-card-statistics .u-bg-dark-blue > .c-card-events > .c-card-events-content h2 > span,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > ul > li > a {
  color: white;
}

.u-bg-dark-blue > .c-card-events > .c-card-events-content h2 a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content h3 a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content h4 a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a:hover,
.c-search-bar .u-bg-dark-blue > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content h5 a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-card-groups > div h4 a:hover,
.c-card-groups > div .u-bg-dark-blue > .c-card-events > .c-card-events-content h4 a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text] a:hover,
.c-card-groups > div .c-search-bar .u-bg-dark-blue > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text] a:hover,
.c-search-bar .c-card-groups > div .u-bg-dark-blue > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a a:hover,
.c-card-groups > div .u-bg-dark-blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content h6:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-card-statistics h2 > span:hover,
.c-card-statistics .u-bg-dark-blue > .c-card-events > .c-card-events-content h2 > span:hover,
.u-bg-dark-blue > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > ul > li > a:hover {
  color: #44C2EA;
}

.u-bg-dark-blue .c-card-news > div > h2,
.u-bg-dark-blue .c-card-events > div > span,
.u-bg-dark-blue .c-card-events > div > address,
.u-bg-dark-blue .c-card-presentations > div > h4 a,
.u-bg-dark-blue .c-search-bar .c-card-presentations > div > input[type=text] a,
.c-search-bar .u-bg-dark-blue .c-card-presentations > div > input[type=text] a,
.u-bg-dark-blue .c-card-download--listing h5 a,
.u-bg-dark-blue .c-card-download--listing .c-card-groups > div h4 a,
.c-card-groups > div .u-bg-dark-blue .c-card-download--listing h4 a,
.u-bg-dark-blue .c-card-download--listing .c-card-groups > div .c-search-bar input[type=text] a,
.c-card-groups > div .c-search-bar .u-bg-dark-blue .c-card-download--listing input[type=text] a,
.u-bg-dark-blue .c-card-download--listing .c-search-bar .c-card-groups > div input[type=text] a,
.c-search-bar .c-card-groups > div .u-bg-dark-blue .c-card-download--listing input[type=text] a,
.u-bg-dark-blue .c-card-download--listing .c-card-groups > div .c-mobile-dropdown > ul > li > a a,
.c-card-groups > div .u-bg-dark-blue .c-card-download--listing .c-mobile-dropdown > ul > li > a a,
.u-bg-dark-blue .c-card-download > .c-card-download-content > h4,
.u-bg-dark-blue .c-search-bar .c-card-download > .c-card-download-content > input[type=text],
.c-search-bar .u-bg-dark-blue .c-card-download > .c-card-download-content > input[type=text],
.u-bg-dark-blue .c-mobile-dropdown > ul.c-card-download > li.c-card-download-content > a,
.u-bg-dark-blue .c-card-download > .c-card-download-content > h4 a,
.u-bg-dark-blue .c-search-bar .c-card-download > .c-card-download-content > input[type=text] a,
.c-search-bar .u-bg-dark-blue .c-card-download > .c-card-download-content > input[type=text] a,
.u-bg-dark-blue .c-mobile-dropdown > ul.c-card-download > li.c-card-download-content > a a,
.u-bg-dark-blue .c-card-download--default > .c-card-download-content > span > span {
  color: white;
}

.u-bg-dark-blue .c-card-download > .c-card-download-content > p,
.u-bg-dark-blue .c-card-presentations > div > p {
  color: #E2E6E9;
}

.u-bg-dark-blue .c-card-presentations > div > h4 a:hover, .u-bg-dark-blue .c-search-bar .c-card-presentations > div > input[type=text] a:hover, .c-search-bar .u-bg-dark-blue .c-card-presentations > div > input[type=text] a:hover,
.u-bg-dark-blue .c-card-download > .c-card-download-content > h4 a:hover,
.u-bg-dark-blue .c-search-bar .c-card-download > .c-card-download-content > input[type=text] a:hover,
.c-search-bar .u-bg-dark-blue .c-card-download > .c-card-download-content > input[type=text] a:hover,
.u-bg-dark-blue .c-mobile-dropdown > ul.c-card-download > li.c-card-download-content > a a:hover {
  color: #44C2EA;
}

.u-bg-dark-blue--250 {
  background-color: #003F57;
}

.u-bg-dark-green {
  background-color: #003F57;
}

.u-bg-dark-green .c-headline__header {
  color: white;
}

.u-bg-dark-green span, .u-bg-dark-green a, .u-bg-dark-green h4, .u-bg-dark-green .c-search-bar input[type=text], .c-search-bar .u-bg-dark-green input[type=text], .u-bg-dark-green .c-mobile-dropdown > ul > li > a, .u-bg-dark-green h3, .u-bg-dark-green h2, .u-bg-dark-green h5, .u-bg-dark-green .c-card-groups > div h4, .c-card-groups > div .u-bg-dark-green h4, .u-bg-dark-green .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .u-bg-dark-green input[type=text], .u-bg-dark-green .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .u-bg-dark-green input[type=text], .u-bg-dark-green .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .u-bg-dark-green .c-mobile-dropdown > ul > li > a, .u-bg-dark-green h6, .u-bg-dark-green .c-card-statistics h2 > span, .c-card-statistics .u-bg-dark-green h2 > span, .u-bg-dark-green .c-mobile-dropdown > ul > li > ul > li > a, .u-bg-dark-green p, .u-bg-dark-green address {
  color: white;
}

.u-bg-dark-green > .c-card-events > .c-card-events-content h2 a,
.u-bg-dark-green > .c-card-events > .c-card-events-content h3 a,
.u-bg-dark-green > .c-card-events > .c-card-events-content h4 a,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a,
.c-search-bar .u-bg-dark-green > .c-card-events > .c-card-events-content input[type=text] a,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a,
.u-bg-dark-green > .c-card-events > .c-card-events-content h5 a,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-card-groups > div h4 a,
.c-card-groups > div .u-bg-dark-green > .c-card-events > .c-card-events-content h4 a,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text] a,
.c-card-groups > div .c-search-bar .u-bg-dark-green > .c-card-events > .c-card-events-content input[type=text] a,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text] a,
.c-search-bar .c-card-groups > div .u-bg-dark-green > .c-card-events > .c-card-events-content input[type=text] a,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a a,
.c-card-groups > div .u-bg-dark-green > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a,
.u-bg-dark-green > .c-card-events > .c-card-events-content h6,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-card-statistics h2 > span,
.c-card-statistics .u-bg-dark-green > .c-card-events > .c-card-events-content h2 > span,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > ul > li > a {
  color: white;
}

.u-bg-dark-green > .c-card-events > .c-card-events-content h2 a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content h3 a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content h4 a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a:hover,
.c-search-bar .u-bg-dark-green > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content h5 a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-card-groups > div h4 a:hover,
.c-card-groups > div .u-bg-dark-green > .c-card-events > .c-card-events-content h4 a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text] a:hover,
.c-card-groups > div .c-search-bar .u-bg-dark-green > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text] a:hover,
.c-search-bar .c-card-groups > div .u-bg-dark-green > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a a:hover,
.c-card-groups > div .u-bg-dark-green > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content h6:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-card-statistics h2 > span:hover,
.c-card-statistics .u-bg-dark-green > .c-card-events > .c-card-events-content h2 > span:hover,
.u-bg-dark-green > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > ul > li > a:hover {
  color: #44C2EA;
}

.u-bg-dark-green .c-card-news > div > h2,
.u-bg-dark-green .c-card-events > div > span,
.u-bg-dark-green .c-card-events > div > address,
.u-bg-dark-green .c-card-presentations > div > h4 a,
.u-bg-dark-green .c-search-bar .c-card-presentations > div > input[type=text] a,
.c-search-bar .u-bg-dark-green .c-card-presentations > div > input[type=text] a,
.u-bg-dark-green .c-card-download--listing h5 a,
.u-bg-dark-green .c-card-download--listing .c-card-groups > div h4 a,
.c-card-groups > div .u-bg-dark-green .c-card-download--listing h4 a,
.u-bg-dark-green .c-card-download--listing .c-card-groups > div .c-search-bar input[type=text] a,
.c-card-groups > div .c-search-bar .u-bg-dark-green .c-card-download--listing input[type=text] a,
.u-bg-dark-green .c-card-download--listing .c-search-bar .c-card-groups > div input[type=text] a,
.c-search-bar .c-card-groups > div .u-bg-dark-green .c-card-download--listing input[type=text] a,
.u-bg-dark-green .c-card-download--listing .c-card-groups > div .c-mobile-dropdown > ul > li > a a,
.c-card-groups > div .u-bg-dark-green .c-card-download--listing .c-mobile-dropdown > ul > li > a a,
.u-bg-dark-green .c-card-download > .c-card-download-content > h4,
.u-bg-dark-green .c-search-bar .c-card-download > .c-card-download-content > input[type=text],
.c-search-bar .u-bg-dark-green .c-card-download > .c-card-download-content > input[type=text],
.u-bg-dark-green .c-mobile-dropdown > ul.c-card-download > li.c-card-download-content > a,
.u-bg-dark-green .c-card-download--default > .c-card-download-content > span > span {
  color: white;
}

.u-bg-dark-green .c-card-download > .c-card-download-content > p,
.u-bg-dark-green .c-card-presentations > div > p {
  color: #E2E6E9;
}

.u-bg-dark-green .c-card-presentations > div > h4 a:hover, .u-bg-dark-green .c-search-bar .c-card-presentations > div > input[type=text] a:hover, .c-search-bar .u-bg-dark-green .c-card-presentations > div > input[type=text] a:hover {
  color: #44C2EA;
}

.u-bg-dark-green--250 {
  background-color: #003F57;
}

.u-blue-wrap {
  background-color: #003F57;
}

.u-blue-wrap--200 {
  background-color: #004875;
}

.u-blue-wrap span, .u-blue-wrap a, .u-blue-wrap h4, .u-blue-wrap .c-search-bar input[type=text], .c-search-bar .u-blue-wrap input[type=text], .u-blue-wrap .c-mobile-dropdown > ul > li > a, .u-blue-wrap h3, .u-blue-wrap h2, .u-blue-wrap h5, .u-blue-wrap .c-card-groups > div h4, .c-card-groups > div .u-blue-wrap h4, .u-blue-wrap .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .u-blue-wrap input[type=text], .u-blue-wrap .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .u-blue-wrap input[type=text], .u-blue-wrap .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .u-blue-wrap .c-mobile-dropdown > ul > li > a, .u-blue-wrap h6, .u-blue-wrap .c-card-statistics h2 > span, .c-card-statistics .u-blue-wrap h2 > span, .u-blue-wrap .c-mobile-dropdown > ul > li > ul > li > a, .u-blue-wrap p, .u-blue-wrap address {
  color: white;
}

.u-blue-wrap > .c-card-events > .c-card-events-content h2 a,
.u-blue-wrap > .c-card-events > .c-card-events-content h3 a,
.u-blue-wrap > .c-card-events > .c-card-events-content h4 a,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a,
.c-search-bar .u-blue-wrap > .c-card-events > .c-card-events-content input[type=text] a,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a,
.u-blue-wrap > .c-card-events > .c-card-events-content h5 a,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-card-groups > div h4 a,
.c-card-groups > div .u-blue-wrap > .c-card-events > .c-card-events-content h4 a,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text] a,
.c-card-groups > div .c-search-bar .u-blue-wrap > .c-card-events > .c-card-events-content input[type=text] a,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text] a,
.c-search-bar .c-card-groups > div .u-blue-wrap > .c-card-events > .c-card-events-content input[type=text] a,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a a,
.c-card-groups > div .u-blue-wrap > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a,
.u-blue-wrap > .c-card-events > .c-card-events-content h6,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-card-statistics h2 > span,
.c-card-statistics .u-blue-wrap > .c-card-events > .c-card-events-content h2 > span,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > ul > li > a {
  color: white;
}

.u-blue-wrap > .c-card-events > .c-card-events-content h2 a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content h3 a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content h4 a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-search-bar input[type=text] a:hover,
.c-search-bar .u-blue-wrap > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content h5 a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-card-groups > div h4 a:hover,
.c-card-groups > div .u-blue-wrap > .c-card-events > .c-card-events-content h4 a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-card-groups > div .c-search-bar input[type=text] a:hover,
.c-card-groups > div .c-search-bar .u-blue-wrap > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-search-bar .c-card-groups > div input[type=text] a:hover,
.c-search-bar .c-card-groups > div .u-blue-wrap > .c-card-events > .c-card-events-content input[type=text] a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-card-groups > div .c-mobile-dropdown > ul > li > a a:hover,
.c-card-groups > div .u-blue-wrap > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > a a:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content h6:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-card-statistics h2 > span:hover,
.c-card-statistics .u-blue-wrap > .c-card-events > .c-card-events-content h2 > span:hover,
.u-blue-wrap > .c-card-events > .c-card-events-content .c-mobile-dropdown > ul > li > ul > li > a:hover {
  color: #44C2EA;
}

.u-blue-wrap .c-card-events > div > span,
.u-blue-wrap .c-card-events > div > address {
  color: white;
}

.u-section-spacing, .c-featured-download, .c-section-featured--gray, .c-filtered-section, .c-content-section {
  padding-top: 16px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .u-section-spacing, .c-featured-download, .c-section-featured--gray, .c-filtered-section, .c-content-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .u-section-spacing, .c-featured-download, .c-section-featured--gray, .c-filtered-section, .c-content-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (min-width: 1280px) {
  .u-section-spacing--login {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

.u-section-featured {
  padding-top: 56px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .u-section-featured {
    padding-bottom: 56px;
  }
}

@media (min-width: 1280px) {
  .u-section-featured {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

.u-body-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.u-mt-16-24 {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .u-mt-16-24 {
    margin-top: 24px;
  }
}

@media (min-width: 1280px) {
  .u-mb-30 {
    margin-bottom: 30px;
  }
}

.u-m-32-24 {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .u-m-32-24 {
    margin-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .u-m-32-24 {
    margin-bottom: 32px;
  }
}

.u-m-16 {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .u-m-16 {
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .u-tb-mb-8 {
    margin-bottom: 8px;
  }
}

.u-p-40-48 {
  padding-top: 16px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .u-p-40-48 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .u-p-40-48 {
    padding-top: 48px;
    padding-bottom: 40px;
  }
}

.u-mb-40-48-80 {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .u-mb-40-48-80 {
    margin-bottom: 48px;
  }
}

@media (min-width: 1280px) {
  .u-mb-40-48-80 {
    margin-bottom: 80px;
  }
}

.u-card-bot-border {
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .u-card-bot-border {
    padding-bottom: 40px;
  }
}

@media (min-width: 1280px) {
  .u-card-bot-border {
    padding-bottom: 60px;
  }
}

.u-card-bot-border > div:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px #E2E6E9 solid;
}

@media (min-width: 768px) {
  .u-card-bot-border > div:not(:last-child) {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}

.u-card-bot-border--invert > div:not(:last-child) {
  border-bottom: 1px #44C2EA solid;
}

.u-card-bot-border--pad16 > div:not(:last-child) {
  padding-bottom: 16px;
}

.u-card-bot-border--search > div:not(:last-child) {
  padding-bottom: 32px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .u-card-bot-border--search > div:not(:last-child) {
    margin-bottom: 32px;
  }
}

.u-list-content ul {
  list-style: none;
}

.u-list-content ul > li {
  position: relative;
  padding-left: 24px;
}

.u-list-content ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #7CB135;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
}

.u-list-content ul > li:not(:last-child),
.u-list-content ul > li ul li:not(:last-child) {
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .u-list-content ul > li:not(:last-child),
  .u-list-content ul > li ul li:not(:last-child) {
    padding-bottom: 16px;
  }
}

.u-list-content ol {
  list-style: decimal;
  padding-left: 8px;
}

.u-list-content ol li {
  padding-left: 8px;
  padding-bottom: 16px;
}

.u-list-content ol li::marker {
  color: #7cb135;
  font-family: "Merriweather", sans-serif;
  font-size: 14px;
}

.u-list-content img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.u-list-content--on-content ul > li:not(:last-child) {
  padding-bottom: 16px;
}

.u-listing-last > div:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .u-listing-last > div:not(:last-child) {
    margin-bottom: 32px;
  }
}

.u-listing-last--option-2 > div:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .u-listing-last--option-2 > div:not(:last-child) {
    margin-bottom: 32px;
  }
}

.u-listing-last--option-3 > div:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .u-listing-last--option-3 > div:not(:last-child) {
    margin-bottom: 32px;
  }
}

.u-listing-last--option-4 > div:not(:last-child) {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .u-listing-last--option-4 > div:not(:last-child) {
    margin-bottom: 24px;
  }
}

.u-listing-last--option-4-pagination > div.c-card-events {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .u-listing-last--option-4-pagination > div.c-card-events {
    margin-bottom: 24px;
  }
}

.u-listing-last--remove-border > div:last-child {
  border: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .u-listing-last--mobile-only {
    margin-bottom: 0;
  }
}

.u-listing-last--team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

@media (min-width: 1024px) {
  .u-listing-last--team {
    margin: 0 -12px 0;
  }
}

.u-listing-last--team > div {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .u-listing-last--team > div {
    margin-bottom: 32px;
  }
}

.u-extend-wrap {
  position: relative;
  z-index: 1;
  background-color: white;
}

.u-extend-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  right: 0;
  border-left: 9999px solid white;
  -webkit-box-shadow: 9999px 0 0 white;
          box-shadow: 9999px 0 0 white;
  z-index: -1;
}

.u-extend-wrap--gray {
  background-color: #F3F9FA;
}

.u-extend-wrap--gray::before {
  border-left: 9999px solid #F3F9FA;
  -webkit-box-shadow: 9999px 0 0 #F3F9FA;
          box-shadow: 9999px 0 0 #F3F9FA;
}

.u-extend-wrap--blue {
  background-color: #004875;
}

.u-extend-wrap--blue::before {
  border-left: 9999px solid #004875;
  -webkit-box-shadow: 9999px 0 0 #004875;
          box-shadow: 9999px 0 0 #004875;
}

.u-video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.u-video-container iframe,
.u-video-container object,
.u-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.u-section-spacing, .c-featured-download, .c-section-featured--gray, .c-filtered-section, .c-content-section {
  padding-top: 16px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .u-section-spacing, .c-featured-download, .c-section-featured--gray, .c-filtered-section, .c-content-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .u-section-spacing, .c-featured-download, .c-section-featured--gray, .c-filtered-section, .c-content-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.u-paragraph-content > p:not(:last-child) {
  margin-bottom: 16px;
}

.u-bottom-spacing {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .u-bottom-spacing {
    padding-bottom: 56px;
  }
}

@media (min-width: 1280px) {
  .u-bottom-spacing {
    padding-bottom: 80px;
  }
}

.u-bottom-spacing--mobile {
  padding-bottom: 0;
}

.u-set-h5-gray-400 h5, .u-set-h5-gray-400 .c-card-groups > div h4, .c-card-groups > div .u-set-h5-gray-400 h4, .u-set-h5-gray-400 .c-card-groups > div .c-search-bar input[type=text], .c-card-groups > div .c-search-bar .u-set-h5-gray-400 input[type=text], .u-set-h5-gray-400 .c-search-bar .c-card-groups > div input[type=text], .c-search-bar .c-card-groups > div .u-set-h5-gray-400 input[type=text], .u-set-h5-gray-400 .c-card-groups > div .c-mobile-dropdown > ul > li > a, .c-card-groups > div .u-set-h5-gray-400 .c-mobile-dropdown > ul > li > a {
  color: #414D58;
}

.u-remove-bottom-spacing > div:last-child > div {
  margin-bottom: 0;
}

.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .c-form__container textarea {
      height: 252px;
    }
  }
}

:target:before {
  content: '';
  display: block;
  height: 5rem;
  margin-top: -5rem;
}

@media (min-width: 768px) {
  .u-increase-width {
    max-width: 324px !important;
  }
}

@media (min-width: 1024px) {
  .u-increase-width {
    max-width: 448px !important;
  }
}

.js-clear-btn:hover {
  color: #44C2EA;
}

.u-clear {
  clear: both;
}

.u-placeholder {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.u-not-allowed {
  cursor: not-allowed !important;
}

.u-issu-container {
  position: relative;
  height: 326px;
  width: 100%;
  margin-bottom: 16px;
}
