﻿@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://p.typekit.net/p.css?s=1&k=qot1nli&ht=tk&f=18438.18441.18443.18445&a=662747&app=typekit&e=css");
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ffffff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
* The Typekit service used to deliver this font or fonts for use on websites
* is provided by Adobe and is subject to these Terms of Use
* http://www.adobe.com/products/eulas/tou_typekit. For font license
* information, see the list below.
*
* azo-sans-web:
*   - http://typekit.com/eulas/000000000000000000013f4e
*   - http://typekit.com/eulas/00000000000000007735a2d2
*   - http://typekit.com/eulas/00000000000000007735a2df
*   - http://typekit.com/eulas/000000000000000000013f8f
*
* © 2009-2022 Adobe Systems Incorporated. All Rights Reserved.
*/
/*{"last_published":"2022-11-29 14:49:01 UTC"}*/
@font-face {
  font-family: "azo-sans-web";
  src: url("https://use.typekit.net/af/9aa4fe/000000000000000000013f4e/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/9aa4fe/000000000000000000013f4e/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/9aa4fe/000000000000000000013f4e/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}
@font-face {
  font-family: "azo-sans-web";
  src: url("https://use.typekit.net/af/2759ad/00000000000000007735a2d2/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"), url("https://use.typekit.net/af/2759ad/00000000000000007735a2d2/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"), url("https://use.typekit.net/af/2759ad/00000000000000007735a2d2/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
}
@font-face {
  font-family: "azo-sans-web";
  src: url("https://use.typekit.net/af/0240fd/00000000000000007735a2df/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2"), url("https://use.typekit.net/af/0240fd/00000000000000007735a2df/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff"), url("https://use.typekit.net/af/0240fd/00000000000000007735a2df/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
}
@font-face {
  font-family: "azo-sans-web";
  src: url("https://use.typekit.net/af/9dc3b1/000000000000000000013f8f/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/9dc3b1/000000000000000000013f8f/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/9dc3b1/000000000000000000013f8f/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
.tk-azo-sans-web {
  font-family: "azo-sans-web", sans-serif;
}

h1, .h1 {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 300;
  font-size: 3rem;
  color: #251d17;
}

h2, .h2 {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #009739;
}

h3, .h3 {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 300;
  font-size: 1.875rem;
  color: #251d17;
}

h4, .h4 {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #251d17;
}

h5, .h5 {
  font-family: "azo-sans-web", sans-serif;
  font-weight: "azo-sans-web", sans-serif;
  font-size: 1.25rem;
  color: #251d17;
}

h6, .h6 {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #251d17;
}

p.large {
  font-size: 1.25rem;
}
p.lead {
  font-size: 1.25rem;
  color: #009739;
}

strong {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
}

a {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 500;
}

.tag {
  font-size: 0.875rem;
}

.body-text h1, .body-text .h1,
body.mce-content-body h1,
body.mce-content-body .h1 {
  margin-bottom: 2rem;
}
.body-text h2, .body-text .h2,
body.mce-content-body h2,
body.mce-content-body .h2 {
  margin-bottom: 2rem;
}
.body-text h5, .body-text .h5,
body.mce-content-body h5,
body.mce-content-body .h5 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.body-text h6, .body-text .h6,
body.mce-content-body h6,
body.mce-content-body .h6 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.body-text ul, .body-text ol,
body.mce-content-body ul,
body.mce-content-body ol {
  padding-left: 20px;
}
.body-text ul li, .body-text ol li,
body.mce-content-body ul li,
body.mce-content-body ol li {
  margin: 7px 0;
  padding-left: 10px;
}
.body-text img,
body.mce-content-body img {
  max-width: 100%;
  height: auto !important;
  margin-bottom: 1rem;
}
.body-text blockquote,
body.mce-content-body blockquote {
  font-size: 1.375rem;
  line-height: 1.4;
  border-left: solid 10px #F4F4F3;
  padding-left: 1.875rem;
  margin-left: 0;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.body-text .double-space,
body.mce-content-body .double-space {
  margin-bottom: 2rem;
}
.body-text .ratio,
body.mce-content-body .ratio {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.body-text .boxed-text,
body.mce-content-body .boxed-text {
  background-color: #E9F4E9;
  padding: 1.5rem 2rem 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-size: 1.375rem;
}

#brand {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
#brand img {
  max-height: 120px;
}
#brand h3 {
  color: #009739;
  font-weight: 500;
  font-size: 1.25rem;
}

.countdown p {
  margin: 0;
  line-height: 1;
}
.countdown .countdown-unit {
  display: inline-block;
  border: solid 1px #E5E6E1;
  border-radius: 6px;
  text-align: center;
  padding: 0.5rem 0.5rem;
  color: #215732;
}
.countdown .countdown-unit .h1 {
  line-height: 1;
  margin: 0;
}
.countdown .countdown-seperator {
  display: inline-block;
  padding: 0.5rem 0rem;
}
.countdown .countdown-seperator .h1 {
  color: #E5E6E1;
}

#page-header.no-banner {
  border-bottom: solid 1px #E5E6E1;
}

html.sr .load-hidden,
html.sr .fx-fade-in-once,
html.sr .fx-fade-in-slow,
html.sr .fx-scale-up,
html.sr .fx-slide-left,
html.sr .fx-slide-right,
html.sr .fx-slide-up {
  visibility: hidden;
}

body {
  overflow-x: hidden;
}

#page-body {
  background-color: #ffffff;
}

.section {
  margin-top: 5rem;
  margin-bottom: 4rem;
}
.section.no-banner {
  margin-top: 5rem;
}

.section-grid {
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.section-top {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .section-top {
    margin-top: 5rem;
  }
}

.section-band {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#page-footer {
  background-repeat: no-repeat;
  background-position: center bottom -300px;
  background-color: #E5E6E1;
  padding: 5.5rem 0 4.5rem;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
  color: #251d17;
}
#page-footer h1, #page-footer .h1, #page-footer h2, #page-footer .h2, #page-footer h3, #page-footer .h3, #page-footer h4, #page-footer .h4, #page-footer h5, #page-footer .h5, #page-footer h6, #page-footer .h6 {
  color: #251d17;
}
#page-footer a {
  color: #251d17;
  text-decoration: none;
}
#page-footer a:hover {
  text-decoration: underline;
}
#page-footer .legal {
  font-size: 0.875rem;
}
#page-footer .legal ul {
  margin-bottom: 2.5rem;
}
#page-footer .legal ul li {
  margin-bottom: 1rem;
}
#page-footer .contact ul {
  margin: 2rem 0;
}
#page-footer .contact ul i {
  font-size: 24px;
}
#page-footer .contact p {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 300;
  line-height: 1.3;
}
#page-footer .accreditation img {
  max-height: 100px;
  max-width: auto;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
#page-footer .accreditation img:last-child {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  #page-footer .accreditation img {
    max-height: 200px;
  }
}

#navigation {
  background-color: #CB333B;
  color: #ffffff;
  z-index: 1021;
}

.navbar .hamburger {
  font-size: 1.25rem;
  font-weight: 500;
}
.navbar .hamburger .menu-label {
  padding-left: 8px;
}
.navbar a {
  color: #ffffff;
}
.navbar .nav-item:not(:last-child) {
  margin-right: 1.25rem;
}
.navbar .nav-item .nav-link {
  font-size: 1.125rem;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar .nav-item .nav-link {
    font-size: 1rem;
  }
}
.navbar .nav-item .nav-link.active {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 500;
  color: #ffffff;
}
.navbar .nav-item .nav-link:focus, .navbar .nav-item .nav-link:active {
  color: #ffffff;
}
.navbar .nav-item .nav-link:hover {
  color: white;
}
.navbar .nav-item .nav-link.btn {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
  background-color: #215732;
  color: #ffffff;
  padding: 0.25rem 1.5rem;
}
.navbar .nav-item .nav-link.btn:hover {
  background-color: #8A2B2B;
}
.navbar .dropdown-menu {
  border-radius: 0;
  border: none;
  background-color: #CB333B;
  font-size: 1.125rem;
  margin: 6px 0 0;
  padding: 0;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar .dropdown-menu {
    font-size: 1rem;
  }
}
.navbar .dropdown-menu li:not(:last-child) {
  border-bottom: solid 1px #ffffff;
}
.navbar .dropdown-menu li .dropdown-item {
  padding: 10px 20px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.navbar .dropdown-menu li .dropdown-item:hover {
  background-color: transparent;
  color: white;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav {
    margin: 16px 20px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item:not(:last-child) {
    border-bottom: solid 1px #ffffff;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 12px 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    margin: 0 0 16px;
    padding: 0;
    border: none;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: none;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    padding: 10px 0px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .dropdown-item::before {
    font: var(--fa-font-light);
    content: "\e3d6";
    margin-right: 10px;
    color: #cccccc;
  }
}

.btn-outline:hover,
.btn-outline-light:hover,
.btn-outline-dark:hover,
.btn-outline-primary:hover {
  background-color: transparent;
}
.btn-outline:hover span,
.btn-outline-light:hover span,
.btn-outline-dark:hover span,
.btn-outline-primary:hover span {
  padding-left: 25px;
}
.btn-outline:hover span:before,
.btn-outline-light:hover span:before,
.btn-outline-dark:hover span:before,
.btn-outline-primary:hover span:before {
  opacity: 1;
  left: 0;
}
.btn-outline span,
.btn-outline-light span,
.btn-outline-dark span,
.btn-outline-primary span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.btn-outline span:before,
.btn-outline-light span:before,
.btn-outline-dark span:before,
.btn-outline-primary span:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f061";
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}

.btn-outline-light:hover {
  color: #ffffff;
}

.btn-outline-dark:hover {
  color: #251d17;
}

.btn-outline-primary:hover {
  color: #009739;
}

.field-validation-error {
  color: var(--bs-danger);
}

.form-block {
  padding: 1rem 1rem 1.5rem 1rem;
}
@media screen and (min-width: 992px) {
  .form-block {
    padding: 2rem 2rem 1.5rem 2rem;
  }
}
.form-block .form-group {
  margin-bottom: 1rem;
}
.form-block .form-control {
  border-radius: 0.25rem;
}
.form-block.theme-light {
  padding: 0;
}
.form-block .body-text {
  margin-bottom: 1rem;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.agenda-nav {
  font-size: 1.5rem;
}
.agenda-nav .nav-link.active {
  color: #381f94;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
}

.agenda-filter h6 {
  margin-bottom: 0;
}
.agenda-filter .filter {
  margin-bottom: 0.5rem;
}
.agenda-filter .filter .btn {
  font-size: 1rem;
  padding: 0;
}
.agenda-filter .filter .btn:not(:last-child) {
  margin-right: 1rem;
}
.agenda-filter .filter .btn.btn-link {
  color: #251d17;
  text-decoration: none;
}
.agenda-filter .filter .btn:hover {
  color: #F68D2E;
}
.agenda-filter .filter .btn::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Pro";
  margin-right: 6px;
  font-size: 1.25rem;
  font-weight: 300;
  content: "\f0c8";
}
.agenda-filter .filter .btn.active::before {
  font-weight: 900;
  content: "\f14a";
  color: #381f94;
}

.agenda-wrapper {
  padding: 2rem 0;
  background-color: #E5E6E1;
}
@media screen and (min-width: 992px) {
  .agenda-wrapper .agenda {
    display: grid;
    grid-column-gap: 1em;
  }
}
.agenda-wrapper .agenda h3 {
  padding-bottom: 0.5rem;
  border-bottom: solid 4px #8A2B2B;
  margin-bottom: 1.5rem;
  background-color: #E5E6E1;
  top: 76px;
}
@media screen and (min-width: 992px) {
  .agenda-wrapper .agenda h3 {
    top: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .agenda-wrapper .agenda h3 {
    top: 59px;
  }
}
.agenda-wrapper .agenda .registration-info {
  color: #215732;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
}
.agenda-wrapper .agenda .registration-info i {
  margin-right: 5px;
}
.agenda-wrapper .agenda .session {
  background-color: #ffffff;
  padding: 1rem;
  margin-bottom: 1em;
}
.agenda-wrapper .agenda .session.alt {
  background-color: #E9F4E9;
}
.agenda-wrapper .agenda .session .read-more-less {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 500;
}
.agenda-wrapper .agenda .session p {
  margin: 0;
}
.agenda-wrapper .agenda .session p.session-time {
  color: #215732;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
}
.agenda-wrapper .agenda .session p.session-title {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
}
.agenda-wrapper .agenda .session [aria-expanded=false] > .expanded,
.agenda-wrapper .agenda .session [aria-expanded=true] > .collapsed {
  display: none;
}
.agenda-wrapper .agenda .session .speaker-list {
  margin-top: 1rem;
  border-top: solid 1.5px #8A2B2B;
  padding-top: 1rem;
}
.agenda-wrapper .agenda .session .speaker-list p {
  margin-bottom: 5px;
}
.agenda-wrapper .agenda .session .speaker-list p a {
  margin-right: 3px;
  cursor: pointer;
}
.agenda-wrapper .agenda .session .speaker-list p span {
  display: inline-block;
  background-color: #F4F4F3;
  border-radius: 5px;
  font-size: 12px;
  text-transform: lowercase;
  padding: 2px 5px;
  margin-left: 6px;
}
.agenda-wrapper .agenda .session .sponsor-list {
  margin-top: 1rem;
}
.agenda-wrapper .stream {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}
.agenda-wrapper .stream .session:not(:last-child) {
  margin-right: 3px;
}

.banner .banner-content, .banner--video .banner-content, .banner--image .banner-content {
  background-image: url(/images/watermark-light.svg);
  background-repeat: no-repeat;
  background-position-x: 85%;
  background-position-y: center;
  background-size: auto 900px;
}
.banner .container > .row, .banner--video .container > .row, .banner--image .container > .row {
  min-height: 300px;
}
.banner.short .banner-content, .short.banner--video .banner-content, .short.banner--image .banner-content {
  background-size: auto 420px;
}
.banner.short .container > .row, .short.banner--video .container > .row, .short.banner--image .container > .row {
  min-height: 140px;
}
.banner.tall .banner-content, .tall.banner--video .banner-content, .tall.banner--image .banner-content {
  background-size: auto 1500px;
}
.banner.tall .container > .row, .tall.banner--video .container > .row, .tall.banner--image .container > .row {
  min-height: 500px;
}
.banner .banner-text, .banner--video .banner-text, .banner--image .banner-text {
  margin: 2rem 0 2.5rem;
}
.banner .banner-text h1, .banner--video .banner-text h1, .banner--image .banner-text h1 {
  margin: 0 0 0.5rem;
  font-size: 3.6rem;
}
.banner .banner-text h3, .banner--video .banner-text h3, .banner--image .banner-text h3 {
  margin: 0 0 0;
}
.banner--image {
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
.banner--video {
  position: relative;
  overflow: hidden;
}
.banner--video #banner-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.call-to-action {
  padding: 1.75rem 0;
  text-align: center;
}
.call-to-action h3 {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .call-to-action h3 {
    margin-bottom: 0;
  }
}

.carousel {
  overflow: hidden;
}
.carousel .main-carousel:focus-visible {
  outline: none;
}
.carousel .carousel-cell {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .carousel .carousel-cell {
    width: 33%;
  }
}
@media screen and (min-width: 992px) {
  .carousel .carousel-cell {
    width: 25%;
  }
}
.carousel .carousel-cell .cell-inner {
  border: solid 1px #E5E6E1;
  border-radius: 30px;
  margin: 0 5px 0 15px;
}
.carousel .carousel-cell .cell-inner .cell-image {
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  height: 80px;
  margin: 10px 15px;
}
@media screen and (min-width: 768px) {
  .carousel .carousel-cell .cell-inner .cell-image {
    height: 110px;
    margin: 20px 30px;
  }
}

.carousel-stacked a:hover .image-box {
  border: solid 1px #F68D2E;
}
.carousel-stacked a:hover .image-box .stacked-image {
  transform: scale(0.9);
}
.carousel-stacked .image-box {
  border: solid 1px #E5E6E1;
  margin-bottom: 1rem;
  -webkit-transition: border 0.25s ease-in-out;
  -moz-transition: border 0.25s ease-in-out;
  -ms-transition: border 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out;
  transition: border 0.25s ease-in-out;
}
@media screen and (min-width: 576px) {
  .carousel-stacked .image-box {
    margin-bottom: 1.5rem;
  }
}
.carousel-stacked .image-box .stacked-image {
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  height: 80px;
  margin: 10px 15px;
  -webkit-transition: transform 0.25s ease-in-out;
  -moz-transition: transform 0.25s ease-in-out;
  -ms-transition: transform 0.25s ease-in-out;
  -o-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}
@media screen and (min-width: 576px) {
  .carousel-stacked .image-box .stacked-image {
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .carousel-stacked .image-box .stacked-image {
    height: 160px;
    margin: 20px 30px;
  }
}

.faqs {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.faqs .heading {
  margin-bottom: 2.5rem;
}
.faqs .faq {
  border-bottom: solid 3px #8A2B2B;
  margin-bottom: 1rem;
}
.faqs .faq .btn {
  padding-left: 0;
  margin-bottom: 1rem;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  color: #251d17;
  width: 100%;
  text-align: left;
}
.faqs .faq .btn i {
  transition: transform 0.25s;
}
.faqs .faq .btn[aria-expanded=true] i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faqs .faq .answer {
  margin-bottom: 2rem;
}

.feature-collection .section-band {
  padding-bottom: 3rem;
}
.feature-collection .feature {
  text-align: center;
  margin-bottom: 2rem;
}
.feature-collection .feature img {
  display: inline-block;
  max-height: 60px;
  margin-bottom: 0.5rem;
}
.feature-collection .feature p {
  margin-bottom: 0;
}

.featured-resources {
  --card-columns: 1fr;
  --card-content-padding: 24px 16px;
  --featured-resources-columns: 1fr;
}
@media screen and (min-width: 576px) {
  .featured-resources {
    --card-columns: 1fr 2fr;
    --card-content-padding: 32px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .featured-resources {
    --card-columns: 3fr 4fr;
    --card-content-padding: 32px 32px;
    --featured-resources-columns: 1fr 1fr;
  }
}
.featured-resources .cards {
  display: grid;
  grid-template-columns: var(--featured-resources-columns);
  gap: 32px;
}
.featured-resources .cards .card {
  display: grid;
  grid-template-columns: var(--card-columns);
  background-color: #F4F4F3;
  border-radius: 30px;
  overflow: hidden;
}
.featured-resources .cards .card .thumbnail {
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.featured-resources .cards .card .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  padding: var(--card-content-padding);
}
.featured-resources .cards .card .content .btn {
  align-self: flex-start;
}

.highlight-box {
  margin-bottom: 2rem;
}
.highlight-box .card .card-body {
  padding: 2rem;
}
.highlight-box .card .card-body h3 {
  font-size: 2.25rem;
}
.highlight-box .card .card-body .card-title {
  margin-bottom: 1.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  min-height: 56px;
}
.highlight-box .card .card-body .card-title.icon {
  background-size: 56px auto;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  padding-top: 5rem;
  padding-left: 0;
}
@media screen and (min-width: 576px) {
  .highlight-box .card .card-body .card-title.icon {
    background-size: 56px auto;
    background-position-x: left;
    background-position-y: center;
    padding-top: 0;
    padding-left: 5rem;
  }
}

.highlight-box-group {
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .highlight-box-group .card-group {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .highlight-box-group .card-group {
    display: block;
  }
}
.highlight-box-group .card-group.brand-bar {
  background-image: url("/images/brand-bar-h.jpg");
  background-repeat: repeat-x;
  background-position-y: top;
  background-position-x: center;
  background-size: auto 48px;
  padding-top: 48px;
}
.highlight-box-group .card-group .card {
  margin-bottom: 0;
  color: #ffffff;
}
.highlight-box-group .card-group .card h1, .highlight-box-group .card-group .card .h1, .highlight-box-group .card-group .card h2, .highlight-box-group .card-group .card .h2, .highlight-box-group .card-group .card h3, .highlight-box-group .card-group .card .h3, .highlight-box-group .card-group .card h4, .highlight-box-group .card-group .card .h4, .highlight-box-group .card-group .card h5, .highlight-box-group .card-group .card .h5, .highlight-box-group .card-group .card h6, .highlight-box-group .card-group .card .h6 {
  color: #ffffff;
}
.highlight-box-group .card-group .card:nth-child(1) {
  background-color: #381f94;
}
.highlight-box-group .card-group .card:nth-child(2) {
  background-color: rgb(75.9, 53.4, 158.7);
}
.highlight-box-group .card-group .card:nth-child(3) {
  background-color: rgb(95.8, 75.8, 169.4);
}
.highlight-box-group .card-group .card .card-body {
  padding: 2rem 2rem 1rem 2rem;
}
.highlight-box-group .card-group .card .card-body img {
  margin-bottom: 2rem;
}
.highlight-box-group .card-group .card .card-body h3 {
  margin-bottom: 1rem;
}

.killer-stats {
  position: relative;
  overflow: hidden;
}
.killer-stats video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
}
.killer-stats .mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.28);
  z-index: 0;
}
.killer-stats .section-band {
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.killer-stats .col-12 {
  margin-bottom: 2rem;
}
.killer-stats h2 {
  position: relative;
  z-index: 3;
  text-align: center;
}
.killer-stats .statistic {
  z-index: 3;
  height: 100%;
  text-align: center;
  padding: 2rem;
}
.killer-stats .statistic .h4 {
  font-size: 50px;
}
.killer-stats .statistic h5 {
  font-size: 26px;
}
.killer-stats .statistic h6 {
  margin-top: 2rem;
  margin-bottom: 0;
}

.link-box {
  margin-bottom: 2rem;
  position: relative;
}
.link-box .card {
  overflow: hidden;
}
.link-box .card:hover .card-bg {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.link-box .card .card-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
.link-box .card.text-light h2 {
  text-shadow: 3px 3px 9px #251d17;
}
.link-box .card.text-light .btn {
  text-shadow: 3px 3px 9px #251d17;
}
.link-box .card .card-body,
.link-box .card .card-footer {
  z-index: 1;
}
.link-box .card .card-body {
  padding: 2rem;
}
.link-box .card .card-body .image-wrapper {
  text-align: center;
  padding: 2rem 0 3rem;
}
@media screen and (min-width: 576px) {
  .link-box .card .card-body .image-wrapper {
    padding: 2rem 2rem 3rem;
  }
}
@media screen and (min-width: 768px) {
  .link-box .card .card-body .image-wrapper {
    padding: 2rem 0 3rem;
  }
}
@media screen and (min-width: 992px) {
  .link-box .card .card-body .image-wrapper {
    padding: 2rem 3rem 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .link-box .card .card-body .image-wrapper {
    padding: 2rem 4rem 3rem;
  }
}
.link-box .card .card-body .image-wrapper img {
  display: inline-block;
}
.link-box .card .card-body.content-full .card-title {
  font-size: 1.5rem;
}
.link-box .card .card-body.content-text .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.link-box .card .card-footer {
  padding: 0 2rem 2rem;
}

.map-block .flex-grow-1 {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.multi-column-section .section-band {
  padding-bottom: 3rem;
}
.multi-column-section .faqs.container {
  padding-left: 0;
  padding-right: 0;
}

.nano-link-boxes .section-heading {
  margin-top: 1rem;
}
.nano-link-boxes .nano-link {
  display: block;
  color: #F68D2E;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  padding: 1rem 0;
  border-bottom: solid 2px #E5E6E1;
  transition: all 0.25s ease;
}
.nano-link-boxes .nano-link:hover {
  padding-left: 0.5rem;
}

.quote {
  padding: 2rem 0;
}
.quote img {
  height: auto;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .quote img {
    margin-bottom: 0;
  }
}
.quote h2 {
  margin-bottom: 2rem;
}
.quote blockquote {
  font-size: 1.375rem;
  line-height: 1.4;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.quote h5 {
  margin-top: 1rem;
}

.stacked-statements {
  position: relative;
}
.stacked-statements .section-heading {
  margin-bottom: 4rem;
}
.stacked-statements .watermark {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: url("/images/bg-graphic.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.stacked-statements .statement-block {
  background-color: #381f94;
  background-image: url("/images/brand-bar-v.jpg");
  background-repeat: repeat-y;
  background-size: 48px auto;
  background-position-y: center;
  margin-bottom: 3rem;
  border-radius: 50rem;
  color: #ffffff;
}
.stacked-statements .statement-block h1, .stacked-statements .statement-block .h1, .stacked-statements .statement-block h2, .stacked-statements .statement-block .h2, .stacked-statements .statement-block h3, .stacked-statements .statement-block .h3, .stacked-statements .statement-block h4, .stacked-statements .statement-block .h4, .stacked-statements .statement-block h5, .stacked-statements .statement-block .h5, .stacked-statements .statement-block h6, .stacked-statements .statement-block .h6 {
  color: #ffffff;
}
.stacked-statements .statement-block .row {
  min-height: 132px;
  padding: 1.625rem 0;
}
.stacked-statements .statement-block .row h3 {
  margin-bottom: 0;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 300;
}
.stacked-statements .statement-block.block-left {
  text-align: left;
  background-position-x: left;
  padding-left: 5.5rem;
  padding-right: 2rem;
}
.stacked-statements .statement-block.block-right {
  text-align: right;
  background-position-x: right;
  padding-left: 2rem;
  padding-right: 5.5rem;
}

.tabbed-content .nav-tabs {
  --bs-nav-tabs-border-radius: 0.25rem;
}
.tabbed-content .nav-tabs .nav-link.active {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
}

.category-filter {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .category-filter {
    margin-bottom: 3rem;
  }
}
.category-filter .nav-link {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-right: 3rem;
}
.category-filter .nav-link.active {
  border-bottom: solid 1px #251d17;
  color: #251d17;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
}

.back-link:hover span,
.forward-link:hover span {
  padding-left: 25px;
}
.back-link:hover span:before,
.forward-link:hover span:before {
  opacity: 1;
  left: 0;
}
.back-link span,
.forward-link span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
  text-decoration: underline;
}
.back-link span:before,
.forward-link span:before {
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}

.back-link span:before {
  content: "\f060";
}

.filter-bar {
  margin-bottom: 2rem;
  padding: 0 12px;
}
.filter-bar .filter-button-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2px;
}
.filter-bar .filter-button-group .filter-button {
  border: none;
  padding: 7px 14px;
}
.filter-bar .filter-button-group .filter-button.active {
  background-color: #381f94;
  color: #ffffff;
}
.forward-link span:before {
  content: "\f061";
}

.modal .modal-content {
  border-top: none;
  border-right: none;
  border-left: none;
  padding-bottom: 2rem;
}
.modal .modal-content .organisation {
  font-weight: 500;
}

.popup {
  position: fixed;
  top: 300px;
  right: 0;
  left: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  gap: 2px;
  z-index: 1022;
}
@media screen and (min-width: 768px) {
  .popup #popup-dialog.open {
    display: block;
  }
}
.popup h1 {
  display: none;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.popup .popup-button {
  cursor: pointer;
  font-size: 1.1rem;
  overflow: hidden;
}
.popup .dialog {
  background-color: #F4F4F3;
  border-bottom: solid 6px #8A2B2B;
  display: none;
}
.popup .dialog .btn {
  background-color: #381f94;
  color: #ffffff;
}
.popup .dialog .btn:hover span {
  padding-left: 25px;
}
.popup .dialog .btn:hover span:before {
  opacity: 1;
  left: 0;
}
.popup .dialog .btn span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.popup .dialog .btn span:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f061";
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}
.popup .dialog-menu {
  padding: 0.8rem 1.5rem 0;
  text-align: right;
}
.popup .dialog-content {
  padding: 0 1rem 1rem;
}
.popup .button {
  background-color: #F4F4F3;
  border-right: solid 6px #8A2B2B;
  padding: 1rem 0.5rem 2rem;
  /* Fix ios offscreen button ? */
}
.popup .button a {
  text-decoration: none;
}
.popup .button a i {
  margin-top: 1rem;
}
.popup .button .h4 {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.popup .button .popup-button {
  width: 22px;
}
@media screen and (max-width: 767px) {
  .popup .dialog-content .large {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .popup {
    gap: 20px;
    /* Fix ios offscreen button ? */
  }
  .popup h1 {
    display: block;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .popup .dialog-menu {
    padding: 1rem 1.5rem 1rem;
  }
  .popup .dialog-content {
    width: 600px;
    padding: 0 4rem 2rem;
  }
  .popup .popup-button {
    font-size: 1.625rem;
  }
  .popup .button .popup-button {
    width: 32px;
  }
}
@media screen and (min-width: 992px) {
  .popup h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .popup .dialog-content {
    width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .popup h1 {
    font-size: 2.25rem;
  }
  .popup .dialog-content {
    width: 800px;
  }
}

#profile img {
  margin-bottom: 2rem;
}
#profile .body-text {
  margin-bottom: 4rem;
}
#profile i {
  font-size: 1.5rem;
  margin-right: 0.25rem;
}

.resources .resource {
  margin-bottom: 2rem;
}
.resources .card {
  background-color: #F4F4F3;
  color: #251d17;
}
.resources .card h1, .resources .card .h1, .resources .card h2, .resources .card .h2, .resources .card h3, .resources .card .h3, .resources .card h4, .resources .card .h4, .resources .card h5, .resources .card .h5, .resources .card h6, .resources .card .h6 {
  color: #251d17;
}
.resources .card .card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.resources .card .card-title {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.resources .card .card-footer {
  background-color: transparent;
  padding: 0 1.5rem 1.5rem;
}

.search-form .input-group {
  border-bottom: solid 1px #E5E6E1;
  height: 50px;
}
.search-form .input-group .form-control {
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
}
.search-form .input-group .form-control::-webkit-input-placeholder { /* Edge */
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
}
.search-form .input-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
}
.search-form .input-group .form-control::placeholder {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
}
.search-form .input-group .btn {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0;
  font-size: 20px;
}

.section-heading a {
  display: block;
  padding: 0.5rem 0 0.5rem;
  line-height: 1;
  font-size: 1rem;
}

.speaker {
  margin-bottom: 3rem;
}
.speaker img {
  margin-bottom: 0.5rem;
}
.speaker p {
  margin: 0;
}
.speaker .organisation {
  font-weight: 500;
}
.speaker a {
  cursor: pointer;
  display: block;
  margin-top: 0.5rem;
}

#team h2 {
  text-align: center;
}
#team .profile {
  position: relative;
  margin-bottom: 4rem;
}
#team .profile img {
  margin-bottom: 1rem;
}
#team .profile h5 {
  margin-top: 0;
  margin-bottom: 0;
}

.theme-core1 {
  background-color: #381f94;
  color: #ffffff;
}
.theme-core1 h1, .theme-core1 .h1, .theme-core1 h2, .theme-core1 .h2, .theme-core1 h3, .theme-core1 .h3, .theme-core1 h4, .theme-core1 .h4, .theme-core1 h5, .theme-core1 .h5, .theme-core1 h6, .theme-core1 .h6 {
  color: #ffffff;
}
.theme-core1 .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.theme-core2 {
  background-color: #009739;
  color: #ffffff;
}
.theme-core2 h1, .theme-core2 .h1, .theme-core2 h2, .theme-core2 .h2, .theme-core2 h3, .theme-core2 .h3, .theme-core2 h4, .theme-core2 .h4, .theme-core2 h5, .theme-core2 .h5, .theme-core2 h6, .theme-core2 .h6 {
  color: #ffffff;
}
.theme-core2 .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.theme-core3 {
  background-color: #CB333B;
  color: #ffffff;
}
.theme-core3 h1, .theme-core3 .h1, .theme-core3 h2, .theme-core3 .h2, .theme-core3 h3, .theme-core3 .h3, .theme-core3 h4, .theme-core3 .h4, .theme-core3 h5, .theme-core3 .h5, .theme-core3 h6, .theme-core3 .h6 {
  color: #ffffff;
}
.theme-core3 .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.theme-support1 {
  background-color: #F68D2E;
  color: #ffffff;
}
.theme-support1 h1, .theme-support1 .h1, .theme-support1 h2, .theme-support1 .h2, .theme-support1 h3, .theme-support1 .h3, .theme-support1 h4, .theme-support1 .h4, .theme-support1 h5, .theme-support1 .h5, .theme-support1 h6, .theme-support1 .h6 {
  color: #ffffff;
}
.theme-support1 .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.theme-support2 {
  background-color: #215732;
  color: #ffffff;
}
.theme-support2 h1, .theme-support2 .h1, .theme-support2 h2, .theme-support2 .h2, .theme-support2 h3, .theme-support2 .h3, .theme-support2 h4, .theme-support2 .h4, .theme-support2 h5, .theme-support2 .h5, .theme-support2 h6, .theme-support2 .h6 {
  color: #ffffff;
}
.theme-support2 .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.theme-support3 {
  background-color: #8A2B2B;
  color: #ffffff;
}
.theme-support3 h1, .theme-support3 .h1, .theme-support3 h2, .theme-support3 .h2, .theme-support3 h3, .theme-support3 .h3, .theme-support3 h4, .theme-support3 .h4, .theme-support3 h5, .theme-support3 .h5, .theme-support3 h6, .theme-support3 .h6 {
  color: #ffffff;
}
.theme-support3 .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.theme-accent1 {
  background-color: #F4F4F3;
  color: #251d17;
}
.theme-accent1 h1, .theme-accent1 .h1, .theme-accent1 h2, .theme-accent1 .h2, .theme-accent1 h3, .theme-accent1 .h3, .theme-accent1 h4, .theme-accent1 .h4, .theme-accent1 h5, .theme-accent1 .h5, .theme-accent1 h6, .theme-accent1 .h6 {
  color: #251d17;
}
.theme-accent1 .btn-outline {
  color: #251d17;
  border-color: #251d17;
}

.theme-accent2 {
  background-color: #E5E6E1;
  color: #251d17;
}
.theme-accent2 h1, .theme-accent2 .h1, .theme-accent2 h2, .theme-accent2 .h2, .theme-accent2 h3, .theme-accent2 .h3, .theme-accent2 h4, .theme-accent2 .h4, .theme-accent2 h5, .theme-accent2 .h5, .theme-accent2 h6, .theme-accent2 .h6 {
  color: #251d17;
}
.theme-accent2 .btn-outline {
  color: #251d17;
  border-color: #251d17;
}

.theme-accent3 {
  background-color: #E9F4E9;
  color: #251d17;
}
.theme-accent3 h1, .theme-accent3 .h1, .theme-accent3 h2, .theme-accent3 .h2, .theme-accent3 h3, .theme-accent3 .h3, .theme-accent3 h4, .theme-accent3 .h4, .theme-accent3 h5, .theme-accent3 .h5, .theme-accent3 h6, .theme-accent3 .h6 {
  color: #251d17;
}
.theme-accent3 .btn-outline {
  color: #251d17;
  border-color: #251d17;
}

.theme-light {
  background-color: #ffffff;
  color: #251d17;
}
.theme-light h1, .theme-light .h1, .theme-light h2, .theme-light .h2, .theme-light h3, .theme-light .h3, .theme-light h4, .theme-light .h4, .theme-light h5, .theme-light .h5, .theme-light h6, .theme-light .h6 {
  color: #251d17;
}
.theme-light .btn-outline {
  color: #251d17;
  border-color: #251d17;
}

.theme-dark {
  background-color: #251d17;
  color: #ffffff;
}
.theme-dark h1, .theme-dark .h1, .theme-dark h2, .theme-dark .h2, .theme-dark h3, .theme-dark .h3, .theme-dark h4, .theme-dark .h4, .theme-dark h5, .theme-dark .h5, .theme-dark h6, .theme-dark .h6 {
  color: #ffffff;
}
.theme-dark .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.text-core1 {
  color: #381f94;
}
.text-core1 h1, .text-core1 .h1, .text-core1 h2, .text-core1 .h2, .text-core1 h3, .text-core1 .h3, .text-core1 h4, .text-core1 .h4, .text-core1 h5, .text-core1 .h5, .text-core1 h6, .text-core1 .h6 {
  color: #381f94;
}

.text-core2 {
  color: #009739;
}
.text-core2 h1, .text-core2 .h1, .text-core2 h2, .text-core2 .h2, .text-core2 h3, .text-core2 .h3, .text-core2 h4, .text-core2 .h4, .text-core2 h5, .text-core2 .h5, .text-core2 h6, .text-core2 .h6 {
  color: #009739;
}

.text-core3 {
  color: #CB333B;
}
.text-core3 h1, .text-core3 .h1, .text-core3 h2, .text-core3 .h2, .text-core3 h3, .text-core3 .h3, .text-core3 h4, .text-core3 .h4, .text-core3 h5, .text-core3 .h5, .text-core3 h6, .text-core3 .h6 {
  color: #CB333B;
}

.text-support1 {
  color: #F68D2E;
}
.text-support1 h1, .text-support1 .h1, .text-support1 h2, .text-support1 .h2, .text-support1 h3, .text-support1 .h3, .text-support1 h4, .text-support1 .h4, .text-support1 h5, .text-support1 .h5, .text-support1 h6, .text-support1 .h6 {
  color: #F68D2E;
}

.text-support2 {
  color: #215732;
}
.text-support2 h1, .text-support2 .h1, .text-support2 h2, .text-support2 .h2, .text-support2 h3, .text-support2 .h3, .text-support2 h4, .text-support2 .h4, .text-support2 h5, .text-support2 .h5, .text-support2 h6, .text-support2 .h6 {
  color: #215732;
}

.text-support3 {
  color: #8A2B2B;
}
.text-support3 h1, .text-support3 .h1, .text-support3 h2, .text-support3 .h2, .text-support3 h3, .text-support3 .h3, .text-support3 h4, .text-support3 .h4, .text-support3 h5, .text-support3 .h5, .text-support3 h6, .text-support3 .h6 {
  color: #8A2B2B;
}

.text-accent1 {
  color: #F4F4F3;
}
.text-accent1 h1, .text-accent1 .h1, .text-accent1 h2, .text-accent1 .h2, .text-accent1 h3, .text-accent1 .h3, .text-accent1 h4, .text-accent1 .h4, .text-accent1 h5, .text-accent1 .h5, .text-accent1 h6, .text-accent1 .h6 {
  color: #F4F4F3;
}

.text-accent2 {
  color: #E5E6E1;
}
.text-accent2 h1, .text-accent2 .h1, .text-accent2 h2, .text-accent2 .h2, .text-accent2 h3, .text-accent2 .h3, .text-accent2 h4, .text-accent2 .h4, .text-accent2 h5, .text-accent2 .h5, .text-accent2 h6, .text-accent2 .h6 {
  color: #E5E6E1;
}

.text-accent3 {
  color: #E9F4E9;
}
.text-accent3 h1, .text-accent3 .h1, .text-accent3 h2, .text-accent3 .h2, .text-accent3 h3, .text-accent3 .h3, .text-accent3 h4, .text-accent3 .h4, .text-accent3 h5, .text-accent3 .h5, .text-accent3 h6, .text-accent3 .h6 {
  color: #E9F4E9;
}

.text-light {
  color: #ffffff;
}
.text-light h1, .text-light .h1, .text-light h2, .text-light .h2, .text-light h3, .text-light .h3, .text-light h4, .text-light .h4, .text-light h5, .text-light .h5, .text-light h6, .text-light .h6 {
  color: #ffffff;
}
.text-light .form-control {
  color: #ffffff;
}
.text-light .form-control::-webkit-input-placeholder { /* Edge */
  color: #ffffff;
}
.text-light .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ffffff;
}
.text-light .form-control::placeholder {
  color: #ffffff;
}
.text-light .btn {
  color: #ffffff;
}
.text-light .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.text-dark {
  color: #251d17;
}
.text-dark h1, .text-dark .h1, .text-dark h2, .text-dark .h2, .text-dark h3, .text-dark .h3, .text-dark h4, .text-dark .h4, .text-dark h5, .text-dark .h5, .text-dark h6, .text-dark .h6 {
  color: #251d17;
}
.text-dark .form-control {
  color: #251d17;
}
.text-dark .form-control::-webkit-input-placeholder { /* Edge */
  color: #251d17;
}
.text-dark .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #251d17;
}
.text-dark .form-control::placeholder {
  color: #251d17;
}
.text-dark .btn {
  color: #251d17;
}
.text-dark .btn-outline {
  color: #251d17;
  border-color: #251d17;
}
