@charset "UTF-8";

/* carousel controls (disabled temporarly) */

.ibm-carousel-controls {
	display: none;
}

/* custom event-accordion & eventdetail css */

.ibm-agenda-body {
	padding: 0rem 0 0rem 12.6875rem;
}

.ibm-agenda-body_new {
	padding: 0rem 0 0rem;
}

.ibm-agenda-closing_new {
	padding: 0rem 0 0rem;
}

@media (max-width: 672px) {
	.ibm-agenda-body {
		padding-left: 00rem;
		padding-right: 00rem;
	}
}

.ibm-accordion.ibm-type.ibm-black > h2:after {
	color: black;
}

.ibm-accordion-body.ibm-type.ibm-black > div > p.ibm-black {
	color: black;
}

.ibm-accordion-wrapper,
.eventschedule-wrapper {
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 2rem;
	margin-left: -16px;
	margin-right: -16px;
}

.ibm-accordion,
.ibm-eventschedule {
	background-color: transparent;
	color: #000;
	cursor: pointer;
	text-align: left;
	font-size: 1rem;
	line-height: 1.625rem;
	font-weight: 400;
	transition: 0.4s;
	border-top: 1px solid #e0e0e0;
	padding: 0.6875rem 0.6875rem 0.6875rem 1rem;
}

.ibm-subeventschedule {
	font-size: 0.9rem;
	line-height: 1.625rem;
	font-weight: 400;
	transition: 0.4s;
	padding: 0rem 0rem 0rem 1rem;
}

@media (max-width: 672px) {
	.ibm-accordion,
	.ibm-eventschedule {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
}

.ibm-eventschedule {
	cursor: default;
}

.ibm-accordion:hover,
.ibm-eventschedule:hover {
	background-color: #f4f4f4;
}

.ibm-accordion h2:after {
	font-family: "icons-ibm-v12";
	font-size: 1.325rem;
	content: "\f19c";
	color: #ffffff;
	font-weight: bold;
	left: inherit;
	right: 0;
	top: 0;
	position: absolute;
}

.ibm-accordion h2 {
	border-top: 0;
	padding: 0;
	width: 100%;
	position: relative;
	display: block;
}

@media (max-width: 672px) {
	.ibm-accordion:after {
		top: -3.2rem;
	}
}

.active h2:after {
	content: "\f19f";
}

.panel {
	padding: 0 1rem;
	background-color: transparent;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

@media (max-width: 672px) {
	.panel {
		padding: 0 0.5rem;
	}
}

.ibm-accordion-body {
	padding: 1.25rem 0 2.25rem 17rem;
	display: block;
	font-size: inherit;
	font-family: inherit;
}

.ibm-accordion-body-dlc {
	padding: 1.25rem 0 2.25rem 10.325rem;
	display: block;
	font-size: inherit;
	font-family: inherit;
}

@media (max-width: 1056px) {
	.ibm-accordion-body {
		padding: 1.5rem 0 2rem 0;
	}

	.ibm-accordion-body-dlc {
		padding: 1.5rem 0 2rem 0;
	}
}

.ibm-accordion-body p {
	color: #ffffff;
}

.ibm-accordion-body-dlc p {
	color: #ffffff;
}

.eventdate,
.eventtime,
.eventname {
	display: inline-block;
	padding-right: 2rem;
}

.eventdate {
	min-width: 8rem;
}
.eventtime {
	min-width: 4rem;
}

.ibm-eventschedule .eventtime {
	display: inline-block;
	min-width: 10.5rem;
}

@media (max-width: 672px) {
	.eventname {
		display: block;
		padding-right: 2rem;
	}
	.eventtime {
		padding: 0 0 2px;
		font-weight: 600;
		display: block;
	}
}

/* END: custom event-accordion & eventdetail css */

.bg-img-sticky {
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.js .fade-in {
	animation: fade 0.5s cubic-bezier(0.2, 0, 0.38, 0.9) backwards;
}

.js .slide-in {
	animation: slide 0.5s cubic-bezier(0.2, 0, 0.38, 0.9) backwards;
}

.js [data-trigger="slide-in delayed"],
.js [data-trigger="fade-in"],
.js [data-trigger="slide-in"] {
	opacity: 0;
}

.js [data-trigger="slide-in delayed"].fade-in,
.js [data-trigger="slide-in delayed"].slide-in,
.js [data-trigger="fade-in"].fade-in,
.js [data-trigger="fade-in"].slide-in,
.js [data-trigger="slide-in"].fade-in,
.js [data-trigger="slide-in"].slide-in {
	opacity: 1;
}

.js .fade-in,
.js .slide-in {
	animation-delay: 0.3s;
}

.js .fade-in.no-delay,
.js .slide-in.no-delay {
	animation-delay: 0;
}

.js .fade-in.delayed,
.js .slide-in.delayed {
	animation-delay: 0.5s;
}

@keyframes reveal {
	0% {
		transform: scaleX(0);
	}
	100% {
		transform: scaleX(1);
	}
}

@keyframes shrink {
	0% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(0);
	}
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes slide {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	60% {
		opacity: 1;
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes slide-reveal {
	0% {
		opacity: 0;
		transform: scaleX(0) translateY(40px);
	}
	60% {
		opacity: 1;
	}
	100% {
		transform: scaleX(1) translateY(0);
	}
}

.js .delayed-reveal {
	visibility: visible;
	position: relative;
	width: 100%;
	overflow: hidden;
	transform-origin: left;
	animation: reveal 0.5s cubic-bezier(0.8, 0, 1, 1) backwards;
}

.js .delayed-reveal.slide-in {
	animation: slide-reveal 0.5s linear backwards;
	animation-delay: 0.3s;
}

.js .photo-reveal {
	background-color: #fff;
	position: absolute;
	right: 10px;
	width: 115%;
	min-width: 810px !important;
	transform-origin: right;
	height: 100%;
	min-width: 0;
	z-index: 50;
	visibility: visible;
}

.js .photo-reveal.triggered {
	animation: shrink 0.5s cubic-bezier(0.8, 0, 1, 1) forwards;
}

/* ––– FILE TO BE UPDATED ON DEMAND ––– */
/* ––– BLUES ––– */
/* ––– GRAYS ––– */
/* ––– VENUES BULLETS ––– */
span[class*="bullets-venues"] {
	font-size: 14px;
	font-weight: 600;
	line-height: 24px;
	width: 24px;
	display: inline-block;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	margin-right: 9px;
}

.bullets-venues-red {
	background-color: #ef4e56;
}

.bullets-venues-green {
	background-color: #42b661;
}

.bullets-venues-blue {
	background-color: #3d91cf;
}

.bullets-venues-cyan {
	background-color: #01a49f;
}

/* ––– CLASSES FOR TEXT ––– */
.ibm-textcolor-blue-light {
	color: #4a90e2;
}

.ibm-textcolor-blue-sky {
	color: #1d4ecc;
}

.ibm-textcolor-blue-alt {
	color: #2a77fb;
}

.ibm-textcolor-light-gray {
	color: #eaeaea;
}

.ibm-textcolor-mid-gray {
	color: #747474;
}

.ibm-textcolor-dark-gray {
	color: #272727;
}

.ibm-border-blue-light {
	border-style: solid;
	border-color: #4a90e2;
}

.ibm-border-blue-snow {
	border-style: solid;
	border-color: #69a6ff;
}

.ibm-border-blue-sky {
	border-style: solid;
	border-color: #1d4ecc;
}

.ibm-border-dark-gray {
	border-style: solid;
	border-color: #272727;
}

.ibm-background-blue-light {
	background-color: #4a90e2;
}

.ibm-background-blue-snow {
	background-color: #69a6ff;
}

.ibm-background-blue-sky {
	background-color: #1d4ecc;
}

.ibm-background-dark-gray {
	background-color: #272727;
}

.ibm-btn-blue-light {
	color: #fff;
}

.ibm-btn-blue-light.ibm-btn-pri {
	background-color: #4a90e2;
	border-color: #4a90e2;
}

.ibm-btn-blue-light.ibm-btn-pri:hover,
.ibm-btn-blue-light.ibm-btn-pri:focus {
	background: #1d4ecc;
	border-color: #1d4ecc;
	color: #fff;
}

.ibm-btn-blue-light.ibm-btn-sec {
	color: #4a90e2;
	border-color: #4a90e2;
}

.ibm-btn-blue-light.ibm-btn-sec:hover,
.ibm-btn-blue-light.ibm-btn-sec:focus {
	background: #4a90e2;
	color: #fff;
}

.ibm-btn-blue-sky {
	color: #fff !important;
}

.ibm-btn-blue-sky.ibm-btn-pri {
	background-color: #1d4ecc;
	border-color: #1d4ecc;
}

.ibm-btn-blue-sky.ibm-btn-pri:hover,
.ibm-btn-blue-sky.ibm-btn-pri:focus {
	background: #000;
	border-color: #000;
	color: #fff;
}

.ibm-btn-blue-sky.ibm-btn-sec {
	color: #1d4ecc;
	border-color: #1d4ecc;
}

.ibm-btn-blue-sky.ibm-btn-sec:hover,
.ibm-btn-blue-sky.ibm-btn-sec:focus {
	background: #1d4ecc;
	color: #fff;
}

.ibm-btn-blue-sky-alt.ibm-btn-sec {
	color: #1d4ecc;
	border-color: #1d4ecc;
}

.ibm-btn-blue-sky-alt.ibm-btn-sec:hover,
.ibm-btn-blue-sky-alt.ibm-btn-sec:focus {
	background: #1d4ecc;
	color: #fff;
}

.ibm-btn-white.ibm-btn-sec {
	color: white;
	border-color: white;
}

.ibm-btn-white.ibm-btn-sec:hover,
.ibm-btn-white.ibm-btn-sec:focus {
	background: white;
	color: black;
}

.ibm-highlight-blue-light:hover {
	transition: all 0.2s linear;
	background-color: #4a90e2;
}

.ibm-highlight-blue-snow:hover {
	transition: all 0.2s linear;
	background-color: #69a6ff;
}

.ibm-highlight-blue-sky:hover {
	transition: all 0.2s linear;
	background-color: #1d4ecc;
}

.ibm-highlight-border-blue-sky:hover {
	transition: all 0.2s linear;
	border-color: #1d4ecc !important;
}

.ibm-light-gray {
	border-color: #eaeaea !important;
}

.ibm-#000-110 {
	color: #000;
}

.ibm-blue-10 {
	color: #edf4ff;
}

.ibm-blue-20 {
	color: #c9deff;
}

.ibm-blue-30 {
	color: #97c1ff;
}

.ibm-blue-40 {
	color: #6ea6ff;
}

.ibm-blue-50 {
	color: #418cff;
}

.ibm-blue-60 {
	color: #0f6dff;
}

.ibm-blue-70 {
	color: #054ada;
}

.ibm-blue-80 {
	color: #0530ad;
}

.ibm-blue-90 {
	color: #051b75;
}

.ibm-blue-100 {
	color: #051243;
}

.ibm-gray-10 {
	color: #f3f3f3;
}

.ibm-gray-20 {
	color: #d8d8d8;
}

.ibm-gray-30 {
	color: #bebebe;
}

.ibm-gray-40 {
	color: #a3a3a3;
}

.ibm-gray-50 {
	color: #8a8a8a;
}

.ibm-gray-60 {
	color: #757575;
}

.ibm-gray-70 {
	color: #565656;
}

.ibm-gray-80 {
	color: #3d3d3d;
}

.ibm-gray-90 {
	color: #252525;
}

.ibm-gray-100 {
	color: #171717;
}

.ibm-#fff-0 {
	color: #fff;
}

.ibm-white {
	color: #fff;
}

.ibm-black {
	color: #000;
}

.ibm-bg-#000-110 {
	background-color: #000;
}

.ibm-bg-blue-10 {
	background-color: #edf4ff;
}

.ibm-bg-blue-20 {
	background-color: #c9deff;
}

.ibm-bg-blue-30 {
	background-color: #97c1ff;
}

.ibm-bg-blue-40 {
	background-color: #6ea6ff;
}

.ibm-bg-blue-50 {
	background-color: #418cff;
}

.ibm-bg-blue-60 {
	background-color: #0f6dff;
}

.ibm-bg-blue-70 {
	background-color: #054ada;
}

.ibm-bg-blue-80 {
	background-color: #0530ad;
}

.ibm-bg-blue-90 {
	background-color: #051b75;
}

.ibm-bg-blue-100 {
	background-color: #051243;
}

.ibm-bg-gray-10 {
	background-color: #f3f3f3;
}

.ibm-bg-gray-20 {
	background-color: #d8d8d8;
}

.ibm-bg-gray-30 {
	background-color: #bebebe;
}

.ibm-bg-gray-40 {
	background-color: #a3a3a3;
}

.ibm-bg-gray-50 {
	background-color: #8a8a8a;
}

.ibm-bg-gray-60 {
	background-color: #757575;
}

.ibm-bg-gray-70 {
	background-color: #565656;
}

.ibm-bg-gray-80 {
	background-color: #3d3d3d;
}

.ibm-bg-gray-90 {
	background-color: #252525;
}

.ibm-bg-gray-100 {
	background-color: #171717;
}

.ibm-bg-#fff-0 {
	background-color: #fff;
}

.ibm-bg-white {
	background-color: #fff;
}

.ibm-bg-black {
	background-color: #000;
}

.ibm-btn-pri,
.ibm-btn-sec {
	padding: 11px 30px;
}

@media (max-width: 768px) {
	.ibm-btn-pri,
	.ibm-btn-sec {
		width: 100% !important;
	}
}

.w100 {
	width: 100% !important;
}

.w80 {
	width: 80%;
}

.ibm-btn-pri.ibm-btn-black-core,
.ibm-btn-sec.ibm-btn-black-core {
	background: #000;
	border-color: #000;
}

.duo-wider-button {
	padding: 1.25rem;
	width: 100%;
	cursor: pointer;
}

.duo-wider-button.ibm-btn-blue-sky {
	background: #1d4ecc;
	color: #fff;
}

.duo-wider-button.align-bottom {
	align-self: flex-end;
}

.duo-wider-button:after {
	content: "\f1b3";
	display: inline-block;
	font-family: "icons-ibm-v12";
	font-size: 1.5rem;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	right: auto;
	margin-top: -2px;
	margin-left: 8px;
	position: absolute;
	text-decoration: none;
	speak: none;
	text-decoration: none;
	text-rendering: optimizeLegibility;
	text-transform: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

.ibm-type-a {
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
	max-width: 26.5rem;
	letter-spacing: 0.02rem;
	margin-bottom: 1rem;
}

.ibm-type-b {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
	max-width: 30rem;
	letter-spacing: 0.01rem;
	margin-bottom: 1.25rem;
}

.ibm-type-c {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.375rem;
	max-width: 35rem;
	margin-bottom: 1.25rem;
}

.ibm-type-d {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.375rem;
	max-width: 35rem;
	margin-bottom: 1rem;
}

.ibm-type-e {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.25rem;
	max-width: 37.5rem;
	margin-bottom: 1.25rem;
}

.ibm-type-f {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.625rem;
	max-width: 43rem;
	margin-bottom: 1.25rem;
}

.ibm-type-g {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.875rem;
	max-width: 34rem;
	margin-bottom: 2rem;
}

.ibm-type-h {
	font-size: 1.75rem;
	font-weight: 300;
	line-height: 2.25rem;
	max-width: 39.5rem;
	margin-bottom: 2rem;
}

.ibm-type-i {
	font-size: 1.75rem;
	font-weight: 300;
	line-height: 2.25rem;
	max-width: 39.5rem;
	margin-bottom: 2rem;
}

.ibm-type-j {
	font-size: 2.625rem;
	font-weight: 300;
	line-height: 3.125rem;
	max-width: 59rem;
	margin-bottom: 2rem;
}

.ibm-type-k {
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 3.125rem;
	max-width: 59rem;
	margin-bottom: 2rem;
}

.ibm,
[class*="ibm-type"] {
	font-family: ibm-plex-sans, "Helvetica Neue", Arial, sans-serif;
}

[class*="ibm-type"] {
	margin-top: 0;
}

.ibm-type-italic {
	font-style: italic;
}

.ibm-type-light {
	font-weight: 300;
}

blockquote {
	max-width: none;
	quotes: "“" "”" "‘" "’";
}

blockquote::before {
	content: open-quote;
	font-size: 1.5em;
	line-height: 0.1em;
	margin-right: 0.1em;
	vertical-align: -0.15em;
}

blockquote::after {
	content: close-quote;
	font-size: 1.5em;
	line-height: 0.1em;
	margin-left: 0.1em;
	vertical-align: -0.15em;
}

.ibm-type-mono,
.ibm-type-mono *,
code {
	font-family: "IBM Plex Mono", Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier,
		monospace;
}

.ibm-type-regular {
	font-weight: 400;
}

.ibm-type-semibold,
strong {
	font-weight: 600;
}

.ibm-type-bold {
	font-weight: 700;
}

.ibm-type-serif,
.ibm-type-serif * {
	font-family: "IBM Plex Serif", Georgia, Times, serif;
}

body {
	font-size: 16px;
	margin: 0;
}

.ibm-container {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: 99rem;
	width: 100vw;
}

.ibm-container--left {
	margin-left: 0;
}

.ibm-container--right {
	margin-right: 0;
}

.ibm-grid {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	position: relative;
}

.ibm-grid > * {
	box-sizing: border-box;
}

.ibm-grid > *:last-child,
.ibm-grid > *:last-child > :last-child,
.ibm-grid > *:last-child > :last-child > :last-child {
	margin-bottom: 0;
}

[class*="ibm-padding"] {
	box-sizing: border-box;
}

.ibm-grid > * {
	width: 100%;
}

.ibm-grid__col--sm--0,
.ibm-grid__col-sm--0--only {
	display: none;
}

.ibm-grid__col--sm--1 {
	min-width: 25vw;
	width: 25vw;
}

.ibm-grid__height-fluid--sm--1 {
	height: 25vw;
}

.ibm-grid__col--sm--2 {
	min-width: 50vw;
	width: 50vw;
}

.ibm-grid__height-fluid--sm--2 {
	height: 50vw;
}

.ibm-grid__col--sm--3 {
	min-width: 75vw;
	width: 75vw;
}

.ibm-grid__height-fluid--sm--3 {
	height: 75vw;
}

.ibm-grid__col--sm--4 {
	min-width: 100vw;
	width: 100vw;
}

.ibm-grid__height-fluid--sm--4 {
	height: 100vw;
}

.ibm-grid__height--sm--0 {
	min-height: 0;
	height: auto;
}

.ibm-grid__height-fixed--sm--1 {
	min-height: 0.5rem;
}

.ibm-grid__height-fixed--sm--2 {
	min-height: 1rem;
}

.ibm-grid__height-fixed--sm--3 {
	min-height: 1.5rem;
}

.ibm-grid__height-fixed--sm--4 {
	min-height: 2rem;
}

.ibm-grid__height-fixed--sm--5 {
	min-height: 2.5rem;
}

.ibm-grid__height-fixed--sm--6 {
	min-height: 3rem;
}

.ibm-grid__height-fixed--sm--7 {
	min-height: 3.5rem;
}

.ibm-grid__height-fixed--sm--8 {
	min-height: 4rem;
}

.ibm-grid__height-fixed--sm--9 {
	min-height: 4.5rem;
}

.ibm-grid__height-fixed--sm--10 {
	min-height: 5rem;
}

.ibm-grid__height-fixed--sm--11 {
	min-height: 5.5rem;
}

.ibm-grid__height-fixed--sm--12 {
	min-height: 6rem;
}

.ibm-grid__height-fixed--sm--13 {
	min-height: 6.5rem;
}

.ibm-grid__height-fixed--sm--14 {
	min-height: 7rem;
}

.ibm-grid__height-fixed--sm--15 {
	min-height: 7.5rem;
}

.ibm-grid__height-fixed--sm--16 {
	min-height: 8rem;
}

.ibm-grid__height-fixed--sm--17 {
	min-height: 8.5rem;
}

.ibm-grid__height-fixed--sm--18 {
	min-height: 9rem;
}

.ibm-grid__height-fixed--sm--19 {
	min-height: 9.5rem;
}

.ibm-grid__height-fixed--sm--20 {
	min-height: 10rem;
}

.ibm-grid__height-fixed--sm--21 {
	min-height: 10.5rem;
}

.ibm-grid__height-fixed--sm--22 {
	min-height: 11rem;
}

.ibm-grid__height-fixed--sm--23 {
	min-height: 11.5rem;
}

.ibm-grid__height-fixed--sm--24 {
	min-height: 12rem;
}

.ibm-grid__height-fixed--sm--25 {
	min-height: 12.5rem;
}

.ibm-grid__height-fixed--sm--26 {
	min-height: 13rem;
}

.ibm-grid__height-fixed--sm--27 {
	min-height: 13.5rem;
}

.ibm-grid__height-fixed--sm--28 {
	min-height: 14rem;
}

.ibm-grid__height-fixed--sm--29 {
	min-height: 14.5rem;
}

.ibm-padding {
	padding: calc(2rem / 2);
}

.ibm-padding--bottom {
	padding-bottom: calc(2rem / 2);
}

.ibm-padding--left {
	padding-left: calc(2rem / 2);
}

.ibm-padding--right {
	padding-right: calc(2rem / 2);
}

.ibm-padding--top {
	padding-top: calc(2rem / 2);
}

.ibm-padding--horizontal {
	padding-left: calc(2rem / 2);
	padding-right: calc(2rem / 2);
}

.ibm-padding--vertical {
	padding-bottom: calc(2rem / 2);
	padding-top: calc(2rem / 2);
}

.height-full {
	height: calc(100vh - ((51 / 16) * 1rem));
}

.height-half {
	min-height: calc((100vh - ((51 / 16) * 1rem)) / 2);
}

.hide-sm {
	display: none;
}

.display-sm {
	display: block;
}

.display-sm[class*="ibm-grid"] {
	display: flex;
}

.hero {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.hero-height {
	min-height: auto;
	position: relative;
}

.hero-mask {
	background: linear-gradient(transparent, #171717);
	bottom: 0;
	height: 6.5rem;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.hero-video {
	min-height: 100vh;
	left: 0;
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: 1;
}

.hero-video img,
.hero-video video {
	width: 100%;
}

.hero-video img {
	animation: fadeIn 0.6s;
	max-width: none;
	height: calc(100vh - 18rem);
	object-fit: cover;
}

.hero-button {
	background-color: rgba(15, 109, 255, 0.5);
}

.hero-button:hover {
	background-color: rgba(8, 85, 229, 0.5);
}

.hero-button:active {
	background-color: rgba(30, 118, 255, 0.5);
}

::-webkit-media-controls-panel {
	display: none !important;
	-webkit-appearance: none;
}

::-webkit-media-controls-play-button {
	display: none !important;
	-webkit-appearance: none;
}

::-webkit-media-controls-start-playback-button {
	display: none !important;
	-webkit-appearance: none;
}

.subscribe-banner-color {
	background-color: #00209C;
}

.subscribe-bluesky-color {
	background-color: #1D4ECC;
}

.overlay-container {
	background-color: rgba(23, 23, 23, 0.75);
	bottom: 0;
	display: none;
	opacity: 0;
	overflow-y: scroll;
	position: fixed;
	top: -2rem;
	transition: opacity 0.25s cubic-bezier(0.2, 0, 0.38, 0.9),
		top 0.25s cubic-bezier(0.2, 0, 0.38, 0.9);
	z-index: 1000;
	-webkit-overflow-scrolling: auto;
}

.overlay-box {
	width: 100vw;
	z-index: 1000;
}

.overlay-header {
	border-bottom: 1px solid #d8d8d8;
	padding-bottom: 0.55rem;
	padding-top: 0.55rem;
}

.overlay-title {
	padding-top: 0.4rem;
}

.overlay-content {
	padding-bottom: 3rem;
}

.overlay-container.show {
	display: block;
}

.overlay-container.open {
	opacity: 1;
	top: 0;
}

.overlay-container.open .overlay-header {
	top: 0;
}

.chair-letter-portrait img {
	border-radius: 100%;
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}

.chair-letter-portrait p {
	display: inline-block;
	vertical-align: middle;
}

.brand-block-img {
	max-width: 10rem;
}

.waag-header {
	background-color: #000;
	background-repeat: no-repeat;
	background-position: top center;
}

.ibm-link,
a {
	color: #0f6dff;
	transition: color 0.1s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.ibm-link:not(.underline-hover):hover,
a:not(.underline-hover):hover {
	color: #054ada;
	cursor: pointer;
}

.ibm-link.underline-hover,
a.underline-hover:hover {
	color: inherit;
	text-decoration: underline;
}

.ibm-link:not(.underline-hover):focus,
a:not(.underline-hover):focus {
	color: #054ada;
}

.ibm-link:not(.underline-hover):active,
a:not(.underline-hover):active {
	color: #418cff;
}

.ibm-link .duo-icon,
a .duo-icon {
	fill: #0f6dff;
}

.ibm-link .duo-icon:hover,
a .duo-icon:hover {
	fill: #054ada;
}

.ibm-link .duo-icon:focus,
a .duo-icon:focus {
	fill: #054ada;
}

.ibm-link .duo-icon:active,
a .duo-icon:active {
	fill: #418cff;
}

.ibm-link.link-unstyled:active,
.ibm-link.link-unstyled:focus,
.ibm-link.link-unstyled:hover,
a.link-unstyled:active,
a.link-unstyled:focus,
a.link-unstyled:hover {
	color: unset;
	text-decoration: none;
}

.ibm-link.link-unstyled .duo-icon,
a.link-unstyled .duo-icon {
	fill: #3d3d3d;
}

.ibm-link.link-unstyled .duo-icon:active,
.ibm-link.link-unstyled .duo-icon:focus,
.ibm-link.link-unstyled .duo-icon:hover,
a.link-unstyled .duo-icon:active,
a.link-unstyled .duo-icon:focus,
a.link-unstyled .duo-icon:hover {
	fill: #171717;
}

.ibm-link.link-unstyled .duo-icon.white,
a.link-unstyled .duo-icon.white {
	fill: #fff;
}

.dark-bg .ibm-link,
.dark-bg a {
	color: #418cff;
}

.dark-bg .ibm-link:hover,
.dark-bg a:hover {
	color: #6ea6ff;
	cursor: pointer;
}

.dark-bg .ibm-link:focus,
.dark-bg a:focus {
	color: #6ea6ff;
}

.dark-bg .ibm-link:active,
.dark-bg a:active {
	color: #0f6dff;
}

.dark-bg .ibm-link .duo-icon,
.dark-bg a .duo-icon {
	fill: #418cff;
}

.dark-bg .ibm-link .duo-icon:hover,
.dark-bg a .duo-icon:hover {
	fill: #6ea6ff;
}

.dark-bg .ibm-link .duo-icon:focus,
.dark-bg a .duo-icon:focus {
	fill: #6ea6ff;
}

.dark-bg .ibm-link .duo-icon:active,
.dark-bg a .duo-icon:active {
	fill: #0f6dff;
}

.sidebar-hero {
	min-height: 40vmin;
	padding-top: 1rem;
}

@unoirt './_image-shadow';
.side-nav-grid {
	display: none;
	position: fixed;
	top: 7rem;
	transform: translateY(-50%);
	width: 100%;
	z-index: 200;
}

.no-js .side-nav-grid {
	display: none;
}

.side-nav {
	opacity: 0.85;
	position: absolute;
	right: 0;
	width: 5rem;
	transition: width 10ms 0.29s;
}

.side-nav.open {
	opacity: 1;
	transition: width 0.01s;
	width: 13rem;
}

.side-nav.open .nav-item {
	box-sizing: border-box;
	margin-left: 0;
	max-height: 4rem;
	padding-bottom: 0.875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.875rem;
	transition: padding 0.18s cubic-bezier(0.2, 0, 0.38, 0.9) 0.11s,
		max-height 0.18s cubic-bezier(0.2, 0, 0.38, 0.9) 0.11s,
		margin-left 0.18s cubic-bezier(0.2, 0, 0.38, 0.9),
		background-color 0.2s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.side-nav.open p {
	opacity: 1;
	transition: opacity 0.18s 0.11s;
}

.nav-item {
	background-color: #0530ad;
	display: block;
	margin-bottom: 2px;
	margin-left: calc(100% - 3rem);
	margin-top: 0;
	min-height: 12px;
	max-height: 0.75rem;
	padding-bottom: 0;
	padding-top: 0;
	position: relative;
	transition: padding 0.18s cubic-bezier(0.2, 0, 0.38, 0.9),
		max-height 0.18s cubic-bezier(0.2, 0, 0.38, 0.9),
		margin-left 0.11s cubic-bezier(0.2, 0, 0.38, 0.9) 0.18s,
		background-color 0.2s cubic-bezier(0.2, 0, 0.38, 0.9);
	width: 100%;
}

.nav-item:hover {
	background-color: #051b75;
}

.nav-item:active {
	background-color: #0f6dff;
}

.nav-item p {
	opacity: 0;
	transition: opacity 0.18s;
}

.nav-item-current {
	background-color: #0f6dff;
}

.nav-item-current:hover {
	background-color: #0f6dff;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.ibm-background-blue-sky .ibm-white:hover,
.ibm-background-blue-sky .ibm-white:focus {
	color: #fff;
}

.ibm-icononly span:hover::before,
.ibm-icononly span:focus::before,
.ibm-icononly a[class*="-link"]:hover::before,
.ibm-icononly a[class*="-link"]:focus::before {
	color: #4a90e2;
}

.think-list li {
	border-bottom: 1px solid #c7c7c7 !important;
}

.think-list li:first-child {
	border-top: 1px solid #c7c7c7 !important;
}

.think-list a {
	box-sizing: border-box;
	max-width: none !important;
}

.think-list a:hover {
	text-decoration: none;
}

* {
	text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: transparent;
}

body,
html {
	max-width: 100%;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#ibm-footer {
	position: relative;
	z-index: 10;
}

.ibm-display-block {
	display: block;
}

.video-wrapper iframe {
	display: block;
}

.ibm-position-relative {
	position: relative;
}

/* FIX TO v18 SO THE SPAN TAG WORKS WITH ICON-AFTER */
.ibm-ind-link span.ibm-icon-after {
	padding-left: 0 !important;
	padding-right: 1.8em;
}

.ibm-ind-link span.ibm-icon-after:before {
	display: none;
}

.ibm-ind-link span.ibm-icon-after::after {
	left: inherit;
	right: -4px;
}

.ibm-anchor-down-link::before,
.ibm-anchor-down-link::after {
	content: "\f18f";
}

.ibm-anchor-up-link::before,
.ibm-anchor-up-link::after {
	content: "\f190";
}

.ibm-contact-widget-btn.ibm-active,
.ibm-contact-widget-btn.ibm-active:hover,
.ibm-contact-widget-btn:focus,
.ibm-contact-widget-btn:hover,
.cmr-module-tab,
.cm-pill,
.cm-pill-text {
	background-color: #0064ff !important;
}

.ibm-contact-widget-btn.ibm-active > p,
.ibm-contact-widget-btn.ibm-active:hover > p,
.ibm-contact-widget-btn:focus > p,
.ibm-contact-widget-btn:hover > p,
.cmr-module-tab > p,
.cm-pill > p,
.cm-pill-text > p {
	color: #fff !important;
}

.grid-block,
.platform-image-wrap,
Speeds up performance .hero-video {
	transform: translate3d(0, 0, 0);
}

p {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	padding-bottom: 0;
}

img {
	max-width: 100%;
}

.bg-img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
}

.clickable {
	cursor: pointer;
}

.unclickable {
	pointer-events: none;
}

.anchor {
	display: block;
	position: relative;
	top: -50px;
	visibility: hidden;
}

.external-link-accessible {
	height: 0;
	overflow: hidden;
	position: absolute;
	width: 0;
}

@keyframes text-fade {
	0% {
		opacity: 0;
		top: 0.5rem;
	}
	100% {
		opacity: 1;
		top: 0;
	}
}

.duo-icon.white {
	fill: #fff;
}

.duo-icon.blue {
	fill: #0f6dff;
}

a[class*="-link"].ibm-inlinelink.ibm-icon-after::after {
	padding-right: 0.2em;
}

.rule {
	border-width: 0;
	border-top-width: 1px;
	border-color: #bebebe;
	border-style: solid;
}

.rule-gray-80 {
	border-width: 0;
	border-top-width: 1px;
	border-color: #3d3d3d;
	border-style: solid;
}

.list-unstyled {
	list-style-type: none;
}

.list-unstyled > li::before {
	display: none;
}

.height-full {
	height: calc(100vh - ((51 / 16) * 1rem));
}

.height-half {
	min-height: calc((100vh - ((51 / 16) * 1rem)) / 2);
}

.text-fade h1,
.text-fade h2,
.text-fade h3,
.text-fade h4,
.text-fade h5,
.text-fade h6,
.text-fade p {
	animation-fill-mode: forwards;
	animation-name: text-fade;
	opacity: 0;
	position: relative;
}

.mask {
	bottom: 0;
	left: 0;
	opacity: 0.6;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.masked-content {
	z-index: 100;
}

.bg-gray-translucent {
	background-color: rgba(23, 23, 23, 0.85);
}

.ibm-sharethispage .ibm-bold {
	font-weight: 400;
}

.ibm-alternate.ibm-sharethispage .ibm-bold {
	color: #fff;
}

#section-footer .ibm-sharethispage h4 {
	float: left;
	margin-right: 16px;
	line-height: 30px;
}

.video-grid {
	height: 50%;
	overflow: hidden;
}

.video-grid a > p {
	align-self: flex-end;
	min-height: 124px;
}

.video-grid a {
	background: transparent;
	z-index: 10;
	transition: all 0.2s;
}

.video-grid a:hover {
	background: rgba(0, 100, 255, 0.8);
}

.days-count {
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.1s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.days-count.loaded {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	opacity: 1;
	visibility: visible;
}

#ibm-pagetitle-h1.home-h1 {
	width: 100%;
	text-indent: -9999px;
	background: url("../img/think2019/home/think-2019-lockup.png") left/contain no-repeat;
}

#page-title {
	display: block;
	width: 100%;
	text-indent: -9999px;
	background: url("../img/think2019/home/think-2019-lockup.png") left/contain no-repeat;
}

.regular-sponsors img {
	width: auto;
	height: auto;
	max-width: 100px;
	max-height: 200px;
}

.share-bar h4 {
	float: left;
	margin-right: 20px;
}

#faq-search {
	-webkit-appearance: none;
	line-height: 38px;
	display: block;
	height: 38px;
	padding: 4px 10px;
	border: 1px solid #e0e0e0;
}

.hero-video-mask {
	width: 60%;
	height: 100%;
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
	/* IE6-9 */
}

.ibm-hover-mask {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 102%;
	height: 100%;
	z-index: 1 !important;
}

.ibm-hover-mask.ibm-background-blue-sky {
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#000',GradientType=0 );
}

.ibm-hover-mask-alt {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: none;
	z-index: 1 !important;
}

.ibm-hover-mask-alt:hover,
.ibm-hover-mask-alt:focus {
	background: rgba(0, 100, 255, 0.8);
}

.ibm-gradient-mask {
	position: absolute;
	width: 100%;
	height: 25%;
	bottom: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#000',GradientType=0 );
}

.ibm-gradient-mask.darker {
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.ibm-think-video-card {
	overflow: hidden;
}

.ibm-think-video-card > * {
	z-index: 10;
}

.ibm-think-video-card .ibm-float-bottom-left-0 {
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.ibm-think-video-card:hover > .ibm-hover-mask {
	background: -moz-linear-gradient(
		top,
		rgba(79, 139, 246, 0.25) 0%,
		rgba(79, 139, 246, 0.65) 100%
	);
	background: -webkit-linear-gradient(
		top,
		rgba(79, 139, 246, 0.25) 0%,
		rgba(79, 139, 246, 0.65) 100%
	);
	background: linear-gradient(
		to bottom,
		rgba(79, 139, 246, 0.25) 0%,
		rgba(105, 166, 255, 0.65) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f8bf6', endColorstr='#4f8bf6',GradientType=0 );
}

#special-programs .ibm-gradient-mask.darker {
	height: 40%;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}

#special-programs span.ibm-type-f {
	font-weight: bold;
}

.ibm-sitenav-menu-name a:hover,
.ibm-sitenav-menu-name a:focus {
	color: #1d4ecc;
}

.ibm-sitenav-menu-list > ul > li.ibm-active > button,
.ibm-sitenav-menu-list > ul > li.ibm-active > span,
.ibm-sitenav-menu-list > ul > li.ibm-active > a,
.ibm-sitenav-menu-list > ul > li.ibm-highlight > button,
.ibm-sitenav-menu-list > ul > li.ibm-highlight > span,
.ibm-sitenav-menu-list > ul > li.ibm-highlight > a {
	color: #1d4ecc;
}

.ibm-sitenav-menu-list > ul > li > button:hover,
.ibm-sitenav-menu-list > ul > li > button:focus,
.ibm-sitenav-menu-list > ul > li > span:hover,
.ibm-sitenav-menu-list > ul > li > span:focus,
.ibm-sitenav-menu-list > ul > li > a:hover,
.ibm-sitenav-menu-list > ul > li > a:focus {
	color: #1d4ecc;
}

.ibm-sitenav-menu-list li ul a:hover,
.ibm-sitenav-menu-list li ul li.ibm-highlight > a,
.ibm-sitenav-menu-list li ul a.ibm-highlight {
	background-color: #1d4ecc !important;
}

.ibm-thick-underline::after,
#ibm-home a::after,
.ibm-parent-site-name a::after,
.ibm-masthead-categories > li > a::after,
.ibm-masthead-categories > li > button::after,
.ibm-masthead-iconsonly > li > a::after,
.ibm-masthead-iconsonly > li > button::after,
.ibm-masthead-categories .ibm-mh-mainitem > a::after,
.ibm-sitenav-menu-name a::after,
.ibm-sitenav-menu-list > ul > li > button::after,
.ibm-sitenav-menu-list > ul > li > span::after,
.ibm-sitenav-menu-list > ul > li > a::after {
	background: #1d4ecc;
}

.ibm-sitenav-menu-container {
	padding-right: 0 !important;
}

.ibm-navigation-cta {
	position: absolute;
	right: 0;
}

.ibm-sitenav-menu-list .ibm-btn-pri {
	padding: 0 30px;
	height: 51px;
}

.ibm-sitenav-menu-list .ibm-btn-pri:hover:after {
	background: transparent !important;
	height: 0 !important;
	display: none !important;
	visibility: hidden;
}

.ibm-sitenav-menu-list .ibm-btn-pri:focus:after {
	background: transparent !important;
	height: 0 !important;
	display: none !important;
	visibility: hidden;
}

.no-js .side-nav-grid {
	display: none;
}

.side-nav {
	opacity: 0.85;
	position: absolute;
	right: 0;
	width: 5rem;
	transition: width 10ms 0.29s;
}

.side-nav.open {
	opacity: 1;
	transition: width 0.01s;
	width: 13rem;
}

.side-nav.open .nav-item {
	box-sizing: border-box;
	margin-left: 0;
	max-height: 4rem;
	padding-bottom: 0.875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.875rem;
	transition: padding 0.18s cubic-bezier(0.2, 0, 0.38, 0.9) 0.11s,
		max-height 0.18s cubic-bezier(0.2, 0, 0.38, 0.9) 0.11s,
		margin-left 0.18s cubic-bezier(0.2, 0, 0.38, 0.9),
		background-color 0.2s cubic-bezier(0.2, 0, 0.38, 0.9);
}

.side-nav.open p {
	opacity: 1;
	transition: opacity 0.18s 0.11s;
}

.nav-item {
	background-color: #0530ad;
	display: block;
	margin-bottom: 2px;
	margin-left: calc(100% - 3rem);
	margin-top: 0;
	min-height: 12px;
	max-height: 0.75rem;
	padding-bottom: 0;
	padding-top: 0;
	position: relative;
	transition: padding 0.18s cubic-bezier(0.2, 0, 0.38, 0.9),
		max-height 0.18s cubic-bezier(0.2, 0, 0.38, 0.9),
		margin-left 0.11s cubic-bezier(0.2, 0, 0.38, 0.9) 0.18s,
		background-color 0.2s cubic-bezier(0.2, 0, 0.38, 0.9);
	width: 100%;
}

.nav-item:hover {
	background-color: #051b75;
	text-decoration: none;
}

.nav-item:active {
	background-color: #0f6dff;
}

.nav-item p {
	opacity: 0;
	transition: opacity 0.18s;
	margin-bottom: 0;
}

.nav-item-current {
	background-color: #0f6dff;
}

.nav-item-current:hover {
	background-color: #0f6dff;
}

.parallax > * {
	position: relative;
	z-index: 0;
}

.parallax:before {
	content: "";
	background-color: rgba(17, 17, 17, 0);
}

.parallax .first-over-alt {
	position: relative;
	background: linear-gradient(transparent, rgba(23, 23, 23, 0.85));
}

.parallax .first-over:before {
	content: "";
	z-index: 100;
	position: absolute;
	top: 20%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(transparent, rgba(23, 23, 23, 0.85));
}

.expert-title {
	color: #bebebe;
	display: block;
	margin-top: 0.25rem;
}

.parallax-mask:before {
	background-color: rgba(17, 17, 17, 0.65);
}

.parallax-image-container {
	max-height: 100vh;
	opacity: 0;
}

.no-js .parallax-image-container,
.parallax-image-container.parallax-visible {
	opacity: 1;
}

.parallax-image-container .spacer {
	padding-bottom: 75%;
	width: 100%;
}

.parallax-image-container img {
	left: 0;
	position: absolute;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	width: 100%;
}

.opacity-75 {
	opacity: 0.75;
}

.platform-image-wrap {
	position: relative;
}

#program-overlay {
	position: absolute;
	top: 0;
	z-index: 100;
	min-height: 100%;
	animation: fade 0.5s cubic-bezier(0.2, 0, 0.38, 0.9) backwards;
}

#program-overlay[aria-hidden="true"] {
	display: none !important;
	opacity: 0 !important;
}

#program-overlay[aria-hidden="false"] {
	display: block !important;
}

#program-overlay img {
	display: block;
	width: 100%;
	height: auto;
}

#program-overlay.fixed {
	min-height: 100%;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	position: fixed;
	top: 102px;
}

.programs-grid.expanded {
	min-height: calc((50vw - 2rem) * 1);
}

.programs-grid .program--content {
	display: none;
	visibility: hidden;
	z-index: -1;
}

.quote p:not(.ibm-type-b) {
	font-size: 24px;
}

.ibm-masthead-sticky.ibm-masthead-sticky-showing #program-overlay.fixed {
	top: 102px;
}

.ibm-sitenav-menu-sticky #program-overlay.fixed {
	top: 51px;
}

.think-show-hide > h2 a {
	border-color: #eaeaea !important;
	font-size: 16px;
	line-height: 130%;
}

.think-show-hide > h2 a:hover {
	color: inherit;
}

.think-show-hide > h2 a.ibm-show-active {
	border-color: #eaeaea;
	color: #1d4ecc;
}

.think-show-hide > h2 a.ibm-show-active:hover {
	color: #0064ff;
}

.think-show-hide > h2 a::before {
	content: "\f19c";
}

.think-show-hide > h2 a.ibm-show-active::before {
	content: "\f19f";
}

.think-show-hide .ibm-container-body,
.think-show-hide .ibm-container-body p {
	font-size: 16px;
	line-height: 130%;
	margin-bottom: 16px;
}

.ibm-padding {
	padding: 1.25rem;
}

.ibm-padding--bottom {
	padding-bottom: 1.25rem;
}

.ibm-padding--left {
	padding-left: 1.25rem;
}

.ibm-padding--right {
	padding-right: 1.25rem;
}

.ibm-padding--top {
	padding-top: 1.25rem;
}

.ibm-padding--horizontal {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.ibm-padding--vertical {
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.ibm-padding--vertical-2 {
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.spacer-tall {
	padding-top: 2rem;
}

.spacer-medium {
	padding-top: 1rem;
}

.spacer-short {
	padding-top: 0.5rem;
}

.grid-block-doubleWidth .padding-maker {
	padding-top: 62.5%;
}

.grid-block-doubleHeight .padding-maker {
	padding-top: 125%;
}

.grid-block-halfHeight {
	height: 50%;
}

.m-0 {
	margin: 0 !important;
}

.mt-0,
.my-0 {
	margin-top: 0 !important;
}

.mr-0,
.mx-0 {
	margin-right: 0 !important;
}

.mb-0,
.my-0 {
	margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
	margin-left: 0 !important;
}

.m-0_5 {
	margin: 0.5rem !important;
}

.mt-0_5,
.my-0_5 {
	margin-top: 0.5rem !important;
}

.mr-0_5,
.mx-0_5 {
	margin-right: 0.5rem !important;
}

.mb-0_5,
.my-0_5 {
	margin-bottom: 0.5rem !important;
}

.ml-0_5,
.mx-0_5 {
	margin-left: 0.5rem !important;
}

.m-1 {
	margin: 1rem !important;
}

.mt-1,
.my-1 {
	margin-top: 1rem !important;
}

.mr-1,
.mx-1 {
	margin-right: 1rem !important;
}

.mb-1,
.my-1 {
	margin-bottom: 1rem !important;
}

.ml-1,
.mx-1 {
	margin-left: 1rem !important;
}

.m-1_5 {
	margin: 1.5rem !important;
}

.mt-1_5,
.my-1_5 {
	margin-top: 1.5rem !important;
}

.mr-1_5,
.mx-1_5 {
	margin-right: 1.5rem !important;
}

.mb-1_5,
.my-1_5 {
	margin-bottom: 1.5rem !important;
}

.ml-1_5,
.mx-1_5 {
	margin-left: 1.5rem !important;
}

.m-2 {
	margin: 2rem !important;
}

.mt-2,
.my-2 {
	margin-top: 2rem !important;
}

.mr-2,
.mx-2 {
	margin-right: 2rem !important;
}

.mb-2,
.my-2 {
	margin-bottom: 2rem !important;
}

.ml-2,
.mx-2 {
	margin-left: 2rem !important;
}

.m-3 {
	margin: 3rem !important;
}

.mt-3,
.my-3 {
	margin-top: 3rem !important;
}

.mr-3,
.mx-3 {
	margin-right: 3rem !important;
}

.mb-3,
.my-3 {
	margin-bottom: 3rem !important;
}

.ml-3,
.mx-3 {
	margin-left: 3rem !important;
}

.m-4 {
	margin: 4rem !important;
}

.mt-4,
.my-4 {
	margin-top: 4rem !important;
}

.mr-4,
.mx-4 {
	margin-right: 4rem !important;
}

.mb-4,
.my-4 {
	margin-bottom: 4rem !important;
}

.ml-4,
.mx-4 {
	margin-left: 4rem !important;
}

.m-5 {
	margin: 5rem !important;
}

.mt-5,
.my-5 {
	margin-top: 5rem !important;
}

.mr-5,
.mx-5 {
	margin-right: 5rem !important;
}

.mb-5,
.my-5 {
	margin-bottom: 5rem !important;
}

.ml-5,
.mx-5 {
	margin-left: 5rem !important;
}

.m-8 {
	margin: 8rem !important;
}

.mt-8,
.my-8 {
	margin-top: 8rem !important;
}

.mr-8,
.mx-8 {
	margin-right: 8rem !important;
}

.mb-8,
.my-8 {
	margin-bottom: 8rem !important;
}

.ml-8,
.mx-8 {
	margin-left: 8rem !important;
}

.m-9 {
	margin: 9rem !important;
}

.mt-9,
.my-9 {
	margin-top: 9rem !important;
}

.mr-9,
.mx-9 {
	margin-right: 9rem !important;
}

.mb-9,
.my-9 {
	margin-bottom: 9rem !important;
}

.ml-9,
.mx-9 {
	margin-left: 9rem !important;
}

.m-10 {
	margin: 10rem !important;
}

.mt-10,
.my-10 {
	margin-top: 10rem !important;
}

.mr-10,
.mx-10 {
	margin-right: 10rem !important;
}

.mb-10,
.my-10 {
	margin-bottom: 10rem !important;
}

.ml-10,
.mx-10 {
	margin-left: 10rem !important;
}

.p-0 {
	padding: 0 !important;
}

.pt-0,
.py-0 {
	padding-top: 0 !important;
}

.pr-0,
.px-0 {
	padding-right: 0 !important;
}

.pb-0,
.py-0 {
	padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
	padding-left: 0 !important;
}

.p-0_5 {
	padding: 0.5rem !important;
}

.pt-0_5,
.py-0_5 {
	padding-top: 0.5rem !important;
}

.pr-0_5,
.px-0_5 {
	padding-right: 0.5rem !important;
}

.pb-0_5,
.py-0_5 {
	padding-bottom: 0.5rem !important;
}

.pl-0_5,
.px-0_5 {
	padding-left: 0.5rem !important;
}

.p-1 {
	padding: 1rem !important;
}

.pt-1,
.py-1 {
	padding-top: 1rem !important;
}

.pr-1,
.px-1 {
	padding-right: 1rem !important;
}

.pb-1,
.py-1 {
	padding-bottom: 1rem !important;
}

.pl-1,
.px-1 {
	padding-left: 1rem !important;
}

.p-1_5 {
	padding: 1.5rem !important;
}

.pt-1_5,
.py-1_5 {
	padding-top: 1.5rem !important;
}

.pr-1_5,
.px-1_5 {
	padding-right: 1.5rem !important;
}

.pb-1_5,
.py-1_5 {
	padding-bottom: 1.5rem !important;
}

.pl-1_5,
.px-1_5 {
	padding-left: 1.5rem !important;
}

.p-2 {
	padding: 2rem !important;
}

.pt-2,
.py-2 {
	padding-top: 2rem !important;
}

.pr-2,
.px-2 {
	padding-right: 2rem !important;
}

.pb-2,
.py-2 {
	padding-bottom: 2rem !important;
}

.pl-2,
.px-2 {
	padding-left: 2rem !important;
}

.p-3 {
	padding: 3rem !important;
}

.pt-3,
.py-3 {
	padding-top: 3rem !important;
}

.pr-3,
.px-3 {
	padding-right: 3rem !important;
}

.pb-3,
.py-3 {
	padding-bottom: 3rem !important;
}

.pl-3,
.px-3 {
	padding-left: 3rem !important;
}

.p-4 {
	padding: 4rem !important;
}

.pt-4,
.py-4 {
	padding-top: 4rem !important;
}

.pr-4,
.px-4 {
	padding-right: 4rem !important;
}

.pb-4,
.py-4 {
	padding-bottom: 4rem !important;
}

.pl-4,
.px-4 {
	padding-left: 4rem !important;
}

.p-5 {
	padding: 5rem !important;
}

.pt-5,
.py-5 {
	padding-top: 5rem !important;
}

.pr-5,
.px-5 {
	padding-right: 5rem !important;
}

.pb-5,
.py-5 {
	padding-bottom: 5rem !important;
}

.pl-5,
.px-5 {
	padding-left: 5rem !important;
}

.p-8 {
	padding: 8rem !important;
}

.pt-8,
.py-8 {
	padding-top: 8rem !important;
}

.pr-8,
.px-8 {
	padding-right: 8rem !important;
}

.pb-8,
.py-8 {
	padding-bottom: 8rem !important;
}

.pl-8,
.px-8 {
	padding-left: 8rem !important;
}

.p-9 {
	padding: 9rem !important;
}

.pt-9,
.py-9 {
	padding-top: 9rem !important;
}

.pr-9,
.px-9 {
	padding-right: 9rem !important;
}

.pb-9,
.py-9 {
	padding-bottom: 9rem !important;
}

.pl-9,
.px-9 {
	padding-left: 9rem !important;
}

.p-10 {
	padding: 10rem !important;
}

.pt-10,
.py-10 {
	padding-top: 10rem !important;
}

.pr-10,
.px-10 {
	padding-right: 10rem !important;
}

.pb-10,
.py-10 {
	padding-bottom: 10rem !important;
}

.pl-10,
.px-10 {
	padding-left: 10rem !important;
}

.flex-center {
	align-content: center;
}

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

html.fixed {
	overflow: hidden !important;
}

#speaker-overlay {
	position: absolute;
	top: 0;
	z-index: 100;
	min-height: 100%;
	animation: fade 0.5s cubic-bezier(0.2, 0, 0.38, 0.9) backwards;
}

#speaker-overlay[aria-hidden="true"] {
	display: none !important;
	opacity: 0 !important;
}

#speaker-overlay[aria-hidden="false"] {
	display: block !important;
}

#speaker-overlay img {
	display: block;
	width: 100%;
	height: auto;
}

#speaker-overlay.fixed {
	min-height: 100%;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	overflow: hidden;
	position: fixed;
	top: 102px;
}

.speakers-grid {
	min-height: calc((50vw - 2rem) * 1);
}

.speakers-grid.active {
	min-height: calc((50vw - 2rem) * 1) !important;
}

.speakers-grid .speaker {
	position: relative;
	overflow: hidden;
}

.speakers-grid .speaker > p {
	position: absolute;
	bottom: 0;
	z-index: 10;
}

.speakers-grid .speaker img {
	display: block;
}

.speakers-grid .speaker:focus .ibm-hover-mask-alt,
.speakers-grid .speaker:active .ibm-hover-mask-alt,
.speakers-grid .speaker:hover .ibm-hover-mask-alt {
	background: rgba(0, 100, 255, 0.8);
}

.speakers-grid .speaker .ibm-hover-mask-alt {
	height: 101%;
	bottom: -1px;
}

.speakers-grid .speaker--content {
	display: none;
	visibility: hidden;
	z-index: -1;
}

.quote p:not(.ibm-type-b) {
	font-size: 24px;
}

.ibm-masthead-sticky.ibm-masthead-sticky-showing #speaker-overlay.fixed {
	top: 102px;
}

.ibm-sitenav-menu-sticky #speaker-overlay.fixed {
	top: 51px;
}

#sponsors img {
	max-width: 80%;
	height: auto;
}

.think-table {
	font-size: 16px;
	width: 100%;
	border-top: 1px solid #1d4ecc;
	border-bottom: 1px solid #1d4ecc;
}

.think-table td,
.think-table th {
	padding: 8px 12px;
	border-left: 1px solid #1d4ecc;
	border-right: 1px solid #1d4ecc;
}

.think-table tbody > tr:first-child > th {
	padding-top: 16px;
}

.think-table tbody > tr:last-child > td {
	padding-bottom: 16px;
}

.ibm-tabs,
.ibm-graphic-tabs .ibm-tabs li,
.ibm-graphic-tabs .ibm-tabs li:hover {
	background: transparent;
}

.ibm-graphic-tabs.ibm-vertical-tabs .ibm-tabs a,
.ibm-graphic-tabs.ibm-vertical-tabs .ibm-tabs li:hover a[aria-selected="true"] {
	color: #fff;
	padding: 1rem 1.5rem;
	line-height: 26px;
}

.ibm-graphic-tabs.ibm-horizontal-tabs .ibm-tabs li {
	border: 0;
}

.ibm-graphic-tabs.ibm-horizontal-tabs .ibm-tabs li a {
	color: #000;
	text-align: left;
	padding: 10px 0 13px 0;
}

.ibm-graphic-tabs.ibm-horizontal-tabs .ibm-tabs li a::after {
	width: 60%;
	border-bottom-width: 6px;
}

.ibm-graphic-tabs.ibm-horizontal-tabs .ibm-tabs li:hover a[aria-selected="true"] {
	color: #000;
}

.ibm-graphic-tabs.ibm-horizontal-tabs ul.ibm-tabs li a:hover::after,
.ibm-graphic-tabs.ibm-horizontal-tabs ul.ibm-tabs li a[aria-selected="true"]::after {
	text-align: left;
}

.ibm-graphic-tabs.ibm-vertical-tabs ul.ibm-tabs li a:hover::after,
.ibm-graphic-tabs.ibm-vertical-tabs ul.ibm-tabs li a[aria-selected="true"]::after,
.ibm-graphic-tabs .ibm-tabs li a:hover::after,
.ibm-graphic-tabs .ibm-tabs li a[aria-selected="true"]::after {
	border-left-color: #4a90e2;
	border-bottom-color: #d0e2ff;
}

.ibm-custom-tabs {
	list-style: none;
}

.ibm-custom-tabs li {
	padding: 0;
}

.ibm-custom-tabs li + li {
	padding-top: 0;
}

.ibm-custom-tabs li::before {
	content: none;
}

.ibm-custom-tabs li a {
	color: inherit;
	text-decoration: none;
	display: inline-block;
	width: 100%;
	padding: 0 0 0.8rem 0;
	position: relative;
}

.ibm-custom-tabs li a:hover,
.ibm-custom-tabs li a:active,
.ibm-custom-tabs li a:focus {
	text-decoration: none;
	color: inherit;
}

.ibm-custom-tabs li a::after {
	position: absolute;
	width: 100%;
	bottom: 10px;
	left: 0;
	border-bottom: 1px solid transparent;
}

.sub-tab-content-zone {
	position: relative;
}

.sub-tab-content-zone .sub-tab-content {
	position: absolute;
	top: 0;
	margin-top: -1rem;
	/*padding: 1rem 0;*/
	padding-right: calc(3rem / 2);
}

.sub-tab-content {
	opacity: 0;
	display: none;
	visibility: hidden;
}

.sub-tab-content.slide-in {
	opacity: 1;
	display: block;
	visibility: visible;
}

.ibm-tabs-content {
	z-index: 100;
}

.topics-grid .ibm-blocklink {
	border-color: #1d4ecc;
}

.topics-grid .ibm-blocklink:hover {
	border-color: #1d4ecc;
	background-color: #252525;
}

.topics-grid .ibm-blocklink h4 {
	display: inline-block;
}

.topics-grid .ibm-blocklink .topic-link {
	position: absolute;
	bottom: 0;
}

@media (min-width: 0) {
	.hide-sm {
		display: none;
	}
	.display-sm {
		display: block;
	}
	.display-sm[class*="ibm-grid"] {
		display: flex;
	}
	.flex-sm {
		display: flex !important;
	}
}

@media (min-width: 48rem) {
	.ibm-grid__col--sm--0-only {
		display: block;
	}
	[class*="ibm-grid__col--sm--0"][class*="ibm-grid__col--md--"] {
		display: block;
	}
	[class*="ibm-grid__col--sm--0"][class*="ibm-grid__col--md--"].ibm-grid {
		display: flex;
	}
	.ibm-grid__col--md--0,
	.ibm-grid__col-md--0--only {
		display: none;
	}
	.ibm-grid__col--sm--1 {
		min-width: 25vw;
		width: 25vw;
	}
	.ibm-grid__height-fluid--sm--1 {
		height: 25vw;
	}
	.ibm-grid__col--sm--2 {
		min-width: 50vw;
		width: 50vw;
	}
	.ibm-grid__height-fluid--sm--2 {
		height: 50vw;
	}
	.ibm-grid__col--sm--3 {
		min-width: 75vw;
		width: 75vw;
	}
	.ibm-grid__height-fluid--sm--3 {
		height: 75vw;
	}
	.ibm-grid__col--sm--4 {
		min-width: 100vw;
		width: 100vw;
	}
	.ibm-grid__height-fluid--sm--4 {
		height: 100vw;
	}
	.ibm-grid__col--md--1 {
		min-width: 12.5vw;
		width: 12.5vw;
	}
	.ibm-grid__height-fluid--md--1 {
		height: 12.5vw;
	}
	.ibm-grid__col--md--2 {
		min-width: 25vw;
		width: 25vw;
	}
	.ibm-grid__height-fluid--md--2 {
		height: 25vw;
	}
	.ibm-grid__col--md--3 {
		min-width: 37.5vw;
		width: 37.5vw;
	}
	.ibm-grid__height-fluid--md--3 {
		height: 37.5vw;
	}
	.ibm-grid__col--md--4 {
		min-width: 50vw;
		width: 50vw;
	}
	.ibm-grid__height-fluid--md--4 {
		height: 50vw;
	}
	.ibm-grid__col--md--5 {
		min-width: 62.5vw;
		width: 62.5vw;
	}
	.ibm-grid__height-fluid--md--5 {
		height: 62.5vw;
	}
	.ibm-grid__col--md--6 {
		min-width: 75vw;
		width: 75vw;
	}
	.ibm-grid__height-fluid--md--6 {
		height: 75vw;
	}
	.ibm-grid__col--md--7 {
		min-width: 87.5vw;
		width: 87.5vw;
	}
	.ibm-grid__height-fluid--md--7 {
		height: 87.5vw;
	}
	.ibm-grid__col--md--8 {
		min-width: 100vw;
		width: 100vw;
	}
	.ibm-grid__height-fluid--md--8 {
		height: 100vw;
	}
	.ibm-grid__height--md--0 {
		min-height: 0;
		height: auto;
	}
	.ibm-grid__height-fixed--md--1 {
		min-height: 0.5rem;
	}
	.ibm-grid__height-fixed--md--2 {
		min-height: 1rem;
	}
	.ibm-grid__height-fixed--md--3 {
		min-height: 1.5rem;
	}
	.ibm-grid__height-fixed--md--4 {
		min-height: 2rem;
	}
	.ibm-grid__height-fixed--md--5 {
		min-height: 2.5rem;
	}
	.ibm-grid__height-fixed--md--6 {
		min-height: 3rem;
	}
	.ibm-grid__height-fixed--md--7 {
		min-height: 3.5rem;
	}
	.ibm-grid__height-fixed--md--8 {
		min-height: 4rem;
	}
	.ibm-grid__height-fixed--md--9 {
		min-height: 4.5rem;
	}
	.ibm-grid__height-fixed--md--10 {
		min-height: 5rem;
	}
	.ibm-grid__height-fixed--md--11 {
		min-height: 5.5rem;
	}
	.ibm-grid__height-fixed--md--12 {
		min-height: 6rem;
	}
	.ibm-grid__height-fixed--md--13 {
		min-height: 6.5rem;
	}
	.ibm-grid__height-fixed--md--14 {
		min-height: 7rem;
	}
	.ibm-grid__height-fixed--md--15 {
		min-height: 7.5rem;
	}
	.ibm-grid__height-fixed--md--16 {
		min-height: 8rem;
	}
	.ibm-grid__height-fixed--md--17 {
		min-height: 8.5rem;
	}
	.ibm-grid__height-fixed--md--18 {
		min-height: 9rem;
	}
	.ibm-grid__height-fixed--md--19 {
		min-height: 9.5rem;
	}
	.ibm-grid__height-fixed--md--20 {
		min-height: 10rem;
	}
	.ibm-grid__height-fixed--md--21 {
		min-height: 10.5rem;
	}
	.ibm-grid__height-fixed--md--22 {
		min-height: 11rem;
	}
	.ibm-grid__height-fixed--md--23 {
		min-height: 11.5rem;
	}
	.ibm-grid__height-fixed--md--24 {
		min-height: 12rem;
	}
	.ibm-grid__height-fixed--md--25 {
		min-height: 12.5rem;
	}
	.ibm-grid__height-fixed--md--26 {
		min-height: 13rem;
	}
	.ibm-grid__height-fixed--md--27 {
		min-height: 13.5rem;
	}
	.ibm-grid__height-fixed--md--28 {
		min-height: 14rem;
	}
	.ibm-grid__height-fixed--md--29 {
		min-height: 14.5rem;
	}
	.ibm-padding {
		padding: calc(3rem / 2);
	}
	.ibm-padding--bottom {
		padding-bottom: calc(3rem / 2);
	}
	.ibm-padding--left {
		padding-left: calc(3rem / 2);
	}
	.ibm-padding--right {
		padding-right: calc(3rem / 2);
	}
	.ibm-padding--top {
		padding-top: calc(3rem / 2);
	}
	.ibm-padding--horizontal {
		padding-left: calc(3rem / 2);
		padding-right: calc(3rem / 2);
	}

	.ibm-padding--vertical {
		padding-bottom: calc(3rem / 2);
		padding-top: calc(3rem / 2);
	}

	.spacer-tall {
		padding-top: 3rem;
	}
	.spacer-medium {
		padding-top: 1.5rem;
	}
	.spacer-short {
		padding-top: 0.75rem;
	}
	.hide-md {
		display: none;
	}
	.display-md {
		display: block;
	}
	.display-md[class*="ibm-grid"] {
		display: flex;
	}
	.flex-md {
		display: flex !important;
	}
	.hero-height {
		min-height: calc(100vh - (6.375rem + 1.75rem));
	}
	.side-nav-grid {
		display: flex;
	}
	.side-nav-grid {
		display: flex;
	}
	.platform-icon {
		display: inline-block;
		margin-bottom: 0.5rem;
	}
	.m-md-0 {
		margin: 0 !important;
	}
	.mt-md-0,
	.my-md-0 {
		margin-top: 0 !important;
	}
	.mr-md-0,
	.mx-md-0 {
		margin-right: 0 !important;
	}
	.mb-md-0,
	.my-md-0 {
		margin-bottom: 0 !important;
	}
	.ml-md-0,
	.mx-md-0 {
		margin-left: 0 !important;
	}
	.m-md-0_5 {
		margin: 0.5rem !important;
	}
	.mt-md-0_5,
	.my-md-0_5 {
		margin-top: 0.5rem !important;
	}
	.mr-md-0_5,
	.mx-md-0_5 {
		margin-right: 0.5rem !important;
	}
	.mb-md-0_5,
	.my-md-0_5 {
		margin-bottom: 0.5rem !important;
	}
	.ml-md-0_5,
	.mx-md-0_5 {
		margin-left: 0.5rem !important;
	}
	.m-md-1 {
		margin: 1rem !important;
	}
	.mt-md-1,
	.my-md-1 {
		margin-top: 1rem !important;
	}
	.mr-md-1,
	.mx-md-1 {
		margin-right: 1rem !important;
	}
	.mb-md-1,
	.my-md-1 {
		margin-bottom: 1rem !important;
	}
	.ml-md-1,
	.mx-md-1 {
		margin-left: 1rem !important;
	}
	.m-md-1_5 {
		margin: 1.5rem !important;
	}
	.mt-md-1_5,
	.my-md-1_5 {
		margin-top: 1.5rem !important;
	}
	.mr-md-1_5,
	.mx-md-1_5 {
		margin-right: 1.5rem !important;
	}
	.mb-md-1_5,
	.my-md-1_5 {
		margin-bottom: 1.5rem !important;
	}
	.ml-md-1_5,
	.mx-md-1_5 {
		margin-left: 1.5rem !important;
	}
	.m-md-2 {
		margin: 2rem !important;
	}
	.mt-md-2,
	.my-md-2 {
		margin-top: 2rem !important;
	}
	.mr-md-2,
	.mx-md-2 {
		margin-right: 2rem !important;
	}
	.mb-md-2,
	.my-md-2 {
		margin-bottom: 2rem !important;
	}
	.ml-md-2,
	.mx-md-2 {
		margin-left: 2rem !important;
	}
	.m-md-3 {
		margin: 3rem !important;
	}
	.mt-md-3,
	.my-md-3 {
		margin-top: 3rem !important;
	}
	.mr-md-3,
	.mx-md-3 {
		margin-right: 3rem !important;
	}
	.mb-md-3,
	.my-md-3 {
		margin-bottom: 3rem !important;
	}
	.ml-md-3,
	.mx-md-3 {
		margin-left: 3rem !important;
	}
	.m-md-4 {
		margin: 4rem !important;
	}
	.mt-md-4,
	.my-md-4 {
		margin-top: 4rem !important;
	}
	.mr-md-4,
	.mx-md-4 {
		margin-right: 4rem !important;
	}
	.mb-md-4,
	.my-md-4 {
		margin-bottom: 4rem !important;
	}
	.ml-md-4,
	.mx-md-4 {
		margin-left: 4rem !important;
	}
	.m-md-5 {
		margin: 5rem !important;
	}
	.mt-md-5,
	.my-md-5 {
		margin-top: 5rem !important;
	}
	.mr-md-5,
	.mx-md-5 {
		margin-right: 5rem !important;
	}
	.mb-md-5,
	.my-md-5 {
		margin-bottom: 5rem !important;
	}
	.ml-md-5,
	.mx-md-5 {
		margin-left: 5rem !important;
	}
	.m-md-8 {
		margin: 8rem !important;
	}
	.mt-md-8,
	.my-md-8 {
		margin-top: 8rem !important;
	}
	.mr-md-8,
	.mx-md-8 {
		margin-right: 8rem !important;
	}
	.mb-md-8,
	.my-md-8 {
		margin-bottom: 8rem !important;
	}
	.ml-md-8,
	.mx-md-8 {
		margin-left: 8rem !important;
	}
	.m-md-9 {
		margin: 9rem !important;
	}
	.mt-md-9,
	.my-md-9 {
		margin-top: 9rem !important;
	}
	.mr-md-9,
	.mx-md-9 {
		margin-right: 9rem !important;
	}
	.mb-md-9,
	.my-md-9 {
		margin-bottom: 9rem !important;
	}
	.ml-md-9,
	.mx-md-9 {
		margin-left: 9rem !important;
	}
	.m-md-10 {
		margin: 10rem !important;
	}
	.mt-md-10,
	.my-md-10 {
		margin-top: 10rem !important;
	}
	.mr-md-10,
	.mx-md-10 {
		margin-right: 10rem !important;
	}
	.mb-md-10,
	.my-md-10 {
		margin-bottom: 10rem !important;
	}
	.ml-md-10,
	.mx-md-10 {
		margin-left: 10rem !important;
	}
	.p-md-0 {
		padding: 0 !important;
	}
	.pt-md-0,
	.py-md-0 {
		padding-top: 0 !important;
	}
	.pr-md-0,
	.px-md-0 {
		padding-right: 0 !important;
	}
	.pb-md-0,
	.py-md-0 {
		padding-bottom: 0 !important;
	}
	.pl-md-0,
	.px-md-0 {
		padding-left: 0 !important;
	}
	.p-md-0_5 {
		padding: 0.5rem !important;
	}
	.pt-md-0_5,
	.py-md-0_5 {
		padding-top: 0.5rem !important;
	}
	.pr-md-0_5,
	.px-md-0_5 {
		padding-right: 0.5rem !important;
	}
	.pb-md-0_5,
	.py-md-0_5 {
		padding-bottom: 0.5rem !important;
	}
	.pl-md-0_5,
	.px-md-0_5 {
		padding-left: 0.5rem !important;
	}
	.p-md-1 {
		padding: 1rem !important;
	}
	.pt-md-1,
	.py-md-1 {
		padding-top: 1rem !important;
	}
	.pr-md-1,
	.px-md-1 {
		padding-right: 1rem !important;
	}
	.pb-md-1,
	.py-md-1 {
		padding-bottom: 1rem !important;
	}
	.pl-md-1,
	.px-md-1 {
		padding-left: 1rem !important;
	}
	.p-md-1_5 {
		padding: 1.5rem !important;
	}
	.pt-md-1_5,
	.py-md-1_5 {
		padding-top: 1.5rem !important;
	}
	.pr-md-1_5,
	.px-md-1_5 {
		padding-right: 1.5rem !important;
	}
	.pb-md-1_5,
	.py-md-1_5 {
		padding-bottom: 1.5rem !important;
	}
	.pl-md-1_5,
	.px-md-1_5 {
		padding-left: 1.5rem !important;
	}
	.p-md-2 {
		padding: 2rem !important;
	}
	.pt-md-2,
	.py-md-2 {
		padding-top: 2rem !important;
	}
	.pr-md-2,
	.px-md-2 {
		padding-right: 2rem !important;
	}
	.pb-md-2,
	.py-md-2 {
		padding-bottom: 2rem !important;
	}
	.pl-md-2,
	.px-md-2 {
		padding-left: 2rem !important;
	}
	.p-md-3 {
		padding: 3rem !important;
	}
	.pt-md-3,
	.py-md-3 {
		padding-top: 3rem !important;
	}
	.pr-md-3,
	.px-md-3 {
		padding-right: 3rem !important;
	}
	.pb-md-3,
	.py-md-3 {
		padding-bottom: 3rem !important;
	}
	.pl-md-3,
	.px-md-3 {
		padding-left: 3rem !important;
	}
	.p-md-4 {
		padding: 4rem !important;
	}
	.pt-md-4,
	.py-md-4 {
		padding-top: 4rem !important;
	}
	.pr-md-4,
	.px-md-4 {
		padding-right: 4rem !important;
	}
	.pb-md-4,
	.py-md-4 {
		padding-bottom: 4rem !important;
	}
	.pl-md-4,
	.px-md-4 {
		padding-left: 4rem !important;
	}
	.p-md-5 {
		padding: 5rem !important;
	}
	.pt-md-5,
	.py-md-5 {
		padding-top: 5rem !important;
	}
	.pr-md-5,
	.px-md-5 {
		padding-right: 5rem !important;
	}
	.pb-md-5,
	.py-md-5 {
		padding-bottom: 5rem !important;
	}
	.pl-md-5,
	.px-md-5 {
		padding-left: 5rem !important;
	}
	.p-md-8 {
		padding: 8rem !important;
	}
	.pt-md-8,
	.py-md-8 {
		padding-top: 8rem !important;
	}
	.pr-md-8,
	.px-md-8 {
		padding-right: 8rem !important;
	}
	.pb-md-8,
	.py-md-8 {
		padding-bottom: 8rem !important;
	}
	.pl-md-8,
	.px-md-8 {
		padding-left: 8rem !important;
	}
	.p-md-9 {
		padding: 9rem !important;
	}
	.pt-md-9,
	.py-md-9 {
		padding-top: 9rem !important;
	}
	.pr-md-9,
	.px-md-9 {
		padding-right: 9rem !important;
	}
	.pb-md-9,
	.py-md-9 {
		padding-bottom: 9rem !important;
	}
	.pl-md-9,
	.px-md-9 {
		padding-left: 9rem !important;
	}
	.p-md-10 {
		padding: 10rem !important;
	}
	.pt-md-10,
	.py-md-10 {
		padding-top: 10rem !important;
	}
	.pr-md-10,
	.px-md-10 {
		padding-right: 10rem !important;
	}
	.pb-md-10,
	.py-md-10 {
		padding-bottom: 10rem !important;
	}
	.pl-md-10,
	.px-md-10 {
		padding-left: 10rem !important;
	}
}

@media (min-width: 66rem) {
	.ibm-grid__col--sm--0-only {
		display: block;
	}
	[class*="ibm-grid__col--sm--0"][class*="ibm-grid__col--lg--"] {
		display: block;
	}
	[class*="ibm-grid__col--sm--0"][class*="ibm-grid__col--lg--"].ibm-grid {
		display: flex;
	}
	[class*="ibm-grid__col--md--0"][class*="ibm-grid__col--lg--"] {
		display: block;
	}
	[class*="ibm-grid__col--md--0"][class*="ibm-grid__col--lg--"].ibm-grid {
		display: flex;
	}
	.ibm-grid__col--lg--0,
	.ibm-grid__col-lg--0--only {
		display: none;
	}
	.ibm-grid__col--sm--1 {
		max-width: calc((99rem - 1.5rem * 2) / 4 * 1);
		min-width: calc((100vw - 2rem) * 0.25);
		width: calc((100vw - 2rem) * 0.25);
	}
	.ibm-grid__height-fluid--sm--1 {
		height: calc((100vw - 2rem) * 0.25);
		max-height: calc((99rem - 1.5rem * 2) / 4 * 1);
	}
	.ibm-grid__col--sm--2 {
		max-width: calc((99rem - 1.5rem * 2) / 4 * 2);
		min-width: calc((100vw - 2rem) * 0.5);
		width: calc((100vw - 2rem) * 0.5);
	}
	.ibm-grid__height-fluid--sm--2 {
		height: calc((100vw - 2rem) * 0.5);
		max-height: calc((99rem - 1.5rem * 2) / 4 * 2);
	}
	.ibm-grid__col--sm--3 {
		max-width: calc((99rem - 1.5rem * 2) / 4 * 3);
		min-width: calc((100vw - 2rem) * 0.75);
		width: calc((100vw - 2rem) * 0.75);
	}
	.ibm-grid__height-fluid--sm--3 {
		height: calc((100vw - 2rem) * 0.75);
		max-height: calc((99rem - 1.5rem * 2) / 4 * 3);
	}
	.ibm-grid__col--sm--4 {
		max-width: calc((99rem - 1.5rem * 2) / 4 * 4);
		min-width: calc((100vw - 2rem) * 1);
		width: calc((100vw - 2rem) * 1);
	}
	.ibm-grid__height-fluid--sm--4 {
		height: calc((100vw - 2rem) * 1);
		max-height: calc((99rem - 1.5rem * 2) / 4 * 4);
	}
	.ibm-grid__col--md--1 {
		max-width: calc((99rem - 1.5rem * 2) / 8 * 1);
		min-width: calc((100vw - 2rem) * 0.125);
		width: calc((100vw - 2rem) * 0.125);
	}
	.ibm-grid__height-fluid--md--1 {
		height: calc((100vw - 2rem) * 0.125);
		max-height: calc((99rem - 1.5rem * 2) / 8 * 1);
	}
	.ibm-grid__col--md--2 {
		max-width: calc((99rem - 1.5rem * 2) / 8 * 2);
		min-width: calc((100vw - 2rem) * 0.25);
		width: calc((100vw - 2rem) * 0.25);
	}
	.ibm-grid__height-fluid--md--2 {
		height: calc((100vw - 2rem) * 0.25);
		max-height: calc((99rem - 1.5rem * 2) / 8 * 2);
	}
	.ibm-grid__col--md--3 {
		max-width: calc((99rem - 1.5rem * 2) / 8 * 3);
		min-width: calc((100vw - 2rem) * 0.375);
		width: calc((100vw - 2rem) * 0.375);
	}
	.ibm-grid__height-fluid--md--3 {
		height: calc((100vw - 2rem) * 0.375);
		max-height: calc((99rem - 1.5rem * 2) / 8 * 3);
	}
	.ibm-grid__col--md--4 {
		max-width: calc((99rem - 1.5rem * 2) / 8 * 4);
		min-width: calc((100vw - 2rem) * 0.5);
		width: calc((100vw - 2rem) * 0.5);
	}
	.ibm-grid__height-fluid--md--4 {
		height: calc((100vw - 2rem) * 0.5);
		max-height: calc((99rem - 1.5rem * 2) / 8 * 4);
	}
	.ibm-grid__col--md--5 {
		max-width: calc((99rem - 1.5rem * 2) / 8 * 5);
		min-width: calc((100vw - 2rem) * 0.625);
		width: calc((100vw - 2rem) * 0.625);
	}
	.ibm-grid__height-fluid--md--5 {
		height: calc((100vw - 2rem) * 0.625);
		max-height: calc((99rem - 1.5rem * 2) / 8 * 5);
	}
	.ibm-grid__col--md--6 {
		max-width: calc((99rem - 1.5rem * 2) / 8 * 6);
		min-width: calc((100vw - 2rem) * 0.75);
		width: calc((100vw - 2rem) * 0.75);
	}
	.ibm-grid__height-fluid--md--6 {
		height: calc((100vw - 2rem) * 0.75);
		max-height: calc((99rem - 1.5rem * 2) / 8 * 6);
	}
	.ibm-grid__col--md--7 {
		max-width: calc((99rem - 1.5rem * 2) / 8 * 7);
		min-width: calc((100vw - 2rem) * 0.875);
		width: calc((100vw - 2rem) * 0.875);
	}
	.ibm-grid__height-fluid--md--7 {
		height: calc((100vw - 2rem) * 0.875);
		max-height: calc((99rem - 1.5rem * 2) / 8 * 7);
	}
	.ibm-grid__col--md--8 {
		max-width: calc((99rem - 1.5rem * 2) / 8 * 8);
		min-width: calc((100vw - 2rem) * 1);
		width: calc((100vw - 2rem) * 1);
	}
	.ibm-grid__height-fluid--md--8 {
		height: calc((100vw - 2rem) * 1);
		max-height: calc((99rem - 1.5rem * 2) / 8 * 8);
	}
	.ibm-grid__col--lg--1 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 1);
		min-width: calc((100vw - 2rem) * 0.062);
		width: calc((100vw - 2rem) * 0.062);
	}
	.ibm-grid__height-fluid--lg--1 {
		height: calc((100vw - 2rem) * 0.062);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 1);
	}
	.ibm-grid__col--lg--2 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 2);
		min-width: calc((100vw - 2rem) * 0.125);
		width: calc((100vw - 2rem) * 0.125);
	}
	.ibm-grid__height-fluid--lg--2 {
		height: calc((100vw - 2rem) * 0.125);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 2);
	}
	.ibm-grid__col--lg--3 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 3);
		min-width: calc((100vw - 2rem) * 0.187);
		width: calc((100vw - 2rem) * 0.187);
	}
	.ibm-grid__height-fluid--lg--3 {
		height: calc((100vw - 2rem) * 0.187);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 3);
	}
	.ibm-grid__col--lg--4 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 4);
		min-width: calc((100vw - 2rem) * 0.25);
		width: calc((100vw - 2rem) * 0.25);
	}
	.ibm-grid__height-fluid--lg--4 {
		height: calc((100vw - 2rem) * 0.25);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 4);
	}
	.ibm-grid__col--lg--5 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 5);
		min-width: calc((100vw - 2rem) * 0.312);
		width: calc((100vw - 2rem) * 0.312);
	}
	.ibm-grid__height-fluid--lg--5 {
		height: calc((100vw - 2rem) * 0.312);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 5);
	}
	.ibm-grid__col--lg--6 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 6);
		min-width: calc((100vw - 2rem) * 0.375);
		width: calc((100vw - 2rem) * 0.375);
	}
	.ibm-grid__height-fluid--lg--6 {
		height: calc((100vw - 2rem) * 0.375);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 6);
	}
	.ibm-grid__col--lg--7 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 7);
		min-width: calc((100vw - 2rem) * 0.437);
		width: calc((100vw - 2rem) * 0.437);
	}
	.ibm-grid__height-fluid--lg--7 {
		height: calc((100vw - 2rem) * 0.437);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 7);
	}
	.ibm-grid__col--lg--8 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 8);
		min-width: calc((100vw - 2rem) * 0.5);
		width: calc((100vw - 2rem) * 0.5);
	}
	.ibm-grid__height-fluid--lg--8 {
		height: calc((100vw - 2rem) * 0.5);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 8);
	}
	.ibm-grid__col--lg--9 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 9);
		min-width: calc((100vw - 2rem) * 0.562);
		width: calc((100vw - 2rem) * 0.562);
	}
	.ibm-grid__height-fluid--lg--9 {
		height: calc((100vw - 2rem) * 0.562);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 9);
	}
	.ibm-grid__col--lg--10 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 10);
		min-width: calc((100vw - 2rem) * 0.625);
		width: calc((100vw - 2rem) * 0.625);
	}
	.ibm-grid__height-fluid--lg--10 {
		height: calc((100vw - 2rem) * 0.625);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 10);
	}
	.ibm-grid__col--lg--11 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 11);
		min-width: calc((100vw - 2rem) * 0.687);
		width: calc((100vw - 2rem) * 0.687);
	}
	.ibm-grid__height-fluid--lg--11 {
		height: calc((100vw - 2rem) * 0.687);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 11);
	}
	.ibm-grid__col--lg--12 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 12);
		min-width: calc((100vw - 2rem) * 0.75);
		width: calc((100vw - 2rem) * 0.75);
	}
	.ibm-grid__height-fluid--lg--12 {
		height: calc((100vw - 2rem) * 0.75);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 12);
	}
	.ibm-grid__col--lg--13 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 13);
		min-width: calc((100vw - 2rem) * 0.812);
		width: calc((100vw - 2rem) * 0.812);
	}
	.ibm-grid__height-fluid--lg--13 {
		height: calc((100vw - 2rem) * 0.812);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 13);
	}
	.ibm-grid__col--lg--14 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 14);
		min-width: calc((100vw - 2rem) * 0.875);
		width: calc((100vw - 2rem) * 0.875);
	}
	.ibm-grid__height-fluid--lg--14 {
		height: calc((100vw - 2rem) * 0.875);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 14);
	}
	.ibm-grid__col--lg--15 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 15);
		min-width: calc((100vw - 2rem) * 0.937);
		width: calc((100vw - 2rem) * 0.937);
	}
	.ibm-grid__height-fluid--lg--15 {
		height: calc((100vw - 2rem) * 0.937);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 15);
	}
	.ibm-grid__col--lg--16 {
		max-width: calc((99rem - 1.5rem * 2) / 16 * 16);
		min-width: calc((100vw - 2rem) * 1);
		width: calc((100vw - 2rem) * 1);
	}
	.ibm-grid__height-fluid--lg--16 {
		height: calc((100vw - 2rem) * 1);
		max-height: calc((99rem - 1.5rem * 2) / 16 * 16);
	}
	.ibm-grid__height--lg--0 {
		min-height: 0;
		height: auto;
	}
	.ibm-grid__height-fixed--lg--1 {
		min-height: 0.5rem;
	}
	.ibm-grid__height-fixed--lg--2 {
		min-height: 1rem;
	}
	.ibm-grid__height-fixed--lg--3 {
		min-height: 1.5rem;
	}
	.ibm-grid__height-fixed--lg--4 {
		min-height: 2rem;
	}
	.ibm-grid__height-fixed--lg--5 {
		min-height: 2.5rem;
	}
	.ibm-grid__height-fixed--lg--6 {
		min-height: 3rem;
	}
	.ibm-grid__height-fixed--lg--7 {
		min-height: 3.5rem;
	}
	.ibm-grid__height-fixed--lg--8 {
		min-height: 4rem;
	}
	.ibm-grid__height-fixed--lg--9 {
		min-height: 4.5rem;
	}
	.ibm-grid__height-fixed--lg--10 {
		min-height: 5rem;
	}
	.ibm-grid__height-fixed--lg--11 {
		min-height: 5.5rem;
	}
	.ibm-grid__height-fixed--lg--12 {
		min-height: 6rem;
	}
	.ibm-grid__height-fixed--lg--13 {
		min-height: 6.5rem;
	}
	.ibm-grid__height-fixed--lg--14 {
		min-height: 7rem;
	}
	.ibm-grid__height-fixed--lg--15 {
		min-height: 7.5rem;
	}
	.ibm-grid__height-fixed--lg--16 {
		min-height: 8rem;
	}
	.ibm-grid__height-fixed--lg--17 {
		min-height: 8.5rem;
	}
	.ibm-grid__height-fixed--lg--18 {
		min-height: 9rem;
	}
	.ibm-grid__height-fixed--lg--19 {
		min-height: 9.5rem;
	}
	.ibm-grid__height-fixed--lg--20 {
		min-height: 10rem;
	}
	.ibm-grid__height-fixed--lg--21 {
		min-height: 10.5rem;
	}
	.ibm-grid__height-fixed--lg--22 {
		min-height: 11rem;
	}
	.ibm-grid__height-fixed--lg--23 {
		min-height: 11.5rem;
	}
	.ibm-grid__height-fixed--lg--24 {
		min-height: 12rem;
	}
	.ibm-grid__height-fixed--lg--25 {
		min-height: 12.5rem;
	}
	.ibm-grid__height-fixed--lg--26 {
		min-height: 13rem;
	}
	.ibm-grid__height-fixed--lg--27 {
		min-height: 13.5rem;
	}
	.ibm-grid__height-fixed--lg--28 {
		min-height: 14rem;
	}
	.ibm-grid__height-fixed--lg--29 {
		min-height: 14.5rem;
	}
	.ibm-container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.ibm-grid.ibm-grid--bleed {
		margin-left: -1rem;
		margin-right: -1rem;
		padding-left: 1rem;
		padding-right: 1rem;
		width: 100vw;
	}
	.ibm-grid--bleed--left {
		padding-left: 1rem;
		margin-left: -1rem;
	}
	.ibm-grid--bleed--right {
		padding-right: 1rem;
		margin-right: -1rem;
	}
	.ibm-padding {
		padding: calc(2rem / 2);
	}
	.ibm-padding--bottom {
		padding-bottom: calc(2rem / 2);
	}
	.ibm-padding--left {
		padding-left: calc(2rem / 2);
	}
	.ibm-padding--right {
		padding-right: calc(2rem / 2);
	}
	.ibm-padding--top {
		padding-top: calc(2rem / 2);
	}
	.ibm-padding--horizontal {
		padding-left: calc(2rem / 2);
		padding-right: calc(2rem / 2);
	}

	.ibm-padding--vertical {
		padding-bottom: calc(2rem / 2);
		padding-top: calc(2rem / 2);
	}
	.max-height {
		max-height: 40rem;
	}
	.spacer-tall {
		padding-top: 4rem;
	}
	.spacer-medium {
		padding-top: 2rem;
	}
	.spacer-short {
		padding-top: 1rem;
	}
	.lg-float {
		margin-bottom: 1rem !important;
	}
	.hide-lg {
		display: none;
	}
	.display-lg {
		display: block;
	}
	.display-lg[class*="ibm-grid"] {
		display: flex;
	}
	.flex-lg {
		display: flex !important;
	}
	.hero-height {
		min-height: calc(100vh - 6.375rem);
	}
	.side-nav-grid {
		top: 25%;
	}
	.max-height {
		max-height: 40rem;
	}
	.side-nav-grid {
		top: 25%;
	}
	.hide-me-lg {
		display: none !important;
	}
	.m-lg-0 {
		margin: 0 !important;
	}
	.mt-lg-0,
	.my-lg-0 {
		margin-top: 0 !important;
	}
	.mr-lg-0,
	.mx-lg-0 {
		margin-right: 0 !important;
	}
	.mb-lg-0,
	.my-lg-0 {
		margin-bottom: 0 !important;
	}
	.ml-lg-0,
	.mx-lg-0 {
		margin-left: 0 !important;
	}
	.m-lg-0_5 {
		margin: 0.5rem !important;
	}
	.mt-lg-0_5,
	.my-lg-0_5 {
		margin-top: 0.5rem !important;
	}
	.mr-lg-0_5,
	.mx-lg-0_5 {
		margin-right: 0.5rem !important;
	}
	.mb-lg-0_5,
	.my-lg-0_5 {
		margin-bottom: 0.5rem !important;
	}
	.ml-lg-0_5,
	.mx-lg-0_5 {
		margin-left: 0.5rem !important;
	}
	.m-lg-1 {
		margin: 1rem !important;
	}
	.mt-lg-1,
	.my-lg-1 {
		margin-top: 1rem !important;
	}
	.mr-lg-1,
	.mx-lg-1 {
		margin-right: 1rem !important;
	}
	.mb-lg-1,
	.my-lg-1 {
		margin-bottom: 1rem !important;
	}
	.ml-lg-1,
	.mx-lg-1 {
		margin-left: 1rem !important;
	}
	.m-lg-1_5 {
		margin: 1.5rem !important;
	}
	.mt-lg-1_5,
	.my-lg-1_5 {
		margin-top: 1.5rem !important;
	}
	.mr-lg-1_5,
	.mx-lg-1_5 {
		margin-right: 1.5rem !important;
	}
	.mb-lg-1_5,
	.my-lg-1_5 {
		margin-bottom: 1.5rem !important;
	}
	.ml-lg-1_5,
	.mx-lg-1_5 {
		margin-left: 1.5rem !important;
	}
	.m-lg-2 {
		margin: 2rem !important;
	}
	.mt-lg-2,
	.my-lg-2 {
		margin-top: 2rem !important;
	}
	.mr-lg-2,
	.mx-lg-2 {
		margin-right: 2rem !important;
	}
	.mb-lg-2,
	.my-lg-2 {
		margin-bottom: 2rem !important;
	}
	.ml-lg-2,
	.mx-lg-2 {
		margin-left: 2rem !important;
	}
	.m-lg-3 {
		margin: 3rem !important;
	}
	.mt-lg-3,
	.my-lg-3 {
		margin-top: 3rem !important;
	}
	.mr-lg-3,
	.mx-lg-3 {
		margin-right: 3rem !important;
	}
	.mb-lg-3,
	.my-lg-3 {
		margin-bottom: 3rem !important;
	}
	.ml-lg-3,
	.mx-lg-3 {
		margin-left: 3rem !important;
	}
	.m-lg-4 {
		margin: 4rem !important;
	}
	.mt-lg-4,
	.my-lg-4 {
		margin-top: 4rem !important;
	}
	.mr-lg-4,
	.mx-lg-4 {
		margin-right: 4rem !important;
	}
	.mb-lg-4,
	.my-lg-4 {
		margin-bottom: 4rem !important;
	}
	.ml-lg-4,
	.mx-lg-4 {
		margin-left: 4rem !important;
	}
	.m-lg-5 {
		margin: 5rem !important;
	}
	.mt-lg-5,
	.my-lg-5 {
		margin-top: 5rem !important;
	}
	.mr-lg-5,
	.mx-lg-5 {
		margin-right: 5rem !important;
	}
	.mb-lg-5,
	.my-lg-5 {
		margin-bottom: 5rem !important;
	}
	.ml-lg-5,
	.mx-lg-5 {
		margin-left: 5rem !important;
	}
	.m-lg-8 {
		margin: 8rem !important;
	}
	.mt-lg-8,
	.my-lg-8 {
		margin-top: 8rem !important;
	}
	.mr-lg-8,
	.mx-lg-8 {
		margin-right: 8rem !important;
	}
	.mb-lg-8,
	.my-lg-8 {
		margin-bottom: 8rem !important;
	}
	.ml-lg-8,
	.mx-lg-8 {
		margin-left: 8rem !important;
	}
	.m-lg-9 {
		margin: 9rem !important;
	}
	.mt-lg-9,
	.my-lg-9 {
		margin-top: 9rem !important;
	}
	.mr-lg-9,
	.mx-lg-9 {
		margin-right: 9rem !important;
	}
	.mb-lg-9,
	.my-lg-9 {
		margin-bottom: 9rem !important;
	}
	.ml-lg-9,
	.mx-lg-9 {
		margin-left: 9rem !important;
	}
	.m-lg-10 {
		margin: 10rem !important;
	}
	.mt-lg-10,
	.my-lg-10 {
		margin-top: 10rem !important;
	}
	.mr-lg-10,
	.mx-lg-10 {
		margin-right: 10rem !important;
	}
	.mb-lg-10,
	.my-lg-10 {
		margin-bottom: 10rem !important;
	}
	.ml-lg-10,
	.mx-lg-10 {
		margin-left: 10rem !important;
	}
	.p-lg-0 {
		padding: 0 !important;
	}
	.pt-lg-0,
	.py-lg-0 {
		padding-top: 0 !important;
	}
	.pr-lg-0,
	.px-lg-0 {
		padding-right: 0 !important;
	}
	.pb-lg-0,
	.py-lg-0 {
		padding-bottom: 0 !important;
	}
	.pl-lg-0,
	.px-lg-0 {
		padding-left: 0 !important;
	}
	.p-lg-0_5 {
		padding: 0.5rem !important;
	}
	.pt-lg-0_5,
	.py-lg-0_5 {
		padding-top: 0.5rem !important;
	}
	.pr-lg-0_5,
	.px-lg-0_5 {
		padding-right: 0.5rem !important;
	}
	.pb-lg-0_5,
	.py-lg-0_5 {
		padding-bottom: 0.5rem !important;
	}
	.pl-lg-0_5,
	.px-lg-0_5 {
		padding-left: 0.5rem !important;
	}
	.p-lg-1 {
		padding: 1rem !important;
	}
	.pt-lg-1,
	.py-lg-1 {
		padding-top: 1rem !important;
	}
	.pr-lg-1,
	.px-lg-1 {
		padding-right: 1rem !important;
	}
	.pb-lg-1,
	.py-lg-1 {
		padding-bottom: 1rem !important;
	}
	.pl-lg-1,
	.px-lg-1 {
		padding-left: 1rem !important;
	}
	.p-lg-1_5 {
		padding: 1.5rem !important;
	}
	.pt-lg-1_5,
	.py-lg-1_5 {
		padding-top: 1.5rem !important;
	}
	.pr-lg-1_5,
	.px-lg-1_5 {
		padding-right: 1.5rem !important;
	}
	.pb-lg-1_5,
	.py-lg-1_5 {
		padding-bottom: 1.5rem !important;
	}
	.pl-lg-1_5,
	.px-lg-1_5 {
		padding-left: 1.5rem !important;
	}
	.p-lg-2 {
		padding: 2rem !important;
	}
	.pt-lg-2,
	.py-lg-2 {
		padding-top: 2rem !important;
	}
	.pr-lg-2,
	.px-lg-2 {
		padding-right: 2rem !important;
	}
	.pb-lg-2,
	.py-lg-2 {
		padding-bottom: 2rem !important;
	}
	.pl-lg-2,
	.px-lg-2 {
		padding-left: 2rem !important;
	}
	.p-lg-3 {
		padding: 3rem !important;
	}
	.pt-lg-3,
	.py-lg-3 {
		padding-top: 3rem !important;
	}
	.pr-lg-3,
	.px-lg-3 {
		padding-right: 3rem !important;
	}
	.pb-lg-3,
	.py-lg-3 {
		padding-bottom: 3rem !important;
	}
	.pl-lg-3,
	.px-lg-3 {
		padding-left: 3rem !important;
	}
	.p-lg-4 {
		padding: 4rem !important;
	}
	.pt-lg-4,
	.py-lg-4 {
		padding-top: 4rem !important;
	}
	.pr-lg-4,
	.px-lg-4 {
		padding-right: 4rem !important;
	}
	.pb-lg-4,
	.py-lg-4 {
		padding-bottom: 4rem !important;
	}
	.pl-lg-4,
	.px-lg-4 {
		padding-left: 4rem !important;
	}
	.p-lg-5 {
		padding: 5rem !important;
	}
	.pt-lg-5,
	.py-lg-5 {
		padding-top: 5rem !important;
	}
	.pr-lg-5,
	.px-lg-5 {
		padding-right: 5rem !important;
	}
	.pb-lg-5,
	.py-lg-5 {
		padding-bottom: 5rem !important;
	}
	.pl-lg-5,
	.px-lg-5 {
		padding-left: 5rem !important;
	}
	.p-lg-8 {
		padding: 8rem !important;
	}
	.pt-lg-8,
	.py-lg-8 {
		padding-top: 8rem !important;
	}
	.pr-lg-8,
	.px-lg-8 {
		padding-right: 8rem !important;
	}
	.pb-lg-8,
	.py-lg-8 {
		padding-bottom: 8rem !important;
	}
	.pl-lg-8,
	.px-lg-8 {
		padding-left: 8rem !important;
	}
	.p-lg-9 {
		padding: 9rem !important;
	}
	.pt-lg-9,
	.py-lg-9 {
		padding-top: 9rem !important;
	}
	.pr-lg-9,
	.px-lg-9 {
		padding-right: 9rem !important;
	}
	.pb-lg-9,
	.py-lg-9 {
		padding-bottom: 9rem !important;
	}
	.pl-lg-9,
	.px-lg-9 {
		padding-left: 9rem !important;
	}
	.p-lg-10 {
		padding: 10rem !important;
	}
	.pt-lg-10,
	.py-lg-10 {
		padding-top: 10rem !important;
	}
	.pr-lg-10,
	.px-lg-10 {
		padding-right: 10rem !important;
	}
	.pb-lg-10,
	.py-lg-10 {
		padding-bottom: 10rem !important;
	}
	.pl-lg-10,
	.px-lg-10 {
		padding-left: 10rem !important;
	}
}

@media (min-width: 99rem) {
	.ibm-grid__col--sm--0-only {
		display: block;
	}
	[class*="ibm-grid__col--sm--0"][class*="ibm-grid__col--max--"] {
		display: block;
	}
	[class*="ibm-grid__col--sm--0"][class*="ibm-grid__col--max--"].ibm-grid {
		display: flex;
	}
	[class*="ibm-grid__col--md--0"][class*="ibm-grid__col--max--"] {
		display: block;
	}
	[class*="ibm-grid__col--md--0"][class*="ibm-grid__col--max--"].ibm-grid {
		display: flex;
	}
	[class*="ibm-grid__col--lg--0"][class*="ibm-grid__col--max--"] {
		display: block;
	}
	[class*="ibm-grid__col--lg--0"][class*="ibm-grid__col--max--"].ibm-grid {
		display: flex;
	}
	.ibm-grid__col--max--0,
	.ibm-grid__col-max--0--only {
		display: none;
	}
	[class*="ibm-grid__col--"] {
		min-width: 0;
	}
	.ibm-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.ibm-grid.ibm-grid--bleed {
		margin-left: calc((100vw - 99rem) / -2 - 1.5rem);
		margin-right: calc((100vw - 99rem) / -2 - 1.5rem);
		padding-left: calc((100vw - 99rem) / -2 * -1 + 1.5rem);
		padding-right: calc((100vw - 99rem) / -2 * -1 + 1.5rem);
		width: 100vw;
	}
	.ibm-grid--bleed--left {
		padding-left: 1.5rem;
		margin-left: -1rem;
	}
	.ibm-grid--bleed--right {
		padding-right: 1.5rem;
		margin-right: -1rem;
	}
	.ibm-padding {
		padding: calc(3rem / 2);
	}
	.ibm-padding--bottom {
		padding-bottom: calc(3rem / 2);
	}
	.ibm-padding--left {
		padding-left: calc(3rem / 2);
	}
	.ibm-padding--right {
		padding-right: calc(3rem / 2);
	}
	.ibm-padding--top {
		padding-top: calc(3rem / 2);
	}
	.ibm-padding--horizontal {
		padding-left: calc(3rem / 2);
		padding-right: calc(3rem / 2);
	}

	.ibm-padding--vertical {
		padding-bottom: calc(3rem / 2);
		padding-top: calc(3rem / 2);
	}
	.hide-max {
		display: none;
	}
	.display-max {
		display: block;
	}
	.display-max[class*="ibm-grid"] {
		display: flex;
	}
	.flex-max {
		display: flex !important;
	}
	.m-max-0 {
		margin: 0 !important;
	}
	.mt-max-0,
	.my-max-0 {
		margin-top: 0 !important;
	}
	.mr-max-0,
	.mx-max-0 {
		margin-right: 0 !important;
	}
	.mb-max-0,
	.my-max-0 {
		margin-bottom: 0 !important;
	}
	.ml-max-0,
	.mx-max-0 {
		margin-left: 0 !important;
	}
	.m-max-0_5 {
		margin: 0.5rem !important;
	}
	.mt-max-0_5,
	.my-max-0_5 {
		margin-top: 0.5rem !important;
	}
	.mr-max-0_5,
	.mx-max-0_5 {
		margin-right: 0.5rem !important;
	}
	.mb-max-0_5,
	.my-max-0_5 {
		margin-bottom: 0.5rem !important;
	}
	.ml-max-0_5,
	.mx-max-0_5 {
		margin-left: 0.5rem !important;
	}
	.m-max-1 {
		margin: 1rem !important;
	}
	.mt-max-1,
	.my-max-1 {
		margin-top: 1rem !important;
	}
	.mr-max-1,
	.mx-max-1 {
		margin-right: 1rem !important;
	}
	.mb-max-1,
	.my-max-1 {
		margin-bottom: 1rem !important;
	}
	.ml-max-1,
	.mx-max-1 {
		margin-left: 1rem !important;
	}
	.m-max-1_5 {
		margin: 1.5rem !important;
	}
	.mt-max-1_5,
	.my-max-1_5 {
		margin-top: 1.5rem !important;
	}
	.mr-max-1_5,
	.mx-max-1_5 {
		margin-right: 1.5rem !important;
	}
	.mb-max-1_5,
	.my-max-1_5 {
		margin-bottom: 1.5rem !important;
	}
	.ml-max-1_5,
	.mx-max-1_5 {
		margin-left: 1.5rem !important;
	}
	.m-max-2 {
		margin: 2rem !important;
	}
	.mt-max-2,
	.my-max-2 {
		margin-top: 2rem !important;
	}
	.mr-max-2,
	.mx-max-2 {
		margin-right: 2rem !important;
	}
	.mb-max-2,
	.my-max-2 {
		margin-bottom: 2rem !important;
	}
	.ml-max-2,
	.mx-max-2 {
		margin-left: 2rem !important;
	}
	.m-max-3 {
		margin: 3rem !important;
	}
	.mt-max-3,
	.my-max-3 {
		margin-top: 3rem !important;
	}
	.mr-max-3,
	.mx-max-3 {
		margin-right: 3rem !important;
	}
	.mb-max-3,
	.my-max-3 {
		margin-bottom: 3rem !important;
	}
	.ml-max-3,
	.mx-max-3 {
		margin-left: 3rem !important;
	}
	.m-max-4 {
		margin: 4rem !important;
	}
	.mt-max-4,
	.my-max-4 {
		margin-top: 4rem !important;
	}
	.mr-max-4,
	.mx-max-4 {
		margin-right: 4rem !important;
	}
	.mb-max-4,
	.my-max-4 {
		margin-bottom: 4rem !important;
	}
	.ml-max-4,
	.mx-max-4 {
		margin-left: 4rem !important;
	}
	.m-max-5 {
		margin: 5rem !important;
	}
	.mt-max-5,
	.my-max-5 {
		margin-top: 5rem !important;
	}
	.mr-max-5,
	.mx-max-5 {
		margin-right: 5rem !important;
	}
	.mb-max-5,
	.my-max-5 {
		margin-bottom: 5rem !important;
	}
	.ml-max-5,
	.mx-max-5 {
		margin-left: 5rem !important;
	}
	.m-max-8 {
		margin: 8rem !important;
	}
	.mt-max-8,
	.my-max-8 {
		margin-top: 8rem !important;
	}
	.mr-max-8,
	.mx-max-8 {
		margin-right: 8rem !important;
	}
	.mb-max-8,
	.my-max-8 {
		margin-bottom: 8rem !important;
	}
	.ml-max-8,
	.mx-max-8 {
		margin-left: 8rem !important;
	}
	.m-max-9 {
		margin: 9rem !important;
	}
	.mt-max-9,
	.my-max-9 {
		margin-top: 9rem !important;
	}
	.mr-max-9,
	.mx-max-9 {
		margin-right: 9rem !important;
	}
	.mb-max-9,
	.my-max-9 {
		margin-bottom: 9rem !important;
	}
	.ml-max-9,
	.mx-max-9 {
		margin-left: 9rem !important;
	}
	.m-max-10 {
		margin: 10rem !important;
	}
	.mt-max-10,
	.my-max-10 {
		margin-top: 10rem !important;
	}
	.mr-max-10,
	.mx-max-10 {
		margin-right: 10rem !important;
	}
	.mb-max-10,
	.my-max-10 {
		margin-bottom: 10rem !important;
	}
	.ml-max-10,
	.mx-max-10 {
		margin-left: 10rem !important;
	}
	.p-max-0 {
		padding: 0 !important;
	}
	.pt-max-0,
	.py-max-0 {
		padding-top: 0 !important;
	}
	.pr-max-0,
	.px-max-0 {
		padding-right: 0 !important;
	}
	.pb-max-0,
	.py-max-0 {
		padding-bottom: 0 !important;
	}
	.pl-max-0,
	.px-max-0 {
		padding-left: 0 !important;
	}
	.p-max-0_5 {
		padding: 0.5rem !important;
	}
	.pt-max-0_5,
	.py-max-0_5 {
		padding-top: 0.5rem !important;
	}
	.pr-max-0_5,
	.px-max-0_5 {
		padding-right: 0.5rem !important;
	}
	.pb-max-0_5,
	.py-max-0_5 {
		padding-bottom: 0.5rem !important;
	}
	.pl-max-0_5,
	.px-max-0_5 {
		padding-left: 0.5rem !important;
	}
	.p-max-1 {
		padding: 1rem !important;
	}
	.pt-max-1,
	.py-max-1 {
		padding-top: 1rem !important;
	}
	.pr-max-1,
	.px-max-1 {
		padding-right: 1rem !important;
	}
	.pb-max-1,
	.py-max-1 {
		padding-bottom: 1rem !important;
	}
	.pl-max-1,
	.px-max-1 {
		padding-left: 1rem !important;
	}
	.p-max-1_5 {
		padding: 1.5rem !important;
	}
	.pt-max-1_5,
	.py-max-1_5 {
		padding-top: 1.5rem !important;
	}
	.pr-max-1_5,
	.px-max-1_5 {
		padding-right: 1.5rem !important;
	}
	.pb-max-1_5,
	.py-max-1_5 {
		padding-bottom: 1.5rem !important;
	}
	.pl-max-1_5,
	.px-max-1_5 {
		padding-left: 1.5rem !important;
	}
	.p-max-2 {
		padding: 2rem !important;
	}
	.pt-max-2,
	.py-max-2 {
		padding-top: 2rem !important;
	}
	.pr-max-2,
	.px-max-2 {
		padding-right: 2rem !important;
	}
	.pb-max-2,
	.py-max-2 {
		padding-bottom: 2rem !important;
	}
	.pl-max-2,
	.px-max-2 {
		padding-left: 2rem !important;
	}
	.p-max-3 {
		padding: 3rem !important;
	}
	.pt-max-3,
	.py-max-3 {
		padding-top: 3rem !important;
	}
	.pr-max-3,
	.px-max-3 {
		padding-right: 3rem !important;
	}
	.pb-max-3,
	.py-max-3 {
		padding-bottom: 3rem !important;
	}
	.pl-max-3,
	.px-max-3 {
		padding-left: 3rem !important;
	}
	.p-max-4 {
		padding: 4rem !important;
	}
	.pt-max-4,
	.py-max-4 {
		padding-top: 4rem !important;
	}
	.pr-max-4,
	.px-max-4 {
		padding-right: 4rem !important;
	}
	.pb-max-4,
	.py-max-4 {
		padding-bottom: 4rem !important;
	}
	.pl-max-4,
	.px-max-4 {
		padding-left: 4rem !important;
	}
	.p-max-5 {
		padding: 5rem !important;
	}
	.pt-max-5,
	.py-max-5 {
		padding-top: 5rem !important;
	}
	.pr-max-5,
	.px-max-5 {
		padding-right: 5rem !important;
	}
	.pb-max-5,
	.py-max-5 {
		padding-bottom: 5rem !important;
	}
	.pl-max-5,
	.px-max-5 {
		padding-left: 5rem !important;
	}
	.p-max-8 {
		padding: 8rem !important;
	}
	.pt-max-8,
	.py-max-8 {
		padding-top: 8rem !important;
	}
	.pr-max-8,
	.px-max-8 {
		padding-right: 8rem !important;
	}
	.pb-max-8,
	.py-max-8 {
		padding-bottom: 8rem !important;
	}
	.pl-max-8,
	.px-max-8 {
		padding-left: 8rem !important;
	}
	.p-max-9 {
		padding: 9rem !important;
	}
	.pt-max-9,
	.py-max-9 {
		padding-top: 9rem !important;
	}
	.pr-max-9,
	.px-max-9 {
		padding-right: 9rem !important;
	}
	.pb-max-9,
	.py-max-9 {
		padding-bottom: 9rem !important;
	}
	.pl-max-9,
	.px-max-9 {
		padding-left: 9rem !important;
	}
	.p-max-10 {
		padding: 10rem !important;
	}
	.pt-max-10,
	.py-max-10 {
		padding-top: 10rem !important;
	}
	.pr-max-10,
	.px-max-10 {
		padding-right: 10rem !important;
	}
	.pb-max-10,
	.py-max-10 {
		padding-bottom: 10rem !important;
	}
	.pl-max-10,
	.px-max-10 {
		padding-left: 10rem !important;
	}
}

@media (min-width: 320px) {
	.ibm-type-e {
		font-size: calc(18px + 0.00625 * (100vw - 320px));
		line-height: calc(24px + 0.00625 * (100vw - 320px));
		max-width: calc(600px + 0.275 * (100vw - 320px));
		margin-bottom: calc(24px + 0.025 * (100vw - 320px));
	}
	.ibm-type-f {
		font-size: calc(20px + 0.0125 * (100vw - 320px));
		line-height: calc(26px + 0.0125 * (100vw - 320px));
		max-width: calc(688px + -0.45 * (100vw - 320px));
		margin-bottom: calc(24px + 0.025 * (100vw - 320px));
	}
	.ibm-type-h {
		font-size: calc(28px + 0.0125 * (100vw - 320px));
		line-height: calc(36px + 0.0125 * (100vw - 320px));
		max-width: calc(632px + 0.275 * (100vw - 320px));
	}
	.ibm-type-i {
		font-size: calc(28px + 0.025 * (100vw - 320px));
		line-height: calc(36px + 0.025 * (100vw - 320px));
		max-width: calc(632px + 0.55 * (100vw - 320px));
	}
	.ibm-type-j {
		font-size: calc(42px + 0.08125 * (100vw - 320px));
		line-height: calc(50px + 0.0875 * (100vw - 320px));
		max-width: calc(944px + 1.825 * (100vw - 320px));
	}
	.ibm-type-k {
		font-size: calc(42px + 0.08125 * (100vw - 320px));
		line-height: calc(50px + 0.0875 * (100vw - 320px));
		max-width: calc(944px + 1.825 * (100vw - 320px));
	}
}

@media (min-width: 381px) {
	.ibm-custom-tabs li a[aria-selected="true"]::after {
		content: "";
		border-color: #4a90e2;
	}
}

@media (min-width: 640px) and (min-width: 1056px) {
	.ibm-type-e {
		font-size: calc(20px + 0.00673 * (100vw - 1056px));
		line-height: calc(26px + 0.00673 * (100vw - 1056px));
		max-width: calc(688px + -0.24242 * (100vw - 1056px));
	}
	.ibm-type-f {
		font-size: calc(24px + 0.01347 * (100vw - 1056px));
		line-height: calc(30px + 0.01684 * (100vw - 1056px));
		max-width: calc(544px + 0.2963 * (100vw - 1056px));
	}
}

@media (min-width: 640px) {
	.ibm-type-e {
		font-size: 1.25rem;
		line-height: 1.625rem;
		max-width: 43rem;
		margin-bottom: 2rem;
	}
	.ibm-type-f {
		font-size: 1.25rem;
		line-height: 1.875rem;
		max-width: 34rem;
		margin-bottom: 2rem;
	}
	.ibm-type-g {
		font-weight: 300;
		font-size: calc(24px + 0.00962 * (100vw - 640px));
		line-height: calc(30px + 0.01442 * (100vw - 640px));
		max-width: calc(544px + 0.21154 * (100vw - 640px));
	}
	.ibm-type-h {
		font-size: 2rem;
		line-height: 2.5rem;
		max-width: 45rem;
		font-size: calc(32px + 0.00962 * (100vw - 640px));
		line-height: calc(40px + 0.00962 * (100vw - 640px));
		max-width: calc(720px + 0.21154 * (100vw - 640px));
	}
	.ibm-type-i {
		font-size: 2.25rem;
		line-height: 2.75rem;
		max-width: 50.5rem;
		font-size: calc(36px + 0.01442 * (100vw - 640px));
		line-height: calc(44px + 0.01442 * (100vw - 640px));
		max-width: calc(808px + 0.32692 * (100vw - 640px));
	}
	.ibm-type-j {
		font-size: 4.25rem;
		line-height: 4.875rem;
		max-width: 95.5rem;
		font-size: calc(68px + 0.21154 * (100vw - 640px));
		line-height: calc(78px + 0.20673 * (100vw - 640px));
		max-width: calc(1528px + 4.61538 * (100vw - 640px));
	}
	.ibm-type-k {
		font-size: 4.25rem;
		line-height: 4.875rem;
		max-width: 95.5rem;
		font-size: calc(68px + 0.21154 * (100vw - 640px));
		line-height: calc(78px + 0.20673 * (100vw - 640px));
		max-width: calc(1528px + 4.61538 * (100vw - 640px));
	}
}

@media only screen and (min-width: 768px) {
	.force-right {
		position: relative;
		right: -1rem;
	}
}

@media (min-width: 770px) {
	#program-overlay img {
		max-height: calc((50vw - 2rem) * 1);
	}
	#speaker-overlay img {
		max-height: calc((50vw - 2rem) * 1);
	}
}

@media only screen and (min-width: 1055px) {
	.force-left {
		position: relative;
		left: -1rem;
	}
}

@media (min-width: 1056px) {
	.ibm-type-a {
		font-size: calc(12px + 0.00673 * (100vw - 1056px));
		line-height: calc(16px + 0.0101 * (100vw - 1056px));
		max-width: calc(424px + 0.22896 * (100vw - 1056px));
		letter-spacing: calc(0.32px + -0.00054 * (100vw - 1056px));
		margin-bottom: calc(16px + 0.01347 * (100vw - 1056px));
	}
	.ibm-type-b {
		font-size: calc(14px + 0.00673 * (100vw - 1056px));
		line-height: calc(20px + 0.00673 * (100vw - 1056px));
		max-width: calc(480px + 0.20202 * (100vw - 1056px));
		letter-spacing: calc(0.16px + -0.00027 * (100vw - 1056px));
		margin-bottom: calc(20px + 0.00673 * (100vw - 1056px));
	}
	.ibm-type-c {
		font-size: calc(16px + 0.00673 * (100vw - 1056px));
		line-height: calc(22px + 0.00673 * (100vw - 1056px));
		max-width: calc(560px + 0.21549 * (100vw - 1056px));
		margin-bottom: calc(24px + 0.01347 * (100vw - 1056px));
	}
	.ibm-type-d {
		font-size: calc(16px + 0.00673 * (100vw - 1056px));
		line-height: calc(22px + 0.00673 * (100vw - 1056px));
		max-width: calc(560px + 0.21549 * (100vw - 1056px));
		margin-bottom: calc(16px + 0.02694 * (100vw - 1056px));
	}
	.ibm-type-g {
		font-size: 1.75rem;
		line-height: 2.25rem;
		max-width: 39.5rem;
		font-size: calc(28px + 0.00673 * (100vw - 1056px));
		line-height: calc(36px + 0.00673 * (100vw - 1056px));
		max-width: calc(632px + 0.14815 * (100vw - 1056px));
	}
	.ibm-type-h {
		font-size: 2.25rem;
		line-height: 2.75rem;
		max-width: 50.5rem;
		font-size: calc(36px + 0.0101 * (100vw - 1056px));
		line-height: calc(44px + 0.0101 * (100vw - 1056px));
		max-width: calc(808px + 0.22896 * (100vw - 1056px));
	}
	.ibm-type-i {
		font-size: 2.625rem;
		line-height: 3.125rem;
		max-width: 59rem;
		font-size: calc(42px + 0.0303 * (100vw - 1056px));
		line-height: calc(50px + 0.03367 * (100vw - 1056px));
		max-width: calc(944px + 0.6734 * (100vw - 1056px));
	}
	.ibm-type-j {
		font-size: 9.75rem;
		line-height: 10.25rem;
		max-width: 215.5rem;
		letter-spacing: -0.06rem;
		font-size: calc(156px + 0.0202 * (100vw - 1056px));
		line-height: calc(164px + 0.01684 * (100vw - 1056px));
		max-width: calc(3448px + 0.45791 * (100vw - 1056px));
	}
	.ibm-type-k {
		font-size: 9.75rem;
		line-height: 10.25rem;
		max-width: 215.5rem;
		letter-spacing: -0.04rem;
		font-size: calc(156px + 0.0202 * (100vw - 1056px));
		line-height: calc(164px + 0.01684 * (100vw - 1056px));
		max-width: calc(3448px + 0.45791 * (100vw - 1056px));
	}
}

@media (min-width: 1270px) {
	.side-nav.open {
		width: 14.7rem;
	}
	.side-nav.open {
		width: 14.7rem;
	}
}

@media (min-width: 1650px) {
	.ibm-type-a {
		font-size: 1rem;
		line-height: 1.375rem;
		max-width: 35rem;
		letter-spacing: 0;
		margin-bottom: 1.25rem;
	}
	.ibm-type-b {
		font-size: 1.125rem;
		line-height: 1.25rem;
		max-width: 37.5rem;
		letter-spacing: 0;
		margin-bottom: 1.25rem;
	}
	.ibm-type-c {
		font-size: 1.25rem;
		line-height: 1.625rem;
		max-width: 43rem;
		margin-bottom: 2rem;
	}
	.ibm-type-d {
		font-size: 1.25rem;
		line-height: 1.625rem;
		max-width: 43rem;
		margin-bottom: 2rem;
	}
	.ibm-type-e {
		font-size: 1.25rem;
		line-height: 1.875rem;
		max-width: 34rem;
	}
	.ibm-type-g {
		font-size: 2rem;
		line-height: 2.5rem;
		max-width: 45rem;
	}
	.ibm-type-h {
		font-size: 2.625rem;
		line-height: 3.125rem;
		max-width: 59rem;
	}
	.ibm-type-i {
		font-size: 3.75rem;
		line-height: 4.375rem;
		max-width: 84rem;
	}
	.ibm-type-j {
		font-size: 10.5rem;
		line-height: 10.875rem;
		max-width: 232.5rem;
	}
	.ibm-type-k {
		font-size: 10.5rem;
		line-height: 10.875rem;
		max-width: 232.5rem;
	}
}

@media (max-width: 1440px) {
	.waag-header {
		background-size: 100%;
		background-position: top left;
	}
}

@media (max-width: 1000px) {
	#sponsors img {
		max-width: 70%;
		display: block;
		margin: 0 auto;
	}
}

@media (max-width: 770px) {
	.ibm-gradient-mask {
		height: 70%;
		background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
		background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#000',GradientType=0 );
	}
	#program-overlay.fixed {
		height: auto !important;
		max-height: auto !important;
		overflow: auto !important;
		position: absolute !important;
		top: 0 !important;
	}
	.programs-grid.expanded {
		max-height: 700px;
		overflow: hidden;
	}
	html.fixed {
		overflow: scroll !important;
	}
	#speaker-overlay.fixed {
		height: auto !important;
		max-height: auto !important;
		overflow: auto !important;
		position: absolute !important;
		top: 0 !important;
	}
	.speakers-grid.expanded {
		max-height: 1000px;
		overflow: hidden;
		min-height: 0;
	}
}

@media only screen and (max-width: 768px) {
	.todays-ibm {
		max-width: 10rem;
	}
}

@media (max-width: 768px) {
	#section-hero .hero {
		background: url("media/think-mobile-leadspace.jpg") center/cover no-repeat;
	}
	#section-hero .ibm-btn-pri {
		width: 100%;
	}
	.reverse-mobile {
		flex-direction: column-reverse;
	}
	.parallax-image-container img {
		position: relative;
	}
}

@media (max-width: 580px) {
	.speakers-grid .speaker .expand-icon {
		width: 18px;
		height: 18px;
		margin-bottom: 6px;
		display: block;
	}
	.think-table {
		overflow-x: scroll;
		table-layout: initial;
		word-break: initial;
		display: block;
		white-space: nowrap;
		box-shadow: inset -100px -50px 25px -100px #1d4ecc;
	}
}

@media (max-width: 579px) {
	.ibm-think-video-card .ibm-float-bottom-left-0 {
		position: absolute;
		bottom: 10px;
		left: 0px;
	}
}

@media (max-width: 380px) {
	#ibm-pagetitle-h1.home-h1 {
		min-height: 48px;
	}
	#page-title {
		min-height: 48px;
	}
	.ibm-graphic-tabs.ibm-vertical-tabs .ibm-tab-section .ibm-tabs li {
		width: 50% !important;
	}
	#wte-parallax-bg {
		background: transparent;
	}
}

@media (max-width: 48rem) {
	.hide-bg-sm {
		background: none !important;
	}
}

@media (max-width: 47.99rem) {
	.quantum {
		height: 240px;
	}
	.platform-image-wrap .bg-img {
		position: relative;
	}
	.platform-image-wrap.left {
		padding-left: 1rem;
	}
	.platform-image-wrap.right {
		padding-right: 1rem;
	}
	.platform-image-wrap.ibm-grid__col--sm--4 {
		padding-right: 1rem;
	}
}

@media (min-width: 768px) {
	.hero-video #video-background {
		display: none;
	}
}

@media (max-width: 768px) {
	.hero-height #video-button {
		display: none;
	}

	.hero-video video {
		display: none;
	}

	#cta-buttons-video {
		display: none;
	}
}

@media (min-aspect-ratio: 4 / 3) {
	.parallax-image-container {
		position: fixed !important;
		min-height: 100vh;
		min-width: 100%;
		overflow: hidden;
		padding-bottom: 0;
		top: 0;
		z-index: 0;
	}
	.padding-maker-parallax {
		padding: 0;
	}
	.padding-maker-parallax .spacer {
		padding-top: 75%;
		width: 100%;
	}
}

.arrow-after::after {
	content: " \f1b3";
	font-family: icons-ibm-v12;
}

@charset "UTF-8";
html {
	box-sizing: border-box;
}

/*
*, *:before, *:after {
    box-sizing: inherit;
}
*/

/*
==========================================================
                  GENERAL DEFINITIONS
==========================================================
*/
[layout] {
	display: -ms-flexbox;
	display: flex;
}

[layout*="row"],
[layout*="column"] {
	width: 100%;
	max-width: 100%;
}

[layout^="row"] {
	-ms-flex-direction: row;
	flex-direction: row;
}

[layout^="column"] {
	-ms-flex-direction: column;
	flex-direction: column;
}

[layout*="row"][layout*="reverse"] {
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

[layout*="column"][layout*="reverse"] {
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

[layout*="rows"],
[layout*="columns"] {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

[layout="none"] {
	-ms-flex: none;
	flex: none;
}

/*
==========================================================
                  MAIN AXIS ALIGNMENT
==========================================================
*/
[layout*="column"][layout*="top-"],
[layout*="row"][layout*="-left"] {
	-ms-flex-pack: start;
	justify-content: flex-start;
}

[layout~="centered"],
[layout*="column"][layout*="center-"],
[layout*="row"][layout*="-center"] {
	-ms-flex-pack: center;
	justify-content: center;
}

[layout*="column"][layout*="bottom-"],
[layout*="row"][layout*="-right"] {
	-ms-flex-pack: end;
	justify-content: flex-end;
}

[layout*="column"][layout*="spread-"],
[layout*="row"][layout*="-spread"] {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

[layout*="column"][layout*="justify-"],
[layout*="row"][layout*="-justify"] {
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/*
==========================================================
                CROSS AXIS ALIGNMENT
==========================================================
*/
[layout*="column"][layout*="-left"],
[layout*="row"][layout*="top-"] {
	-ms-flex-align: start;
	-ms-grid-row-align: flex-start;
	align-items: flex-start;
}

[layout~="centered"],
[layout*="column"][layout*="-center"],
[layout*="row"][layout*="center-"] {
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
}

[layout*="column"][layout*="-right"],
[layout*="row"][layout*="bottom-"] {
	-ms-flex-align: end;
	-ms-grid-row-align: flex-end;
	align-items: flex-end;
}

[layout*="column"][layout*="-stretch"],
[layout*="row"][layout*="stretch-"] {
	-ms-flex-align: stretch;
	-ms-grid-row-align: stretch;
	align-items: stretch;
}

/*
==========================================================
               MULTI-LINE ALIGNMENT
==========================================================
*/
[layout*="rows"][layout*="top-"],
[layout*="columns"][layout*="-left"] {
	-ms-flex-line-pack: start;
	align-content: flex-start;
}

[layout*="rows"][layout*="bottom-"],
[layout*="columns"][layout*="-right"] {
	-ms-flex-line-pack: end;
	align-content: flex-end;
}

[layout*="rows"][layout*="center-"],
[layout*="columns"][layout*="-center"] {
	-ms-flex-line-pack: center;
	align-content: center;
}

[layout*="rows"][layout*="justify-"],
[layout*="columns"][layout*="-justify"] {
	-ms-flex-line-pack: justify;
	align-content: space-between;
}

[layout*="rows"][layout*="spread-"],
[layout*="columns"][layout*="-spread"] {
	-ms-flex-line-pack: distribute;
	align-content: space-around;
}

[layout*="rows"][layout*="stretch-"],
[layout*="columns"][layout*="-stretch"] {
	-ms-flex-line-pack: stretch;
	align-content: stretch;
}

/*
==========================================================
                       IE10+ HACKS
==========================================================
*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	[layout*="column"]:not([layout*="row"]) > * {
		max-width: auto;
	}
	[layout*="column"][self*="top"] {
		height: auto !important;
	}
	[self~="size-"] > * {
		height: auto;
	}
}

/*
==========================================================
                    SELF ALIGNMENT
==========================================================
*/
[layout*="column"]:not([layout*="row"]) [self*="left"],
[layout*="row"]:not([layout*="column"]) [self*="top"] {
	-ms-flex-item-align: start;
	align-self: flex-start;
}

[self~="center"] {
	-ms-flex-item-align: center;
	align-self: center;
}

[layout*="column"]:not([layout*="row"]) [self*="right"],
[layout*="row"]:not([layout*="column"]) [self*="bottom"] {
	-ms-flex-item-align: end;
	align-self: flex-end;
}

[self*="stretch"] {
	-ms-flex-item-align: stretch;
	align-self: stretch;
}

/* ALIGN VIA MARGINS
========================================================== */
/* Container: */
[layout][self*="center"] {
	margin-left: auto;
	margin-right: auto;
}

[layout][self*="right"] {
	margin-right: 0;
}

[layout][self*="left"] {
	margin-left: 0;
}

/* Items: */
[layout*="column"] [self*="bottom"] {
	margin-top: auto;
}

[layout*="column"] [self*="top"] {
	margin-bottom: auto;
}

[layout*="row"] [self*="left"] {
	margin-right: auto;
}

[layout*="row"] [self*="right"] {
	margin-left: auto;
}

/*
==========================================================
                      SELF SIZE
==========================================================
*/
/* Relative size */
[self~="size-1of5"] {
	width: 20%;
}

[self~="size-1of4"] {
	width: 25%;
}

[self~="size-1of3"] {
	width: 33.33333%;
}

[self~="size-2of5"] {
	width: 40%;
}

[self~="size-1of2"] {
	width: 50%;
}

[self~="size-3of5"] {
	width: 60%;
}

[self~="size-2of3"] {
	width: 66.6666%;
}

[self~="size-3of4"] {
	width: 75%;
}

[self~="size-4of5"] {
	width: 80%;
}

[self~="size-1of1"] {
	width: 100%;
}

/* Proportional size*/
[layout*="row"][layout*="-stretch"] > *:not([self*="size-"]),
[layout*="column"][layout*="stretch-"] > *:not([self*="size-"]),
[self~="size-x1"] {
	-ms-flex: 1 0 0% !important;
	flex: 1 0 0% !important;
}

[self~="size-x2"] {
	-ms-flex: 2 0 0% !important;
	flex: 2 0 0% !important;
}

[self~="size-x3"] {
	-ms-flex: 3 0 0% !important;
	flex: 3 0 0% !important;
}

[self~="size-x4"] {
	-ms-flex: 4 0 0% !important;
	flex: 4 0 0% !important;
}

[self~="size-x5"] {
	-ms-flex: 5 0 0% !important;
	flex: 5 0 0% !important;
}

[self~="size-x6"] {
	-ms-flex: 6 0 0% !important;
	flex: 6 0 0% !important;
}

[self~="size-x7"] {
	-ms-flex: 7 0 0% !important;
	flex: 7 0 0% !important;
}

[self~="size-x8"] {
	-ms-flex: 8 0 0% !important;
	flex: 8 0 0% !important;
}

[self~="size-x9"] {
	-ms-flex: 9 0 0% !important;
	flex: 9 0 0% !important;
}

[self*="size-auto"] {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

[self*="size-x0"] {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

/* Fixed max-width size */
[self~="size-xxlarge"] {
	max-width: 1440px;
	width: 100%;
}

[self~="size-xlarge"] {
	max-width: 1200px;
	width: 100%;
}

[self~="size-large"] {
	max-width: 960px;
	width: 100%;
}

[self~="size-larger"] {
	max-width: 840px;
	width: 100%;
}

[self~="size-medium"] {
	max-width: 720px;
	width: 100%;
}

[self~="size-smaller"] {
	max-width: 600px;
	width: 100%;
}

[self~="size-small"] {
	max-width: 480px;
	width: 100%;
}

[self~="size-xsmall"] {
	max-width: 360px;
	width: 100%;
}

[self~="size-xxsmall"] {
	max-width: 240px;
	width: 100%;
}

[self*="size-x"]:not([self*="small"]):not([self*="large"]) {
	-ms-flex-negative: 1;
	flex-shrink: 1;
}

[self~="first"] {
	-ms-flex-order: -1;
	order: -1;
}

[self~="order-1"] {
	-ms-flex-order: 1;
	order: 1;
}

[self~="order-2"] {
	-ms-flex-order: 2;
	order: 2;
}

[self~="order-3"] {
	-ms-flex-order: 3;
	order: 3;
}

[self~="last"] {
	-ms-flex-order: 999;
	order: 999;
}

[layout*="column"]:not([layout*="row"]) > * {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}

/* Optional additional features — (un)comment to include/exclude */
@media screen and (max-width: 64em) {
	[layout*="lg-row"] {
		-ms-flex-direction: row;
		flex-direction: row;
	}
	[layout*="lg-column"] {
		-ms-flex-direction: column;
		flex-direction: column;
	}
	[layout*="lg-rows"],
	[layout*="lg-columns"] {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 52em) {
	[layout*="md-row"] {
		-ms-flex-direction: row;
		flex-direction: row;
	}
	[layout*="md-column"] {
		-ms-flex-direction: column;
		flex-direction: column;
	}
	[layout*="md-rows"],
	[layout*="md-columns"] {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 40em) {
	[layout*="sm-row"] {
		-ms-flex-direction: row;
		flex-direction: row;
	}
	[layout*="sm-column"] {
		-ms-flex-direction: column;
		flex-direction: column;
	}
	[layout*="sm-rows"],
	[layout*="sm-columns"] {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 64em) {
	[self*="lg-full"] {
		-ms-flex: 1 1 100% !important;
		flex: 1 1 100% !important;
		width: 100%;
		max-width: 100%;
	}
	[self*="lg-half"] {
		-ms-flex: 1 1 50% !important;
		flex: 1 1 50% !important;
		width: 50%;
		max-width: 50%;
	}
	[self~="lg-first"] {
		-ms-flex-order: -1;
		order: -1;
	}
	[self~="lg-last"] {
		-ms-flex-order: 999;
		order: 999;
	}
	[self~="lg-hide"] {
		display: none;
	}
	[self~="lg-show"] {
		display: inherit;
	}
}

@media screen and (max-width: 52em) {
	[self*="md-full"] {
		-ms-flex: 1 1 100% !important;
		flex: 1 1 100% !important;
		width: 100%;
		max-width: 100%;
	}
	[self*="md-half"] {
		-ms-flex: 1 1 50% !important;
		flex: 1 1 50% !important;
		width: 50%;
		max-width: 50%;
	}
	[self~="md-first"] {
		-ms-flex-order: -1;
		order: -1;
	}
	[self~="md-last"] {
		-ms-flex-order: 999;
		order: 999;
	}
	[self~="md-hide"] {
		display: none;
	}
	[self~="md-show"] {
		display: inherit;
	}
}

@media screen and (max-width: 40em) {
	[self*="sm-full"] {
		-ms-flex: 1 1 100% !important;
		flex: 1 1 100% !important;
		width: 100%;
		max-width: 100%;
	}
	[self*="sm-half"] {
		-ms-flex: 1 1 50% !important;
		flex: 1 1 50% !important;
		width: 50%;
		max-width: 50%;
	}
	[self~="sm-first"] {
		-ms-flex-order: -1;
		order: -1;
	}
	[self~="sm-last"] {
		-ms-flex-order: 999;
		order: 999;
	}
	[self~="sm-hide"] {
		display: none;
	}
	[self~="sm-show"] {
		display: inherit;
	}
}

.ibm-padding--horizontal-2 {
	padding-left: calc(3rem / 2);
	padding-right: calc(3rem / 2);
}

@media (max-width: 640px) {
	.ibm-padding--horizontal-2 {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

@media (min-width: 48rem) {
	.ibm-padding--horizontal-2 {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.ibm-sup {
	font-size: calc(0.8em * 0.7);
	line-height: 1;
	position: relative;
	top: -0.8em;
}

.landingpage-bg {
	background-image: url("../media/leadspace-02.png");
	background-size: 100%;
	background-position: top;
	background-repeat: no-repeat;
	z-index: 100;
}

.hero-mask.light {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(
		left,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0) 100%
	);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(
		left,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0) 100%
	);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0) 100%
	);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.hero-mask-height {
	max-height: 720px;
}

@media (max-width: 768px) {
	.hero-mask.light {
		background: rgba(244, 244, 244, 0.8);
	}

	.hero-mask-height {
		min-height: auto;
		max-height: auto;
	}
}

.ibm-bg-think-summit {
	background: rgba(06, 49, 153, 1);
}
