:root {
  --mm-primary: #2b70e4;
  --mm-highlight: #ffd034;
  --mm-secondary: #209d5c;
  --mm-tertiary: #06327d;
  --mm-primary-faded: #A4BCE4;
  --mm-primary-secondary-faded: #A7CBD3;
  --mm-almost-white-primary: hsl(218, 77%, 95%);
  --mm-almost-white-secondary: hsl(149, 66%, 95%);
  --mm-secondary-faded: #AADAC1;
  --mm-secondary-dark: #187545;
  --mm-primary-components: 43, 112, 228;
  --mm-highlight-components: 255, 208, 52;
  --mm-secondary-components: 32, 157, 92;
  --mm-tertiary-components: 6, 50, 125;
}

:root {
  --mm-primary: #2b70e4;
  --mm-highlight: #ffd034;
  --mm-secondary: #209d5c;
  --mm-tertiary: #06327d;
  --mm-primary-dark: #1e4fa0;
  --mm-primary-faded: #A4BCE4;
  --mm-primary-secondary-faded: #A7CBD3;
  --mm-almost-white-primary: hsl(218, 77%, 95%);
  --mm-almost-white-secondary: hsl(149, 66%, 95%);
  --mm-secondary-faded: #AADAC1;
  --mm-secondary-dark: #187545;
  --mm-primary-components: 43, 112, 228;
  --mm-highlight-components: 255, 208, 52;
  --mm-secondary-components: 32, 157, 92;
  --mm-tertiary-components: 6, 50, 125;
  --ihp-primary: #2b70e4;
  --ihp-highlight: #ffd034;
  --ihp-secondary: #209d5c;
  --ihp-tertiary: #06327d;
  --ihp-primary-faded: #A4BCE4;
  --ihp-primary-secondary-faded: #A7CBD3;
  --ihp-almost-white-primary: hsl(218, 77%, 95%);
  --ihp-almost-white-secondary: hsl(149, 66%, 95%);
  --ihp-secondary-faded: #AADAC1;
  --ihp-secondary-dark: #187545;
  --ihp-primary-components: 43, 112, 228;
  --ihp-highlight-components: 255, 208, 52;
  --ihp-secondary-components: 32, 157, 92;
  --ihp-tertiary-components: 6, 50, 125;
}

.ihp-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: white;
  height: 6rem;
  border-bottom: 1px solid black;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

@media screen and (min-width: 875.000001px) {
  .ihp-logo-resize {
    max-width: 66%;
  }
  .ihp-header {
    height: 6rem;
  }
}
@media screen and (max-width: 875px) {
  .ihp-logo-resize {
    max-width: 50%;
  }
  .ihp-header {
    height: 4.5rem;
  }
}
.menu-button-container {
  /* default to not showing the menu button */
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  z-index: 1;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu a:link,
.menu a:visited {
  color: black;
  text-decoration: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #06327d;
  position: absolute;
  height: 0.25rem;
  width: 1.875rem;
  border-radius: 2px;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.5s ease;
}

.menu-button::before {
  content: "";
  margin-top: -0.5rem;
}

.menu-button::after {
  content: "";
  margin-top: 0.5rem;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
  transition: transform 0.5s, background-color 0.5s ease;
  background-color: #209d5c;
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-45deg);
  transition: transform 0.5s, background-color 0.5s ease;
  background-color: #209d5c;
}

@media (min-width: 875.000001px) {
  .menu {
    display: flex;
    flex-direction: row;
    /*  list-style-type: none; */
    margin: 0;
    padding: 0;
  }
  .menu > li {
    margin: 0 1rem;
    /* hides the dots for items */
    overflow: hidden;
  }
}
@media (max-width: 875px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    display: block;
    position: absolute;
    top: -8rem;
    margin-top: 6rem;
    right: -4rem;
    width: 100%;
    z-index: 0;
    background: #2b70e4;
    border-radius: 80%;
    width: 22rem;
    height: 22rem;
    opacity: 100;
  }
  /* this is default look */
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5rem 0;
    width: 100%;
    background-color: #222;
  }
  .menu > li {
    position: relative;
    height: 2.5rem;
    background: #2b70e4;
    padding: 0.5rem;
    top: 5rem;
  }
  /* this is for hiding the menu */
  #menu-toggle ~ .menu {
    opacity: 0;
    visibility: hidden;
  }
  /* this is for showing the menu */
  #menu-toggle:checked ~ .menu {
    transition: all 0.5s;
    opacity: 100;
    visibility: visible;
  }
  /* this is for hiding the menu items */
  #menu-toggle ~ .menu li {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  /* this is for showing the menu items*/
  #menu-toggle:checked ~ .menu li {
    opacity: 100;
    visibility: visible;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
body,
html {
  -webkit-font-smoothing: antialiased;
}

#summarizingText {
  color: #2b70e4;
  font-size: 16px;
  font-family: "Open-Sans", sans-serif;
  font-weight: 600;
  perspective: 80px;
  text-rendering: optimizelegibility;
  text-size-adjust: none;
  transform-style: preserve-3d;
}
#summarizingText span {
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  animation: wave 2.4s ease infinite;
  letter-spacing: 0.01em;
  transform-origin: 100% 50%;
  transform-style: preserve-3d;
}
#summarizingText span:nth-child(1) {
  animation-delay: 0s;
}
#summarizingText span:nth-child(2) {
  animation-delay: 0.05s;
}
#summarizingText span:nth-child(3) {
  animation-delay: 0.1s;
}
#summarizingText span:nth-child(4) {
  animation-delay: 0.15s;
}
#summarizingText span:nth-child(5) {
  animation-delay: 0.2s;
}
#summarizingText span:nth-child(6) {
  animation-delay: 0.25s;
}
#summarizingText span:nth-child(7) {
  animation-delay: 0.3s;
}
#summarizingText span:nth-child(8) {
  animation-delay: 0.35s;
}
#summarizingText span:nth-child(9) {
  animation-delay: 0.4s;
}
#summarizingText span:nth-child(10) {
  animation-delay: 0.45s;
}
#summarizingText span:nth-child(11) {
  animation-delay: 0.5s;
}
#summarizingText span:nth-child(12) {
  animation-delay: 0.55s;
}
#summarizingText span:nth-child(13) {
  animation-delay: 0.6s;
}
#summarizingText span:nth-child(14) {
  animation-delay: 0.65s;
}
#summarizingText span:nth-child(15) {
  animation-delay: 0.7s;
}
#summarizingText span:nth-child(16) {
  animation-delay: 0.75s;
}
#summarizingText span:nth-child(17) {
  animation-delay: 0.8s;
}
#summarizingText span:nth-child(18) {
  animation-delay: 0.85s;
}
#summarizingText span:nth-child(19) {
  animation-delay: 0.9s;
}
#summarizingText span:nth-child(20) {
  animation-delay: 0.95s;
}
#summarizingText span:nth-child(21) {
  animation-delay: 1s;
}

@keyframes wave {
  0% {
    transform: translate3D(0, 0, 0) scale(1) rotateY(0);
    color: #2b70e4;
    text-shadow: 0 0 0 rgba(43, 112, 228, 0);
  }
  12% {
    transform: translate3D(2px, -2px, 3px) scale(1.16) rotateY(6deg);
    color: black;
  }
  15% {
    text-shadow: 0 0 2px #b3ccf5;
  }
  24% {
    transform: translate3D(0, 0, 0) scale(1) rotateY(0);
    color: #1958c3;
    opacity: 1;
  }
  36% {
    transform: translate3D(0, 0, 0) scale(1);
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
/* general styling */
.clock-wrapper {
  align-items: center;
  display: flex;
  margin-top: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.inner-clock-wrapper {
  margin: auto;
  --clock-scale: clamp(0.6rem, (100vw - 375px) * 0.0213333 + 11.2px , 1rem);
}

.container {
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-weight: normal;
  letter-spacing: 0.125rem;
}

.clock-label {
  font-size: var(--clock-scale);
  margin-left: calc(-0.4 * var(--clock-scale));
}

.clock-elem {
  display: inline-block;
  list-style-type: none;
  padding: 1em;
  width: calc(7 * var(--clock-scale));
  height: calc(7 * var(--clock-scale));
  line-height: calc(2 * var(--clock-scale));
  border-radius: 50%;
  font-size: calc(2 * var(--clock-scale));
  color: #209d5c;
  text-align: center;
  background: #fff;
}

.countdown-num {
  display: block;
  font-size: calc(3 * var(--clock-scale));
  margin-bottom: calc(-0.5 * var(--clock-scale));
  margin-left: calc(-0.2 * var(--clock-scale));
}

/* Get the bourbon mixin from http://bourbon.io */
/* Reset */
.flip-clock-wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc;
}

.flip-clock-wrapper a:hover {
  color: #fff;
}

.flip-clock-wrapper ul {
  list-style: none;
}

.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table;
}

.flip-clock-wrapper.clearfix:after {
  clear: both;
}

.flip-clock-wrapper.clearfix {
  *zoom: 1;
}

/* Main */
.flip-clock-wrapper {
  font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
  -webkit-user-select: none;
}

.flip-clock-meridium {
  background: none !important;
  box-shadow: 0 0 0 !important;
  font-size: 36px !important;
}

.flip-clock-meridium a {
  color: #313333;
}

/*
this needs to be overridden based on screen size
.flip-clock-wrapper {
text-align: center;
position: relative;
width: 100%;
margin: 1em;
}
*/
.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.flip-clock-wrapper:after {
  clear: both;
}

/* Skeleton */
.flip-clock-wrapper ul {
  position: relative;
  float: left;
  margin: 5px;
  width: 60px;
  height: 90px;
  font-size: 80px;
  font-weight: bold;
  line-height: 87px;
  border-radius: 6px;
  background: #000;
}

.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 87px;
  text-decoration: none !important;
}

.flip-clock-wrapper ul li:first-child {
  z-index: 2;
}

.flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important;
}

.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 80px;
  overflow: hidden;
  outline: 1px solid transparent;
}

.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
}

.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}

.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #ccc;
  text-shadow: 0 1px 2px #000;
  text-align: center;
  background-color: #333;
  border-radius: 6px;
  font-size: 70px;
}

.flip-clock-wrapper ul li a div.up div.inn {
  top: 0;
}

.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0;
}

/* PLAY */
.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3;
}

.flip-clock-wrapper .flip {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5;
}

.flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 100px;
}

.flip-clock-divider:first-child {
  width: 0;
}

.flip-clock-dot {
  display: block;
  background: #323434;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  left: 5px;
}

.flip-clock-divider .flip-clock-label {
  position: absolute;
  top: -1.5em;
  right: -86px;
  color: black;
  text-shadow: none;
}

.flip-clock-divider.minutes .flip-clock-label {
  right: -88px;
}

.flip-clock-divider.seconds .flip-clock-label {
  right: -91px;
}

.flip-clock-dot.top {
  top: 30px;
}

.flip-clock-dot.bottom {
  bottom: 30px;
}

@-webkit-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-moz-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-o-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both;
}

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}
@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg);
  }
  100% {
    -moz-transform: rotateX(0deg);
  }
}
@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg);
  }
  100% {
    -o-transform: rotateX(0deg);
  }
}
@keyframes turn {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}

@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(-90deg);
  }
}
@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg);
  }
  100% {
    -moz-transform: rotateX(-90deg);
  }
}
@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg);
  }
  100% {
    -o-transform: rotateX(-90deg);
  }
}
@keyframes turn2 {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-90deg);
  }
}
.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3;
}

/* SHADOW */
.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both;
}

/*DOWN*/
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Get the bourbon mixin from http://bourbon.io */
.mm-collapsible {
  text-align: left;
  margin: 10px auto 30px auto;
  position: relative;
}

.mm-collapsible article p {
  margin: 10px 15px 15px 15px;
}

.mm-collapsible input[type=checkbox],
.mm-collapsible input[type=radio] {
  background-color: transparent;
  border: 1px solid transparent;
  height: 1px;
  position: absolute;
  width: 1px;
  margin: 4px 0 0 0;
  outline: none;
  display: none;
}

.mm-collapsible input[type=checkbox] + label,
.mm-collapsible input[type=radio] + label {
  border-bottom: 1px solid #000;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: normal;
  line-height: 32px;
  padding: 10px 15px;
  position: relative;
  z-index: 20;
}

.mm-collapsible input[type=checkbox] + label:before,
.mm-collapsible input[type=radio] + label:before,
.mm-collapsible input[type=checkbox] + label:after,
.mm-collapsible input[type=radio] + label:after {
  display: inline-block;
  font-family: FontAwesome;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.mm-collapsible input[type=checkbox] + label:before,
.mm-collapsible input[type=radio] + label:before {
  color: #209d5c;
  content: "\f055";
  float: right;
  padding-right: 10px;
}

.mm-collapsible input[type=checkbox]:checked + label:before,
.mm-collapsible input[type=radio]:checked + label:before {
  color: #209d5c;
  content: "\f056";
  float: right;
  padding-right: 10px;
}

.mm-collapsible input[type=checkbox] + label + article,
.mm-collapsible input[type=radio] + label + article {
  /* display: none; - Content is ignored by screen readers, additionally stops tabbing through hidden content */
  line-height: 0;
  max-height: 0;
  overflow: hidden;
  /* 0, 0, hidden; - Content is ignored by screen readers, but tab key still steps through hidden elements */
  transition: all 0.1s;
}

.mm-collapsible input[type=checkbox]:checked + label + article,
.mm-collapsible input[type=radio]:checked + label + article {
  line-height: 1.5;
  max-height: 2000px;
  transition: all 0.1s;
}

.content-section {
  width: 90%;
  margin: auto;
}

@media (width < 330px) {
  .content-section {
    width: 100%;
  }
}
@media (min-width: 370px) {
  .content-section {
    width: 80%;
  }
}
@media (min-width: 430px) {
  .content-section {
    width: 80%;
  }
}
@media (min-width: 460px) {
  .content-section {
    width: 70%;
  }
}
@media (min-width: 490px) {
  .content-section {
    width: 60%;
  }
}
@media (min-width: 600px) {
  .content-section {
    width: 90%;
  }
}
@media (min-width: 684px) {
  .content-section {
    width: 85%;
  }
}
@media (min-width: 768px) {
  .content-section {
    width: 100%;
  }
}
@media (min-width: 950px) {
  .content-section {
    width: 85%;
  }
}
@media (min-width: 1100px) {
  .content-section {
    width: 75%;
  }
}
@media (min-width: 1280px) {
  .content-section {
    width: 80%;
  }
}
@media (min-width: 1440px) {
  .content-section {
    width: 70%;
  }
}
@media (min-width: 1700px) {
  .content-section {
    width: 60%;
  }
}
.content-container {
  padding: 15px;
  margin: -5px;
  font-size: 0;
  font-family: Helvetica, Arial, sans-serif;
}

.flex-item {
  position: relative;
  display: inline-block;
  height: 0;
  width: 100%;
  padding-top: 100%;
  border: 2rem 2rem 1.25rem;
  font-size: 1rem;
  color: black;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 600px) {
  .flex-item {
    width: 50%;
    padding-top: 50%;
  }
}
@media (min-width: 768px) {
  .flex-item {
    width: 33%;
    padding-top: 33%;
  }
}
@media (min-width: 1280px) {
  .flex-item {
    width: 25%;
    padding-top: 25%;
  }
}
.flex-item-inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 10px;
  box-sizing: border-box;
  border: 1px solid black;
}
.flex-item-inner-content {
  font-weight: normal;
  margin: auto;
  margin-top: 0;
  border: 4px;
  padding: 0.5rem;
}
.flex-item-inner-title {
  height: 3rem;
  margin-top: 1rem;
  margin-bottom: -1rem;
}
.flex-item-inner-icon {
  height: 2rem;
  margin-top: 1rem;
  margin-bottom: -1.5rem;
}

.weight-table {
  border: 1px solid black;
  border-collapse: collapse;
}

.weight-table table, th, tr, td {
  border: 1px solid black;
  border-collapse: collapse;
  text-align: center;
  padding: 0.5rem;
}

.center-with-border {
  box-sizing: border-box;
  margin: auto;
  width: 95%;
  padding: 0.75rem;
  border-radius: 15px;
  border: 5px solid;
}

.center-no-border {
  box-sizing: border-box;
  margin: auto;
  width: 95%;
  padding: 0.75rem;
  border-radius: 15px;
}

.center-wider {
  box-sizing: border-box;
  margin: auto;
  width: 95%;
  padding: 0.75rem;
  border-radius: 15px;
}

.guide-body {
  text-align: center;
  background-color: white;
  box-sizing: border-box;
  margin: auto;
  width: 95%;
  padding: 0.75rem;
  border-radius: 15px;
  border: 5px solid;
}

@media (min-width: 768px) {
  .center-with-border {
    box-sizing: border-box;
    margin: auto;
    width: 80%;
    padding: 0.75rem;
    border-radius: 15px;
    border: 5px solid;
  }
  .guide-body {
    box-sizing: border-box;
    margin: auto;
    width: 80%;
    padding: 0.75rem;
    border-radius: 15px;
    border: 5px solid;
  }
  .center-no-border {
    box-sizing: border-box;
    margin: auto;
    width: 80%;
    padding: 0.75rem;
    border-radius: 15px;
  }
  .center-wider {
    box-sizing: border-box;
    margin: auto;
    width: 90%;
    padding: 0.75rem;
    border-radius: 15px;
  }
}
@media (min-width: 992px) {
  .center-with-border {
    box-sizing: border-box;
    margin: auto;
    width: 60%;
    padding: 0.75rem;
    border-radius: 15px;
    border: 5px solid;
  }
  .guide-body {
    box-sizing: border-box;
    margin: auto;
    width: 60%;
    padding: 0.75rem;
    border-radius: 15px;
    border: 5px solid;
  }
  .center-no-border {
    box-sizing: border-box;
    margin: auto;
    width: 60%;
    padding: 0.75rem;
    border-radius: 15px;
  }
  .center-wider {
    box-sizing: border-box;
    margin: auto;
    width: 75%;
    padding: 0.75rem;
    border-radius: 15px;
  }
}
.guide-body {
  padding-top: 0rem;
}

@media screen and (min-width: 875.000001px) {
  .shrinking-text {
    font-size: 100%;
  }
}
@media screen and (max-width: 875px) {
  .shrinking-text {
    font-size: 75%;
  }
}
h2 {
  vertical-align: center;
  text-align: center;
}

html,
body {
  margin: 0;
  height: 100%;
}

* {
  box-sizing: border-box;
}

.custid-input {
  display: none;
}

.form-control-lg {
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 10px;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
}

.form-control-full-width {
  width: 100%;
}

#searchie-fixed-btn.right-bottom2 {
  bottom: 80px !important;
}

body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

h1,
.h1 {
  font-size: calc(1.625rem + 1.5vw);
  font-weight: 600;
}

/* make h2 be a bit bigger on larger screens */
h2,
.h2 {
  font-size: calc(1.325rem + 0.9vw);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: calc(1.125rem + 0.4vw);
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

.position-relative {
  position: relative !important;
}

.justify-content-center {
  justify-content: center !important;
}

.center-text {
  text-align: center;
}

.founding-members-section {
  text-align: left;
}
.founding-members-section h1 {
  text-align: center;
}

/* > means direct child */
.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.areas-point {
  display: flex;
  align-items: left;
  margin-bottom: 1rem;
}

.ihpshield {
  content: url("https://ihpacademy.com/assets/img/dojologo.svg");
  height: 2rem;
  width: 2rem;
  margin: auto;
  justify-content: start;
}

.area-checkmark {
  float: left;
  margin-right: 1rem;
  margin-top: 0;
  margin-bottom: auto;
  color: var(--ihp-highlight);
  scale: 200%;
}

.area-explanation {
  float: right;
}

.bonus-box {
  display: flex;
  text-align: left;
  flex-direction: column;
}

.bonus-box-image {
  display: flex;
  margin: auto;
}

@media (min-width: 600px) {
  .bonus-box {
    flex-direction: row;
  }
}
/* change cursor to pointer finger when over */
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

#overlay-panel {
  color: rgb(255, 255, 255);
}

.text-center {
  text-align: center;
}

.footer-list {
  list-style: none;
}

.lantern-results-grid {
  display: grid;
  grid-template-columns: 1fr 5fr;
}

.lantern-results-grid span {
  padding-left: 10px;
}

.ihp-button {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: rgba(var(--ihp-primary-components), 0.8);
  border-color: rgba(var(--ihp-primary-components), 0.8);
  transition: background-color 500ms linear;
  font-size: 1.25rem;
  background: #2b70e4;
  color: #ffd034;
  margin-top: 5px;
  padding: 0.375rem 0.75rem;
  border: 1px #007bff;
  border-radius: 0.375rem;
}

.green-button {
  background: var(--ihp-secondary);
  color: white;
}

.white-button {
  background: white;
  color: black;
}

.big-button {
  padding: 2rem 5rem;
}

.center-button {
  display: flex;
  justify-content: center;
}

.ihp-visible {
  display: inline;
}

.ihp-hidden {
  display: none;
}

.oval-button {
  margin: auto;
  padding: 0.7rem;
  display: block;
  background-color: rgba(var(--ihp-primary-components), 1);
  border-color: #000000;
  color: rgba(var(--ihp-highlight-components), 1);
  transition: background-color 500ms linear;
  font-size: 1.25rem;
  border-radius: 30px;
  border-width: 0px;
}

.ihp-button:hover {
  background-color: rgba(var(--ihp-primary-components), 0.7);
}

.green-button:hover {
  background-color: rgba(var(--ihp-secondary-components), 0.7);
}

.white-button:hover {
  background: rgba(255, 255, 255, 0.7);
}

p {
  color: black;
}

.html-full-page-gradient {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(to left top, var(--ihp-primary-faded), var(--ihp-secondary-faded));
  min-height: 100ch;
}

.html-full-page-solid {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--ihp-almost-white-secondary);
}

.info-block {
  margin-bottom: 3rem;
  padding: 1rem;
  padding-top: 2rem;
  position: relative;
  z-index: 1;
}

.section-alt1 {
  background-color: var(--ihp-primary-faded);
}

.section-white {
  background-color: white;
}

.main-goal {
  margin: auto;
  max-width: 30rem;
  padding-bottom: 0px;
  padding-top: 13px;
}

.section-green {
  background-color: var(--ihp-secondary);
}

.section-green p {
  color: white;
}

.section-green .log-in-now {
  display: none;
}

.section-alt-white-1 {
  background-color: var(--ihp-almost-white-primary);
}

.section-alt2 {
  background-color: var(--ihp-secondary-faded);
}

.signup-block {
  background-color: var(--ihp-highlight);
}

.searchie-container {
  margin-bottom: -25%;
}

.ihp-body-transparent {
  background: rgba(0, 0, 0, 0);
  margin: 0px;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

#page-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

#content-wrap {
  padding-bottom: 5rem;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4rem;
}

.bi-facebook {
  display: none;
}

.bi-twitter {
  display: none;
}

.bi-instagram {
  display: none;
}

.disabled-checkbox {
  pointer-events: none;
}

/* for button */
.disabled {
  color: #999;
}

/* note image must be inside a flex container for this to work */
.center-image {
  margin: auto;
}

.highlight1 {
  font-weight: bold;
}

.form-control-textarea {
  display: flex;
  margin: auto;
  word-break: break-word;
  text-wrap: wrap;
}

.half-width-auto-size {
  object-fit: contain;
  height: 10rem;
  width: 10rem;
}

.center-aligned-list ol, ul {
  display: inline-block;
}

.center-aligned-list li {
  text-align: left;
}

@media (width < 768px) {
  .form-control-textarea {
    width: 95%;
  }
  h2 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .form-control-lg::placeholder {
    font-size: 1rem;
    font-weight: bold;
  }
  .half-width-auto-size {
    height: 10rem;
    width: 10rem;
  }
}
@media (min-width: 768px) {
  .form-control-textarea {
    width: 60%;
  }
  .half-width-auto-size {
    height: 12rem;
    width: 12rem;
  }
}
@media (min-width: 992px) {
  .half-width-auto-size {
    height: 20rem;
    width: 20rem;
  }
}
@media (max-width: 400px) {
  .main-goal {
    font-size: 1.625rem;
  }
}
@media (min-width: 1400px) {
  .main-goal {
    max-width: 40rem;
  }
}
.grecaptcha-badge {
  bottom: 52px !important;
}

/*# sourceMappingURL=ihp.css.map */
