/* ib.css
* Impact Benefit Solutions, Inc. | Corporate
* October 2021
*/
:root {
  --ib-red: #bb2025;
  --ib-blue: #06305f;
  --white-text: #ffffff;
  --brand-yellow: #F7DB1C;
  --header-footer-bg: #e1e1e1;
  --nav_rollover: #C9F29D;
  --advantage-tab-color:#1A3144;
  --strategy-tab-color:#A39B8B;
  --strategy-tab-color-translucent:#A39B8B80;

  --header-height: 5em; /* 110px;  /* 6vw; */
  --nav-and-hdr-btn-fsize:0.9em;
}

.red-bg {
  background-color:#bb2025;
  background-color:var(--ib-red);
}
.blue-bg {
  background-color:#06305f;
  background-color:var(--ib-blue);
}

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

body {
  margin: 0px;
  padding: 0px;
  background-color: white;
  color: white;
  /* font-family: Helvetica, Arial, sans-serif; */
  font-family: 'Noto Sans', sans-serif;
  font-size:1.5vw; /* scale font with browser width */
}

body .hide {
  display: none !important;
}

body a:link,
body a:visited,
body a:hover,
body a:active {
  color:white;
}

#debug_div {
  min-width: 200px;
  min-height: 50px;
  background-color: rgba(255, 192, 0, 0.3);
  color: white;
  font-weight: bold;
  position: fixed;
  top: 90px;
  right: 20px;
  padding: 5px;
}

.bold {
  font-weight: bold;
}
.centered,
.centered_btn {
  text-align: center;
}
.anchor {
  cursor:pointer;
}

#go_to_top {
  display:none;
  position:fixed;
  bottom:3em;
  right:1.5em;
  z-index:200;
  cursor:pointer;
  height:auto;
  width:50px;
}
#go_to_top.show {
  display:block;
}

footer {
  /* min-height: 4em; */
  padding: 0px 5% 0em; /* 2em */
  background-color: black; /* var(--header-footer-bg); */
  color:white;
  /* display:grid; */
  grid-template-columns: 1.25fr repeat(3,1fr);
  column-gap: 1em;
  /* font-size:1.5vw; */
  text-align: center;
}

footer h2 {
  font-weight: normal;
}

.old footer .social_links {
  display:grid;
  grid-auto-flow: column;
  /* column-gap:1em; */
  justify-content:space-evenly;
}

.social_links a {
  display:inline-block;
  width:2em;
}
.social_links a + a {
  margin-left:1em;
}

footer > div + div {
  padding-top:1em;
}

.footer_logo {
  padding:1em 0px;
  max-width:15vw;
}

.footer_logo img,
.social_links img {
  display:block;
  height: auto;
  width:100%; /* respect size of container! */
}
.old .social_links img {
	width: 65%;
}

footer .phone_and_email {
  display:grid;
  grid-template-columns: 42px 1fr; /* auto 1fr doesn't work in mac-firefox :(*/
  row-gap: 1em;
  column-gap:1em;
  align-items: center;
}

footer .address_block {
  /* color:black; */
  /* margin-top:15px; */
  font-size:1rem;
  padding:1em 0em;
}

.phone_and_email a {
  text-decoration: none;
}

.phone_and_email img {
  display:block;
  height:auto;
  width:100%;
}

.phone_and_email div {
  color:var(--nav_rollover);
}

.phone_and_email a:link,
.phone_and_email a:visited,
.phone_and_email a:hover,
.phone_and_email a:active,
.quick_links a:link,
.quick_links a:visited,
.quick_links a:hover,
.quick_links a:active
 {
  color:white;
  text-decoration: none;
  display: block;
}

footer .phone_and_email a:hover,
footer .quick_links a:hover {
  color:var(--nav_rollover);
}

.quick_links a + a {
  margin-top:0.5em;
}

header,
.home_page .header_placeholder {
  height: var(--header-height);
}
/* special offset for initial container */
section.homepage_sec.shift-top
/* .home_page section:first-of-type */ {
  margin-top: calc( -1 * var(--header-height) );
}

header {
  display:-ms-flexbox;
  display:flex; /* IE11 */
  justify-content: space-between; /* IE11 */
  display: grid;
  /* gap:1em; */
  grid-template-columns: auto 0% auto; /* nav area width set from 50% to 0% */
  /* grid-template-rows: 1em auto; */
  align-items: center;
  padding: 0em 1.5em 0em;
  z-index: 100;
  position: fixed;
  top: 30px;
  left:5%;
  right:5%;
  color: white;
  box-shadow: 0px 10px rgba(221, 221, 221, 0.271);
  box-shadow: 0px 10px #dddddd45;
  border-radius:10px;
  /* background-color: var(--header-footer-bg); */
  background-color: white;
  /* font-weight: bold; */
  /* font-size: 1.1em; */
  grid-template-areas: /* ". . lang" */ "logo nav btn";
  transition: 0.5s;
}
header.shift-up {
  top:0px;
  background-color: rgba(239,239,239,0.9);
}

.not .home_page header {
  background-color: transparent;
}
header.black_out {
  background-color: var(--header-footer-bg);
}
.not header:not(.black_out) .nav_wrapper {
  display: none;
}

/*
 * ---- LANGUAGE CHOICE LINK/MENU ----
 */
.language_choice {
  grid-area: lang;
  align-self: right;
  text-align: right;
  color:white;
  text-decoration: none;
}
.language_choice a {
  font-size:0.75em;
  text-decoration: none;
}
/*
 * ---- NAVIGATION ----
 */
.nav_wrapper { /* nav element lives INSIDE this container */
  position: relative;
  grid-area: nav;
}

nav {
  display: none; /* grid */
  grid-template-columns: repeat(2, auto); /* 4 */
  align-items: center;
  justify-content: end;
  /* justify-content: space-evenly; */
  font-size:1em;
}
nav .nav_btn,
.nav_burger,
button {
  cursor: pointer;
}
/* hamburger placeholder */
.nav_burger {
  display: none;
  padding: 5px; /* provide space to click/tap on */
  color:black; /* improve visibility */
}
nav .nav_btn {
  padding: 0.45em 0em;
  position: relative;
  /* text-align: center; */
  /* height: 35px; */
  font-size: var(--nav-and-hdr-btn-fsize);
  margin-left:50px;
}
nav .nav_btn:first-child {
  margin-left:0px;
}

.nav_btn .sub_nav.old {
  font-weight: bold;
  left: -50%;
  width: 200%;
  font-size: 2em;
  height: 3em;
  line-height: 3em;
}

.nav_btn .sub_nav {
  display: none;
  position: absolute;
  top: 2em;
  background-color: white;
  text-align: left;
  border:1px solid gray;
  min-width:10.75em;
}

.nav_btn > a:link,
.nav_btn > a:visited,
.nav_btn > a:hover,
.nav_btn > a:active {
  color:black;
  text-decoration: none;
}

/* only color on hover if blackout is in effect (for homepage)! */
body:not(.home_page) .nav_btn:hover,
body:not(.home_page) .nav_btn:hover > a
/* ,
.black_out nav .nav_btn:hover */ {
  color:var(--nav_rollover);
}

/* help nav a tags render well */
.sub_nav a:link,
.sub_nav a:visited,
.sub_nav a:hover,
.sub_nav a:active {
  color:black;
  text-decoration: none;
}

.nav_btn:hover .sub_nav {
  display: block;
}

.sub_nav a,
.sub_nav div {
  padding:0.5em 1em;
  color:black;
  display:block; /* for the anchor tag */
}
.sub_nav a:hover,
.sub_nav div:hover {
  background-color:var(--nav_rollover);
}

.products_services .sub_nav {
  min-width: 12em;
}

.company,
.features,
.about_nav {
  justify-self: center;
}

.demo_btn_nav {
  grid-area: btn;
  justify-self: right;
}

.demo_btn_nav .big_red {
  padding:1em;
}

.site_logo .mega_cap.old {
  font-size: 3em;
  display: inline-block;
  vertical-align: middle;
  line-height: 1em;
}

.site_logo img {
  /* max-height: 7vw; /* 50px; */
  align-self: center; /* will this work inside a grid member child? */
  height:4em; /* height changes as body font scales with page width (x vw) */
  /* margin-top:-15px; */
}
.black_out .site_logo img {
  height:4em;
}

.site_logo {
  grid-area:logo;
}

.big_red {
  padding: 1em; /* 0.45em; */
  border: 0px;
  background-color: #bb2025;
  background-color: var(--ib-red);
  /* wrapper element contains background color/gradient */
  background-color:transparent;
  border-radius: 0em 2em;
  color: white;
  /* font-weight: bold; */
  font-size: var(--nav-and-hdr-btn-fsize);
  transition: 0.5s ;
}
/* hover bg color is done on wrapper element */
.not .big_red:hover {
  background-color:#06305f;
  background-color:var(--ib-blue);
}

.big-red-anim-bg {
  border-radius: 0em 2em;
  border: 0px;
  display: inline-block;
  background-color: #bb2025;
  background-color: var(--ib-red);
  background-image: linear-gradient(90deg,var(--ib-red) 0%,var(--ib-red) 35%,var(--ib-blue) 65%,var(--ib-blue) 100%);
  background-size: 300% 100%;
  background-position: 0px 0px;
  transition: background-position 0.5s;
}
.big-red-anim-bg:hover {
  background-color: #06305f;
  background-color: var(--ib-blue);
  background-position: 100% 0px;
}

.blue-heading {
  color:#06305f !important;
  color:var(--ib-blue) !important;
}

div.tall_div {
  /* cause page to always have to scroll */
  min-height: 100vh;
}

/*
 *  -- UTILITY CLASSES --
 */
 .outline_all, .outline_all * {
  outline:2px solid rgba(255, 0, 0, 0.25);
}

body.show_hover_outline .hover_outline:hover *,
.outline_children,
.outline_children * {
  outline: 1px solid #c9f29d40;
}
body.show_hover_outline .hover_outline_dark:hover * {
  outline: 1px solid #360D6240;
}

body.outline_section .section_content * {
  outline: 1px solid pink;
}

.mt-0 { margin-top:0.0em !important; }
.mt-1 { margin-top:0.25em !important; }
.mt-2 { margin-top:0.5em !important; }
.mt-3 { margin-top:1.0em !important; }
.mt-4 { margin-top:1.5em !important; }
.mt-5 { margin-top:2.0em !important; }
.mb-0 { margin-bottom:0.0em !important; }
.mb-1 { margin-bottom:0.25em !important; }
.mb-2 { margin-bottom:0.5em !important; }
.mb-3 { margin-bottom:1.0em !important; }
.mb-4 { margin-bottom:1.5em !important; }
.mb-5 { margin-bottom:2.0em !important; }
.my-0 { margin-top:0.0em !important; margin-bottom:0.0em !important; }
.my-1 { margin-top:0.25em !important; margin-bottom:0.25em !important; }
.my-2 { margin-top:0.5em !important; margin-bottom:0.5em !important; }
.my-3 { margin-top:1.0em !important; margin-bottom:1.0em !important; }
.my-4 { margin-top:1.5em !important; margin-bottom:1.5em !important; }
.my-5 { margin-top:2.0em !important; margin-bottom:2.0em !important; }

/*
 * ---- CONTENT ----
 */
section {
  min-height: 1em;
  color: white;
  padding-top: 1.25px; /* negate heading margins crossing container boundary */
}

section.homepage_sec {
  background-image: url("/assets/images/ib_mainPanel.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position:relative;
  /* background-position-y: -50px; */
  min-height: calc(45vw); /* based on proportion of image */
  /* color: #000; */
  /* padding: 1px 1.5em 2em; */
  /* font-size:1.5vw; */
}

section.homepage_sec::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	/* border: 1px solid red; */
	background-color: rgba(0,0,0,0.4);
}

.section_content.old {
  display: grid;
  grid-template-columns: 53% auto;
}

.homepage_sec .section_content {
  margin-top:10%; /* 125px; */ /* h1:first-of-type margin-top moved here (the parent container) */
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  text-align: center;
  position: relative; /* help content appear above background-dim element */
}
.red_letter {
  color:var(--ib-red);
}
.uppercase {
  text-transform: uppercase;
}
.homepage_sec h1 {
  /* font-size: 3.75vw; /* adjust header font size based on browser width */
  font-size:2.5em;
  margin: 0em 0px; /* this will set spacing between H1 tags in this container */
  /* font-weight: normal; */
  line-height: 1.25;
}
/* this sets the top margin for the first H1 in the container */
.homepage_sec h1:first-of-type {
  margin-top:0px; /* 1.5em; */
  margin-bottom: 0.125em;
}
/* this sets the bottom margin for the last H1 in the container */
.homepage_sec h1:last-of-type {
  margin-top:0.125em;
}

.homepage_sec p {
  font-size:1em;
  line-height: 1.2;
  /* width:54%; */
  margin:0.75em auto 0.75em 0px;
}

span.white_letters {
  color: var(--white-text);
}

.typing,.blinking-cursor {
  display:inline-block;
}
.blinking-cursor {
	width: 0.1em;
	height: 0.7em; /* full 1em makes it too tall */
	background-color: var(--white-text);
	animation: blink .75s step-end infinite;
}

@keyframes blink {
	from, to { 
		background-color: transparent 
	}
	50% { 
		background-color: var(--white-text);
	}
}

/* "Pulsing Down Arrow - No JS (from codepen.io/jhankins/pen/qOvwOR) */
#arrow-wrapper {
  --pulse-arrow-size:40px;
  --wrapper-size:120px;
  --arrow-bottom:48px;
  --arrow-right:38px;
  width: var(--wrapper-size);
  height: var(--wrapper-size);
  display: block;
  /* margin: 0 auto; */
  /* margin-top: 30px; */
}
.arrow-border {
  position: relative;
  background-color: #bb2025;
  background-color: var(--ib-red);
  width: var(--wrapper-size);
  height: var(--wrapper-size);
  border: 2px solid orange;
  border-radius: 50%;
  -webkit-animation:ripple-red 1s linear infinite;
  animation:ripple-red 1s linear infinite;
  /* animation-delay: 2s; */
}
.arrow {
  position: absolute;
  bottom: var(--arrow-bottom);
  width: var(--pulse-arrow-size);
  height: var(--pulse-arrow-size);
  border-top: 3px solid orange;
  border-right: 3px solid orange;
  right: var(--arrow-right);
  animation:fade-arrow 2s linear infinite;
}

.arrow.right {
  animation:fade-arrow-horizontal 2s linear infinite;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrow.down {
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}  

.pulse {
    display: none; /* this element replaced by ripple-red effect on .arrow-border above */
    border-radius: 50%;
    height: var(--wrapper-size);
    width: var(--wrapper-size);
    position: absolute;
    margin: 0;
    /* animation: pulsate 2s ease-out; */
    animation-iteration-count: infinite;
    opacity: 0.0;
    box-shadow: 0 0 1px 2px #89849b;
    animation-delay: 2s;
}

@keyframes pulsate {
  0% {
    transform: scale(0.9, 0.9);
    opacity: 0.0;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
/* end Pulsing Down Arrow */

#arrow-wrapper {
  position: absolute;
  top:0px;
  left:50%;
  transform:translate(-50%,-50%);
}

.ripple-icon {
  position: relative;
  --pulse-arrow-size:40px;
  /* --wrapper-size:80px; */
  --wrapper-size:120px;
  --arrow-bottom:38px;
  --arrow-right:48px;
}

@keyframes fade-arrow {
  0% {
    transform:translateY(-50%) rotate(135deg); /* maintain angle */
    opacity:0.0;
  }
  20%,80% {
    opacity:1.0;
  }
  100% {
    transform:translateY(50%) rotate(135deg); /* maintain angle */
    opacity:0.0;
  }

}
@keyframes fade-arrow-horizontal {
  0% {
    transform:translateX(-50%) rotate(45deg); /* maintain angle */
    opacity:0.0;
  }
  20%,80% {
    opacity:1.0;
  }
  100% {
    transform:translateX(50%) rotate(45deg); /* maintain angle */
    opacity:0.0;
  }
  
}
@keyframes ripple-red {
  0% {
      -webkit-box-shadow: 0 0 0 0 rgba(241, 42, 2, 0.3), 0 0 0 10px rgba(241, 42, 2, 0.3), 0 0 0 20px rgba(241, 42, 2, 0.3);
      box-shadow: 0 0 0 0 rgba(241, 42, 2, 0.3), 0 0 0 10px rgba(241, 42, 2, 0.3), 0 0 0 20px rgba(241, 42, 2, 0.3)
  }
  100% {
      -webkit-box-shadow: 0 0 0 10px rgba(241, 42, 2, 0.3), 0 0 0 20px rgba(241, 42, 2, 0.3), 0 0 0 30px rgba(241, 42, 2, 0);
      box-shadow: 0 0 0 10px rgba(241, 42, 2, 0.3), 0 0 0 20px rgba(241, 42, 2, 0.3), 0 0 0 30px rgba(2241, 42, 2, 0)
  }
}

div.about_btn_sec,
div.demo_btn_sec {
  text-align: center;
}
div.demo_btn_sec button.clear_btn:hover {
  margin-top:10px;
  background-color: #bb2025;
  background-color: var(--ib-red);
  border-color:#bb2025;
  border-color:var(--ib-red);
}

button.submit_btn,
button.mission_about_btn,
button.clear_btn {
  padding: 0.5em;
  background: transparent;
  border: 1px solid white;
  border-radius: 0.5em;
  font-size: 1em;
  font-weight: bold;
  color: white;
}
button.submit_btn {
  /* color:var(--ib-red); */
  /* border-color:var(--ib-red); */
  border-radius:0px 15px;
  border-color: white;
  color:white;
  background-color:#bb2025;
  background-color:var(--ib-red);
  transition: 0.25s;
}
button.submit_btn:hover {
  border-color:#bb2025;
  border-color:var(--ib-red);
  color:#bb2025;
  color:var(--ib-red);
  background-color:transparent;
}

button.mission_about_btn:hover {
  background-color:white;
  border-color:white;
}
/*
 *  section panels for homepage
 */
section:not(.homepage_sec) h1,
h2,h3,h4,h5,h6 {
	font-family: 'Roboto',sans-serif;
	color: var(--ib-red);
  font-size:2.25em;
}
h2 {
  font-size:2em;
}
h3 {
  font-size:1.75em;
}
h4 {
  font-size:1.5em;
}
h5 {
  font-size:1.25em;
}
h6 {
  font-size:1em;
}
section.company_panel,
section.features_panel {
  color:black;
  background-color:white;
  position: relative;
  padding:1em 5% 2em;
}
section.company_panel {
  padding-top:3em;
}
section.innovation_panel {
  background-color: white;
  color: black;
  padding: 1em 10% 3em;
  display: grid;
  grid-template-areas: "H H" "L R";
  grid-template-rows: 1fr auto;
  grid-template-columns: 3fr 2fr;
  column-gap: 3em;
  position: relative;
  /* font-size:1.5vw; */
}

.innovation_panel .animation_debug_div {
  position: absolute;
  top:0px;
  left:50%;
  transform:translate(-50%,0);
}

.innovation_panel .animation_debug_div span {
  display:block;
  padding:0.5em;
  background-color:rgba(128,128,128,0.75);
  color:white;
  font-weight: bold;
}

.innovation_panel .threshold_above,
.innovation_panel .threshold_below {
	border: 1px solid limegreen;
	width: 100%;
	position: absolute;
	left: 0;
  top: 85%;
  z-index: 20;
}
.innovation_panel .threshold_below {
  top:95%;
}

.innovation_panel h1 {
  grid-area: H;
  text-align: center;
  /* font-size:2.5em; */
  font-weight: normal;
  margin:0.5em auto 0.25em;
}
.innovation_panel .left_col {
  grid-area: L;
  font-size:1em;
}
.innovation_panel .left_col p:last-of-type {
  margin-bottom:0px;
}
.innovation_panel .right_col {
  grid-area: R;
  align-self: end;
  height: 100%;
}

.chart_with_icons {
  display: grid;
  border-bottom: 1px solid black;
  grid-template-columns: repeat(6,1fr) 5%;
  align-items: end;
}

.padded_bar {
  margin-left: 25%;
  display:grid;
  grid-template-rows: 1fr auto;
  align-items: end;
}

.padded_bar img {
  display: block;
  height: auto;
  width: 100%;
  padding:8px;
}

.padded_bar .redbar {
  /* margin-top:5px; */
  background-color:#bb2025;
  background-color:var(--ib-red);
  border:1px solid #bb2025;
  border:1px solid var(--ib-red);
  transition:height 1s ease;
}

.padded_bar:nth-child(1) .redbar {
  height: 3em;
}
.padded_bar:nth-child(2) .redbar {
  height: 5.5em;
}
.padded_bar:nth-child(3) .redbar {
  height: 2.75em;
}
.padded_bar:nth-child(4) .redbar {
  height: 3.5em;
}
.padded_bar:nth-child(5) .redbar {
  height: 6em;
}
.padded_bar:nth-child(6) .redbar {
  height: 2.5em;
}
.uniform .padded_bar .redbar {
  height:11em;
}

.arrows-tree {
  --border-color: lightgray;
  --border-width: 2px;
  --tree-height: 250px;
  max-width: 67%;
  margin:0px auto 20px;
  display:flex; /* IE11 */
  display: grid;
  gap:1em;
  grid-template-columns: 1fr auto 1fr;
  position: relative;
  /* switched to SVG rendering of lines with arrows, don't need flex/grid */
  display:block;
  max-width:70%; /* need wider because SVG doesn't draw outside viewBox */
  margin:0px auto;
}
.arrows-tree > div {
  display:inline-block;
  position: relative;
}
.arrows-tree .left-tree-arrow,
.arrows-tree .right-tree-arrow {
  flex-grow: 1; /* IE11 */
}
.center-tree-arrow {
  width:0px;
  height:250px;
  height:var(--tree-height);
  border-left: 2px solid lightgray;
  border-left: var(--border-width) solid var(--border-color);
}
.arrows-tree .left-tree-arrow::after,
.arrows-tree .right-tree-arrow::after,
.center-tree-arrow::after {
  content: '';
  position: absolute;
  border:15px solid transparent;
  border-top-color: lightgray;
  border-top-color: var(--border-color);
  bottom:-30px;
  left:-17px;
}
.arrows-tree .left-tree-arrow::after {
  left:-13px;
}
.arrows-tree .right-tree-arrow::after {
  left:inherit;
  right:-13px;
}
.arrows-tree .top-right,
.arrows-tree .top-left,
.arrows-tree .bottom-left,
.arrows-tree .bottom-right {
  height:126px;
  height:calc(var(--tree-height) / 2 + var(--border-width) / 2);
  width:75%;
  position: absolute;
  border: 2px solid transparent;
  border: var(--border-width) solid transparent;
}
.arrows-tree .top-right {
  border-right-color:lightgray;
  border-right-color:var(--border-color);
  border-bottom-color:lightgray;
  border-bottom-color:var(--border-color);
  border-radius:20px 0px;
  top: 0px;
  right: 0px;
}
.arrows-tree .bottom-left {
  border-top-color:lightgray;
  border-top-color:var(--border-color);
  border-left-color: lightgray;
  border-left-color: var(--border-color);
  border-radius: 20px 0px;
  left: 0px;
  bottom:0px;
}
.arrows-tree .top-left {
  border-left-color:lightgray;
  border-left-color:var(--border-color);
  border-bottom-color:lightgray;
  border-bottom-color:var(--border-color);
  border-radius: 0px 20px;
  top:0px;
  left:0px;
}
.arrows-tree .bottom-right {
  border-top-color:lightgray;
  border-top-color:var(--border-color);
  border-right-color: lightgray;
  border-right-color: var(--border-color);
  border-radius: 0px 20px;
  right:0px;
  bottom:0px;
}
/* cover border corners */
.arrows-tree .top-right::after,
.arrows-tree .bottom-left::after,
.arrows-tree .top-left::after,
.arrows-tree .bottom-right::after {
  content:'';
  position: absolute;
  width:2px;
  width:var(--border-width);
  height:2px;
  height:var(--border-width);
  background-color: var(--border-color);
}
.arrows-tree .top-right:after {
  top:-2px;
  top:calc(-1 * var(--border-width));
  right:-2px;
  right:calc(-1 * var(--border-width));
}
.arrows-tree .bottom-left::after {
  left:-2px;
  left:calc(-1 * var(--border-width));
  bottom:-2px;
  bottom:calc(-1 * var(--border-width));
}
.arrows-tree .top-left::after {
  top:-2px;
  top:calc(-1 * var(--border-width));
  left:-2px;
  left:calc(-1 * var(--border-width));
}
.arrows-tree .bottom-right::after {
  right:-2px;
  right:calc(-1 * var(--border-width));
  bottom:-2px;
  bottom:calc(-1 * var(--border-width));
}
/* this was first-effort to obscure the line-arrows
  and reveal in what appears to be the lines self-drawing. */
.shield {
  position: absolute !important;
  width: calc(100% + 30px);
  height: calc(100% + 15px);
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -15px;
  background-color: white;
  bottom: 0px;
  transition: height 0.5s linear;
}
.arrows-tree.show .shield {
  height:0px;
}
/* the SVG replacement for the boxes-with-borders approach: */
#arrow path { /* this is the path in an SVG marker element */
  opacity:0;
  transition:opacity 0.1s linear 1s;
  fill:lightgray;
}
.arrow-line {
  transition: stroke-dashoffset 1s ease;
  /* arrow stroke width affects marker size!
    To keep arrow the same size, change marker tag's viewBox attribute bottom-right to compensate */
  stroke-width:2px;
  stroke:lightgray;
  fill:none;
}
/* when parent wears 'draw' class, draw the lines, and fade-in the arrows */
.draw #arrow path {
  opacity:1;
}
.draw .arrow-line {
  stroke-dashoffset:0;
}

.key-digits {
  margin-right:0.5em;
  position: relative;
  color:#bb2025;
  color:var(--ib-red);
}
.not .key-digits::after {
  content:'';
  left:100%;
  top:50%;
  position: absolute;
  height:1px;
  width:1em;
  background-color:black;
}

/* -- MISSION PANEL -- */
section.mission_panel {
  padding: 2.5em 5%; /* 10em */
  background-image: url("/assets/images/ib_MissionBG.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  color: white;
  /* font-size:1.5vw; */
}

section.mission_panel h1 {
  /* font-size: 3.5em; */
  margin:0.5em auto;
  color:lightgray;
}
.mission_panel p {
  font-size: 1.5em;
  line-height: 1.25;
}
/* fade-in effect on page scroll */
.mission_panel * {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}
.mission_panel.show_content * {
  opacity: 1;
  transform: translate(0, 0);
}

.md-12 { font-size:12px; }
.md-24 { font-size:24px; }
.md-36 { font-size:36px; }
.md-48 { font-size:48px; }
.md-64 { font-size:64px; }

/* -- ADVANTAGE PANEL -- */
section.features_panel,
section.advantage_panel {
  background-color: rgb(239,239,239);
  padding:2.5em 5% 1em;
  /* overflow:hidden;
  position: relative; */
  /* font-size:1.5vw; */
  /* border-top: 1px solid gray; */
}

section.features_panel h1 {
  margin:0em auto 0.5em;
}

.thirds_grid {
  --ib-red-dim:#bc202540;
  --ib-blue-dim:#06305f40;
}

.key-tile {
  background-color: rgba(188, 32, 37, 0.251);
  background-color: var(--ib-red-dim);
  margin-left:30px;
  padding:1em 1em 1em 0em;
  transition: 0.5s;
  position: relative;
}
.key-tile:nth-child(2n) {
  background-color:rgba(6, 48, 95, 0.251);
  background-color:var(--ib-blue-dim);
}
.key-tile:hover {
  background-color: rgba(6, 48, 95, 0.251);
  background-color: var(--ib-blue-dim);
}
.key-tile:nth-child(2n):hover {
  background-color:rgba(188, 32, 37, 0.251);
  background-color:var(--ib-red-dim);
}

.key-tile i {
  background-color: #bb2025;
  background-color: var(--ib-red);
  color:white;
  width:2em;
  height:2em;
  line-height: 2;
  transition: 0.5s;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left:-1em;
  top:1em;
}
.key-tile:hover i {
  background-color:#06305f;
  background-color:var(--ib-blue);
}
.key-tile:nth-child(2n) i {
  background-color: #06305f;
  background-color: var(--ib-blue);
}
.key-tile:nth-child(2n):hover i {
  background-color: #bb2025;
  background-color: var(--ib-red);
}
.key-text {
  margin-left:2.5em;
}
.header-bar {
  position:relative;
}
.header-bar:after {
  content:'';
  position:absolute;
  left:0px;
  top:2em;
  width:50px;
  height:2px;
  background-color:#bb2025;
  background-color:var(--ib-red);
}
.key-text h2 {
  font-size:1em;
}


.blue_tab,
.tan_tab {
  position: relative;
  overflow: hidden;
}
.blue_tab::before,
.blue_tab::after,
.tan_tab::before,
.tan_tab::after
/* .strategy_details::before,
.strategy_details::after,
.advantage_panel::before,
.advantage_panel::after */ {
  content:'';
  position: absolute;
  left:50%;
  top:0px;
}
.blue_tab::before,
.tan_tab::before
/* .strategy_details::before,
.advantage_panel::before */ {
  /* half-circle */
  transform: translate(-50%,-50%);
  width:4em;
  height:4em;
  border-radius:50%;
  background-color:var(--advantage-tab-color);
  display:none;
}
.blue_tab::after,
.tan_tab::after
/* .strategy_details::after,
.advantage_panel::after */ {
  /* down-pointing triangle */
  width:1.8em;
  height:1.8em;
  background-color:white;
  transform:rotate(45deg) translate(-70%,0%);
}
.tan_tab::before
/* .strategy_details::before */ {
  background-color:var(--strategy-tab-color);
}

.advantage_panel h1 {
  font-size:2em;
  font-weight: normal;
  margin:auto;
  color:black;
}
.not .advantage_panel h2 {
  margin:0.25em auto;
}

.thirds_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 1fr;
  /* row-gap: normal; */
  /* column-gap: normal; */
  gap:1em;
}

section.company_panel .thirds_grid {
  display:flex;
  justify-content: space-between;
  display:grid;
  grid-template-rows:none;
  /* gap:1em; */
}
section.company_panel .thirds_grid > div {
  border:1px solid lightgray;
  border-radius: 0px 30px;
  padding:1em;
  text-align: start;
  /* box-shadow: 2px 2px 5px gray; */
}
section.company_panel .thirds_grid h3 {
  margin-top:0px;
}

.not .thirds_grid > div {
  text-align: center;
  padding:1.25em 2em;
}
.thirds_grid h3 {
  margin:0.5em 0px;
}
.thirds_grid p {
  font-size:0.8em;
  margin:0.5em auto;
}
.thirds_grid div img {
  display: block;
  height: auto;
  width: 40%;
  margin: auto;
}
.thirds_grid a:link,
.thirds_grid a:visited,
.thirds_grid a:hover,
.thirds_grid a:active {
  color:var(--brand-green);
  text-decoration: none;
}

.advantage_panel img {
  opacity:0;
  transition:opacity 0.5s ease;
}
.advantage_panel.show_content img {
  opacity:1;
}

.notbold {
  font-weight: normal;
}

/* -- SLIDER PANEL -- */
section.slider_panel {
  background-color: lightgray;
  min-height: 10em;
  padding:2em 5%;
}
.slider_wrapper, .slider_wrapper * {
  position:relative;
}
.slider_wrapper, .slider_viewport {
  height:7.5em;
}
.slider_viewport {
  width:100%;
  overflow:hidden;
}
.slide.current {
  z-index:4;
  opacity:1;
}
.slide.prev {
  z-index:5;
  margin-left:-100%;
  /* opacity:1; */
  background-color:purple;
}
.slide.next {
  z-index:5;
  margin-right:-100%;
  /* opacity:1; */
  background-color:pink;
}
.slide.current {
  margin-left:0%;
  margin-right:0%;
}
.slide.animate {
  transition:margin-left 1s ease, margin-right 1s ease;
  /* margin-left:0%;
  margin-right:0%; */
  opacity:1;
}
/* .slide1, .slide2, .slide3, */
.slide {
  width:100%;
  line-height:3;
  position: absolute;
  left:0px;
  top:0px;
  background-color:lightgray;
  text-align:center;
  font-size:2.5em;
  opacity:0;
  /* transition:margin-left 1s ease, margin-right 1s ease; */
}
.slider_wrapper .controls {
  z-index:10;
  font-size:2.5em;
  height:3em;
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
}
.controls .left_arrow {
  left:0px;
}
.controls .right_arrow {
  right:0px;
}
.controls .left_arrow,
.controls .right_arrow {
  position: absolute;
  top:50%;
  transform: translate(0,-50%);
  padding:1em 0.5em;
  cursor:pointer;
  width:2em;
  color:darkgray;
}
.controls .left_arrow:hover,
.controls .right_arrow:hover {
  color:black;
}

/* -- DNA PANEL -- */
section.dna_panel {
  background-color: var(--brand-green);
  background-image: url("/assets/images/ib_hmDNAImage.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 40%;
  padding:2.5em 5%;
  color:white;
}

.dna_panel div:first-child {
  margin-left: auto;
  width:60%;
}

.dna_panel h1 {
  font-size:2em;
  font-weight: normal;
  margin:auto;
}

.dna_panel p {
  line-height: 1.25;
  font-size:1.25em;
}
.yellow_header {
  color:var(--brand-yellow);
}


/* -- INCENTIVES PAGE -- */
section.incentives_sec {
  position: relative;
  padding:2.5em 5%;
}

.incentives_sec h1 {
  font-size:2em;
  font-weight: normal;
  margin:auto;
  color:white;
}

.incentives_sec p {
  color:white;
  font-size:1.25em;
  line-height: 1.25;
}

/* -- ABOUT US PAGE -- */
section.about_sec {
  position: relative;
  padding:2.5em 5%;
}

.about_sec h1 {
  font-size:2em;
  font-weight: normal;
  margin:auto;
  color:white;
}

.about_sec p {
  color:white;
  font-size:1.25em;
  line-height: 1.25;
}

/* -- CONSUMER STRATEGY PAGE -- */

section.strategy_sec {
  background-image: url('/assets/images/ib_Adv_HeadPanelBG.jpg');
  background-size:cover;
  background-repeat: no-repeat;
  /* min-height:35vw; */
  color:black;
  padding:1px 1.5em 0em;
  height:20.85em;
  position: relative;
}

.strategy_sec h1 {
  font-size:2.12em;
  font-weight: normal;
  margin:1em 0px;
  line-height: 1.25;
}

.strategy_sec h1.old {
  position: absolute;
  bottom:0px;
}

.strategy_sec h1 + h1 {
  margin-top:2em;
  /* font-size:2em; */
}
span.green_letters2 {
  color:var(--brand-green);
}

/* -- DETAILS PANEL -- */
section.strategy_details {
  background-color:white;
  color:black;
  padding:3.5em 5% 2em;
  /* overflow:hidden;
  position: relative; */
}

.old .strategy_details::before,
.old .strategy_details::after {
  content:'';
  position: absolute;
  left:50%;
  top:0px;
}
.old .strategy_details::before {
  transform: translate(-50%,0%);
  width:4em;
  height:4em;
  border-radius:50%;
  /* background-color:rgba(73,42,42,0.5); */
  background-color:var(--strategy-tab-color-translucent);
  top:-3em;
}
.old .strategy_details::after {
  width:0em;
  height:0em;
  transform:translate(-50%,0%);
  border:0.5em solid transparent;
  border-top-color: white;
}

.strategy_details h1 {
  font-size:2em;
  font-weight: normal;
  margin:auto;
}
.strategy_details p {
  font-size:1.5em;
  line-height:1.25;
}

.strategy_grid {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  column-gap:4em;
  justify-content:space-between;
}

.strategy_grid .icon_header_body {
  display:grid;
  grid-template-areas: "icon headline" "body body";
  grid-template-columns: 25% auto;
  grid-template-rows:5em auto;
  row-gap:1em;
}

.icon_header_body img {
  grid-area:icon;
  display:block;
  height:auto;
  width:3.5em;
}
.icon_header_body img.old {
  margin:0px auto auto 0px;
}
.icon_header_body h3 {
  grid-area:headline;
  margin-top:auto;
  font-size:1.25em;
  font-weight: normal;
}
.icon_header_body > div {
  grid-area:body;
}
.icon_header_body ul {
	padding-left: 1em;
}

.tech .icon_header_body img {
  margin:auto auto auto 0px;
}
.old .award .icon_header_body img {
  margin-left:0px;
}
.old .marketing .icon_header_body img {
  margin-left:0px;
}
.infrastructure .icon_header_body img {
  /* margin-left:0px; */
  /* margin-top:0px; */
  width:3.5em;
}
.cust_strategy .icon_header_body img {
  width:2.75em;
  /* margin-left:0px; */
  /* margin-top:0px; */
}
.analytics .icon_header_body img {
  /* margin-left:0px; */
  margin-top:0.5em;
}

/* -- REQUEST DEMO PANEL -- */
section.request_demo_panel {
  display:flow-root; /* prevent header margin from escaping container */
  padding:0 5% 2em;
  background-color:white;
  color:black;
  background-image:url('/assets/images/request_demo_bg_1920px.jpg');
  background-size: cover; /* 100% auto; */
  background-position: top center;
  background-repeat: no-repeat;
}
.ripple-icon {
  background-color: #bb2025;
  background-color: var(--ib-red);
  width:80px;
  height:80px;
  border:2px solid orange;
  border-radius: 50%;
  margin:2em auto 0em;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation:ripple-red 1s linear infinite;
  animation:ripple-red 1s linear infinite;
}
.ripple-icon {
  width:var(--wrapper-size);
  height:var(--wrapper-size);
}
.ripple-icon i {
  font-size:48px;
  color:white;
}

.request_demo_image {
  /* background-color:#DDD;
  height:100%; */
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.request_demo_image img {
  width:auto;
  height:100%;
  background-color: gray; /* placeholder color */
  width:100%; /* so placeholder color appears */
}
.request_demo_form {
  display: flex;
  align-items: center;
  margin-top:2em;
  padding:1em;
  border:1px solid lightgray;
  background-color:white;
  border-radius:10px;
  box-shadow: 0px 0px 5px gray;
}
.request_demo_form form {
  flex-grow:1;
}
.request_demo_panel input,
.request_demo_panel select {
  font-size:1em;
  margin:0em auto 1em;
  display: block;
  width:100%;
  /* max-width: 400px; */
  padding:0.5em;
  border:1px solid #e6e6e6;
  border-radius: 0.5em;
}
.request_demo_panel input:focus,
.request_demo_panel select:focus {
  border-color:#ff0076;
  box-shadow: 0 0 0 0.2rem rgba(241,42,2,0.25);
  outline:0px;
}
.request_demo_panel label {
  display:block;
  white-space: nowrap;
}
.demo_form_verbiage {
  text-align: center;
}
.demo_phone_row,
.demo_name_row {
  display:grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 0.5em;
  /* max-width: 400px; */
  /* margin-top:-1em; */
}
.not .demo_name_row {
  margin-bottom:-1em;
}
.demo_phone_row {
  grid-template-columns: 2fr 1fr 1fr;
}
/* only need this for inline recaptcha box within form */
.not .g-recaptcha > div {
  margin:0 auto 0.5em;
}
.g-recaptcha > div {
  display:none; /* hide bottom corner 'bug' icon */
}
.two-col {
  display:grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 1em; */
}
.two-col iframe {
  width:100%;
}
.submit_result {
  display:none;
}
.submit_result.show {
  display:block;
  margin:1em auto;
  text-align:center;
  color:black;
  border:2px solid red;
  background-color:pink;
  max-width: 400px;
  padding:0.25em;
}
.submission_successful {
  margin:1em auto;
  text-align: center;
  min-width: 300px; /* keep form box from collapsing */
  max-width: 400px;
  padding:1em;
  border:2px solid green;
  background-color:lightgreen;
  color:black;
}

/* -- DEMO REQUEST BAR -- */
.demo_request_bar  {
  background-color:#bb2025;
  background-color:var(--ib-red);
  color:white;
  font-size:2em;
  line-height: 1.5;
}
.demo_request_bar a {
  display:block;
  padding:0.25em;
  width:100%;
  text-align: center;
}
.demo_request_bar a:link,
.demo_request_bar a:visited,
.demo_request_bar a:hover,
.demo_request_bar a:active {
  color:white;
  text-decoration: none;
}

/*
 * ---- RESPONSIVE (MOBILE RENDER) RULES ----
 */

/* speculative media queries to help resolve specific render issues */
@media (max-width: 900px) {
  body {
	 font-size: 1rem;
	}
  /* header,
  .header_placeholder {
    height: 95px;
  }
  section {
    margin-top: -95px;
  } */
  
  .not .site_logo img {
    height: 80px;
  }
  #debug_div {
    top: 100px;
  }
  .not .nav_wrapper {
    justify-self: center;
  }
  .not nav {
    max-width: 280px;
  }
  .not nav .nav_btn {
    height: 60px;
  }
  nav .nav_btn {
    margin-left:25px;
  }
  .nav_btn .sub_nav {
    top: 60px;
  }
  .nav_btn.about_nav {
    padding-top: 1em;
  }
  .not .demo_btn_nav {
    max-width: 115px;
  }
  .homepage_sec .section_content {
    margin-top:10%; /* h1:first-of-type margin-top moved here (the parent container) */
  }
  
  .homepage_sec h1:first-of-type {
    margin-top:0px; /* 48px; */
  }

  #arrow-wrapper {
    --wrapper-size:80px;
    --arrow-bottom:32px;
    --arrow-right:22px;
    --pulse-arrow-size:30px;
  }

  .arrows-tree {
    display: none;
  }
  .ripple-icon {
    display:none;
  }
  .two-col {
    grid-template-columns: none;
    /* grid-template-rows: 1fr 1fr; */
  }
  .request_demo_heading h1 {
    margin:10px auto 0px;
    /* make this element appear within the demo form area */
    position: relative;
    top:1.75em;
    z-index: 10;
  }
  .request_demo_form {
    max-width: 400px;
    margin:0px auto;
    /* use padding to make room for h1 element to share form space */
    padding-top:4.5em;
  }
  section.company_panel .thirds_grid {
    grid-template-columns: none;
  }
  section.features_panel .thirds_grid {
    grid-template-columns: none;
  }
  footer {
    grid-template-columns: none;
  }
  .footer_logo {
    max-width: 175px;
    margin:0px auto;
  }

}

/* speculative media query to shift "left_col" content to center of page and cease squeezing */
@media (max-width: 750px) {
  .section_content {
    grid-template-columns: auto;
  }
  /* .left_col,
  .right_col {
    max-width: 360px;
    margin: 0px auto 10px;
  } */
  .homepage_sec h1 {
    /* text-align: center; */
    font-size: 1.5em;
  }
  #arrow-wrapper {
    --wrapper-size:60px;
    --arrow-bottom:24px;
    --arrow-right:15px;
    --pulse-arrow-size:26px;
  }
}

@media (max-width: 650px) {
  section.homepage_sec {
    background-position-y:center;
    /* top margin should match header(placeholder) height */
    /* margin-top:-85px; /* fixes vertical position of background, but breaks observer assignment of blackout because offset changed */
    min-height:max(45vw,250px);
  }
  /* header,
  .header_placeholder {
    height: 85px;
    max-height: 85px;
  } */
  header {
    align-content: center;
    /* grid-template-columns: repeat(3, auto); */
    grid-template-areas: "logo nav btn";
  }
  /* .site_logo img,
  .black_out .site_logo img {
    height: 60px;
    margin-top:0px;
  } */
  .not nav,
  .not .nav_burger {
    display: block;
  }
  nav.outline_orange {
    outline: 1px solid orange;
  }
  nav {
    position: absolute;
    top: 59px;
    right: -25px;
    width: 12em;
  }
  .nav_wrapper { /* hamburger menu */
    position: relative;
    justify-self: right;
    grid-area: nav;
  }
  .demo_btn_nav {
    grid-area: btn;
    /* justify-self: center; */
  }
  .nav_wrapper.responsive nav,
  .nav_wrapper.responsive nav .nav_btn,
  .nav_wrapper.responsive nav .nav_btn .sub_nav,
  .nav_wrapper.responsive .nav_btn.about_nav {
    display: block;
  }
  nav .nav_btn,
  .nav_btn.about_nav {
    display: none;
    border-radius: 0px;
    /* height: 2em; */
    padding: 10px;
    border-top: 1px solid lightgray;
    text-align: center;
    margin-left:0px;
  }
  .nav_btn,
  .nav_btn .sub_nav {
    background-color: white;
    color: black;
  }
  .nav_btn .sub_nav {
    border-radius: 0px;
    padding: 9px 0px 5px;
    width: inherit;
    font-size: inherit;
    position: relative;
    height: 2em;
    top: inherit;
    left: inherit;
    line-height: inherit;
  }
  .nav_btn.products_services {
    height: 4em;
  }
  .products_services .sub_nav {
    min-width: 12em;
    left: -1em;
  }

  nav .nav_btn:hover,
  nav .nav_btn .sub_nav:hover {
    background-color: lightgray;
  }
  .homepage_sec .section_content {
    margin-top:50px;
  }
  .homepage_sec h1 {
    font-size:1.25em;
  }
    
}

@media (max-width: 470px) {
  .not .demo_btn_nav {
    display: none;
  }
}
