:root {
  --black: #000000;
  --white: #FFFFFF;
  --grey: #D8D8D8;
  --pale-grey: #F7F7F7;
  --light-grey: #C3C3C3;
  --dark-grey: #8B8B8B;
  --darker-grey: #434242;
  --yellow: #FAB500;
  --orange: #FE8F1F;
  --tan: #887F7F;
  --red: #ED1C24;
  --blue: #1175BC;
  --paleblue: #E0E6F6;
  --teal: #02CBE0;
  --green: #129644;
  --lime: #81C042;
  --black-rgb: 0,0,0;
  --white-rgb: 255,255,255;
  --grey-rgb: 216,216,216;
  --pale-grey-rgb: 247,247,247;
  --light-grey-rgb: 195,195,195;
  --dark-grey-rgb: 139,139,139;
  --darker-grey-rgb: 67,66,66;
  --yellow-rgb: 250,181,0;
  --orange-rgb: 254,143,31;
  --tan-rgb: 136,127,127;
  --red-rgb: 237,28,36;
  --blue-rgb: 17,117,188;
  --paleblue-rgb: 224,230,246;
  --teal-rgb: 2,203,224;
  --green-rgb: 18,150,68;
  --lime-rgb: 129,192,66;
  --black-button-text: #FFFFFF;
  --white-button-text: #6B6C6E;
  --grey-button-text: #000000;
  --light-grey-button-text: #000000;
  --dark-grey-button-text: #FFFFFF;
  --darker-grey-button-text: #FFFFFF;
  --yellow-button-text: #FFFFFF;
  --orange-button-text: #FFFFFF;
  --red-button-text: #FFFFFF;
  --blue-button-text: #FFFFFF;
  --paleblue-button-text: #535353;
  --teal-button-text: #FFFFFF;
  --green-button-text: #FFFFFF;
  --lime-button-text: #FFFFFF;
  --black-button-border: #FFFFFF;
  --white-button-border: #6B6C6E;
  --grey-button-border: #000000;
  --light-grey-button-border: #000000;
  --dark-grey-button-border: #FFFFFF;
  --darker-grey-button-border: #FFFFFF;
  --yellow-button-border: #FAB500;
  --orange-button-border: #FE8F1F;
  --red-button-border: #ED1C24;
  --blue-button-border: #1175BC;
  --paleblue-button-border: #E0E6F6;
  --teal-button-border: #02CBE0;
  --green-button-border: #129644;
  --lime-button-border: #81C042;
}

.background--black {
  background-color: #000000;
  background-color: var(--black);
}

.analyses__box--color--black {
  border-color: #000000;
  border-color: var(--black);
}

.text--black {
  color: #000000;
  color: var(--black);
}
.text--black h1, .text--black h2, .text--black h3, .text--black h4, .text--black p {
  color: #000000;
  color: var(--black);
}

html.fixedheader header.background--black {
  background-color: #000000;
  background-color: var(--black);
}
html.fixedheader .breakpoint header.background--black {
  background-color: #000000;
  background-color: var(--black);
}

.background--white {
  background-color: #FFFFFF;
  background-color: var(--white);
}

.analyses__box--color--white {
  border-color: #FFFFFF;
  border-color: var(--white);
}

.text--white {
  color: #FFFFFF;
  color: var(--white);
}
.text--white h1, .text--white h2, .text--white h3, .text--white h4, .text--white p {
  color: #FFFFFF;
  color: var(--white);
}

html.fixedheader header.background--white {
  background-color: #FFFFFF;
  background-color: var(--white);
}
html.fixedheader .breakpoint header.background--white {
  background-color: #FFFFFF;
  background-color: var(--white);
}

.background--grey {
  background-color: #D8D8D8;
  background-color: var(--grey);
}

.analyses__box--color--grey {
  border-color: #D8D8D8;
  border-color: var(--grey);
}

.text--grey {
  color: #D8D8D8;
  color: var(--grey);
}
.text--grey h1, .text--grey h2, .text--grey h3, .text--grey h4, .text--grey p {
  color: #D8D8D8;
  color: var(--grey);
}

html.fixedheader header.background--grey {
  background-color: #D8D8D8;
  background-color: var(--grey);
}
html.fixedheader .breakpoint header.background--grey {
  background-color: #D8D8D8;
  background-color: var(--grey);
}

.background--pale-grey {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
}

.analyses__box--color--pale-grey {
  border-color: #F7F7F7;
  border-color: var(--pale-grey);
}

.text--pale-grey {
  color: #F7F7F7;
  color: var(--pale-grey);
}
.text--pale-grey h1, .text--pale-grey h2, .text--pale-grey h3, .text--pale-grey h4, .text--pale-grey p {
  color: #F7F7F7;
  color: var(--pale-grey);
}

html.fixedheader header.background--pale-grey {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
}
html.fixedheader .breakpoint header.background--pale-grey {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
}

.background--light-grey {
  background-color: #C3C3C3;
  background-color: var(--light-grey);
}

.analyses__box--color--light-grey {
  border-color: #C3C3C3;
  border-color: var(--light-grey);
}

.text--light-grey {
  color: #C3C3C3;
  color: var(--light-grey);
}
.text--light-grey h1, .text--light-grey h2, .text--light-grey h3, .text--light-grey h4, .text--light-grey p {
  color: #C3C3C3;
  color: var(--light-grey);
}

html.fixedheader header.background--light-grey {
  background-color: #C3C3C3;
  background-color: var(--light-grey);
}
html.fixedheader .breakpoint header.background--light-grey {
  background-color: #C3C3C3;
  background-color: var(--light-grey);
}

.background--dark-grey {
  background-color: #8B8B8B;
  background-color: var(--dark-grey);
}

.analyses__box--color--dark-grey {
  border-color: #8B8B8B;
  border-color: var(--dark-grey);
}

.text--dark-grey {
  color: #8B8B8B;
  color: var(--dark-grey);
}
.text--dark-grey h1, .text--dark-grey h2, .text--dark-grey h3, .text--dark-grey h4, .text--dark-grey p {
  color: #8B8B8B;
  color: var(--dark-grey);
}

html.fixedheader header.background--dark-grey {
  background-color: #8B8B8B;
  background-color: var(--dark-grey);
}
html.fixedheader .breakpoint header.background--dark-grey {
  background-color: #8B8B8B;
  background-color: var(--dark-grey);
}

.background--darker-grey {
  background-color: #434242;
  background-color: var(--darker-grey);
}

.analyses__box--color--darker-grey {
  border-color: #434242;
  border-color: var(--darker-grey);
}

.text--darker-grey {
  color: #434242;
  color: var(--darker-grey);
}
.text--darker-grey h1, .text--darker-grey h2, .text--darker-grey h3, .text--darker-grey h4, .text--darker-grey p {
  color: #434242;
  color: var(--darker-grey);
}

html.fixedheader header.background--darker-grey {
  background-color: #434242;
  background-color: var(--darker-grey);
}
html.fixedheader .breakpoint header.background--darker-grey {
  background-color: #434242;
  background-color: var(--darker-grey);
}

.background--yellow {
  background-color: #FAB500;
  background-color: var(--yellow);
}

.analyses__box--color--yellow {
  border-color: #FAB500;
  border-color: var(--yellow);
}

.text--yellow {
  color: #FAB500;
  color: var(--yellow);
}
.text--yellow h1, .text--yellow h2, .text--yellow h3, .text--yellow h4, .text--yellow p {
  color: #FAB500;
  color: var(--yellow);
}

html.fixedheader header.background--yellow {
  background-color: #FAB500;
  background-color: var(--yellow);
}
html.fixedheader .breakpoint header.background--yellow {
  background-color: #FAB500;
  background-color: var(--yellow);
}

.background--orange {
  background-color: #FE8F1F;
  background-color: var(--orange);
}

.analyses__box--color--orange {
  border-color: #FE8F1F;
  border-color: var(--orange);
}

.text--orange {
  color: #FE8F1F;
  color: var(--orange);
}
.text--orange h1, .text--orange h2, .text--orange h3, .text--orange h4, .text--orange p {
  color: #FE8F1F;
  color: var(--orange);
}

html.fixedheader header.background--orange {
  background-color: #FE8F1F;
  background-color: var(--orange);
}
html.fixedheader .breakpoint header.background--orange {
  background-color: #FE8F1F;
  background-color: var(--orange);
}

.background--tan {
  background-color: #887F7F;
  background-color: var(--tan);
}

.analyses__box--color--tan {
  border-color: #887F7F;
  border-color: var(--tan);
}

.text--tan {
  color: #887F7F;
  color: var(--tan);
}
.text--tan h1, .text--tan h2, .text--tan h3, .text--tan h4, .text--tan p {
  color: #887F7F;
  color: var(--tan);
}

html.fixedheader header.background--tan {
  background-color: #887F7F;
  background-color: var(--tan);
}
html.fixedheader .breakpoint header.background--tan {
  background-color: #887F7F;
  background-color: var(--tan);
}

.background--red {
  background-color: #ED1C24;
  background-color: var(--red);
}

.analyses__box--color--red {
  border-color: #ED1C24;
  border-color: var(--red);
}

.text--red {
  color: #ED1C24;
  color: var(--red);
}
.text--red h1, .text--red h2, .text--red h3, .text--red h4, .text--red p {
  color: #ED1C24;
  color: var(--red);
}

html.fixedheader header.background--red {
  background-color: #ED1C24;
  background-color: var(--red);
}
html.fixedheader .breakpoint header.background--red {
  background-color: #ED1C24;
  background-color: var(--red);
}

.background--blue {
  background-color: #1175BC;
  background-color: var(--blue);
}

.analyses__box--color--blue {
  border-color: #1175BC;
  border-color: var(--blue);
}

.text--blue {
  color: #1175BC;
  color: var(--blue);
}
.text--blue h1, .text--blue h2, .text--blue h3, .text--blue h4, .text--blue p {
  color: #1175BC;
  color: var(--blue);
}

html.fixedheader header.background--blue {
  background-color: #1175BC;
  background-color: var(--blue);
}
html.fixedheader .breakpoint header.background--blue {
  background-color: #1175BC;
  background-color: var(--blue);
}

.background--paleblue {
  background-color: #E0E6F6;
  background-color: var(--paleblue);
}

.analyses__box--color--paleblue {
  border-color: #E0E6F6;
  border-color: var(--paleblue);
}

.text--paleblue {
  color: #E0E6F6;
  color: var(--paleblue);
}
.text--paleblue h1, .text--paleblue h2, .text--paleblue h3, .text--paleblue h4, .text--paleblue p {
  color: #E0E6F6;
  color: var(--paleblue);
}

html.fixedheader header.background--paleblue {
  background-color: #E0E6F6;
  background-color: var(--paleblue);
}
html.fixedheader .breakpoint header.background--paleblue {
  background-color: #E0E6F6;
  background-color: var(--paleblue);
}

.background--teal {
  background-color: #02CBE0;
  background-color: var(--teal);
}

.analyses__box--color--teal {
  border-color: #02CBE0;
  border-color: var(--teal);
}

.text--teal {
  color: #02CBE0;
  color: var(--teal);
}
.text--teal h1, .text--teal h2, .text--teal h3, .text--teal h4, .text--teal p {
  color: #02CBE0;
  color: var(--teal);
}

html.fixedheader header.background--teal {
  background-color: #02CBE0;
  background-color: var(--teal);
}
html.fixedheader .breakpoint header.background--teal {
  background-color: #02CBE0;
  background-color: var(--teal);
}

.background--green {
  background-color: #129644;
  background-color: var(--green);
}

.analyses__box--color--green {
  border-color: #129644;
  border-color: var(--green);
}

.text--green {
  color: #129644;
  color: var(--green);
}
.text--green h1, .text--green h2, .text--green h3, .text--green h4, .text--green p {
  color: #129644;
  color: var(--green);
}

html.fixedheader header.background--green {
  background-color: #129644;
  background-color: var(--green);
}
html.fixedheader .breakpoint header.background--green {
  background-color: #129644;
  background-color: var(--green);
}

.background--lime {
  background-color: #81C042;
  background-color: var(--lime);
}

.analyses__box--color--lime {
  border-color: #81C042;
  border-color: var(--lime);
}

.text--lime {
  color: #81C042;
  color: var(--lime);
}
.text--lime h1, .text--lime h2, .text--lime h3, .text--lime h4, .text--lime p {
  color: #81C042;
  color: var(--lime);
}

html.fixedheader header.background--lime {
  background-color: #81C042;
  background-color: var(--lime);
}
html.fixedheader .breakpoint header.background--lime {
  background-color: #81C042;
  background-color: var(--lime);
}

.button--black span {
  background-color: #000000;
  background-color: var(--black);
  color: #FFFFFF;
  color: var(--black-button-text);
  border-color: #FFFFFF;
  border-color: var(--black-button-border);
}

.button--white span {
  background-color: #FFFFFF;
  background-color: var(--white);
  color: #6B6C6E;
  color: var(--white-button-text);
  border-color: #6B6C6E;
  border-color: var(--white-button-border);
}

.button--grey span {
  background-color: #D8D8D8;
  background-color: var(--grey);
  color: #000000;
  color: var(--grey-button-text);
  border-color: #000000;
  border-color: var(--grey-button-border);
}

.button--pale-grey span {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
  color: var(--pale-grey-button-text);
  border-color: var(--pale-grey-button-border);
}

.button--light-grey span {
  background-color: #C3C3C3;
  background-color: var(--light-grey);
  color: #000000;
  color: var(--light-grey-button-text);
  border-color: #000000;
  border-color: var(--light-grey-button-border);
}

.button--dark-grey span {
  background-color: #8B8B8B;
  background-color: var(--dark-grey);
  color: #FFFFFF;
  color: var(--dark-grey-button-text);
  border-color: #FFFFFF;
  border-color: var(--dark-grey-button-border);
}

.button--darker-grey span {
  background-color: #434242;
  background-color: var(--darker-grey);
  color: #FFFFFF;
  color: var(--darker-grey-button-text);
  border-color: #FFFFFF;
  border-color: var(--darker-grey-button-border);
}

.button--yellow span {
  background-color: #FAB500;
  background-color: var(--yellow);
  color: #FFFFFF;
  color: var(--yellow-button-text);
  border-color: #FAB500;
  border-color: var(--yellow-button-border);
}

.button--orange span {
  background-color: #FE8F1F;
  background-color: var(--orange);
  color: #FFFFFF;
  color: var(--orange-button-text);
  border-color: #FE8F1F;
  border-color: var(--orange-button-border);
}

.button--tan span {
  background-color: #887F7F;
  background-color: var(--tan);
  color: var(--tan-button-text);
  border-color: var(--tan-button-border);
}

.button--red span {
  background-color: #ED1C24;
  background-color: var(--red);
  color: #FFFFFF;
  color: var(--red-button-text);
  border-color: #ED1C24;
  border-color: var(--red-button-border);
}

.button--blue span {
  background-color: #1175BC;
  background-color: var(--blue);
  color: #FFFFFF;
  color: var(--blue-button-text);
  border-color: #1175BC;
  border-color: var(--blue-button-border);
}

.button--paleblue span {
  background-color: #E0E6F6;
  background-color: var(--paleblue);
  color: #535353;
  color: var(--paleblue-button-text);
  border-color: #E0E6F6;
  border-color: var(--paleblue-button-border);
}

.button--teal span {
  background-color: #02CBE0;
  background-color: var(--teal);
  color: #FFFFFF;
  color: var(--teal-button-text);
  border-color: #02CBE0;
  border-color: var(--teal-button-border);
}

.button--green span {
  background-color: #129644;
  background-color: var(--green);
  color: #FFFFFF;
  color: var(--green-button-text);
  border-color: #129644;
  border-color: var(--green-button-border);
}

.button--lime span {
  background-color: #81C042;
  background-color: var(--lime);
  color: #FFFFFF;
  color: var(--lime-button-text);
  border-color: #81C042;
  border-color: var(--lime-button-border);
}

.phmt-made-platform-overview {
  border-radius: 50%;
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
  padding: 20px;
}
.phmt-made-platform-overview-note {
  font-size: 0.8em;
}
.phmt-made-platform-overview svg {
  max-width: 100%;
}
.phmt-made-platform-overview svg #platform-ram, .phmt-made-platform-overview svg #platform-made, .phmt-made-platform-overview svg #platform-sra, .phmt-made-platform-overview svg #platform-phm {
  cursor: pointer;
}
.phmt-made-platform-overview svg #platform-phm:hover {
  transform: matrix(1.01, 0, 0, 1.01, 4, -3);
}
.phmt-made-platform-overview svg #platform-sra:hover {
  transform: matrix(1.01, 0, 0, 1.01, 6, -3);
}
.phmt-made-platform-overview svg #platform-ram:hover {
  transform: matrix(1.01, 0, 0, 1.01, 6, 4);
}
.phmt-made-platform-overview svg #platform-made:hover {
  transform: matrix(1.1, 0, 0, 1.1, 7, 0);
}

.phmt-made-platform-overview-model__body__title {
  font-size: 1.2em;
}
.phmt-made-platform-overview-model__body__image {
  margin-top: 1em;
}
.phmt-made-platform-overview-model__body__text {
  margin-top: 1em;
}

.analyses__box {
  border-width: 5px;
  border-style: solid;
  border-radius: 1em;
  padding: 1em;
  background-color: #FFFFFF;
  background-color: var(--white);
  color: #8B8B8B;
  color: var(--dark-grey);
  display: -ms-grid;
  display: grid;
  grid-template-areas: "body" "image";
}
.analyses__box__body {
  grid-area: body;
  padding: 1em;
  margin: 0;
}
.analyses__box__body__title {
  color: #8B8B8B;
  color: var(--dark-grey);
  margin-top: 0;
  font-size: 1.2em;
}
.analyses__box__body__text {
  color: #8B8B8B;
  color: var(--dark-grey);
}
.analyses__box__image {
  grid-area: image;
  margin-top: 0;
}
.analyses__box__image img {
  max-width: 100%;
  width: auto;
}

.risk-twin-boxes {
  margin: 0 -1em;
  text-align: center;
}
.risk-twin-boxes__box {
  padding: 1em;
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}
.risk-twin-boxes__link {
  text-decoration: none;
  color: #FFFFFF;
  color: var(--white);
}
.risk-twin-boxes__link:hover {
  text-decoration: none;
  color: #FFFFFF;
  color: var(--white);
}
.risk-twin-boxes__image {
  display: block;
}
.risk-twin-boxes__image img {
  max-width: 100%;
  width: auto;
}
.risk-twin-boxes__label {
  display: block;
  font-weight: 600;
  font-size: 1.3em;
  padding: 0 1em;
  line-height: 1.1em;
  min-height: 2em;
}

.solutions-diagram__slide {
  display: none;
}
.solutions-diagram__progress {
  display: none;
}
.solutions-diagram #solution-slide-end {
  display: block;
}

section.no-bottom-padding {
  padding-bottom: 0;
}
section.no-top-padding {
  padding-top: 0;
}

.section__downloads__content .download__item__title {
  color: #FFFFFF;
  color: var(--white);
  display: block;
  padding: 1em 0 !important;
  margin-bottom: 0;
  background-color: transparent;
  font-size: 1em !important;
  border-radius: 0 !important;
}
.section__downloads__content .download__item a span {
  text-transform: initial;
  border-radius: 30px;
}
.section__downloads__content .download__item a img {
  margin-top: 0;
  margin-bottom: 1em;
}
.section__splash-content {
  position: relative;
  padding: 0;
  min-height: 400px;
}
.section__splash-content--withimage {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 410px;
}
.section__splash-content__body {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 400px;
  padding: 3rem 1em 1em 1em;
}
.section__splash-content__logo {
  max-width: 100px;
}
.section__splash-content__title {
  color: #FFFFFF;
  color: var(--white);
  line-height: 1.1em;
  margin-top: 0.5em;
  font-size: 2em;
}
.section__splash-content__text {
  color: #FFFFFF;
  color: var(--white);
  line-height: 1.1em;
}
.section__splash-content__button__container a {
  display: inline-block;
  overflow: hidden;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 20px;
  text-align: center;
  color: #FFFFFF;
  color: var(--white);
  line-height: 1.5em;
  font-size: 14px;
  background-color: #1175BC;
  background-color: var(--blue);
}
.section__split-content {
  padding-bottom: 0;
  overflow-x: hidden !important;
}
.section__split-content__title {
  font-size: 2em;
}
.section__split-content__image {
  background-position: center;
  grid-area: image;
  min-height: 400px;
}
.section__split-content__text {
  margin-top: 0;
  padding: 1rem 12px;
  grid-area: text;
}
.section__split-content__text .split-content__text__title {
  line-height: 1em;
  margin-bottom: 0.5em;
  display: block;
}
.section__split-content__row {
  padding-bottom: 1em;
}
.section__split-content__grid.layout--right {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "text" "image";
}
.section__split-content__intro {
  padding-bottom: 1rem;
}
.section__tabs-main__intro {
  padding: 3rem 0 0;
}
.section__tabs-main__title {
  margin-bottom: 0;
  font-size: 2em;
}
.section__tabs-main__headers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  grid-auto-rows: 1fr;
  align-items: center;
}
.section__tabs-main__headers__inner {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.section__tabs-main__right-header {
  text-align: left;
  margin-top: 0;
  box-shadow: 20px 0px 20px -10px rgba(0, 0, 0, 0.2) inset;
}
.section__tabs-main__right-header.open {
  box-shadow: none;
}
.section__tabs-main__left-header {
  text-align: right;
  margin-top: 0;
  box-shadow: -20px 0px 20px -10px rgba(0, 0, 0, 0.2) inset;
}
.section__tabs-main__left-header.open {
  box-shadow: none;
}
.section__tabs-main__body {
  margin-top: 0;
}
.section__tabs-main__body__tab {
  margin-top: 0;
  display: none;
  padding-top: 2em;
  padding-bottom: 2em;
}
.section__tabs-main__body__tab .container {
  overflow-x: hidden;
}
.section__tabs-main__body__tab.open {
  display: block;
}
.section__tabs-main__body__title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2em;
}
.section__tabs-main__body__text {
  margin-top: -0.5em;
}
.section__tabs-main__body__items {
  padding: 1em 0;
}
.section__tabs-main__tabbutton {
  display: inline-block;
  text-decoration: none;
  padding: 1em;
  max-width: 160px;
}
.section__tabs-main__tabbutton:hover, .section__tabs-main__tabbutton:focus {
  text-decoration: none;
}
.section__tabs-main__tabbutton__icon {
  padding: 1em;
  display: block;
}
.section__tabs-main__tabbutton__icon img {
  max-height: 50px;
}
.section__tabs-main__tabbutton__text {
  display: block;
  color: #FFFFFF;
  color: var(--white);
  font-weight: 600;
  font-size: 1.2em;
  margin-top: 0;
}
.section__grid-logos__bottom {
  padding: 1em 0;
}
.section__grid-logos__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  grid-auto-rows: 1fr;
  align-items: center;
}
.section__grid-logos__box {
  text-align: center;
  padding: 1em 1em;
  margin-top: 0;
}
.section__grid-logos__box img {
  max-width: 100%;
  width: auto;
  max-height: 80px;
}
.section__grid-logos__title {
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 0.5em;
}
.section__grid-logos.section__grid-logos__top .section__grid-logos__grid {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
  padding: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}
.section__grid-logos.section__grid-logos__bottom {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
}
.section__streamlined__title {
  line-height: 1em;
  margin-bottom: 0.5em;
}
.section__main__title {
  border: 0;
  padding-bottom: 0;
  font-size: 2.5em;
}
.section__main__subtitle {
  font-size: 1.4em;
  color: #887F7F;
  color: var(--tan);
  margin-top: 0.5em;
}
.section__main__content {
  grid-template-columns: auto;
  grid-template-areas: "text" "image";
  grid-auto-rows: auto;
}
.section__main__content .main__content__image {
  grid-area: image;
  width: 100%;
  margin: 1rem auto 0;
}
.section__main__content .main__content__text {
  grid-area: text;
}
.section__main__content .main__content__text ul li, .section__main__content .main__content__text ol li {
  margin-top: 0.5em;
}
.section__main__content .main__content__button__container a {
  display: inline-block;
  overflow: hidden;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 600;
}
.section__main__content .main__content__button__container a span {
  display: block;
  padding: 0.4em 1.3em;
}
.section__solution-content__title {
  line-height: 1em;
}
.section__tabs-pills__headers {
  text-align: center;
  margin-top: 0;
}
.section__tabs-pills__headers__inner {
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
}
.section__tabs-pills__header {
  display: inline-block;
  vertical-align: top;
  padding: 1em;
  margin-top: 0;
}
.section__tabs-pills__tabbutton {
  margin-top: 0;
  text-decoration: none;
  display: inline-block;
  max-width: 140px;
  text-align: center;
  background-color: #E0E6F6;
  background-color: var(--paleblue);
  padding: 2em 1em;
  border-radius: 1em;
}
.section__tabs-pills__tabbutton:hover, .section__tabs-pills__tabbutton:focus {
  text-decoration: none;
}
.section__tabs-pills__tabbutton__icon {
  padding: 1em;
  display: block;
}
.section__tabs-pills__tabbutton__icon img {
  max-height: 50px;
}
.section__tabs-pills__tabbutton__text {
  display: block;
  line-height: 1em;
  color: #434242;
  color: var(--darker-grey);
  font-weight: 600;
  font-size: 1.2em;
  margin-top: 0;
  min-height: 2em;
}

.phmt-made-platform-overview-model .section__tabs-pill__body {
  font-size: 1.2em;
}
.phmt-made-platform-overview-model .section__tabs-pill__body__title {
  padding: 0.5em 0;
}
.phmt-made-platform-overview-model .section__tabs-pill__body__items {
  padding: 0.5em 0;
  text-align: center;
}
.phmt-made-platform-overview-model .section__tabs-pill__body__text {
  padding: 0.5em 0;
}

header {
  padding-top: 0;
}
header .container {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 400px;
}
header.with--image {
  background-position: center top;
  background-size: auto 400px;
}
header.with--image.wide-screen {
  background-size: cover;
}
header.with--image.background-position-center {
  background-position: center center;
}
header.with--image.background-position-top {
  background-position: center top;
}
header.with--image.background-position-bottom {
  background-position: center bottom;
}
header .header__logo-area {
  position: absolute;
  top: 0em;
  right: 0;
  left: 0;
  margin-bottom: 0;
  margin-top: 0;
}
header .header__logo-area__action-row {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  margin-top: 0;
}
header .header__logo-area__logo {
  margin-top: 0;
  float: none;
}
header .header__logo-area__logo img {
  max-width: 150px;
}
header .header__logo-area__actions {
  margin-top: 0;
  padding: 0.2em 0;
  line-height: 0;
  text-align: center;
}
header .header__logo-area__actions a {
  display: inline-block;
  overflow: hidden;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 15px;
  font-size: 12px;
  text-align: center;
  color: #FFFFFF;
  color: var(--white);
  margin: 5px 2px;
  line-height: 1.5em;
  background-color: #434242;
  background-color: var(--darker-grey);
}
header .header__logo-area__actions a.request-demo {
  background-color: #FE8F1F;
  background-color: var(--orange);
}
header .header__logo-area_secondary-logo {
  margin-top: 1em;
  text-align: right;
  padding: 0 1em;
}
header .header__logo-area_secondary-logo img {
  max-width: 150px;
}
header .header__text {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1em 3em;
  margin-top: 0;
}
header .header__text__title {
  border: 0;
  line-height: 1.1em;
}
header .header__text__intro {
  margin-top: 0;
  padding: 0 0 1em 0;
  font-weight: 600;
}
header .header__text__ctas a {
  display: inline-block;
  overflow: hidden;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 600;
}
header .header__text__ctas a span {
  display: block;
  padding: 0.4em 4em;
  font-size: 16px;
  background-color: #81C042;
  background-color: var(--lime);
}

footer {
  background-color: #D8D8D8;
  background-color: var(--grey);
}
footer .container {
  background-color: #D8D8D8;
  background-color: var(--grey);
  color: #000000;
  color: var(--black);
}
footer .footer__social-links__title {
  color: #000000;
  color: var(--black);
}

.version1 header .header__text {
  padding: 1em 1em;
}

.version2 header.with--image {
  background-size: auto 100%;
}
.version2 header.with--image.wide-screen {
  background-size: cover;
}
.version2 header .header__text {
  background-color: transparent;
  padding: 1em 1em;
}

.version3 header .header__text {
  padding: 1em;
}
.version3 header .header__text__title {
  font-size: 2.3em;
}
.version3 header .header__text__intro {
  font-weight: 400;
}

.version4 header.with--image {
  background-size: auto 400px;
}
.version4 header.with--image.wide-screen {
  background-size: cover;
}
.version4 header .header__text {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 1em 1em;
  margin-top: 0;
}
.version4 header .header__text__title {
  font-size: 2em;
}
.version4 header .header__text__intro {
  font-weight: 400;
}
.version4 .section__main__subtitle {
  margin-top: -3.5em;
  padding-bottom: 2.5em;
}
@media (min-width: 421px) {
  .section__tabs-main__tabbutton {
    max-width: none;
  }
}
@media (min-width: 520px) {
  .section__split-content__image {
    min-height: 500px;
  }
  .section__main__content .main__content__image {
    padding-left: 0px;
    margin-top: 0;
    width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 560px) {
  header .container {
    padding-top: 0;
    height: 400px;
  }
  header.with--image {
    background-size: auto 400px;
  }
  header.with--image.wide-screen {
    background-size: cover;
  }
  header.with--image.background-position-center {
    background-position: center center;
  }
  header.with--image.background-position-top {
    background-position: center top;
  }
  header.with--image.background-position-bottom {
    background-position: center bottom;
  }
  header .header__text {
    position: absolute;
    bottom: 0em;
    right: 0;
    left: 0;
  }
  header .header__logo-area {
    position: static;
    display: -ms-grid;
    display: grid;
    grid-auto-rows: 1fr;
    align-items: center;
    grid-template-columns: 85% 15%;
  }
  header .header__logo-area__action-row {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: 10px 0 10px 15px;
  }
  header .header__logo-area__logo {
    float: none;
  }
  header .header__logo-area__actions {
    text-align: left;
  }
  header .header__logo-area__actions a {
    width: auto;
    font-size: 12px;
    margin: 0 5px;
    padding: 7px 15px;
  }
  header .header__logo-area_secondary-logo {
    text-align: right;
    padding: 0 1em;
    margin-top: 0;
  }
  header .header__logo-area_secondary-logo img {
    max-width: 100%;
  }

  .version1 header .header__text {
    position: absolute;
    bottom: 2em;
    right: 0;
    left: auto;
    background-color: rgba(0, 0, 0, 0.8);
    border-top-left-radius: 3em;
    border-bottom-left-radius: 3em;
    padding: 1em 3em;
  }

  .version2 .header__text {
    position: absolute;
    bottom: 1em;
    right: 1em;
    left: auto;
    padding: 1em 3em;
  }
  .version2 .header__text__intro {
    max-width: 80%;
  }

  .version3 header .header__text {
    background-color: transparent !important;
    position: absolute;
    margin-top: 0;
    bottom: auto;
    top: auto;
    left: 0;
    padding: 1em 1em;
    max-width: 100%;
  }
  .version3 header .header__text__title {
    font-size: 2.3em;
    padding-right: 0;
  }
  .version3 header .header__text__intro {
    max-width: 70%;
  }

  .version4 header.with--image {
    background-size: auto 100%;
  }
  .version4 header.with--image.wide-screen {
    background-size: cover;
  }
  .version4 header .header__text {
    background-color: rgba(255, 255, 255, 0.13);
    padding: 1em 3em;
    margin-top: 0;
    bottom: auto;
    top: 120px;
    max-width: 80%;
    border-top-right-radius: 2em;
    border-bottom-right-radius: 2em;
  }
  .version4 header .header__text__title {
    font-size: 2em;
  }
  .version4 header .header__text__intro {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  header .container {
    width: 100%;
    height: 600px;
  }
  header.with--image {
    background-size: auto 100%;
  }
  header.with--image.wide-screen {
    background-size: cover;
  }
  header.with--image.background-position-center {
    background-position: center center;
  }
  header.with--image.background-position-top {
    background-position: center top;
  }
  header.with--image.background-position-bottom {
    background-position: center bottom;
  }
  header .header__text__title {
    font-size: 2.4em;
  }
  header .header__logo-area {
    grid-template-columns: 85% 15%;
  }
  header .header__logo-area__action-row {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
  }
  header .header__logo-area__logo {
    float: left;
    width: 180px;
  }
  header .header__logo-area__actions {
    text-align: left;
  }
  header .header__logo-area__actions a {
    width: auto;
    font-size: 12px;
    margin: 0 5px;
    padding: 7px 15px;
  }
  header .header__logo-area_secondary-logo {
    text-align: right;
    padding: 0 1em;
  }
  header .header__logo-area_secondary-logo img {
    max-width: 100%;
  }

  body.breakpoint header .header__logo-area {
    position: fixed;
    top: 0;
    left: auto;
    right: auto;
    z-index: 500;
  }
  body.breakpoint header .header__logo-area__action-row {
    width: 653px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
  }
  body.breakpoint header .header__logo-area__logo img {
    background-image: url("/assets/images/landingpages/rams-header-logo-white.png");
    background-size: 150px 40px;
    width: 0;
    height: 0;
    padding: 20px 75px;
  }
  body.breakpoint header .header__logo-area_secondary-logo {
    display: none;
  }

  .version1 header .header__text {
    position: absolute;
    bottom: 2em;
    right: 0;
    left: auto;
    background-color: rgba(0, 0, 0, 0.8);
    border-top-left-radius: 3em;
    border-bottom-left-radius: 3em;
    padding: 1em 3em;
  }

  .version2 header.with--image {
    background-size: auto 100%;
  }
  .version2 header.with--image.wide-screen {
    background-size: cover;
  }
  .version2 .header__text {
    bottom: 2em;
    right: 2em;
  }
  .version2 .header__text__intro {
    max-width: 80%;
  }

  .version3 header .header__text {
    top: 15%;
    left: 22px;
    max-width: 80%;
    padding: 1em 0;
  }

  .version4 header .header__text {
    padding: 1em 3em;
    top: 120px;
    max-width: 70%;
  }
  .solutions-diagram {
    position: relative;
  }
  .solutions-diagram__progress {
    display: block;
    margin-bottom: 3em;
  }
  .solutions-diagram__progress__header {
    padding: 1em;
  }
  .solutions-diagram__progress__header__item {
    display: inline-block;
    width: 46%;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #000;
    line-height: 1.2em;
    margin-left: 2%;
    margin-right: 2%;
    padding-bottom: 1em;
  }
  .solutions-diagram__progress__header__item.text--green {
    border-color: #129644;
    border-color: var(--green);
  }
  .solutions-diagram__progress__header__item.text--blue {
    border-color: #1175BC;
    border-color: var(--blue);
  }
  .solutions-diagram__progress__header__item .font-larger {
    font-size: 1.5em;
  }
  .solutions-diagram__progress__track {
    white-space: nowrap;
  }
  .solutions-diagram__progress__track span {
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: -26px;
    margin-top: 0;
  }
  .solutions-diagram__progress__track span.open {
    opacity: 1;
  }
  .solutions-diagram__progress__track span img {
    max-height: 60px;
  }
  .solutions-diagram__slides {
    position: relative;
  }
  .solutions-diagram__slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin-top: 0;
  }
  .solutions-diagram__slide.open {
    position: relative;
    z-index: 1;
    display: block;
  }
  .solutions-diagram__button {
    text-decoration: none !important;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 119px;
    height: 119px;
    margin-left: -57px;
    margin-top: -61px;
  }
  .solutions-diagram__button:hover {
    background-color: rgba(47, 195, 70, 0.5);
  }
  .solutions-diagram #solution-slide-end {
    display: none;
  }
  .solutions-diagram #solution-slide-end.open {
    display: block;
  }

  .analyses__box--pos--left {
    grid-template-areas: "body image";
    grid-template-columns: 60% 40%;
  }
  .analyses__box--pos--right {
    grid-template-areas: "image body";
    grid-template-columns: 40% 60%;
  }

  .risk-twin-boxes__box:nth-child(2n) {
    max-width: 33%;
  }
  .risk-twin-boxes__box:nth-child(3n) {
    max-width: 33%;
  }
  .risk-twin-boxes__box:nth-child(4n) {
    max-width: 33%;
  }
  .risk-twin-boxes__box:nth-child(5n) {
    max-width: 60%;
  }
  .risk-twin-boxes__box:nth-child(6n) {
    max-width: 40%;
  }

  .section__downloads__content .download__item a span {
    border-radius: 30px;
  }
  .section__streamlined__title {
    line-height: 1em;
    margin-bottom: 0;
  }
  .section__grid-logos__bottom {
    padding: 1em 0;
  }
  .section__grid-logos__grid {
    -ms-grid-columns: 25% 25% 25% 25%;
    grid-template-columns: 25% 25% 25% 25%;
  }
  .section__tabs-main__headers__inner {
    width: 100%;
  }
  .section__tabs-main__tabbutton__icon img {
    max-height: 80px;
  }
  .section__main__content {
    grid-template-columns: auto;
    grid-template-areas: "text" "image";
  }
  .section__main__content .main__content__image {
    padding-left: 0px;
    width: 500px;
    margin: 0 auto;
  }
  .section__tabs-pills__header {
    padding: 1em 1.5em;
  }
  .section__tabs-pills__tabbutton {
    max-width: 204px;
    padding: 2em 1em;
    border-radius: 1em;
  }
  .section__tabs-pills__tabbutton__icon {
    padding: 1.5em;
  }
  .section__tabs-pills__tabbutton__icon img {
    max-height: none;
    height: 80px;
  }
  .section__tabs-pills__tabbutton__text {
    min-height: 2em;
    font-size: 1.2em;
  }
  .section__splash-content .container {
    width: 768px;
    padding: 0 10px;
  }
  .section__splash-content--withimage {
    background-size: auto 420px;
  }
  .section__splash-content__title {
    font-size: 2em;
  }
  .section__splash-content__body {
    top: auto;
    background-color: transparent;
    right: auto;
    max-width: 60%;
    height: auto;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
  .section__split-content {
    overflow-x: hidden !important;
  }
  .section__split-content__grid {
    width: 750px;
    margin: 0 auto;
    overflow-x: visible;
  }
  .section__split-content__grid.layout {
    font-size: 16px;
  }
  .section__split-content__grid.layout--left {
    -ms-grid-columns: 60% 40%;
    grid-template-columns: 60% 40%;
  }
  .section__split-content__grid.layout--left .section__split-content__text {
    padding-left: 12px;
    padding-right: 1rem;
  }
  .section__split-content__grid.layout--left .section__split-content__image {
    margin-right: -50%;
  }
  .section__split-content__grid.layout--right {
    grid-template-areas: unset;
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
  }
  .section__split-content__grid.layout--right .section__split-content__text {
    padding-right: 12px;
    padding-left: 1rem;
    text-align: right;
  }
  .section__split-content__grid.layout--right .section__split-content__image {
    margin-left: -50%;
  }
  .section__split-content__row {
    width: 750px;
    margin: 0 auto;
    padding-bottom: 1em;
    padding-left: 12px;
    padding-right: 12px;
  }
  .section__split-content__image {
    grid-area: unset;
    min-height: 0;
    background-size: 100% auto;
    min-height: 500px;
  }
  .section__split-content__title {
    line-height: 1em;
    margin-bottom: 0.5em;
  }
  .section__split-content__text {
    padding-top: 3rem;
    padding-bottom: 3rem;
    grid-area: unset;
  }
  .section__split-content__text .split-content__text__subtitle {
    border: 0;
    font-size: 1em;
  }
}
@media (min-width: 992px) {
  header .container {
    width: 992px;
    height: 570px;
  }
  header.with--image {
    background-size: 992px 100%;
  }
  header.with--image.wide-screen {
    background-size: cover;
  }
  header.with--image.background-position-center {
    background-position: center center;
  }
  header.with--image.background-position-top {
    background-position: center top;
  }
  header.with--image.background-position-bottom {
    background-position: center bottom;
  }
  header .header__logo-area {
    grid-template-columns: 750px 1fr;
  }
  header .header__logo-area__logo {
    width: 200px;
  }
  header .header__logo-area__actions a {
    width: calc(33.3333% - 8.5em);
    font-size: 12px;
    margin: 0 1em;
    padding: 5px 0;
  }
  header .header__logo-area_secondary-logo img {
    max-width: 150px;
  }

  body.breakpoint header .header__logo-area__action-row {
    width: 750px;
  }

  .version2 header.with--image {
    background-size: 1200px 100%;
  }
  .version2 header.with--image.wide-screen {
    background-size: cover;
  }
  .version3 header .header__text {
    top: 15%;
    left: 126px;
    max-width: 50%;
    padding-right: 0;
  }

  .container {
    width: 768px;
  }

  .analyses__box__body__text {
    font-size: 0.9em;
  }
  .section__downloads__content .download__item a span {
    border-radius: 30px;
  }
  .section__main__content .main__content__image {
    padding-left: 0px;
  }
  .section__tabs-main__headers__inner {
    width: 389px;
  }
  .section__grid-logos__grid {
    margin: 0 -1rem;
  }
  .section__splash-content .container {
    width: 992px;
    padding: 0 10px;
  }
  .section__splash-content--withimage {
    background-size: cover;
  }
  .section__splash-content__title {
    font-size: 2em;
  }
  .section__splash-content__body {
    top: auto;
    background-color: transparent;
    right: auto;
    max-width: 60%;
    height: auto;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
  .section__split-content__image {
    min-height: 500px;
    background-size: cover;
  }
  .section__split-content__row {
    width: 768px;
  }
  .section__split-content__grid {
    width: 992px;
    margin: 0 auto;
  }
  .section__split-content__grid.layout--left {
    -ms-grid-columns: 60% 40%;
    grid-template-columns: 60% 40%;
  }
  .section__split-content__grid.layout--left .section__split-content__text {
    padding-left: 115px;
    padding-right: 2rem;
  }
  .section__split-content__grid.layout--right {
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
  }
  .section__split-content__grid.layout--right .section__split-content__text {
    padding-right: 115px;
    padding-left: 2rem;
    text-align: right;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 20px;
  }

  .container {
    width: 1000px;
  }

  header .container {
    width: 1200px;
    height: 700px;
  }
  header.with--image {
    background-size: 1200px 100%;
  }
  header.with--image.wide-screen {
    background-size: cover;
  }
  header.with--image.background-position-center {
    background-position: center center;
  }
  header.with--image.background-position-top {
    background-position: center top;
  }
  header.with--image.background-position-bottom {
    background-position: center bottom;
  }
  header .header__text__title {
    font-size: 2.8em;
  }
  header .header__logo-area {
    grid-template-columns: 850px 1fr;
  }
  header .header__logo-area__logo {
    width: 200px;
  }
  header .header__logo-area__actions a {
    width: calc(33.3333% - 8.5em);
    font-size: 12px;
  }
  body.breakpoint header .header__logo-area__action-row {
    width: 850px;
  }

  .version2 header.with--image {
    background-size: 1200px 100%;
  }
  .version2 header.with--image.wide-screen {
    background-size: cover;
  }
  .version2 .header__text {
    bottom: 4em;
    right: 4em;
    padding: 1em 3em;
  }
  .section__downloads__content .download__item a span {
    border-radius: 30px;
  }
  .section__splash-content .container {
    width: 1200px;
    padding: 0 10px;
  }
  .section__splash-content--withimage {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 600px;
  }
  .section__splash-content__title {
    font-size: 2.5em;
  }
  .section__splash-content__body {
    top: auto;
    background-color: transparent;
    right: auto;
    max-width: 60%;
    height: auto;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 2rem;
  }
  .section__tabs-main__headers__inner {
    width: 500px;
  }
  .section__split-content__row {
    width: 1000px;
  }
  .section__split-content__grid {
    width: 1200px;
  }
  .section__split-content__grid.layout--left .section__split-content__text {
    padding-left: 115px;
    padding-right: 2rem;
  }
  .section__split-content__grid.layout--left .section__split-content__image {
    margin-right: 0;
  }
  .section__split-content__grid.layout--right .section__split-content__text {
    padding-right: 115px;
    padding-left: 2rem;
    text-align: right;
  }
  .section__split-content__grid.layout--right .section__split-content__image {
    margin-left: 0;
  }
  .section__main__content {
    grid-auto-rows: 1fr;
    grid-template-columns: 55% 45%;
    grid-template-areas: "text image";
  }
  .section__main__content .main__content__image {
    padding-left: 0px;
    width: auto;
    margin: auto;
  }
  .section__grid-logos__box {
    padding: 1em 3em;
  }
  .section__tabs-pills__header {
    padding: 1em 3em;
  }
  .section__tabs-pills__tabbutton {
    max-width: 252px;
  }
  .section__tabs-pills__tabbutton__icon img {
    height: 100px;
  }
  .solutions-diagram__progress {
    display: block;
  }
  .solutions-diagram__progress__header {
    padding: 1em;
  }
  .solutions-diagram__progress__header__item {
    width: 46%;
    line-height: 1.2em;
    margin-left: 2%;
    margin-right: 2%;
    padding-bottom: 1em;
  }
  .solutions-diagram__progress__track span {
    margin-right: -34px;
    margin-top: 0;
  }
  .solutions-diagram__progress__track span img {
    max-height: 80px;
  }
  .solutions-diagram__button {
    margin-left: -76px;
    margin-top: -80px;
    width: 157px;
    height: 157px;
  }

  .version4 header .header__text__title {
    font-size: 2.8em;
  }
  .version3 header .header__text {
    top: 15%;
    left: 115px;
    max-width: 40%;
    padding-right: 0;
  }
}
@media (min-width: 1500px) {
  html {
    font-size: 24px;
  }

  header .container {
    width: 1500px;
    height: 900px;
  }
  header.with--image {
    background-size: 1500px 100%;
  }
  header.with--image.wide-screen {
    background-size: cover;
  }
  header.with--image.background-position-center {
    background-position: center center;
  }
  header.with--image.background-position-top {
    background-position: center top;
  }
  header.with--image.background-position-bottom {
    background-position: center bottom;
  }

  body.breakpoint header .header__logo-area__action-row {
    width: 850px;
  }

  .version2 header.with--image {
    background-size: 1500px 100%;
  }
  .version2 header.with--image.wide-screen {
    background-size: cover;
  }
  .version2 .header__text {
    bottom: 4em;
    right: 6em;
    padding: 1em 3em;
  }
  .version3 header .header__text {
    top: 15%;
    left: 115px;
    max-width: 40%;
    padding-right: 0;
  }

  .container {
    width: 1300px;
  }

  .solutions-diagram__progress__track span {
    margin-right: -52px;
  }
  .solutions-diagram__progress__track span img {
    max-height: 108px;
  }
  .solutions-diagram__button {
    margin-left: -100px;
    margin-top: -104px;
    width: 207px;
    height: 205px;
  }

  .section__tabs-pills__tabbutton {
    max-width: 300px;
  }
  .section__tabs-pills__tabbutton__icon img {
    height: 120px;
  }
  .section__tabs-main__headers__inner {
    width: 640px;
  }
  .section__grid-logos__box {
    padding: 1em 2em;
  }
  .section__split-content__row {
    width: 1300px;
  }
  .section__split-content__grid {
    width: 1500px;
  }
  .section__splash-content__title {
    font-size: 2em;
  }
  .section__main__content {
    grid-template-columns: 61.5% 38.5%;
  }
  .section__main__content .main__content__image {
    padding-top: 0;
    margin-top: -1em;
  }
}
