@charset "UTF-8";
@font-face {
  font-family: "Merriweather";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Merriweather/Merriweather-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/Merriweather/Merriweather-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Merriweather/Merriweather-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-weight: 700;
  font-style: italic;
  src: url("../fonts/Merriweather/Merriweather-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "PublicSans";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/PublicSans/PublicSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "PublicSans";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/PublicSans/PublicSans-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "PublicSans";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/PublicSans/PublicSans-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "PublicSans";
  font-weight: 700;
  font-style: italic;
  src: url("../fonts/PublicSans/PublicSans-BoldItalic.ttf") format("truetype");
}
.node-preview-container {
  position: static;
  background-color: rgba(40, 161, 151, 0.9);
  padding: 23px 30px;
}
.node-preview-container select {
  background-color: #ffffff;
  background-size: 15%;
}

.node-preview-backlink {
  margin-right: 1em;
  color: #000000;
}

.content-preview .layout-container {
  margin-top: 100px;
}

.slds-col.slds-size_5-of-8.outPutBox {
  width: 100%;
}

svg.ext {
  margin-left: 5px;
  width: 16px !important;
  height: 16px !important;
}
svg.ext path {
  stroke: #333333 !important;
}

label {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  margin-bottom: 5px;
}
label.form-required:after {
  margin-left: 5px;
  color: #b10e1e;
  content: "*";
}

input[type=text], input[type=password], input[type=email], input[type=tel] {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  border: solid 2px #dee0e2;
  border-radius: 2px;
  background-color: #ffffff;
  padding: 14px 18px;
  width: 85%;
  max-width: 450px;
  line-height: 1.44;
  color: #6f777b;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  input[type=text], input[type=password], input[type=email], input[type=tel] {
    width: 100%;
  }
}
input[type=text]:focus, input[type=text]:active, input[type=password]:focus, input[type=password]:active, input[type=email]:focus, input[type=email]:active, input[type=tel]:focus, input[type=tel]:active {
  outline: 0;
  border: 2px solid #218379;
  box-shadow: -1px 1px 7px 0 rgba(40, 161, 151, 0.2);
  color: #2c2c2c;
}

textarea,
select {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  border: solid 2px #dee0e2;
  border-radius: 2px;
  background-color: #ffffff;
  padding: 14px 18px;
  width: 100%;
  max-width: 450px;
  line-height: 1.44;
  color: #6f777b;
  font-size: 18px;
}
textarea:focus, textarea:active,
select:focus,
select:active {
  outline: 0;
  border: 2px solid #218379;
  box-shadow: -1px 1px 7px 0 rgba(40, 161, 151, 0.2);
  color: #2c2c2c;
}

select {
  background: url("../images/svg/ic_keyboard_arrow_down_24px.svg") no-repeat 97%;
  background-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form--error {
  border: solid 2px #b10e1e;
  border-radius: 2px;
  background: url("/themes/custom/ita/images/svg/ic_cancel_24px.svg") 98% 50% no-repeat;
  background-color: #ffffff;
}

.form__message--error {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-style: normal;
  margin-top: 5px;
  line-height: 1.43;
  color: #b10e1e;
  font-size: 14px;
}

.form-item {
  margin-bottom: 24px;
}

.js-form-type-checkbox {
  position: relative;
  padding-left: 24px;
}
.js-form-type-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.js-form-type-checkbox input[type=checkbox] + label::after {
  content: none;
}
.js-form-type-checkbox input[type=checkbox]:checked + label::after {
  content: "";
}
.js-form-type-checkbox input[type=checkbox]:focus + label::before, .js-form-type-checkbox input[type=checkbox]:active + label::before {
  outline: 0;
  border: 2px solid #218379;
  box-shadow: -1px 1px 7px 0 rgba(40, 161, 151, 0.2);
  color: #2c2c2c;
}
.js-form-type-checkbox label {
  display: inline-block;
  position: relative;
  margin-left: -24px;
  cursor: pointer;
  padding-left: 35px;
  font-weight: normal;
}
.js-form-type-checkbox label::before, .js-form-type-checkbox label::after {
  display: inline-block;
  position: absolute;
  margin: 0;
  content: "";
}
.js-form-type-checkbox label::before {
  top: -2px;
  left: 0;
  border: solid 2px #dee0e2;
  border-radius: 2px;
  background-color: #ffffff;
  width: 24px;
  height: 24px;
}
.js-form-type-checkbox label::after {
  top: 6px;
  left: 8px;
  transform: rotate(-45deg);
  border-bottom: solid 2px #004b84;
  border-left: solid 2px #004b84;
  width: 10px;
  height: 5px;
}

fieldset {
  padding: 1em;
}
fieldset textarea,
fieldset select {
  width: 85%;
  max-width: 450px;
}
fieldset p {
  margin-top: 0;
}

legend {
  padding: 0 0.5em;
}

.fieldset-legend.form-required:after {
  margin-left: 5px;
  color: #b10e1e;
  content: "*";
}

.radios--wrapper legend {
  padding: 0;
  font-weight: bold;
}

.js-form-type-radio label {
  font-weight: normal;
}

.webform-flex--container > .form-item > input:not([type=checkbox]) {
  width: 85%;
  max-width: 450px;
}

.webform-options-display-side-by-side > div {
  margin-right: 1em;
}

h1 {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.17;
  color: #000000;
  font-size: 40px;
}

h2 {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
}

h3 {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
}

h4 {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
}

h5 {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 18px;
}

h6 {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.44;
  color: #000000;
  font-size: 16px;
}

.ita-naics:before {
  content: "(";
}
.ita-naics:after {
  margin-left: -0.25rem;
  content: ")";
}

.ita-naics__code + .ita-naics__code:before {
  content: " and ";
}

.addtoany_list {
  display: block;
  margin: 10px 0 12px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .ita-content-page__share .addtoany_list, .ita-service-offering__share .addtoany_list {
    display: inline;
    float: right;
    margin-left: 12px;
  }
}
.addtoany_list a .a2a_svg {
  background-color: #106358 !important;
}
.addtoany_list a:hover .a2a_svg, .addtoany_list a:active .a2a_svg {
  opacity: 1;
  background-color: #93d0cb !important;
}
.addtoany_list a:hover .a2a_svg svg path, .addtoany_list a:active .a2a_svg svg path {
  fill: #062b2a !important;
}
.addtoany_list a:hover svg path, .addtoany_list a:active svg path {
  fill: #0c3a38 !important;
}

.ita-landing-page__share,
.ac__share,
.ita-how-to__share {
  padding: 12px 16px 0;
}
@media screen and (min-width: 768px) {
  .ita-landing-page__share,
  .ac__share,
  .ita-how-to__share {
    padding: 12px 36px 0;
  }
}
@media screen and (min-width: 1024px) {
  .ita-landing-page__share,
  .ac__share,
  .ita-how-to__share {
    padding: 12px 48px 0;
  }
}
@media screen and (min-width: 1366px) {
  .ita-landing-page__share,
  .ac__share,
  .ita-how-to__share {
    padding: 12px 48px 0 80px;
  }
}

table {
  margin: 0;
  border: 1px solid #dee0e2;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
table caption {
  margin: 8px 0 12px;
  font-size: 24px;
}
table tr {
  border: 1px solid #dee0e2;
  background-color: #ffffff;
  padding: 6px;
}
table th,
table td {
  border: 1px solid #dee0e2;
  padding: 10px;
  text-align: center;
}
table th {
  letter-spacing: 2px;
  font-weight: bold;
}
table.text-left th,
table.text-left td {
  text-align: left;
}
table.text-right th,
table.text-right td {
  text-align: right;
}
table.text-center th,
table.text-center td {
  text-align: center;
}
table.base-table {
  border: 0;
}
table.base-table tr {
  border: 0;
}
table.base-table th,
table.base-table td {
  border: 0;
}
table.border-table {
  border: 1px #cccccc solid;
}
table.gray tr:nth-child(even) td {
  background-color: #f3f3f3;
}
table.light-blue tr:nth-child(even) td {
  background-color: #ccdeed;
}
table.light-green tr:nth-child(even) td {
  background-color: #93d0cb;
}
table.yellow tr:nth-child(even) td {
  background-color: #ffdfa3;
}
table.fuchsia tr:nth-child(even) td {
  background-color: #eb959e;
}
table.black tr th {
  background-color: #000000 !important;
  color: #ffffff;
}
table.navy-blue tr th {
  background-color: #004b84 !important;
  color: #ffffff;
}
table.hunter-green tr th {
  background-color: #124d48 !important;
  color: #ffffff;
}
table.olive-brown tr th {
  background-color: #5a4317 !important;
  color: #ffffff;
}
table.maroon tr th {
  background-color: #5c040c !important;
  color: #ffffff;
}
table.header-light-blue tr th {
  opacity: 0.57;
  background-color: #004b84 !important;
  color: #ffffff;
}
table.header-light-green tr th {
  opacity: 0.57;
  background-color: #124d48 !important;
  color: #ffffff;
}
table.light-brown tr th {
  opacity: 0.57;
  background-color: #5a4317 !important;
  color: #ffffff;
}
table.light-red tr th {
  opacity: 0.57;
  background-color: #5c040c !important;
  color: #ffffff;
}

.table-responsive {
  overflow-x: auto;
}

body {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  line-height: 1.5;
  font-size: 1.165em;
}

.ita-content-cards__summary p {
  line-height: 1.5em !important;
}

p {
  color: #2c2c2c;
}

ul {
  color: #2c2c2c;
}
ul li {
  color: #2c2c2c;
}
ul li a {
  display: inline;
}

.text--medium {
  line-height: 1.5;
  font-size: 16px;
}

.text--small {
  line-height: 1.43;
  font-size: 14px;
}

.lead {
  line-height: 1.5;
  font-size: 20px;
}

.lead--large {
  line-height: 1.33;
  font-size: 24px;
}

a {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  text-decoration: none;
  color: #005b9f;
}
a:hover, a:active {
  text-decoration: underline;
}
a:focus {
  outline: 2px dotted #228379;
}

.link--secondary {
  position: relative;
  color: #208078;
}
.link--secondary:hover, .link--secondary:focus {
  text-decoration: none;
}
.link--secondary:hover:after, .link--secondary:focus:after {
  right: -8px;
}
.link--secondary:after {
  position: relative;
  right: 0;
  transition: all 0.3s ease-in-out;
  margin-right: 8px;
  margin-left: 24px;
  content: "➞";
}

.link--next,
.link--previous {
  position: relative;
  border: 0;
  color: #005b9f;
}
.link--next:hover, .link--next:focus,
.link--previous:hover,
.link--previous:focus {
  text-decoration: none;
}
.link--next:after,
.link--previous:after {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.link--previous:hover:before, .link--previous:focus:before {
  left: -8px;
}
.link--previous:before {
  left: 0;
  margin-right: 24px;
  margin-left: 8px;
  content: "⟵";
}

.link--next:hover:after, .link--next:focus:after {
  right: -8px;
}
.link--next:after {
  right: 0;
  margin-right: 8px;
  margin-left: 24px;
  content: "⟶";
}

blockquote {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  border-left: 4px solid #218379;
  padding-left: 20px;
  line-height: 1.25;
  font-size: 24px;
}

.blockquote--small {
  line-height: 1.33;
  font-size: 20px;
}

.line-spacer {
  margin: 12px 0 24px;
  border: 0;
  width: 65px;
  height: 3px;
  text-align: left;
}

.ita-header__dropdown a,
.ita-header__menu-title a {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
}

.ita-button,
.webform-submission-form .button {
  border: 0;
  background-color: #004b84;
  cursor: pointer;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
}
.ita-button:hover, .ita-button:focus,
.webform-submission-form .button:hover,
.webform-submission-form .button:focus {
  /*background-color: $button-bg-hover;*/
  text-decoration: none;
}

.ita-button--secondary {
  background-color: #218379;
}
.ita-button--secondary:hover, .ita-button--secondary:focus {
  background-color: #2bac9f;
}

.ita-button--upload {
  display: inline-block;
  background-color: #bfc1c3;
  color: #000000;
}
.ita-button--upload:hover, .ita-button--upload:focus {
  background-color: #dee0e2;
}

.ita-button--cancel {
  border: 2px solid #b10e1e;
  background-color: #ffffff;
  color: #b10e1e;
}
.ita-button--cancel:hover, .ita-button--cancel:focus {
  background-color: #b10e1e;
  color: #ffffff;
}

.cta-button,
.ita-cta-button {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  display: flex;
  align-items: center;
  transform: perspective(1px) translateZ(0);
  border: 0;
  background-color: #004b84;
  padding: 12px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.06em;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}
.cta-button:before,
.ita-cta-button:before {
  position: absolute;
  right: 51%;
  bottom: 0;
  left: 51%;
  z-index: -1;
  background: #0068b7;
  height: 4px;
  content: "";
  filter: brightness(150%);
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.cta-button:hover, .cta-button:focus, .cta-button:active,
.ita-cta-button:hover,
.ita-cta-button:focus,
.ita-cta-button:active {
  text-decoration: none;
}
.cta-button:hover:before, .cta-button:focus:before, .cta-button:active:before,
.ita-cta-button:hover:before,
.ita-cta-button:focus:before,
.ita-cta-button:active:before {
  right: 0;
  left: 0;
}
.cta-button .ext,
.ita-cta-button .ext {
  margin-top: -6px;
}
.cta-button .ext path,
.ita-cta-button .ext path {
  stroke: #ffffff !important;
}
.cta-button.button--inline, .cta-button.ita-button--inline,
.ita-cta-button.button--inline,
.ita-cta-button.ita-button--inline {
  display: block;
  margin: 18px 0;
  background-color: #b10e1e;
  max-width: 254px;
}
.cta-button.button--inline:before, .cta-button.ita-button--inline:before,
.ita-cta-button.button--inline:before,
.ita-cta-button.ita-button--inline:before {
  background: #e01226;
  filter: brightness(175%);
}

.flexible .ita-cta-button {
  display: block;
  position: relative;
}

.embedded-entity img {
  padding: 15px 0;
  max-width: 100%;
  height: auto;
}
.embedded-entity .embedded-video iframe {
  box-shadow: 0.1em 0.1em 0.4em #000000;
}
.embedded-entity.align-left {
  margin: 0 10px 0 0;
}
.embedded-entity.align-left img {
  margin: 0;
  max-width: 100%;
  height: auto;
}
.embedded-entity.align-right {
  margin: 0 0 0 10px;
}
.embedded-entity.align-right img {
  margin: 0;
  max-width: 100%;
  height: auto;
}

.embedded-video iframe {
  box-shadow: 0.1em 0.1em 0.4em #000000;
}

@media screen and (max-width: 768px) {
  .embedded-entity img {
    padding: 15px 0;
  }
  .embedded-entity.align-left {
    float: none;
    margin: 10px 0;
  }
  .embedded-entity.align-right {
    float: none;
    margin: 10px 0;
  }
  .embedded-entity .embedded-video {
    position: relative;
    padding-top: 25px;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .embedded-entity .embedded-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .embedded-video {
    position: relative;
    padding-top: 25px;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .embedded-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
figcaption {
  color: #6d6d6d;
  font-size: 14px;
}

figure {
  margin-left: 0;
}

.ita-how-to-reference__text {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  list-style: none;
  color: #505659;
  font-size: 14px;
}
.ita-how-to-reference__text :nth-child(n) {
  display: inline;
}

.ita-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  font-size: 12px;
}

.ita-tag__link {
  color: #2c2c2c;
  font-weight: 300;
}
.ita-tag__link:hover, .ita-tag__link:focus {
  text-decoration: none;
}
.ita-tag__link:hover .ita-tag, .ita-tag__link:focus .ita-tag {
  background-color: #c3c7ca;
}

.ita-tag {
  margin-right: 10px;
  margin-bottom: 5px;
  border-radius: 4px;
  background-color: #dee0e2;
  padding: 4px 12px;
}
.ita-tag.market-intelligence-term {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 14px;
}

.accordion-switcher {
  float: right;
  background-color: #126eb3;
}

.accordion-switcher-container {
  display: block;
  clear: both;
}

.ita-accordion__container {
  margin: 24px 0;
  padding: 24px 0;
}

.ita-accordion__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  color: #6f777b;
}
.ita-accordion__spacer {
  background-color: #6f777b;
}
.ita-accordion__body {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 36px;
  color: #5b616b;
}
.ita-accordion__trigger {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  background-color: #dee0e2;
  padding: 10px 24px;
  line-height: 1.3;
  color: #2c2c2c;
  font-size: 20px;
}
.ita-accordion__trigger:hover {
  background-color: #bfc1c3;
  cursor: pointer;
}
.ita-accordion__trigger-title {
  padding-right: 16px;
}
.ita-accordion__content {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  transform: translateZ(0);
  transition: all 0.2s;
  opacity: 0;
  background-color: #f9fafa;
  padding-left: 32px;
  max-height: 0;
  overflow: hidden;
  line-height: 0;
  color: #2c2c2c;
}
.ita-accordion__open {
  opacity: 1;
  padding: 32px 45px 32px 32px;
  max-height: 100%;
  line-height: 1.44;
}
.ita-accordion__icon--closed {
  fill: #000000;
}
.ita-accordion__icon--opened {
  fill: #ffffff;
}
.ita-accordion__icon--show {
  display: block;
}
.ita-accordion__icon--hide {
  display: none;
}
.ita-accordion--active {
  background-color: #6f777b;
  color: #ffffff;
}
.ita-accordion--active:hover {
  background-color: #6f777b;
  cursor: pointer;
}

.ita-bio-cards {
  display: flex;
  flex-direction: column;
  align-items: start;
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  width: 100%;
}
.ita-bio-cards__name {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 12px;
  text-align: center;
  color: #6f777b;
  font-size: 24px;
}
.ita-bio-cards__title {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #2c2c2c;
  font-size: 16px;
}
.ita-bio-cards__office {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-top: 12px;
  text-align: center;
  color: #6f777b;
  font-size: 14px;
}
.ita-bio-cards__middle {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  flex: 1;
  margin: auto;
  padding: 0 24px 32px;
  text-align: left;
  line-height: 1.86;
  font-size: 14px;
  -ms-flex: 0 0 auto;
}
.ita-bio-cards__summary {
  padding-top: 24px;
}
.ita-bio-cards__summary p {
  margin: 0;
  color: #6f777b;
}
.ita-bio-cards__img-wrapper {
  position: relative;
  margin: auto;
  border: solid 1px #dee0e2;
  border-radius: 50%;
  width: 190px;
  height: 190px;
  overflow: hidden;
}
.ita-bio-cards__top {
  position: relative;
  padding: 32px 24px 24px;
  width: 100%;
  min-height: 0%;
  box-sizing: border-box;
}
.ita-bio-cards__label {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #dee0e2;
  padding: 3px 22px;
  text-align: center;
  text-transform: uppercase;
  color: #6f777b;
  font-size: 16px;
}
.ita-bio-cards__bottom {
  width: 100%;
}
.ita-bio-cards__bottom .ita-cta-button {
  background-color: #005ea5;
}
.ita-bio-cards__bottom .ita-cta-button:before {
  background: #2b8cc4;
  filter: brightness(70%);
}

.ita-bio-contact-cta {
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .ita-bio-contact-cta {
    padding: 0;
  }
}

.ita-bio-contact-cta__name {
  color: #005b9f;
  font-size: 18px;
  font-weight: 700;
}

.ita-bio-contact-cta__title {
  color: #2c2c2c;
  font-size: 16px;
}

.ita-bio-contact-cta__tags--heading {
  margin-top: 16px;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
}

.ita-bio-contact-cta__tags {
  color: #2c2c2c;
  font-size: 14px;
}

.ita-bio-contact-cta__cta {
  display: inline-block;
  margin-top: 16px;
}

.ita-bio-reference {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border-radius: 0 !important;
  padding: 16px 0;
}

.bio-ref-portrait {
  margin: 0 5px;
  border: 1px solid #dcd8d2;
  background: #eeeeee;
  padding: 5px;
  width: 90px;
  height: 119px;
}
.bio-ref-portrait img {
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ita-bio-reference__image img {
  border-radius: 100%;
}

.ita-bio-reference__content {
  margin-right: 0;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .ita-bio-reference__content {
    flex-basis: 50%;
    margin-right: 8px;
  }
}

.ita-bio-reference__header {
  display: flex;
  flex-wrap: nowrap;
}

.ita-bio-reference__name {
  margin-right: 8px;
}

.ita-bio-reference__info {
  color: #6f777b;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .ita-bio-reference__info--additional {
    flex-basis: 50%;
  }
}
.ita-bio-reference__info--additional .ita-bio-reference__info-item {
  color: #000000;
  font-weight: 700;
}

.ita-bio-reference__info-item--bold {
  color: #000000;
  font-weight: 700;
}

.ita-bio-reference__summary {
  color: #2c2c2c;
}
.ita-bio-reference__summary p:first-child {
  margin-top: 4px;
}
.ita-bio-reference__summary p:last-child {
  margin-bottom: 0;
}

.ita-bio-reference--small {
  flex-wrap: nowrap;
  padding: 20px 0;
  line-height: 1.3;
  font-size: 14px;
}
.ita-bio-reference--small .ita-bio-reference__image {
  margin-right: 11px;
}
.ita-bio-reference--small .ita-bio-reference__image img {
  width: 37px;
  height: 37px;
}
.ita-bio-reference--small .ita-bio-reference__name {
  margin-right: 0;
}
.ita-bio-reference--small .ita-bio-reference__info {
  display: flex;
  flex-wrap: nowrap;
  color: #000000;
  font-size: 14px;
}
.ita-bio-reference--small .ita-bio-reference__info-item {
  margin-right: 5px;
}

.ita-bio-reference--large {
  flex-wrap: nowrap;
  background-color: #f1f1f1;
  padding: 24px;
  line-height: 1.625;
  font-size: 16px;
}
.ita-bio-reference--large .ita-bio-reference__image {
  margin-right: 24px;
}
.ita-bio-reference--large .ita-bio-reference__image img {
  width: 79px;
  height: 79px;
}
.ita-bio-reference--large .ita-bio-reference__name {
  margin-right: 0;
  font-size: 18px;
}

.ita-breadcrumbs {
  background-color: #f8f8f8;
  padding: 8px 16px;
}
@media screen and (min-width: 768px) {
  .ita-breadcrumbs {
    padding: 8px 36px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-breadcrumbs {
    padding: 8px 48px;
  }
}
@media screen and (min-width: 1366px) {
  .ita-breadcrumbs {
    padding-left: 80px;
  }
}

.ita-breadcrumbs__nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.ita-breadcrumbs__nav-item {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  list-style: none;
  color: #505659;
  font-size: 14px;
}
.ita-breadcrumbs__nav-item:after {
  padding-right: 5px;
  padding-left: 5px;
  content: "|";
}
.ita-breadcrumbs__nav-item:last-child:after {
  content: none;
}

.ita-breadcrumbs__nav-link {
  font-weight: normal;
}

.ita-breadcrumbs__nav-text {
  font-weight: 700;
}

.ita-content-cards {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: start;
  transform: perspective(1px) translateZ(0);
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  width: 100%;
  text-decoration: none;
  overflow-x: hidden;
}
.ita-content-cards:before {
  position: absolute;
  right: 51%;
  bottom: 0;
  left: 51%;
  z-index: -1;
  background: #da3fcc;
  height: 4px;
  content: "";
  filter: brightness(150%);
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.ita-content-cards:hover, .ita-content-cards:focus, .ita-content-cards:active {
  background-color: #eaf7ff;
  text-decoration: none;
}
.ita-content-cards:hover.success-story, .ita-content-cards:focus.success-story, .ita-content-cards:active.success-story {
  background-color: #fff0ff;
}
.ita-content-cards:hover.market-intelligence, .ita-content-cards:focus.market-intelligence, .ita-content-cards:active.market-intelligence {
  background-color: #ebfffd;
}
.ita-content-cards:hover:before, .ita-content-cards:focus:before, .ita-content-cards:active:before {
  right: 0;
  left: 0;
}
.ita-content-cards.news .ita-content-cards__spacer,
.ita-content-cards.news .ita-content-cards__category {
  background-color: #18605a;
}
.ita-content-cards.news .ita-content-cards__bottom .ita-cta-button {
  background-color: #18605a;
}
.ita-content-cards.news .ita-content-cards__bottom .ita-cta-button:before {
  background: #228980;
  filter: brightness(150%);
}
.ita-content-cards.blog .ita-content-cards__spacer,
.ita-content-cards.blog .ita-content-cards__category {
  background-color: #218379;
}
.ita-content-cards.blog .ita-content-cards__bottom .ita-cta-button {
  background-color: #218379;
}
.ita-content-cards.blog .ita-content-cards__bottom .ita-cta-button:before {
  background: #2bac9f;
  filter: brightness(50%);
}
.ita-content-cards.feature-article {
  padding: 0;
}
.ita-content-cards.feature-article .ita-content-cards__spacer,
.ita-content-cards.feature-article .ita-content-cards__category {
  background-color: #664c1c;
}
.ita-content-cards.feature-article .ita-content-cards__bottom .ita-cta-button {
  background-color: #664c1c;
}
.ita-content-cards.feature-article .ita-content-cards__bottom .ita-cta-button:before {
  background: #8e6a27;
  filter: brightness(150%);
}
.ita-content-cards.press-release .ita-content-cards__spacer,
.ita-content-cards.press-release .ita-content-cards__category {
  background-color: #cbe8f8;
}
.ita-content-cards.press-release .ita-content-cards__bottom .ita-cta-button {
  background-color: #cbe8f8;
}
.ita-content-cards.press-release .ita-content-cards__bottom .ita-cta-button:before {
  background: #4ba4d7;
  filter: brightness(60%);
}
.ita-content-cards.success-story .ita-content-cards__spacer,
.ita-content-cards.success-story .ita-content-cards__category {
  background-color: #6a1f63;
}
.ita-content-cards.success-story .ita-content-cards__bottom .ita-cta-button {
  background-color: #6a1f63;
}
.ita-content-cards.success-story .ita-content-cards__bottom .ita-cta-button:before {
  background: #912b88;
  filter: brightness(150%);
}
.ita-content-cards.market-intelligence .ita-content-cards__spacer,
.ita-content-cards.market-intelligence .ita-content-cards__category {
  background-color: #93d0cb;
}
.ita-content-cards.market-intelligence .ita-content-cards__bottom .ita-cta-button {
  background-color: #93d0cb;
}
.ita-content-cards.market-intelligence .ita-content-cards__bottom .ita-cta-button:before {
  background: #6fc1ba;
  filter: brightness(70%);
}
.ita-content-cards.advisory-committee-meeting .ita-content-cards__top {
  display: none;
}
.ita-content-cards.advisory-committee-meeting .ita-content-cards__bottom .ita-cta-button {
  background-color: #208078;
}
.ita-content-cards.advisory-committee-meeting .ita-content-cards__bottom .ita-cta-button:before {
  background: #6fc1ba;
  filter: brightness(70%);
}
.ita-content-cards.advisory-committee-meeting__future .ita-content-cards__top {
  display: none;
}

.ita-content-cards__top {
  display: inline-block;
  position: relative;
}
.ita-content-cards__top img {
  display: block;
  width: 100%;
  height: auto;
}

.ita-content-cards__category {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 12px;
}

.ita-content-cards__icon {
  width: 14px;
  height: auto;
}
.ita-content-cards__icon svg {
  display: block;
  height: auto;
  max-height: 14px;
  fill: #ffffff;
}

.ita-content-cards__type {
  padding-left: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.market-intelligence .ita-content-cards__type {
  color: #2c2c2c;
}

.ita-content-cards__category--image {
  position: absolute;
  top: 0;
  left: 0;
}

.ita-content-cards__middle {
  flex: 0 0 auto;
  padding: 32px 24px;
  width: 100%;
  box-sizing: border-box;
}

.ita-content-cards__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 18px;
  margin: 0;
  color: #2c2c2c;
}

.ita-content-cards__spacer {
  background-color: #004b84;
}

.ita-content-cards__source {
  color: #929292;
  font-size: 14px;
}
.ita-content-cards__source .author {
  color: #2c2c2c;
  font-weight: 700;
}

.ita-content-cards__summary p {
  margin: 0;
}

.ita-content-cards__tags {
  margin-top: 16px;
}

.ita-content-cards__bottom {
  margin-top: auto;
  width: 101%;
}
.ita-content-cards__bottom .ita-cta-button {
  background-color: #004b84;
}
.ita-content-cards__bottom .ita-cta-button:before {
  background: #0068b7;
  filter: brightness(150%);
}
.market-intelligence .ita-content-cards__bottom .ita-cta-button {
  color: #2c2c2c;
}

.ita-cta {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .ita-cta {
    flex-wrap: nowrap;
  }
}
.ita-cta .ita-cta-button {
  max-width: 360px;
}

.ita-cta--right {
  flex-direction: row-reverse;
}
.ita-cta--right .ita-cta__image {
  margin-right: 0;
  margin-left: 32px;
}

.ita-cta__image {
  flex-basis: 100%;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .ita-cta__image {
    flex-basis: 50%;
    margin-right: 32px;
    margin-bottom: 0;
  }
}
.ita-cta__image img {
  width: 100%;
  height: auto;
}

.ita-cta__content {
  flex: 1 50%;
}

.ita-cta__content--center {
  text-align: center;
}
.ita-cta__content--center .ita-cta__line {
  margin-right: auto;
  margin-left: auto;
}
.ita-cta__content--center .ita-cta__button .ita-cta-button {
  margin-right: auto;
  margin-left: auto;
}

.ita-cta__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 0;
  color: #6f777b;
}

.ita-cta__line {
  background-color: #6f777b;
}

.ita-cta__body {
  color: #6f777b;
}

.ita-cta__button {
  margin-top: 16px;
}

.ita-download-promo {
  display: flex;
  flex-flow: row wrap;
  padding: 48px 36px;
}
@media screen and (min-width: 768px) {
  .ita-download-promo {
    flex-flow: row nowrap;
  }
}

.ita-download-promo__image {
  margin-bottom: 32px;
  max-width: 290px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .ita-download-promo__image {
    flex-basis: 20%;
    margin-right: 32px;
    margin-bottom: 0;
    max-width: 186px;
  }
}
.ita-download-promo__image img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .ita-download-promo__content {
    flex-basis: 80%;
  }
}

.ita-download-promo__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 18px;
  margin-bottom: 24px;
}

.ita-download-promo__button {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: all 0.3s ease-in-out;
  margin-top: 32px;
  background-color: #004b84;
  padding-right: 12px;
  max-width: 360px;
  color: #ffffff;
}
.ita-download-promo__button:hover, .ita-download-promo__button:focus {
  background-color: #0068b7;
}
.ita-download-promo__button:hover svg, .ita-download-promo__button:focus svg {
  padding-top: 6px;
}
.ita-download-promo__button path {
  fill: #ffffff;
}
.ita-download-promo__button p {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: unset;
  color: #ffffff;
  font-size: 1em;
}
.ita-download-promo__button a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
}
.ita-download-promo__button a p {
  margin: 0;
  padding: 12px;
}

/* CCG Specific style */
.ccg-pdf-download .ita-download-promo {
  padding-left: 0;
}

.ita-email-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #2b8cc4;
  padding: 2rem 4rem;
}
@media screen and (min-width: 1024px) {
  .ita-email-cta {
    flex-direction: row;
    align-content: space-between;
    align-items: center;
  }
}

.ita-email-cta__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .ita-email-cta__header {
    flex-basis: 20%;
    flex-direction: row;
  }
}

.ita-email-cta__image {
  margin: 0 auto 1rem;
  width: 62px;
  height: 50px;
}
@media screen and (min-width: 1024px) {
  .ita-email-cta__image {
    margin: 0 1rem 0 0;
  }
}
.ita-email-cta__image img {
  width: 100%;
  height: auto;
}
.ita-email-cta__image svg {
  width: 62.5px;
  height: 50px;
}

.ita-email-cta__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
  color: #ffffff;
}

.ita-email-cta__content {
  text-align: center;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .ita-email-cta__content {
    flex-basis: 60%;
    text-align: left;
  }
}

.ita-email-cta__social-icons {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.ita-email-cta__social-text {
  margin-right: 1rem;
}

.ita-email-cta__social-link {
  margin-right: 8px;
}
.ita-email-cta__social-link:hover svg, .ita-email-cta__social-link:focus svg {
  fill: #004b84;
}
.ita-email-cta__social-link svg {
  fill: #ffffff;
}

.ita-email-cta__social-link-text {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ita-email-cta__link {
  flex-basis: 20%;
  margin: 1rem 0;
}
@media screen and (min-width: 1024px) {
  .ita-email-cta__link {
    margin: 0 1rem;
  }
}

.ita-gallery-item__metadata {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  justify-content: space-between;
  line-height: 3.43;
  color: #6f777b;
  font-size: 14px;
}
.ita-gallery-item__media-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ita-gallery-item__media-runtime {
  flex-shrink: 0;
  padding-left: 18px;
}
.ita-gallery-item__media-dimensions {
  flex-shrink: 0;
  padding-left: 18px;
}

.ita-hero-banner--card {
  position: relative;
}

.ita-hero-banner__link--card {
  display: inline-block;
}
.ita-hero-banner__link--card .ita-cta-link {
  padding-right: 72px;
}

.ita-hero-banner__background--card {
  background-repeat: no-repeat, no-repeat;
  background-position: 0 -100%, 0 50%;
  background-size: 101%, cover;
  min-height: 200px;
}
@media screen and (min-width: 768px) {
  .ita-hero-banner__background--card {
    min-height: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-hero-banner__background--card {
    background-position: -3px 101%, 0 50%;
    min-height: 500px;
  }
}

.ita-hero-banner__image--card {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ita-hero-banner__content--card {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .ita-hero-banner__content--card {
    bottom: -5%;
    padding: 24px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-hero-banner__content--card {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 50%;
  }
}
@media screen and (min-width: 1366px) {
  .ita-hero-banner__content--card {
    width: 40%;
  }
}

.ita-hero-banner__title--card {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.17;
  color: #000000;
  font-size: 40px;
  margin-bottom: 20px;
  color: #005ea5;
}

.ita-hero-banner__body--card {
  margin-bottom: 20px;
  color: #005ea5;
}

.ita-hero-banner {
  display: flex;
  position: relative;
  flex-direction: column;
  height: 400px;
}
@media screen and (max-width: 1024px) {
  .ita-hero-banner {
    height: 580px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-hero-banner {
    flex-direction: row-reverse;
  }
}

.ita-hero-banner__wave {
  position: absolute;
  bottom: 0;
  left: -2px;
  width: 102%;
  height: 110px;
}
@media screen and (min-width: 1024px) {
  .ita-hero-banner__wave {
    background: url("../images/svg/banner--swirl.svg") no-repeat;
    background-size: cover;
  }
}

.ita-hero-banner__summary {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-top: 24px;
  padding-bottom: 6px;
  color: #ffffff;
  font-size: 20px;
}

.ita-hero-banner__button {
  margin-top: 24px;
  margin-bottom: 24px;
}
.ita-hero-banner__button .ita-cta-button {
  background-color: #ffffff;
  color: #005ea5;
}
.ita-hero-banner__button .ita-cta-button:hover, .ita-hero-banner__button .ita-cta-button:focus {
  background: #004a81;
  color: #ffffff;
}
.ita-hero-banner__button .ita-cta-button:before {
  filter: brightness(150%);
}

.ita-hero-banner__canvas {
  display: flex;
  background-color: #005ea5;
  min-height: 250px;
}
@media screen and (min-width: 1024px) {
  .ita-hero-banner__canvas {
    flex: 1 0 50%;
  }
}

.ita-hero-banner__content {
  background-color: #005ea5;
  padding: 32px 15px 48px;
}
@media screen and (min-width: 768px) {
  .ita-hero-banner__content {
    padding: 32px 36px 48px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-hero-banner__content {
    padding: 32px 36px 60px 48px;
  }
}
@media screen and (min-width: 1366px) {
  .ita-hero-banner__content {
    padding: 32px 48px 60px 80px;
  }
}

.ita-hero-banner__image {
  background-color: #005ea5;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  min-height: 400px;
}
@media screen and (min-width: 1024px) {
  .ita-hero-banner__image {
    flex: 1 0 50%;
    background-size: cover;
    min-height: 250px;
  }
}
.ita-hero-banner__image img {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ita-hero-banner__image--empty {
  background-color: #005ea5;
}
@media screen and (min-width: 1024px) {
  .ita-hero-banner__image--empty {
    flex: 1 0 50%;
    background-size: cover;
    min-height: 250px;
  }
}

.ita-hero-banner__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  color: #ffffff;
}

.ita-highlightitem {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .ita-highlightitem {
    flex-wrap: nowrap;
  }
}

.ita-highlightitem__image {
  margin-right: 24px;
}
.ita-highlightitem__image img {
  border-radius: 100%;
  background-color: #195475;
  padding: 14px;
  width: 100px;
  height: 100px;
}

.ita-highlightitem__heading {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
  width: 100%;
  color: #ffffff;
}

.ita-highlightitem__textblock {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ita-highlightitem__textblock {
    height: 100%;
  }
}

.ita-highlightitem__body {
  flex: 0 0 auto;
  width: 100%;
  color: #ffffff;
}
.ita-highlightitem__body ul li {
  color: #ffffff !important;
}
.ita-highlightitem__body ul li a {
  color: #ffffff !important;
}
.ita-highlightitem__body p {
  color: #ffffff;
}
.ita-highlightitem__body p a {
  text-decoration: underline;
  color: #ffffff;
}

.ita-highlightitem__button {
  display: inline-block;
  margin-top: auto;
  padding-top: 32px;
  width: 100%;
}
.ita-highlightsection--default .ita-highlightitem__button .ita-cta-button {
  background-color: #112e51;
}

.ita-highlightitem--small {
  flex-direction: column;
  align-items: center;
}

.ita-highlightitem__image--small {
  max-width: 60px;
  max-height: 60px;
}
.ita-highlightitem__image--small img {
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  width: 100%;
  height: auto;
}

.ita-highlightitem__heading--small {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
  color: #004b84;
}

.ita-highlightitem__body--small {
  color: #000000;
}
.ita-highlightitem__body--small p {
  color: #000000;
}
.ita-highlightitem__body--small p a {
  text-decoration: underline;
  color: #005b9f;
}

/*
@TODO This component is not used. We should either combine this with content cards or remove it completely.

@styleguide

@title Content Cards (Horizontal)

Cards are multi-purpose. They can be used for articles, news, press releases, general information, events.

#### Small Card
<div class="ita-horizontal-content-cards">
    <div class="ita-horizontal-content-cards__top">
      <div class="ita-horizontal-content-cards__category news">
        <div class="ita-horizontal-content-cards__icon">
          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
            <path id="news-paper" class="cls-1" d="M19.2,2.4H24v18A3.6,3.6,0,0,1,20.4,24H3.6A3.6,3.6,0,0,1,0,20.4V0H19.2Zm0,2.4V20.4a1.2,1.2,0,0,0,2.4,0V4.8ZM2.4,2.4v18a1.2,1.2,0,0,0,1.2,1.2H17a3.576,3.576,0,0,1-.2-1.2V2.4ZM4.8,12h9.6v2.4H4.8Zm0,4.8h9.6v2.4H4.8Zm0-12h9.6V9.6H4.8Z"/>
          </svg>
        </div>
        <div class="ita-horizontal-content-cards__type">
          news
        </div>
      </div>
      <div class="ita-horizontal-content-cards__content">
        <div class="ita-horizontal-content-cards__title">
          How 4 innovatie firms are soaring in Alabama's aerospace industry
        </div>
        <div class="ita-horizontal-content-cards__spacer news">
        </div>
        <div class="ita-tags">
          <a href="/">
            Industry
          </a>
          <a href="/">
            Country / region
          </a>
          <a href="/">
            Topic
          </a>
          <a href="/">
            Stuff
          </a>
        </div>
      </div>
    </div>
    <div class="ita-horizontal-content-cards__bottom news">
      <div class="ita-cta-button">
        <a href="/">
          <p>read more</p>
          <svg xmlns="http://www.w3.org/2000/svg" width="33.014" height="13.9" viewBox="0 0 33.014 13.9">
            <path d="M33.013 6.95L26.063 0v5.213H0v3.475h26.063V13.9z"/>
          </svg>
        </a>
      </div>
    </div>
</div>

#### Large Card Without Image
<div class="ita-horizontal-content-cards">
    <div class="ita-horizontal-content-cards__top">
      <div class="ita-horizontal-content-cards__category articles">
        <div class="ita-horizontal-content-cards__icon">
          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
            <path id="compose" class="cls-1" d="M2.4,4.8V21.6H19.2V14.4L21.6,12V24H0V2.4H12L9.6,4.8Zm12.36-.36,4.8,4.8L9.6,19.2H4.8V14.4Zm1.68-1.68L19.2,0,24,4.8,21.24,7.56l-4.8-4.8Z"/>
          </svg>
        </div>
        <div class="ita-horizontal-content-cards__type">
          article
        </div>
      </div>
      <div class="ita-horizontal-content-cards__content">
        <div class="ita-horizontal-content-cards__title">
          Aerospace & Defense Ducting Market to Reach US$ 3.5 Billion in 2024, Says Stratview Research
        </div>
        <div class="ita-horizontal-content-cards__spacer articles">
        </div>
        <div class="ita-horizontal-content-cards__source">
          <p>July 16, 2019 <span class="author">Author Name</span></p>
        </div>
        <div class="ita-horizontal-content-cards__summary">
          <p>
            This strategic assessment report, from Stratview Research,
            provides a comprehensive analysis that reflects today's aerospace
            & defense ducting market realities and future market possibilities
            for the forecast period of 2019 to 2024.
          </p>
        </div>
        <div class="ita-tags">
          <a href="/">
            Industry
          </a>
          <a href="/">
            Country / region
          </a>
          <a href="/">
            Topic
          </a>
          <a href="/">
            Stuff
          </a>
        </div>
      </div>
    </div>
    <div class="ita-horizontal-content-cards__bottom articles">
      <div class="ita-cta-button">
        <a href="/">
          <p>read more</p>
          <svg xmlns="http://www.w3.org/2000/svg" width="33.014" height="13.9" viewBox="0 0 33.014 13.9">
            <path d="M33.013 6.95L26.063 0v5.213H0v3.475h26.063V13.9z"/>
          </svg>
        </a>
      </div>
    </div>
</div>

#### Large Card With Image
<div class="ita-horizontal-content-cards">
    <div class="ita-horizontal-content-cards__top">
      <img src="../images/sample/example--cta.jpg" alt="test image">
      <div class="ita-horizontal-content-cards__category ita-horizontal-content-cards__category--img blogs">
        <div class="ita-horizontal-content-cards__icon">
          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
            <path id="conversation" class="cls-1" d="M20.4,13.2v3.6l-3.6-3.6H9.6a2.4,2.4,0,0,1-2.4-2.4V2.4A2.407,2.407,0,0,1,9.6,0h12A2.4,2.4,0,0,1,24,2.4v8.4a2.4,2.4,0,0,1-2.4,2.4Zm-3.6,2.4V18a2.4,2.4,0,0,1-2.4,2.4H7.2L3.6,24V20.4H2.4A2.4,2.4,0,0,1,0,18V9.6A2.407,2.407,0,0,1,2.4,7.2H4.8v3.6a4.8,4.8,0,0,0,4.8,4.8Z"/>
          </svg>
        </div>
        <div class="ita-horizontal-content-cards__type">
          Blog
        </div>
      </div>
      <div class="ita-horizontal-content-cards__content">
        <div class="ita-horizontal-content-cards__title">
          Aerospace & Defense Ducting Market to Reach US$ 3.5 Billion in 2024, Says Stratview Research
        </div>
        <div class="ita-horizontal-content-cards__spacer blogs">
        </div>
        <div class="ita-horizontal-content-cards__source">
          <p>July 16, 2019 <span class="author">Author Name</span></p>
        </div>
        <div class="ita-horizontal-content-cards__summary">
          <p>
            This strategic assessment report, from Stratview Research,
            provides a comprehensive analysis that reflects today's aerospace
            & defense ducting market realities and future market possibilities
            for the forecast period of 2019 to 2024.
          </p>
        </div>
        <div class="ita-tags">
          <a href="/">
            Industry
          </a>
          <a href="/">
            Country / region
          </a>
          <a href="/">
            Topic
          </a>
          <a href="/">
            Stuff
          </a>
        </div>
      </div>
    </div>
    <div class="ita-horizontal-content-cards__bottom blogs">
      <div class="ita-cta-button">
        <a href="/">
          <p>read more</p>
          <svg xmlns="http://www.w3.org/2000/svg" width="33.014" height="13.9" viewBox="0 0 33.014 13.9">
            <path d="M33.013 6.95L26.063 0v5.213H0v3.475h26.063V13.9z"/>
          </svg>
        </a>
      </div>
    </div>
</div>

    <div class="ita-horizontal-content-cards">
      <div class="ita-horizontal-content-cards__top">
      {% if data.image %}
        <img src="{{ data.image.src }}" alt="{{ data.image.alt }}">
        <div class="ita-horizontal-content-cards__category ita-horizontal-content-cards__category--img {{ data.type }}">
      {% else %}
        <div class="ita-horizontal-content-cards__category {{ data.type }}">
      {% endif %}
          <div class="ita-horizontal-content-cards__icon">
            {% if data.type == "news" %}
              {% include ( '@svg-icons/ita_news.svg' ) %}
            {% elseif data.type == "blog" %}
              {% include ( '@svg-icons/ita_blog.svg' ) %}
            {% elseif data.type == "articles" %}
              {% include ( '@svg-icons/ita_article.svg' ) %}
            {% elseif data.type == "press-release" %}
              {% include ( '@svg-icons/ita_press_release.svg' ) %}
            {% elseif data.type == "success-story" %}
              {% include ( '@svg-icons/ita_success_story.svg' ) %}
            {% endif %}
          </div>
          <div class="ita-horizontal-content-cards__type">
            {{ data.category }}
          </div>
        </div>
      </div>
      <div class="ita-horizontal-content-cards__middle">
        <div class="ita-horizontal-content-cards__title">
          {{ data.title }}
        </div>
        <div class="ita-horizontal-content-cards__spacer {{ data.type }}">
        </div>
        {% if data.summary %}
          <div class="ita-horizontal-content-cards__source">
            <p>{{ data.source.date }} <span class="author">{{ data.source.author }}</span></p>
          </div>
          <div class="ita-horizontal-content-cards__summary">
            <p>
              {{ data.summary }}
            </p>
          </div>
        {% endif %}
        {% include '@atoms/tags/tags.html.twig' with { 'data': data.tags } %}
      </div>
      <div class="ita-horizontal-content-cards__bottom {{ data.type }}">
        {% include '@atoms/button/cta-button.html.twig' with { 'data': data.link } %}
      </div>
    </div>
*/
.ita-horizontal-content-cards {
  display: block;
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.ita-horizontal-content-cards .ita-tags {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 12px;
}
.ita-horizontal-content-cards .ita-tags > a {
  margin-right: 1em;
  border-radius: 4px;
  background-color: #dee0e2;
  padding: 10px;
  color: #2c2c2c;
}
.ita-horizontal-content-cards .ita-tags > a:hover {
  background-color: #c3c7ca;
  text-decoration: none;
}
.ita-horizontal-content-cards .news {
  background-color: #18605a;
}
.ita-horizontal-content-cards .blogs {
  background-color: #218379;
}
.ita-horizontal-content-cards .articles {
  background-color: #664c1c;
}
.ita-horizontal-content-cards .press-releases {
  background-color: #cbe8f8;
}
.ita-horizontal-content-cards .success-storys {
  background-color: #6a1f63;
}
.ita-horizontal-content-cards .market-intelligence {
  background-color: #93d0cb;
}
.ita-horizontal-content-cards__type {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-left: 12px;
  text-transform: capitalize;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
.ita-horizontal-content-cards__type.market-intelligence {
  color: #2c2c2c;
}
.ita-horizontal-content-cards__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 18px;
  margin: unset;
  color: #2c2c2c;
}
.ita-horizontal-content-cards__middle {
  padding: 32px 24px;
}
.ita-horizontal-content-cards__source {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #929292;
  font-size: 14px;
}
.ita-horizontal-content-cards__source p {
  margin: 0;
}
.ita-horizontal-content-cards__source .author {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #2c2c2c;
}
.ita-horizontal-content-cards__summary {
  padding: 24px 0;
}
.ita-horizontal-content-cards__summary p {
  margin: 0;
}
.ita-horizontal-content-cards__spacer {
  margin: 12px 0 24px;
  width: 65px;
  height: 3px;
}
.ita-horizontal-content-cards__body {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0 2em;
  padding-bottom: 4em;
}
.ita-horizontal-content-cards__top {
  display: inline-flex;
  position: relative;
  width: 100%;
  min-height: 0%;
}
.ita-horizontal-content-cards__top img {
  max-width: 30%;
  height: auto;
}
.ita-horizontal-content-cards__content {
  padding: 32px 24px;
}
.ita-horizontal-content-cards__category {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 18px;
  max-height: 30px;
}
.ita-horizontal-content-cards__category h5 {
  color: #ffffff;
}
.ita-horizontal-content-cards__category svg path {
  fill: #ffffff;
}
.ita-horizontal-content-cards__category--img {
  position: absolute;
  top: 0;
  left: 0;
}
.ita-horizontal-content-cards__bottom .ita-cta-button {
  background-color: unset;
}
.ita-horizontal-content-cards__bottom.news:hover {
  background-color: #228980;
}
.ita-horizontal-content-cards__bottom.blogs:hover {
  background-color: #2bac9f;
}
.ita-horizontal-content-cards__bottom.articles:hover {
  background-color: #8e6a27;
}
.ita-horizontal-content-cards__bottom.press-releases:hover {
  background-color: #4ba4d7;
}
.ita-horizontal-content-cards__bottom.success-storys:hover {
  background-color: #912b88;
}
.ita-horizontal-content-cards__bottom.market-intelligence {
  color: #2c2c2c;
}
.ita-horizontal-content-cards__bottom.market-intelligence:hover {
  background-color: #6fc1ba;
}

.ita-icon-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.ita-icon-cards:hover, .ita-icon-cards:focus {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
  background-color: #fafafa;
}
.ita-icon-cards a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  text-decoration: none;
}

.ita-icon-cards__icon {
  padding-bottom: 24px;
  max-width: 83px;
  max-height: 83px;
}
.ita-icon-cards__icon svg,
.ita-icon-cards__icon img {
  width: 100%;
  height: auto;
}

.ita-icon-cards__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
  margin: 0;
  text-align: center;
  color: #2c2c2c;
}

.ita-icon-cards__summary {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-top: 24px;
}

.ita-icon-list {
  margin-right: 0 !important;
  margin-left: 0 !important;
  width: 100%;
}

.ita-icon-list__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 1rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000000;
  font-weight: normal;
}
.ita-icon-list__link:hover, .ita-icon-list__link:focus {
  border-radius: 4px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}
.ita-icon-list__link:hover .ita-icon-list__title, .ita-icon-list__link:focus .ita-icon-list__title {
  font-weight: bold;
}

.ita-icon-list__image {
  margin-bottom: 10px;
  max-width: 60px;
}
.ita-icon-list__image img {
  width: 100%;
  height: auto;
}

.ita-icon-list__title {
  line-height: 1.5;
  font-size: 18px;
}

.ita-info-card {
  background-color: #d4ecea;
  padding: 32px;
}

.ita-info-card__item {
  margin-bottom: 16px;
}
.ita-info-card__item:last-child {
  margin-bottom: 0;
}

.ita-info-card__item-label {
  color: #2c2c2c;
  font-weight: 700;
}

.ita-info-card__item-content {
  color: #6d6d6d;
  font-style: italic;
}
.ita-info-card__item-content p {
  margin: 0;
  color: #6d6d6d;
}

.ita-info-card__cta {
  margin-top: 16px;
  max-width: 280px;
}
.ita-info-card__cta .ita-cta-button {
  background-color: #208078;
}
.ita-info-card__cta .ita-cta-button:before {
  background: #208078;
  filter: brightness(150%);
}

a[href$=".doc"], a[href$=".docx"] {
  display: inline-block;
  margin-left: -15px;
  background-image: url("/themes/custom/ita/images/ms_word.jpeg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 35px 20px;
  padding-left: 35px;
  text-decoration: none;
  color: #005b9f;
}
a[href$=".doc"]:hover, a[href$=".docx"]:hover {
  color: #0078d4;
}

.media-download span {
  vertical-align: middle;
  color: #000000;
  font-size: 14px;
}
.media-download .ic-download {
  width: 11px;
  vertical-align: middle;
}

.pdf__image--embedded svg {
  width: auto;
  height: 18px;
}

.notification {
  margin-bottom: 20px;
}
.notification svg {
  padding: 5px 10px;
}
.notification--error {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-left: 4px solid #b10e1e;
  background-color: #fac4c9;
  padding: 15px 0;
}
.notification--error path {
  fill: #b10e1e;
}
.notification--success {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-left: 4px solid #218379;
  background-color: #b6ede7;
  padding: 15px 0;
}
.notification--success path {
  fill: #218379;
}
.notification--alert {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-left: 4px solid #cc9838;
  background-color: #f6ecda;
  padding: 15px 0;
}
.notification--alert path {
  fill: #cc9838;
}
.notification--info, .notification--status {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-left: 4px solid #5b616b;
  background-color: #e0e2e5;
  padding: 15px 0;
}
.notification--info path, .notification--status path {
  fill: #5b616b;
}

.notification__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.44;
  color: #000000;
  font-size: 16px;
  margin: 0;
}

.ita-office-cards {
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.ita-office-cards__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 18px;
  margin: 0;
  color: #005ea5;
}
.ita-office-cards__middle {
  padding: 32px 24px 24px;
}
.ita-office-cards__address {
  font-weight: bold;
}
.ita-office-cards__summary {
  color: #6f777b;
}
.ita-office-cards__summary p {
  color: #6f777b;
}
.ita-office-cards__spacer {
  background-color: #005ea5;
}
.ita-office-cards__top {
  position: relative;
  width: 100%;
  min-height: 0%;
}
.ita-office-cards__top img {
  width: 100%;
  height: auto;
}
.ita-office-cards__bottom {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding: 0 24px 32px;
}
.ita-office-cards__bottom p {
  margin: 0;
  text-transform: capitalize;
  color: #5b616b;
  font-size: 18px;
  font-weight: 600;
}
.ita-office-cards__bottom path {
  fill: #ffffff;
}

.ita-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #dee0e2;
}
@media screen and (min-width: 768px) {
  .ita-promo {
    flex-wrap: nowrap;
  }
}

.promo__content {
  padding: 36px 18px;
}
@media screen and (min-width: 768px) {
  .promo__content {
    flex: 0 1 50%;
    padding: 24px 32px 48px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1024px) {
  .promo__content {
    padding: 48px 36px;
  }
}

.promo__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  color: #2c2c2c;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .promo__title {
    line-height: 1.33;
    font-size: 24px;
  }
}

.promo__image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-height: 240px;
}
@media screen and (min-width: 768px) {
  .promo__image {
    flex: 0 1 50%;
    min-height: 324px;
  }
}
.promo__image img {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.promo__cta {
  margin: 24px 0 12px;
  max-width: 333px;
}

.promo__text {
  display: inline-flex;
  text-transform: uppercase;
  color: #797979;
}

.ita-promo--shaped {
  position: relative;
}
.ita-promo--shaped .promo__content {
  padding: 36px 18px;
}
@media screen and (min-width: 768px) {
  .ita-promo--shaped .promo__content {
    flex: 0 1 50%;
    padding: 48px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1024px) {
  .ita-promo--shaped .promo__content {
    padding: 48px 36px;
  }
}
.ita-promo--shaped .promo__title {
  line-height: 1.33;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .ita-promo--shaped .promo__title {
    line-height: 1.25;
    font-size: 32px;
  }
}

.promo__shape {
  display: hidden;
}
@media screen and (min-width: 1024px) {
  .promo__shape {
    display: block;
    position: absolute;
    bottom: -5px;
    z-index: 10;
    background: url("../images/svg/inverted-tri.svg") no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 50%;
    overflow: hidden;
    pointer-events: none;
  }
}

.promo__content--no-image.promo__content {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  align-items: center;
}

/*
.ita-static-cards {
  display: flex;
  flex: 0 0 auto; // needed for ie11 flex parent
  flex-direction: column;
  align-items: start;
  border: solid 1px $light-grey;
  box-shadow: 0 3px 6px 0 rgba(0,  0,  0,  0.16);
  background-color: $white;
  width: 100%; // ie11 fix
  overflow-x: hidden;

}
*/
.col-1 {
  margin: 0 30px !important;
  width: 96% !important;
}

/*
.tab-page {
  width: 100%;
  min-height: 250px;
  max-height: 250px;
}
*/
.ita-block-content {
  margin: 25px 0;
  padding: 0 !important;
}

.ita-landing-page__main {
  padding: 0 !important;
  width: 100% !important;
}

.quicktabs-main {
  margin-top: -80px;
}

.ita-scalable-cards {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: start;
  transform: perspective(1px) translateZ(0);
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  width: 100%;
  text-decoration: none;
  overflow-x: hidden;
}
.ita-scalable-cards:before {
  position: absolute;
  right: 51%;
  bottom: 0;
  left: 51%;
  z-index: -1;
  background: #0068b7;
  height: 4px;
  content: "";
  filter: brightness(150%);
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.ita-scalable-cards:hover, .ita-scalable-cards:focus, .ita-scalable-cards:active {
  background-color: #eaf7ff;
  text-decoration: none;
}
.ita-scalable-cards:hover:before, .ita-scalable-cards:focus:before, .ita-scalable-cards:active:before {
  right: 0;
  left: 0;
}
.ita-scalable-cards .ext {
  margin-top: -6px;
}
.ita-scalable-cards .ext path {
  stroke: #ffffff !important;
}
.ita-scalable-cards.button--inline, .ita-scalable-cards.ita-button--inline {
  display: block;
  margin: 18px 0;
  background-color: #b10e1e;
  max-width: 254px;
}
.ita-scalable-cards.button--inline:before, .ita-scalable-cards.ita-button--inline:before {
  background: #e01226;
  filter: brightness(175%);
}

.ita-scalable-cards--red .ita-scalable-cards__spacer {
  display: none;
  background-color: #b10e1e;
}
.ita-scalable-cards--red .ita-cta-button {
  background-color: #b10e1e;
}
.ita-scalable-cards--red .ita-cta-button:before {
  background: #e01226;
  filter: brightness(175%);
}

.ita-scalable-cards--light-green .ita-scalable-cards__spacer {
  background-color: #218379;
}
.ita-scalable-cards--light-green .ita-scalable-cards__bottom .ita-cta-button {
  background-color: #218379;
}
.ita-scalable-cards--light-green .ita-scalable-cards__bottom .ita-cta-button:before {
  background: #2bac9f;
  filter: brightness(50%);
}

.ita-scalable-cards--dark-green .ita-scalable-cards__spacer {
  background-color: #18605a;
}
.ita-scalable-cards--dark-green .ita-scalable-cards__bottom .ita-cta-button {
  background-color: #18605a;
}
.ita-scalable-cards--dark-green .ita-scalable-cards__bottom .ita-cta-button:before {
  background: #228980;
}

.ita-scalable-cards--light-blue .ita-scalable-cards__spacer {
  background-color: #cbe8f8;
}
.ita-scalable-cards--light-blue .ita-scalable-cards__bottom .ita-cta-button {
  background-color: #cbe8f8;
  color: #004d77;
}
.ita-scalable-cards--light-blue .ita-scalable-cards__bottom .ita-cta-button:before {
  background: #4ba4d7;
  filter: brightness(60%);
}

.img-hover-zoom--quick-zoom img {
  transition: transform 0.25s, visibility 0.25s ease-in;
  transform-origin: center center;
  filter: brightness(80%);
}

.ita-scalable-cards--dark-blue .ita-scalable-cards__spacer {
  background-color: #004b84;
}
.ita-scalable-cards--dark-blue .ita-scalable-cards__bottom .ita-cta-button {
  background-color: #004b84;
}
.ita-scalable-cards--dark-blue .ita-scalable-cards__bottom .ita-cta-button:before {
  background: #0068b7;
}

.ita-scalable-cards--purple .ita-scalable-cards__spacer {
  background-color: #6a1f63;
}
.ita-scalable-cards--purple .ita-scalable-cards__bottom .ita-cta-button {
  background-color: #6a1f63;
}
.ita-scalable-cards--purple .ita-scalable-cards__bottom .ita-cta-button:before {
  background: #912b88;
}

.ita-scalable-cards--brown .ita-scalable-cards__spacer {
  background-color: #664c1c;
}
.ita-scalable-cards--brown .ita-scalable-cards__bottom .ita-cta-button {
  background-color: #664c1c;
}
.ita-scalable-cards--brown .ita-scalable-cards__bottom .ita-cta-button:before {
  background: #8e6a27;
}

.ita-scalable-cards__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
  margin: unset;
  color: #2c2c2c;
}

.ita-scalable-cards__middle {
  flex: 0 0 auto;
  margin-top: -18px;
  padding: 5px 24px 20px !important;
  width: 100%;
  box-sizing: border-box;
}

.ita-scalable-cards__top {
  position: relative;
  width: 100%;
  min-height: 0%;
}
.ita-scalable-cards__top img {
  display: block;
  width: 100%;
  height: auto;
}

.ita-scalable-cards__summary {
  margin-top: 6px !important;
  font-size: 16px;
}

.ita-scalable-cards__bottom {
  z-index: 100;
  margin-top: auto;
  width: 101%;
}

.w3-white:hover,
.w3-hover-white:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.w3-circle {
  border-radius: 50%;
}

.w3-display-topleft {
  position: absolute;
  top: 0;
  left: 0;
}

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

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

.w3-white {
  z-index: 1000;
  background-color: #ffffff !important;
  width: 30px;
  line-height: 1;
  color: #000000 !important;
}

.w3-hover-white:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.material-symbols-outlined {
  display: inline-block;
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

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

.overlay .mask {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.view .mask {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.rgba-white-slight {
  background-color: rgba(255, 255, 255, 0.1);
}
.rgba-white-slight:after {
  background-color: rgba(255, 255, 255, 0.1);
}

.ita-hs {
  border-radius: 5px !important;
}

.ripple {
  transition: background 0.8s;
  background-position: center;
}
.ripple:hover {
  background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
}
.ripple:active {
  transition: background 0s;
  background-color: #6eb9f7;
  background-size: 100%;
}

/*!
 * Waves v0.7.6
 * http://fian.my.id/Waves
 *
 * Copyright 2014-2018 Alfiana E. Sibuea and other contributors
 * Released under the MIT license
 * https://github.com/fians/Waves/blob/master/LICENSE */
.waves-effect {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -moz-user-select: none;
  user-select: none;
}
.waves-effect .waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.4);
}

.text--medium {
  line-height: 1.5;
  font-size: 0.9em !important;
}

.ita-static-cards__title {
  font-size: 1em !important;
}

.col-1of4 nav {
  position: sticky;
  top: 210px;
  bottom: 50px;
}

button[aria-labelledby=Apply] {
  width: 115px !important;
  height: 40px !important;
  font-family: "PublicSans", Arial, Verdana, sans-serif !important;
  font-size: large !important;
  font-weight: 700 !important;
  font-style: normal !important;
}

/*
.ita-static-cards {
  display: flex;
  flex: 0 0 auto; // needed for ie11 flex parent
  flex-direction: column;
  align-items: start;
  border: solid 1px $light-grey;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: $white;
  width: 100%; // ie11 fix
  overflow-x: hidden;

}
*/
.ita-static-cards {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: start;
  transform: perspective(1px) translateZ(0);
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  width: 100%;
  text-decoration: none;
  overflow-x: hidden;
}
.ita-static-cards:before {
  position: absolute;
  right: 51%;
  bottom: 0;
  left: 51%;
  z-index: -1;
  background: #0068b7;
  height: 4px;
  content: "";
  filter: brightness(150%);
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.ita-static-cards:hover, .ita-static-cards:focus, .ita-static-cards:active {
  background-color: #eaf7ff;
  text-decoration: none;
}
.ita-static-cards:hover:before, .ita-static-cards:focus:before, .ita-static-cards:active:before {
  right: 0;
  left: 0;
}
.ita-static-cards .ext {
  margin-top: -6px;
}
.ita-static-cards .ext path {
  stroke: #ffffff !important;
}
.ita-static-cards.button--inline, .ita-static-cards.ita-button--inline {
  display: block;
  margin: 18px 0;
  background-color: #b10e1e;
  max-width: 254px;
}
.ita-static-cards.button--inline:before, .ita-static-cards.ita-button--inline:before {
  background: #e01226;
  filter: brightness(175%);
}

.ita-static-cards--red .ita-static-cards__spacer {
  background-color: #b10e1e;
}
.ita-static-cards--red .ita-cta-button {
  background-color: #b10e1e;
}
.ita-static-cards--red .ita-cta-button:before {
  background: #e01226;
  filter: brightness(175%);
}

.ita-static-cards--light-green .ita-static-cards__spacer {
  background-color: #218379;
}
.ita-static-cards--light-green .ita-static-cards__bottom .ita-cta-button {
  background-color: #218379;
}
.ita-static-cards--light-green .ita-static-cards__bottom .ita-cta-button:before {
  background: #2bac9f;
  filter: brightness(50%);
}

.ita-static-cards--dark-green .ita-static-cards__spacer {
  background-color: #18605a;
}
.ita-static-cards--dark-green .ita-static-cards__bottom .ita-cta-button {
  background-color: #18605a;
}
.ita-static-cards--dark-green .ita-static-cards__bottom .ita-cta-button:before {
  background: #228980;
}

.ita-static-cards--light-blue .ita-static-cards__spacer {
  background-color: #cbe8f8;
}
.ita-static-cards--light-blue .ita-static-cards__bottom .ita-cta-button {
  background-color: #cbe8f8;
  color: #004d77;
}
.ita-static-cards--light-blue .ita-static-cards__bottom .ita-cta-button:before {
  background: #4ba4d7;
  filter: brightness(60%);
}

.ita-static-cards--dark-blue .ita-static-cards__spacer {
  background-color: #004b84;
}
.ita-static-cards--dark-blue .ita-static-cards__bottom .ita-cta-button {
  background-color: #004b84;
}
.ita-static-cards--dark-blue .ita-static-cards__bottom .ita-cta-button:before {
  background: #0068b7;
}

.ita-static-cards--purple .ita-static-cards__spacer {
  background-color: #6a1f63;
}
.ita-static-cards--purple .ita-static-cards__bottom .ita-cta-button {
  background-color: #6a1f63;
}
.ita-static-cards--purple .ita-static-cards__bottom .ita-cta-button:before {
  background: #912b88;
}

.ita-static-cards--brown .ita-static-cards__spacer {
  background-color: #664c1c;
}
.ita-static-cards--brown .ita-static-cards__bottom .ita-cta-button {
  background-color: #664c1c;
}
.ita-static-cards--brown .ita-static-cards__bottom .ita-cta-button:before {
  background: #8e6a27;
}

.ita-static-cards__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 18px;
  margin: unset;
  color: #2c2c2c;
}

.ita-static-cards__middle {
  flex: 0 0 auto;
  padding: 32px 24px;
  width: 100%;
  box-sizing: border-box;
}

.ita-static-cards__top {
  position: relative;
  width: 100%;
  min-height: 0%;
}
.ita-static-cards__top img {
  display: block;
  width: 100%;
  height: auto;
}

.ita-static-cards__summary p {
  margin: 0;
}

.ita-static-cards__bottom {
  z-index: 100;
  margin-top: auto;
  width: 101%;
}

.ita-success-story-cards {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .ita-success-story-cards {
    flex-direction: row;
  }
}

.ita-success-story-cards__left {
  flex: 1 1 50%;
}

.ita-success-story-cards__video .ita-success-story-card__container > div > div {
  position: relative;
  padding-top: 30px;
  padding-bottom: 49%;
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .ita-success-story-cards__video .ita-success-story-card__container > div > div {
    padding-bottom: 75%;
  }
}
@media screen and (min-width: 1366px) {
  .ita-success-story-cards__video .ita-success-story-card__container > div > div {
    padding-bottom: 65%;
  }
}
.ita-success-story-cards__video .ita-success-story-card__container .contextual-region .contextual {
  padding: 0;
}
.ita-success-story-cards__video .ita-success-story-card__container .contextual-region > div + div {
  position: relative;
  padding-top: 30px;
  padding-bottom: 49%;
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .ita-success-story-cards__video .ita-success-story-card__container .contextual-region > div + div {
    padding-bottom: 75%;
  }
}
@media screen and (min-width: 1366px) {
  .ita-success-story-cards__video .ita-success-story-card__container .contextual-region > div + div {
    padding-bottom: 50%;
  }
}
.ita-success-story-cards__video iframe,
.ita-success-story-cards__video object,
.ita-success-story-cards__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ita-success-story-cards__image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  min-height: 200px;
}

.ita-success-story-cards__right {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 48px 48px 36px;
  box-sizing: border-box;
}

.ita-success-story-cards__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 18px;
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  color: #2c2c2c;
}

.ita-success-story-cards__spacer {
  background-color: #2c2c2c;
}

.ita-success-story-cards__top {
  display: inline-block;
  position: relative;
}
.ita-success-story-cards__top img {
  width: 100%;
  height: auto;
}

.text-block__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 0;
  color: #6f777b;
}

.text-block__body ul {
  color: #2c2c2c;
}
.text-block__body ul li {
  color: #2c2c2c;
}

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

.text-block--left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}
.text-block--left .text-block__body {
  flex: 0 1 100%;
}

.text-block__line .line-spacer {
  background-color: #6f777b;
}
.text-block__line--center {
  margin: 12px auto 24px;
}
.text-block__line--left {
  margin: 12px 0 24px;
}

.ita-tooltip {
  position: relative;
  cursor: pointer;
}
.ita-tooltip--no-target {
  cursor: auto;
}
.ita-tooltip:hover .ita-tooltip__item {
  opacity: 1;
  width: auto;
  max-width: 480px;
  height: auto;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .ita-tooltip:hover .ita-tooltip__item--content-card {
    width: 480px;
  }
}

.ita-tooltip__item {
  position: absolute;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  cursor: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ita-tooltip__item--text {
  top: 100%;
  margin-top: 0.25rem;
  border-radius: 4px;
  background-color: #dee0e2;
  padding: 0.5rem 1rem;
}
.ita-tooltip__item--text:after {
  position: absolute;
  bottom: 100%;
  left: 2rem;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #dee0e2;
  content: " ";
}
.ita-tooltip__item--text p {
  margin: 0;
}

.ita-tooltip__item--content-card {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.ita-update-banner {
  background-color: #48812c;
  padding: 1rem 0;
  text-align: center;
}
.ita-update-banner a {
  text-decoration: underline;
  color: #ffffff;
}
.ita-update-banner a:hover, .ita-update-banner a:focus {
  text-decoration: none;
}

.views-page__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  margin-bottom: 0;
  color: #6f777b;
}

.views-page__line {
  background-color: #6f777b;
}

.views-page__empty {
  position: relative;
  margin: 210px 0 45px;
  border-radius: 10px;
  background-color: #f2f2f2;
  padding: 63px 40px 40px;
}
.views-page__empty:before {
  display: block;
  position: absolute;
  top: -169px;
  left: 0;
  background-image: url("../images/svg/no-results.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 193px;
  content: "";
}
@media screen and (min-width: 1024px) {
  .views-page__empty {
    margin: 45px 90px;
    padding: 45px 45px 45px 310px;
    min-height: 185px;
    box-sizing: border-box;
  }
  .views-page__empty:before {
    top: 20px;
    left: 20px;
    background-position: left;
    width: 269px;
  }
}

.sitemap .sitemap-box ul {
  padding-left: 1em;
}
.sitemap .sitemap-box ul ul {
  padding-left: 0;
}
.sitemap .sitemap-box ul ul ul {
  padding-left: 1em;
}
.sitemap .sitemap-box .content > .sitemap-menu > li {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-style: normal;
  margin-top: 2em;
  padding-left: 0;
}
.sitemap .sitemap-box .content > .sitemap-menu > li span {
  display: block;
  margin-bottom: 2em;
}
.sitemap li {
  margin-top: 0.5em;
  list-style: none;
}
.sitemap a {
  padding: 8px 16px;
  color: #2c2c2c;
  font-weight: normal;
}
.sitemap a:hover, .sitemap a:active, .sitemap a:focus {
  background-color: #004b84;
  text-decoration: none;
  color: #ffffff;
}
.sitemap a:focus {
  outline: 0;
}

.ita-block-content {
  margin: 24px 0;
  padding: 24px 0;
}

.ita-block-content--centered .ita-block-content__main {
  text-align: center;
}

.ita-block-content--left .ita-icon-list__link {
  align-items: flex-start;
}

.ita-block-content__top-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ita-block-content__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 0;
  padding-right: 24px;
  color: #6f777b;
}

.ita-block-content__link {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .ita-block-content__link {
    margin-bottom: 0;
  }
}

.ita-block-content__line {
  background-color: #6f777b;
}

.ita-block-content__summary {
  margin-bottom: 24px;
  color: #6f777b;
}

.local-offices-block .ita-block-content {
  margin-bottom: 24px;
}

.ccg-map-block {
  position: relative;
  margin-top: 36px;
  background-image: url("/themes/custom/ita/images/sample/office-map.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 600px;
}
.ccg-map-block .ccg-map-select {
  display: none;
  margin-bottom: 16px;
  border: solid 2px #bbbbbb;
  background-color: #ffffff;
  background-position: 95% center;
  background-size: 15px 30px;
  padding: 8px 18px;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .ccg-map-block .ccg-map-select {
    position: absolute;
    margin-bottom: 0;
    width: 24%;
    height: 7%;
    font-size: 0.9em;
  }
}
.ccg-map-block .western-hemisphere-and-canada {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ccg-map-block .western-hemisphere-and-canada {
    top: 54%;
    left: 7%;
  }
}
.ccg-map-block .europe {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ccg-map-block .europe {
    top: 28%;
    left: 38%;
  }
}
.ccg-map-block .asia {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ccg-map-block .asia {
    top: 54%;
    left: 68%;
  }
}
.ccg-map-block .middle-east-and-africa {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ccg-map-block .middle-east-and-africa {
    top: 54%;
    left: 38%;
  }
}
.ccg-map-block .china {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ccg-map-block .china {
    top: 28%;
    left: 68%;
  }
}

.ccg-map__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 0;
  color: #6f777b;
}

.ccg-map__title-line {
  background-color: #6f777b;
}

.content-curator {
  display: flex;
  flex-wrap: wrap;
}

.content-curator__image {
  flex-direction: column;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .content-curator__image {
    max-width: 400px;
  }
}
.content-curator__image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.content-curator__content {
  flex-direction: column;
  padding: 32px;
}

.content-curator__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
  margin: 0;
}

.content-curator__title-line {
  margin-bottom: 0;
  background-color: #b10e1e;
}

.content-curator__summary {
  margin-top: 16px;
  margin-bottom: 16px;
  color: #6f777b;
}

.content-curator__progress {
  color: #6f777b;
}

.content-curator__form .form-item-topic-area-of-interest-select .form-select option:last-child {
  display: none;
}
.content-curator__form .webform-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.content-curator__form div[role=alert] {
  margin-bottom: 24px;
  border-left: 4px solid #b10e1e;
  background-color: #fac4c9;
  padding: 16px;
}

.ita-footer__main .contextual-region {
  margin-top: 22px !important;
}

.ita-footer {
  margin-top: 100px;
  background-color: #112e51;
}
@media screen and (min-width: 768px) {
  .ita-footer {
    padding-top: 20px;
  }
}
.ita-footer svg.ext path {
  stroke: #ffffff !important;
}

.ita-footer__menu-link--header {
  display: inline-block;
  line-height: 1.25;
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
}

.ita-footer__submenu .ita-footer__menu-item {
  padding: 9px 0 0 15px;
  text-indent: -13.3px !important;
}

.ita-footer__menu,
.ita-footer__submenu,
.ita-footer__submenu--secondary {
  padding: 15px 0;
  list-style: none;
}

.ita-footer__submenu--secondary .ita-footer__menu-link {
  line-height: 1.71;
  font-size: 14px;
  font-weight: 300;
}

.ita-footer__menu-link {
  padding: 13px;
  color: #ffffff;
}

a.ita-footer__menu-link:hover {
  background-color: #2b8cc4;
  text-decoration: none;
}
a.ita-footer__menu-link:active {
  background-color: #005ea5;
  text-decoration: none;
}
a.ita-footer__menu-link:focus {
  outline: 0;
  background-color: #005ea5;
  text-decoration: none;
}

.ita-footer__menu-link--subheader {
  line-height: 1.71;
  font-size: 14px;
  font-weight: 300;
}

.ita-footer__bottom {
  margin-top: 0;
}

.ita-footer__description,
.ita-footer__address {
  line-height: 1.5;
  color: #ffffff;
  font-size: 1em;
}
.ita-footer__description a,
.ita-footer__address a {
  color: #ffffff;
}
.ita-footer__description p,
.ita-footer__address p {
  margin-top: 0;
  line-height: 1.5;
  color: #ffffff;
  font-size: 0.778em;
}

.ita-footer__description {
  border-top: 3px solid #ccdeed;
  padding-top: 62px;
  text-align: center;
}
.ita-footer__description p {
  margin-right: auto;
  margin-left: auto;
}
.ita-footer__description p:last-child a {
  text-decoration: underline;
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  .ita-footer__description p {
    width: 80%;
  }
}

.ita-footer__address {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.ita-footer__address strong {
  display: block;
  margin: 32px 0 0;
  line-height: 1.5;
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-size: 1.15em;
  font-weight: 700;
  font-style: normal;
}

.ita-footer__social {
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .ita-footer__social {
    margin-bottom: 0;
  }
}

.ita-footer__social-text {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ita-footer__menu--secondary {
  margin-top: 18px;
}

.ita-footer__menu-items--secondary {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 360px) {
  .ita-footer__menu-items--secondary {
    display: flex;
    flex-wrap: wrap;
  }
}

.ita-footer__menu-item--secondary {
  margin-bottom: 12px;
  font-size: 14px;
}
@media screen and (min-width: 360px) {
  .ita-footer__menu-item--secondary {
    margin-bottom: 12px;
  }
  .ita-footer__menu-item--secondary:last-child:after {
    content: none;
  }
  .ita-footer__menu-item--secondary:after {
    margin-right: 5px;
    margin-left: 5px;
    color: #ccdeed;
    content: "|";
  }
}

.ita-footer__menu-link--secondary {
  color: #ffffff;
}

.ita-footer__social-items {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ita-footer__social-item {
  margin-right: 8px;
}
.ita-footer__social-item a {
  line-height: 1;
}

.ita-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 4px;
  width: 50px;
  height: 50px;
}
.ita-footer__social-link:hover {
  background-color: #2b8cc4;
}
.ita-footer__social-link:active {
  background-color: #005ea5;
}
.ita-footer__social-link:focus {
  outline: 0;
  background-color: #005ea5;
}

.ita-footer__social-icon svg {
  fill: #ffffff;
}

@media screen and (min-width: 1024px) {
  .ita-footer__branding svg {
    width: 100%;
    max-width: 286px;
    height: auto;
  }
}

.ita-header {
  display: flex;
  position: fixed;
  top: 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  background-color: #ffffff;
  width: 97%;
  font-family: "PublicSans", Arial, Verdana, sans-serif;
}
@media screen and (max-width: 360px) {
  .ita-header {
    top: 65px;
    width: 100%;
  }
}
@media screen and (min-width: 360px) {
  .ita-header {
    top: 35px;
    width: 100%;
  }
}
@media screen and (min-width: 450px) {
  .ita-header {
    top: 35px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .ita-header {
    top: 20px;
    width: 92.5%;
  }
}
@media screen and (max-width: 1024px) {
  .ita-header {
    width: 98.5%;
  }
}
@media screen and (min-width: 1024px) {
  .ita-header {
    top: 27px;
    width: 92.5%;
  }
}
@media screen and (min-width: 1366px) {
  .ita-header {
    top: 27px;
    width: 95%;
  }
}
@media screen and (min-width: 1920px) {
  .ita-header {
    top: 35px;
    width: 95%;
  }
}
.ita-header.flag-open {
  top: 230px;
}
@media screen and (min-width: 360px) {
  .ita-header.flag-open {
    top: 285px;
    width: 98.5%;
  }
}
@media screen and (min-width: 450px) {
  .ita-header.flag-open {
    top: 190px;
    width: 98.5%;
  }
}
@media screen and (min-width: 768px) {
  .ita-header.flag-open {
    top: 120px;
    width: 94.5%;
  }
}
@media screen and (min-width: 1024px) {
  .ita-header.flag-open {
    top: 120px;
    width: 94.5%;
  }
}
@media screen and (min-width: 768px) {
  .ita-header {
    padding-right: 36px;
    padding-left: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-header {
    padding: 12px 48px 0;
  }
}
@media screen and (min-width: 1366px) {
  .ita-header {
    padding: 12px 48px 0 80px;
  }
}

@media screen and (min-width: 360px) {
  .ita-landing-page {
    margin-top: 120px;
  }
}
@media screen and (min-width: 450px) {
  .ita-landing-page {
    margin-top: 120px;
  }
}
@media screen and (min-width: 768px) {
  .ita-landing-page {
    margin-top: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-landing-page {
    margin-top: 189px;
  }
}
@media screen and (min-width: 1366px) {
  .ita-landing-page {
    margin-top: 189px;
  }
}
@media screen and (min-width: 360px) {
  .ita-landing-page.flag-open {
    margin-top: 370px;
  }
}
@media screen and (min-width: 450px) {
  .ita-landing-page.flag-open {
    margin-top: 180px;
  }
}
@media screen and (min-width: 768px) {
  .ita-landing-page.flag-open {
    margin-top: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-landing-page.flag-open {
    margin-top: 306px;
  }
}
@media screen and (min-width: 1366px) {
  .ita-landing-page.flag-open {
    margin-top: 282px;
  }
}

.ita-header--sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
}

.toolbar-fixed .ita-header--sticky {
  top: 39px;
}
.toolbar-fixed .ita-header--sticky .ita-header__menu--mobile {
  top: 82px;
}
.toolbar-fixed.toolbar-horizontal.toolbar-tray-open .ita-header--sticky {
  top: 79px;
}

.ita-header__content {
  display: none;
  height: 76px;
}
@media screen and (min-width: 1024px) {
  .ita-header__content {
    display: flex;
    flex-basis: 83%;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1366px) {
  .ita-header__content {
    flex-basis: 85%;
  }
}

.ita-header__branding {
  flex-basis: 15%;
  padding: 15px 15px 0;
}
@media screen and (min-width: 768px) {
  .ita-header__branding {
    flex-basis: 35%;
    padding-right: 10px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .ita-header__branding {
    flex-basis: 15%;
    padding: 0 10px 0 0;
  }
}

.ita-header__branding-logo {
  width: 140px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .ita-header__branding-logo {
    width: 100%;
    min-width: 163.63px;
  }
}

.ita-header__search-form {
  position: relative;
}
.ita-header__search-form .ita-header__search-input {
  background-color: #f8f8f8;
  width: auto;
  max-width: 250px;
  font-size: 14px;
}

.ita-header__search-label {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ita-header__search-button {
  position: absolute;
  top: 0;
  right: 0;
  border: 2px solid #218379;
  background-color: #218379;
  padding: 15px;
  appearance: none;
}
@media screen and (-ms-high-contrast: none) {
  .ita-header__search-button {
    border: 0;
  }
}

.ita-header__menu {
  display: flex;
  align-items: center;
  margin-left: 5px;
  padding: 0;
  height: 76px;
  list-style: none;
}
.ita-header__menu .ita-header__menu-item {
  margin-right: 5px;
}
@media screen and (max-width: 1366px) {
  .ita-header__menu .ita-header__menu-item[aria-level="1"] {
    padding-right: 10px;
    padding-left: 10px !important;
    width: auto !important;
  }
}
@media screen and (min-width: 1366px) {
  .ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(1) {
    margin-right: 5px;
    width: 194px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(2) {
    width: 115px;
    text-align: center;
  }
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(3) {
  width: 176px;
  text-align: center;
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(3) .ita-header__menu-icon {
  width: 19px !important;
  max-width: 19px !important;
  height: 19px !important;
  max-height: 19px !important;
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(4) {
  width: 110px;
  text-align: center;
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(4) .ita-header__menu-icon {
  margin-top: 1.5px;
  width: 19px !important;
  max-width: 19px !important;
  height: 19px !important;
  max-height: 19px !important;
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(5) {
  width: 115px;
  text-align: center;
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(5) .ita-header__menu-link {
  padding: 0 12px;
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(5):focus {
  border-color: 3px solid #0071bc;
  color: #000000;
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(6) {
  width: 125px;
  text-align: center;
}
.ita-header__menu .ita-header__menu-item[aria-level="1"]:nth-child(6) .ita-header__menu-link {
  padding: 0 12px;
}
.ita-header__menu > .ita-header__menu-item--expanded > .ita-header__menu-link--toggle .ita-header__menu-icon--toggle {
  display: none;
}
@media screen and (min-width: 1366px) {
  .ita-header__menu > .ita-header__menu-item--expanded > .ita-header__menu-link--toggle .ita-header__menu-icon--toggle.active {
    display: block;
  }
}

.ita-header__menu-link3 {
  cursor: pointer;
  color: #000000;
  font-size: 14px;
  font-weight: normal;
}

.ita-header__menu-item--active-trail {
  background-color: #f1f1f1;
  color: #000000 !important;
}
.ita-header__menu-item--active-trail:active {
  background-color: #fbc53d !important;
  color: #000000 !important;
}
.ita-header__menu-item--active-trail > .ita-header__menu-link {
  border-color: #0071bc;
  color: #000000 !important;
}
.ita-header__menu-item--active-trail > .ita-header__menu-link[aria-level="1"] {
  border-color: #0071bc;
  color: #000000;
}
.ita-header__menu-item--active-trail > .ita-header__menu-link.ita-header__menu-link--green {
  border-color: #208078;
}
@media screen and (max-width: 1366px) {
  .ita-header__menu-item--active-trail > .ita-header__menu-link.ita-header__menu-link--green {
    padding: 0 10px;
  }
}
.ita-header__menu-item--active-trail > .ita-header__submenu {
  display: flex;
}

.ita-header__menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 3px solid transparent;
  cursor: pointer;
  padding-right: 5px;
  color: #000000;
  font-family: "PublicSans", sans-serif !important;
  font-size: 14px;
  font-weight: normal;
}
.ita-header__menu-link.about-us:hover, .ita-header__menu-link.contact-us:hover {
  border-color: #005ea5;
  background-color: #f1f1f1;
}
.ita-header__menu-link[aria-expanded=true] {
  min-height: 71px;
  max-height: 71px;
}
.ita-header__menu-link[aria-expanded=false] {
  min-height: 71px;
  max-height: 71px;
  font-weight: normal;
}
@media screen and (max-width: 1366px) {
  .ita-header__menu-link[aria-expanded=false] {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1366px) {
  .ita-header__menu-link {
    margin-right: 0;
  }
}
.ita-header__menu-link:hover, .ita-header__menu-link:focus {
  text-decoration: none;
}

.ita-header__menu-link--red {
  justify-content: center;
}
.ita-header__menu-link--red:hover {
  border-color: #005ea5;
  background-color: #f1f1f1;
}
.ita-header__menu-link--red:focus {
  border-color: #005ea5;
  background-color: #d9d9d9;
}
.ita-header__menu-link--red.ita-header__menu-link--active {
  border-color: #005ea5;
  background-color: #f1f1f1;
}
.ita-header__menu-link--red + .ita-header__submenu > .ita-header__menu-item--active-trail > .ita-header__menu-link {
  color: #000000;
}
.ita-header__menu-link--red + .ita-header__submenu > .ita-header__menu-item--active-trail > .ita-header__menu-link[aria-expanded=false] {
  background-color: #fbc53d;
  color: #000000;
}
.ita-header__menu-link--red + .ita-header__submenu > .ita-header__menu-item--active-trail > .ita-header__menu-link > .ita-header__menu-title {
  color: #000000;
}
.ita-header__menu-link--red + .ita-header__submenu > .ita-header__menu-item--active-trail > .ita-header__menu-link svg {
  fill: #000000;
}
.ita-header__menu-link--red + .ita-header__submenu .ita-header__menu-link:active {
  color: #000000;
}

.ita-header__menu-link--green:hover {
  border-color: #208078;
  background-color: #f1f1f1;
}
.ita-header__menu-link--green:focus {
  border-color: #208078;
  background-color: #d9d9d9;
  color: #000000;
}
.ita-header__menu-link--green.ita-header__menu-link--active {
  border-color: #208078;
  background-color: #f1f1f1;
}
.ita-header__menu-link--green + .ita-header__submenu .ita-header__menu-item--active-trail .ita-header__menu-link[aria-expanded=false] {
  background-color: #fbc53d;
  color: #000000;
}
.ita-header__menu-link--green + .ita-header__submenu .ita-header__menu-item--active-trail .ita-header__menu-link svg {
  fill: #000000;
}
.ita-header__menu-link--green + .ita-header__submenu .ita-header__menu-item--active-trail .ita-header__menu-link .ita-header__menu-title {
  color: #000000;
}
.ita-header__menu-link--green + .ita-header__submenu .ita-header__menu-item--active-trail .ita-header__menu-link .ita-header__menu-title:focus {
  border: 0;
}

.ita-header__menu-icon {
  margin-top: -2.5px;
  margin-right: 7px;
  max-width: 16px;
  max-height: 16px;
}
.ita-header__menu-icon:nth-child(3) {
  width: 28px !important;
  max-width: 28px !important;
  height: 28px !important;
  max-height: 28px !important;
}
@media screen and (min-width: 1024px) {
  .ita-header__menu-icon {
    display: none;
  }
}
@media screen and (min-width: 1366px) {
  .ita-header__menu-icon {
    display: block;
  }
}
.ita-header__menu-icon svg {
  width: 100%;
  height: auto;
}

.ita-header__menu-icon--toggle {
  display: none;
  position: relative;
  margin-left: 7px;
}
.ita-header__menu-icon--toggle.active {
  display: block;
}
.ita-header__menu-icon--toggle.active svg {
  fill: #000000;
}
.ita-header__menu-icon--toggle.active svg[aria-labelledby=menu1] {
  fill: #000000;
}
.ita-header__menu-icon--toggle.active svg[aria-level="2"] {
  fill: #ffffff;
}
.ita-header__menu-icon--toggle svg {
  position: absolute;
  top: -3px;
  width: 10px;
  height: 7px;
}

.ita-header__search-icon {
  width: 16px;
  height: 18px;
}
.ita-header__search-icon .icon {
  fill: #ffffff;
}

.ita-header__submenu {
  display: none;
  position: absolute;
  left: 0;
  z-index: 20;
  border-top: 1px solid #f1f1f1;
  background-color: #ffffff;
  padding-right: 20px;
  padding-left: 30px;
  width: 100%;
  list-style: none;
}
.ita-header__submenu[aria-labelledby=menu2], .ita-header__submenu[aria-labelledby=menu3] {
  background-color: #208078;
  color: #ffffff;
}
.ita-header__submenu[aria-labelledby=menu2] .ita-header__menu-link:hover, .ita-header__submenu[aria-labelledby=menu3] .ita-header__menu-link:hover {
  background-color: #fbc53d;
  color: #000000 !important;
}
.ita-header__submenu[aria-labelledby=menu2] .ita-header__menu-link:hover svg, .ita-header__submenu[aria-labelledby=menu3] .ita-header__menu-link:hover svg {
  fill: #000000;
}
.ita-header__submenu[aria-labelledby=menu2] svg, .ita-header__submenu[aria-labelledby=menu3] svg {
  fill: #ffffff;
}
.ita-header__submenu[aria-labelledby=menu2] svg.ita-header__menu-icon--close, .ita-header__submenu[aria-labelledby=menu3] svg.ita-header__menu-icon--close {
  fill: #000000;
}
.ita-header__submenu[aria-labelledby=menu1], .ita-header__submenu[aria-labelledby=menu4] {
  background-color: #112e51;
}
.ita-header__submenu[aria-labelledby=menu1] svg, .ita-header__submenu[aria-labelledby=menu4] svg {
  fill: #ffffff;
}
.ita-header__submenu[aria-labelledby=menu1] svg.ita-header__menu-icon--close, .ita-header__submenu[aria-labelledby=menu4] svg.ita-header__menu-icon--close {
  fill: #000000;
}
.ita-header__submenu[aria-labelledby=menu1] .ita-header__menu-link a, .ita-header__submenu[aria-labelledby=menu4] .ita-header__menu-link a {
  color: #ffffff;
  font-family: "PublicSans", Arial, Verdana, sans-serif;
}
.ita-header__submenu[aria-labelledby=menu1] .ita-header__menu-link.is-active, .ita-header__submenu[aria-labelledby=menu4] .ita-header__menu-link.is-active {
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu1] .ita-header__menu-link[aria-haspopup=true]:hover, .ita-header__submenu[aria-labelledby=menu4] .ita-header__menu-link[aria-haspopup=true]:hover {
  background-color: #fbc53d;
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu1] .ita-header__menu-link[aria-haspopup=true]:hover .ita-header__menu-link, .ita-header__submenu[aria-labelledby=menu4] .ita-header__menu-link[aria-haspopup=true]:hover .ita-header__menu-link {
  background-color: #fbc53d;
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu1] .ita-header__menu-link[aria-haspopup=true]:hover svg, .ita-header__submenu[aria-labelledby=menu4] .ita-header__menu-link[aria-haspopup=true]:hover svg {
  fill: #000000;
}
.ita-header__submenu[aria-labelledby=menu1] .ita-header__menu-link[aria-haspopup=true]:active, .ita-header__submenu[aria-labelledby=menu4] .ita-header__menu-link[aria-haspopup=true]:active {
  background-color: #ffffff;
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu1] .ita-header__menu-link[aria-haspopup=true]:active .ita-header__menu-link, .ita-header__submenu[aria-labelledby=menu4] .ita-header__menu-link[aria-haspopup=true]:active .ita-header__menu-link {
  background-color: #ffffff;
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu1] .ita-header__menu-link[aria-haspopup=true]:active svg, .ita-header__submenu[aria-labelledby=menu4] .ita-header__menu-link[aria-haspopup=true]:active svg {
  fill: #000000;
}
.ita-header__submenu[aria-labelledby=menu2][aria-haspopup=false][aria-expanded=false] {
  /*
  &:focus {
    background-color: $dark-yellow;
    color: $white;

    .ita-header__menu-title {
      color: $white;
    }

  }
  */
}
.ita-header__submenu[aria-labelledby=menu2][aria-haspopup=false][aria-expanded=false]:hover {
  background-color: #fbc53d;
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu2][aria-haspopup=false][aria-expanded=false]:hover .ita-header__menu-title {
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu2][aria-haspopup=false][aria-expanded=false]:visited, .ita-header__submenu[aria-labelledby=menu2][aria-haspopup=false][aria-expanded=false]:active {
  background-color: #ffffff;
}
.ita-header__submenu[aria-labelledby=menu2][aria-haspopup=false][aria-expanded=false]:visited ita-header__menu-title, .ita-header__submenu[aria-labelledby=menu2][aria-haspopup=false][aria-expanded=false]:active ita-header__menu-title {
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu3] .ita-header__menu-link[aria-haspopup=true]:hover, .ita-header__submenu[aria-labelledby=menu2] .ita-header__menu-link[aria-haspopup=true]:hover {
  background-color: #fbc53d;
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu3] .ita-header__menu-link[aria-haspopup=true]:hover .ita-header__menu-title, .ita-header__submenu[aria-labelledby=menu2] .ita-header__menu-link[aria-haspopup=true]:hover .ita-header__menu-title {
  color: #000000;
}
.ita-header__submenu[aria-labelledby=menu3] .ita-header__menu-link[aria-haspopup=true]:hover svg, .ita-header__submenu[aria-labelledby=menu2] .ita-header__menu-link[aria-haspopup=true]:hover svg {
  fill: #000000;
}
.ita-header__submenu[aria-labelledby=menu3] .ita-header__menu-link[aria-haspopup=true].active, .ita-header__submenu[aria-labelledby=menu2] .ita-header__menu-link[aria-haspopup=true].active {
  background-color: #ffffff;
  color: #000000 !important;
}
.ita-header__submenu .ita-header__menu-title {
  color: #ffffff;
  text-wrap: wrap;
}
.ita-header__submenu .ita-header__menu-title svg {
  fill: #ffffff;
}
.ita-header__submenu .ita-header__menu-title[aria-expanded=false] {
  color: #000000;
}
.ita-header__submenu .ita-header__menu-title[aria-expanded=false] svg {
  fill: #000000;
}
.ita-header__submenu .ita-header__menu-title:hover {
  color: #000000;
  font-weight: normal;
}
.ita-header__submenu .ita-header__menu-title:active {
  color: #000000;
  font-weight: normal;
}
.ita-header__submenu .ita-header__menu-title:active svg {
  fill: #000000;
}
@media screen and (min-width: 768px) {
  .ita-header__submenu {
    padding-right: 80px;
    padding-left: 45px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1024px) {
  .ita-header__submenu {
    padding-right: 80px;
    padding-left: 45px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1366px) {
  .ita-header__submenu {
    padding-right: 80px;
    padding-left: 80px;
    box-sizing: border-box;
  }
}
.ita-header__submenu.active {
  display: flex;
}
.ita-header__submenu > .ita-header__menu-item > .ita-header__menu-link {
  margin-right: 0;
  border-top: 3px solid transparent;
  border-bottom: 0;
  padding: 0 21.35px 0 12px;
}
@media screen and (min-width: 1024px) {
  .ita-header__submenu > .ita-header__menu-item > .ita-header__menu-link[id=menu5] + .ita-landing-page.flag-open {
    margin-top: 570px !important;
  }
}
.ita-header__submenu > .ita-header__menu-item > .ita-header__menu-link[aria-expanded=true] .ita-header__menu-title {
  color: #000000;
}
.ita-header__submenu > .ita-header__menu-item > .ita-header__menu-link[aria-expanded=true] svg {
  fill: #000000;
}
.ita-header__submenu > .ita-header__menu-item > .ita-header__menu-link:hover {
  border-color: 3px solid #0071bc;
  color: #000000;
}
.ita-header__submenu > .ita-header__menu-item > .ita-header__menu-link:hover .ita-header__menu-title {
  color: #000000;
}
.ita-header__submenu > .ita-header__menu-item > .ita-header__menu-link.ita-header__menu-link--active {
  background-color: #f1f1f1;
  color: #000000;
}
.ita-header__submenu > .ita-header__menu-item--expanded {
  position: relative;
}
.ita-header__submenu > .ita-header__menu-item--expanded:hover {
  border-color: #005ea5;
  background-color: #f1f1f1;
}
.ita-header__submenu > .ita-header__menu-item--expanded:focus {
  border-color: #005ea5;
  background-color: #d9d9d9;
}
.ita-header__submenu > .ita-header__menu-item--expanded:last-child ul {
  right: 0;
}

.ita-header__dropdown {
  display: none;
  position: absolute;
  top: 74px;
  left: 0;
  z-index: 20;
  background-color: #f1f1f1;
  padding: 12px 20px;
  min-width: 290px;
  list-style: none;
  text-align: left;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .ita-header__dropdown {
    width: 180px;
    min-width: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .ita-header__dropdown {
    width: 180px;
    min-width: 180px;
  }
}
@media screen and (min-width: 1420px) {
  .ita-header__dropdown {
    width: 290px;
    min-width: 290px;
  }
}
.ita-header__dropdown.active {
  display: block;
  max-height: 40vh;
  overflow-y: auto;
}
.ita-header__dropdown .ita-header__menu-item {
  padding: 0 0 10px;
}
.ita-header__dropdown .ita-header__menu-link {
  display: inline-block;
  margin-right: 0;
  border-bottom: 0;
  background-color: #f1f1f1 !important;
  color: #000000 !important;
}
.ita-header__dropdown .ita-header__menu-link:hover {
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .ita-header__content--mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .ita-header__content--mobile {
    margin-right: 20px;
  }
}
.ita-header__content--mobile .ita-header__menu-text {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.ita-header__content--mobile .ita-header__menu-btn {
  border: 0;
  background-color: #ffffff;
  cursor: pointer;
  padding: 30px 20px;
  appearance: none;
}
@media screen and (max-width: 450px) {
  .ita-header__content--mobile .ita-header__menu-btn {
    padding: 20px 30px 20px 20px;
  }
}
@media screen and (min-width: 768px) {
  .ita-header__content--mobile .ita-header__menu-btn {
    padding: 34px 24px;
  }
}
.ita-header__content--mobile .ita-header__menu-btn:active, .ita-header__content--mobile .ita-header__menu-btn:focus, .ita-header__content--mobile .ita-header__menu-btn.active {
  outline: 0;
  background-color: #f1f1f1;
}
.ita-header__content--mobile .ita-header__menu-btn .ita-header__menu-icon {
  margin-right: 0;
  max-width: 45px;
  max-height: 45px;
}
.ita-header__content--mobile .ita-header__menu-btn .ita-header__menu-icon .icon {
  width: 45px;
  height: auto;
}

.ita-header__menu--mobile {
  display: none;
  position: absolute;
  top: 82px;
  right: 0;
  z-index: 100;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2);
  background-color: #f1f1f1;
  width: 100%;
}
.ita-header__menu--mobile.active {
  display: block;
}

.ita-header__accordion {
  margin: 0;
  padding-bottom: 16px;
  padding-left: 0;
  width: 95%;
  height: 100vh;
  list-style: none;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .ita-header__accordion {
    width: 92%;
  }
}

.ita-header__search--mobile {
  padding: 32px;
}
.ita-header__search--mobile .ita-header__search-form {
  display: flex;
}
.ita-header__search--mobile .ita-header__search-input {
  width: 90%;
  max-width: none;
}
.ita-header__search--mobile .ita-header__search-button {
  top: 0;
  right: 0;
}

.ita-header__accordion-item[aria-level="2"] > .ita-header__accordion-menu {
  padding: 0;
}
.ita-header__accordion-item[aria-level="2"] .ita-header__accordion-link {
  padding: 20px 12px;
}
.ita-header__accordion-item[aria-level="3"] .ita-header__accordion-link {
  padding-top: 6px;
  padding-bottom: 6px;
}

.ita-header__accordion-link {
  display: flex;
  padding: 16px 32px;
  color: #000000;
  font-weight: normal;
}
.ita-header__accordion-link:hover, .ita-header__accordion-link:focus, .ita-header__accordion-link.active {
  background-color: #0071bc;
  text-decoration: underline;
  color: #ffffff;
}
.ita-header__accordion-link:hover svg, .ita-header__accordion-link:focus svg, .ita-header__accordion-link.active svg {
  fill: #ffffff;
}
.ita-header__accordion-link:hover .ita-header__accordion-icon--toggle svg, .ita-header__accordion-link:focus .ita-header__accordion-icon--toggle svg, .ita-header__accordion-link.active .ita-header__accordion-icon--toggle svg {
  fill: #ffffff;
}

.ita-header__accordion-link--red[aria-haspopup=true]:hover, .ita-header__accordion-link--red[aria-haspopup=true]:focus, .ita-header__accordion-link--red[aria-haspopup=true].active {
  background-color: #112e51;
}
.ita-header__accordion-link--red[aria-haspopup=true]:hover svg, .ita-header__accordion-link--red[aria-haspopup=true]:focus svg, .ita-header__accordion-link--red[aria-haspopup=true].active svg {
  fill: #ffffff;
}

.ita-header__accordion-link--green:hover, .ita-header__accordion-link--green:focus, .ita-header__accordion-link--green.active {
  background-color: #208078;
}
.ita-header__accordion-link--green:hover[id=accordion-menu3] .ita-header__accordion-icon:nth-child(1), .ita-header__accordion-link--green:focus[id=accordion-menu3] .ita-header__accordion-icon:nth-child(1), .ita-header__accordion-link--green.active[id=accordion-menu3] .ita-header__accordion-icon:nth-child(1) {
  margin-top: 4px;
  background: url("../images/svg/susa-star-w.svg");
  background-repeat: no-repeat;
  background-position: top !important;
  background-size: 19px 20px;
  width: 19px !important;
  height: 22px !important;
}
.ita-header__accordion-link--green[id=accordion-menu3] .ita-header__accordion-icon:nth-child(1) {
  margin-top: 2.5px;
  background: url("../images/svg/susa-star.svg");
  background-repeat: no-repeat;
  background-position: top !important;
  background-size: 19px 20px;
  width: 19px !important;
  height: 22px !important;
}
.ita-header__accordion-link--green[id=accordion-menu3] .ita-header__accordion-icon:nth-child(1):hover, .ita-header__accordion-link--green[id=accordion-menu3] .ita-header__accordion-icon:nth-child(1):focus, .ita-header__accordion-link--green[id=accordion-menu3] .ita-header__accordion-icon:nth-child(1).active {
  background: url("../images/svg/susa-star-w.svg");
  background-repeat: no-repeat;
}
.ita-header__accordion-link--green[id=accordion-menu4]:hover, .ita-header__accordion-link--green[id=accordion-menu4]:focus, .ita-header__accordion-link--green[id=accordion-menu4].active {
  background-color: #0071bc;
}
.ita-header__accordion-link--green[id=accordion-menu4]:hover .ita-header__accordion-icon:nth-child(1), .ita-header__accordion-link--green[id=accordion-menu4]:focus .ita-header__accordion-icon:nth-child(1), .ita-header__accordion-link--green[id=accordion-menu4].active .ita-header__accordion-icon:nth-child(1) {
  background: url("../images/svg/news-w.svg");
}
.ita-header__accordion-link--green[id=accordion-menu4] .ita-header__accordion-icon:nth-child(1) {
  margin-top: 4px;
  background: url("../images/svg/news.svg");
  background-repeat: no-repeat;
  background-position: top !important;
  background-size: 19px 20px;
  width: 19px !important;
  height: 22px !important;
}
.ita-header__accordion-link--green[id=accordion-menu4] .ita-header__accordion-icon:hover, .ita-header__accordion-link--green[id=accordion-menu4] .ita-header__accordion-icon:focus, .ita-header__accordion-link--green[id=accordion-menu4] .ita-header__accordion-icon.active {
  background: url("../images/svg/news-w.svg") !important;
  background-color: #0071bc;
  text-decoration: underline;
  color: #ffffff;
}

.ita-header__accordion-title {
  flex-basis: 95%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .ita-header__accordion-title {
    flex-basis: 98%;
  }
}

.ita-header__accordion-icon {
  margin-right: 8px;
  width: 16px;
  max-width: 19px;
  height: 16px;
  max-height: 18px;
}
.ita-header__accordion-icon svg {
  width: 100%;
  height: auto;
}

.ita-header__accordion-icon--toggle {
  display: none;
  flex-basis: 5%;
  margin-right: 0;
  margin-left: 8px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .ita-header__accordion-icon--toggle {
    flex-basis: 2%;
  }
}
.ita-header__accordion-icon--toggle.active {
  display: block;
}

.ita-header__accordion-menu {
  display: none;
  background-color: #ffffff;
  padding: 10px 30px;
  list-style: none;
}
.ita-header__accordion-menu.active {
  display: block;
}
.ita-header__accordion-menu .ita-header__accordion-link {
  text-decoration: none;
  line-height: 1.71;
  font-size: 16px;
}
.ita-header__accordion-menu .ita-header__accordion-link:hover, .ita-header__accordion-menu .ita-header__accordion-link:focus, .ita-header__accordion-menu .ita-header__accordion-link.active {
  background-color: transparent;
  text-decoration: underline;
  color: #000000;
}
.ita-header__accordion-menu .ita-header__accordion-link:hover .ita-header__accordion-icon svg, .ita-header__accordion-menu .ita-header__accordion-link:focus .ita-header__accordion-icon svg, .ita-header__accordion-menu .ita-header__accordion-link.active .ita-header__accordion-icon svg {
  fill: #000000;
}
.ita-header__accordion-menu .ita-header__accordion-link--toggle {
  font-weight: 700;
}
.ita-header__accordion-menu .ita-header__accordion-icon--toggle {
  position: relative;
  border: 1px solid #dee0e2;
  border-radius: 4px;
  padding: 5px;
}
.ita-header__accordion-menu .ita-header__accordion-icon--toggle svg {
  position: absolute;
  width: 15px;
  height: 15px;
}

.header-flag {
  display: flex;
  position: fixed;
  top: 0;
  z-index: 200;
  background-color: #ffffff;
  padding: 0 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-flag {
    padding: 0 36px;
  }
}
@media screen and (min-width: 1024px) {
  .header-flag {
    padding: 0 48px 10px;
  }
}
@media screen and (min-width: 1366px) {
  .header-flag {
    padding-left: 80px;
  }
}
.header-flag .header-flag-img {
  margin-right: 10px;
  padding-top: 1px;
  padding-bottom: 1px;
}
.header-flag .header-flag-img .header-flag-icon {
  width: 23px;
  height: 13px;
}
.header-flag .official-text {
  padding-top: 5px;
  width: 70%;
  font-size: 0.75rem;
}
.header-flag .official-text .us-gov-desc::after {
  display: inline-block;
  margin-left: 4px;
  background-size: 100%;
  width: 0.75rem;
  height: 0.75em;
  content: "";
}
.header-flag .official-text .open::after {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAnElEQVR42u2SsQmAMBBF0zqAA7iEK5hlRASnSJdlBFFbB3ADt7DTnMTGwuYR0tyDD9e9V5xRFAUxTNWzLPSLDTvjbC75JQMRXA4iuBxGcDmP4PJdBiKgvB1LGYiA8giI4HIQweUggstxBJfzCC7nEVzOI7q5AXIWIe5wHEBOIw4JcEBOI9z7A/5HnirCfx5xrU2/FSY14hCXoiiRG6PyzBQ7pWb4AAAAAElFTkSuQmCC");
}
.header-flag .official-text .close::after {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAnUlEQVR42u2Ouw2AMAwFaTMAA7AEK8A6rJGOfZiCDbIFXbARpgBBczKVn3RFPtJdE4vFrk1LL6QfPEld98tZqMIqtI7y9nRUddplFqphEc5yI+tD0YNrxFNuFH0chO0twlG+qds+jV8RLnJ12kAEloMILgcRXE4juJxHcDmP4HIeAeU8Asp5BJCjCC7nEVzOI7icRzA5j+gOYrEY2A6rHMz0TIafFgAAAABJRU5ErkJggg==");
}

.block-howyouknowdescription {
  display: none;
  position: fixed;
  top: 20px;
  z-index: 450;
  background-color: #ffffff;
  padding-top: 16px;
  padding-bottom: 8px;
}
@media screen and (min-width: 360px) {
  .block-howyouknowdescription {
    top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .block-howyouknowdescription {
    top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .block-howyouknowdescription {
    top: 20px;
    width: 100%;
  }
}
@media screen and (min-width: 1366px) {
  .block-howyouknowdescription {
    top: 20px;
    width: 100%;
  }
}
.block-howyouknowdescription .howyouknow-container {
  display: flex;
  justify-content: center;
  margin: 0 2%;
  font-size: 14px;
}
.block-howyouknowdescription .howyouknow-container .header-strong {
  font-weight: bold;
}
.block-howyouknowdescription .howyouknow-container .howyouknow-header-block {
  display: flex;
  align-items: center;
  z-index: 750;
  width: 49%;
}
.block-howyouknowdescription .howyouknow-container .howyouknow-official,
.block-howyouknowdescription .howyouknow-container .howyouknow-secure {
  display: flex;
  align-items: center;
}
.block-howyouknowdescription .howyouknow-container .howyouknow-header-block__icon__img {
  margin-right: 16px;
  width: 40px;
}
@media only screen and (max-width: 767px) {
  .block-howyouknowdescription .howyouknow-container {
    display: block;
  }
  .block-howyouknowdescription .howyouknow-container .howyouknow-header-block {
    width: 98%;
  }
}

div[id=searchContainer] {
  margin-top: 100px;
}

.contextual-region {
  margin-top: 180px !important;
}

.ita-tabs--simple {
  margin-top: 180px !important;
}

.ita-horizontal-list__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin-bottom: 0;
  color: #6f777b;
}

.ita-horizontal-list__title-line {
  margin-bottom: 0;
  background-color: #6f777b;
}

.ita-horizontal-list__item {
  display: flex;
  align-self: stretch;
}

.ita-horizontal-list__item--horizontal {
  /*
    margin: 0;
    padding-right: 24px;
    line-height: 1.5;
    color: #6f777b;
    font-family: 'Merriweather', Arial, Verdana, sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
  */
}
@media screen and (min-width: 768px) {
  .ita-horizontal-list__item--horizontal .ita-static-cards,
  .ita-horizontal-list__item--horizontal .ita-content-cards {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
  }
}
.ita-horizontal-list__item--horizontal .ita-static-cards__top {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .ita-horizontal-list__item--horizontal .ita-static-cards__top {
    flex: 30%;
    width: 100%;
    min-height: 190px;
  }
}
.ita-horizontal-list__item--horizontal .ita-static-cards__middle {
  flex: 1 70%;
  padding: 32px 24px;
  box-sizing: border-box;
}
.ita-horizontal-list__item--horizontal .ita-content-cards--image .ita-content-cards__top {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .ita-horizontal-list__item--horizontal .ita-content-cards--image .ita-content-cards__top {
    flex: 30%;
    width: 100%;
    min-height: 190px;
  }
}
.ita-horizontal-list__item--horizontal .ita-content-cards--image .ita-content-cards__middle {
  flex: 1 70%;
  padding: 32px 24px;
  box-sizing: border-box;
}
.ita-horizontal-list__item--horizontal .ita-static-cards__top img,
.ita-horizontal-list__item--horizontal .ita-content-cards__top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .ita-horizontal-list__item--horizontal .ita-static-cards__top img,
  .ita-horizontal-list__item--horizontal .ita-content-cards__top img {
    position: absolute;
  }
}
.ita-horizontal-list__item--horizontal .ita-static-cards__bottom,
.ita-horizontal-list__item--horizontal .ita-content-cards__bottom {
  flex: 1 1 100%;
}

.ita-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  z-index: 100;
  margin: 25% auto auto;
  width: 88%;
  height: 0;
}
@media screen and (min-width: 768px) {
  .ita-modal {
    width: 90%;
    max-width: 910px;
  }
}

@media screen and (min-width: 1024px) {
  .ita-modal-popup {
    margin: 7% auto auto;
  }
}

.ita-modal-popup-logged-in {
  margin: -84% auto auto;
}
@media screen and (min-width: 1024px) {
  .ita-modal-popup-logged-in {
    left: 50%;
    transform: translateX(-50%);
    margin: 7% auto auto;
  }
}

.ita-modal--show {
  visibility: visible;
  opacity: 1;
}

.ita-modal__content {
  border: solid 1px #dee0e2;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  padding: 2rem;
}

.ita-modal__header {
  position: relative;
}

.ita-modal__button--close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #5b616b;
  padding: 2px 8px;
}
.ita-modal__button--close:hover, .ita-modal__button--close:focus {
  background-color: #727a87;
}

.ita-modal__heading {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
}

.ita-modal__bar {
  background-color: #000000;
}

.ita-modal__button {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  text-transform: uppercase;
}

.ita-office-map-block {
  position: relative;
  background-image: url("/themes/custom/ita/images/sample/office-map.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 600px;
}
.ita-office-map-block .ita-office-map-select {
  display: none;
  margin-bottom: 16px;
  border: solid 2px #bbbbbb;
  background-color: #ffffff;
  background-position: 95% center;
  background-size: 15px 30px;
  padding: 8px 18px;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .ita-office-map-block .ita-office-map-select {
    position: absolute;
    margin-bottom: 0;
    width: 24%;
    height: 7%;
    font-size: 0.9em;
  }
}
.ita-office-map-block .united-states {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ita-office-map-block .united-states {
    top: 28%;
    left: 7%;
  }
}
.ita-office-map-block .western-hemisphere {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ita-office-map-block .western-hemisphere {
    top: 54%;
    left: 7%;
  }
}
.ita-office-map-block .europe {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ita-office-map-block .europe {
    top: 28%;
    left: 38%;
  }
}
.ita-office-map-block .asia {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ita-office-map-block .asia {
    top: 54%;
    left: 68%;
  }
}
.ita-office-map-block .middle-east-and-africa {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ita-office-map-block .middle-east-and-africa {
    top: 54%;
    left: 38%;
  }
}
.ita-office-map-block .china {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ita-office-map-block .china {
    top: 28%;
    left: 68%;
  }
}

.ita-office-map__subtitle {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 0;
  color: #6f777b;
}

.ita-office-map__subtitle-line {
  background-color: #6f777b;
}

.ita-pager__items {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.ita-pager__item {
  margin-right: 16px;
}

.ita-pager__link {
  border-radius: 3px;
  padding: 4px 16px;
  color: #222f3a;
}
.ita-pager__link:hover, .ita-pager__link:focus, .ita-pager__link.ita-pager__link--active {
  background-color: #112e51;
  text-decoration: none;
  color: #ffffff;
}

.ita-pager__item-text {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ita-highlightsection {
  margin: 36px 0;
  background-color: #267daf;
  padding: 24px;
}
.ita-highlightsection .grid {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .ita-highlightsection.ita-highlightsection--default .grid {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: none) and (min-width: 360px) {
  .ita-highlightsection.ita-highlightsection--default .grid .col-3.ita-highlightsection__item,
  .ita-highlightsection.ita-highlightsection--default .grid .col-4.ita-highlightsection__item {
    flex-basis: 46%;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: none) and (min-width: 768px) {
  .ita-highlightsection.ita-highlightsection--default .grid .col-3.ita-highlightsection__item,
  .ita-highlightsection.ita-highlightsection--default .grid .col-4.ita-highlightsection__item {
    flex-basis: 46%;
  }
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: none) and (min-width: 1024px) {
  .ita-highlightsection.ita-highlightsection--default .grid .col-3.ita-highlightsection__item,
  .ita-highlightsection.ita-highlightsection--default .grid .col-4.ita-highlightsection__item {
    flex-basis: 46%;
  }
}
@media screen and (min-width: 1024px) {
  .ita-highlightsection .col-1 .ita-highlightitem__button {
    width: auto;
    min-width: 50%;
  }
}
.ita-highlightsection .col-2 {
  width: 96%;
}
@media screen and (min-width: 360px) {
  .ita-highlightsection .col-2 {
    width: 96%;
  }
}
@media screen and (min-width: 1024px) {
  .ita-highlightsection .col-2 {
    width: 46%;
  }
}

.ita-highlightsection--small {
  background-color: #ccdeed;
}
.ita-highlightsection--small ul li {
  color: #000000 !important;
}
.ita-highlightsection--small ul li a {
  color: #000000 !important;
}
.ita-highlightsection--small .ita-highlightsection__title {
  color: #267daf;
}
.ita-highlightsection--small .ita-highlightsection__line {
  background-color: #267daf;
  text-align: left;
}
.ita-highlightsection--small .ita-highlightitem__image {
  margin-right: 0;
}
.ita-highlightsection--small .ita-highlightsection__link--secondary {
  color: #000000;
}

.ita-highlightsection__top-content {
  margin: 2%;
  width: 96%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
}

.ita-highlightsection__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 0;
  color: #ffffff;
}

.ita-highlightsection__link {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .ita-highlightsection__link {
    margin-bottom: 0;
  }
}

.ita-highlightsection__link--secondary {
  position: relative;
  color: #ffffff;
}
.ita-highlightsection__link--secondary:hover, .ita-highlightsection__link--secondary:focus {
  text-decoration: none;
}
.ita-highlightsection__link--secondary:hover:after, .ita-highlightsection__link--secondary:focus:after {
  right: -8px;
}
.ita-highlightsection__link--secondary:after {
  position: relative;
  right: 0;
  transition: all 0.3s ease-in-out;
  margin-right: 8px;
  margin-left: 24px;
  content: "➞";
}

.ita-highlightsection__line {
  margin: 6px 0 18px;
  border: 0;
  background-color: #ffffff;
  width: 65px;
  height: 3px;
  text-align: left;
}

.ita-sidenav__menu-item {
  position: relative;
  padding: 0;
  list-style: none;
}

.ita-sidenav__menu-link {
  display: block;
  border-left: 2px solid transparent;
  padding: 12px 30px 12px 12px;
  text-decoration: none;
  font-weight: 300;
}
.ita-sidenav__menu-link:hover, .ita-sidenav__menu-link:focus, .ita-sidenav__menu-link.is-active {
  text-decoration: none;
}

.ita-sidenav__toggle {
  position: absolute;
  top: 0;
  right: 12px;
  cursor: pointer;
  padding: 9px;
  width: 12px;
  min-width: 12px;
  height: 24px;
}

.ita-sidenav__toggle--open,
.ita-sidenav__toggle--closed {
  display: none;
}
.ita-sidenav__toggle--open.ita-sidenav__toggle--show,
.ita-sidenav__toggle--closed.ita-sidenav__toggle--show {
  display: block;
}

.ita-sidenav__menu-item--expanded .ita-sidenav__menu {
  display: block;
}

.ita-sidenav__menu-item--collapsed .ita-sidenav__menu {
  display: none;
}

.ita-sidenav__menu {
  padding: 0;
  list-style: none;
}
.ita-sidenav__menu > .ita-sidenav__menu-item {
  border-bottom: 1px solid #5b616b;
  background-color: #ccdeed;
}
.ita-sidenav__menu > .ita-sidenav__menu-item.ita-sidenav__menu-item--active-trail .ita-sidenav__menu-link--below {
  border-color: transparent;
  background-color: #ccdeed;
  color: #005ea5;
}
.ita-sidenav__menu > .ita-sidenav__menu-item .ita-sidenav__menu-link {
  border-color: transparent;
  color: #005ea5;
}
.ita-sidenav__menu > .ita-sidenav__menu-item .ita-sidenav__menu-link:hover, .ita-sidenav__menu > .ita-sidenav__menu-item .ita-sidenav__menu-link:focus {
  border-color: #005ea5;
  background-color: #ccdeed;
}
.ita-sidenav__menu > .ita-sidenav__menu-item .ita-sidenav__menu-link.is-active {
  border-color: #005ea5;
}
.ita-sidenav__menu .ita-sidenav__menu {
  background-color: #ffffff;
  padding: 9px 12px;
}
.ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item {
  border-bottom: 0;
  background-color: #ffffff;
}
.ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item.ita-sidenav__menu-item--active-trail .ita-sidenav__menu-link--below {
  border-color: #005ea5;
  background-color: #ffffff;
  color: #005ea5;
}
.ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item .ita-sidenav__menu-link {
  margin: 9px 0;
  border-color: transparent;
  background-color: #ffffff;
  padding: 0 6px;
  color: #005ea5;
  font-size: 0.8em;
}
.ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item .ita-sidenav__menu-link:hover, .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item .ita-sidenav__menu-link:focus, .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item .ita-sidenav__menu-link.is-active {
  border-color: #005ea5;
  background-color: #ffffff;
  font-weight: bold;
}

.ccg-sidenav .ita-sidenav__menu {
  padding: 0;
  list-style: none;
}
.ccg-sidenav .ita-sidenav__menu > .ita-sidenav__menu-item {
  border-bottom: 0;
}
.ccg-sidenav .ita-sidenav__menu > .ita-sidenav__menu-item.ita-sidenav__menu-item--active-trail > .ita-sidenav__menu-link {
  border-color: #005ea5;
  background-color: #005ea5;
  color: #ffffff;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item {
  border-bottom: 1px solid #5b616b;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item.ita-sidenav__menu-item--active-trail .ita-sidenav__menu-link--below {
  border-color: transparent;
  background-color: #ccdeed;
  color: #005ea5;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-link {
  margin: 0;
  border-color: transparent;
  background-color: #ccdeed;
  padding: 12px 30px 12px 12px;
  color: #005ea5;
  font-size: 18px;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-link:hover, .ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-link:focus {
  border-color: #005ea5;
  background-color: #ccdeed;
  font-weight: 300;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-link.is-active {
  border-color: transparent;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item--collapsed.is-active .ita-sidenav__menu-link {
  border-color: #005ea5;
  background-color: #ccdeed;
  color: #005ea5;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item--collapsed.is-active .ita-sidenav__menu {
  display: block;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item--collapsed.is-active .ita-sidenav__menu .ita-sidenav__menu-link {
  border-color: transparent;
  background-color: #ffffff;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item--collapsed.is-active .ita-sidenav__menu .ita-sidenav__menu-link:hover, .ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item--collapsed.is-active .ita-sidenav__menu .ita-sidenav__menu-link:focus {
  border-color: #005ea5;
  font-weight: bold;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item--collapsed .ita-sidenav__menu {
  display: none;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu {
  padding: 9px 12px;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-item {
  border-bottom: 0;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-link {
  margin: 9px 0;
  border-color: transparent;
  background-color: #ffffff;
  padding: 0 6px;
  color: #005ea5;
  font-size: 0.8em;
}
.ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-link:hover, .ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-link:focus, .ccg-sidenav .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu .ita-sidenav__menu-link.is-active {
  border-color: #005ea5;
  font-weight: bold;
}

.views-element-container {
  position: sticky;
  top: 170px;
  bottom: 20px;
  z-index: 51;
}

.ita-slider__item {
  display: none;
}

.slick-dots {
  margin-top: 1rem;
  padding: 0;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin-right: 8px;
  list-style: none;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li:only-child {
  display: none;
}
.slick-dots li button {
  border: 0;
  border-radius: 100%;
  background-color: #d3d3d3;
  padding: 0;
  width: 12px;
  height: 12px;
  overflow: hidden;
  text-indent: -9999px;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  background-color: #005ea5;
}
.slick-dots li.slick-active button {
  background-color: #005ea5;
}

.ita-slider {
  position: relative;
}

.slick-arrow {
  border: 0;
  background-color: #6f777b;
  cursor: pointer;
  width: 36px;
  height: 40px;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-image: url("/themes/custom/ita/images/svg/white_arrow_next.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  overflow: hidden;
  text-indent: -9999px;
}

.slick-prev {
  right: 38px;
  background-image: url("/themes/custom/ita/images/svg/white_arrow_prev.svg");
}

.ita-tab--slick {
  background-color: rgba(241, 241, 241, 0.5);
}
.ita-tab--slick .slick-arrow {
  background-color: #f1f1f1;
  height: 100%;
}
.ita-tab--slick .slick-arrow:hover, .ita-tab--slick .slick-arrow:focus {
  background-color: #dee0e2;
}
.ita-tab--slick .slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.ita-tab--slick .slick-prev {
  left: -36px;
  background-image: url("/themes/custom/ita/images/svg/black_arrow_prev.svg");
}
.ita-tab--slick .slick-next {
  right: -36px;
  background-image: url("/themes/custom/ita/images/svg/black_arrow_next.svg");
}

.ita-success-story-block__slider .slick-list {
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.ita-success-story-block__header {
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .ita-success-story-block__header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.ita-success-story-block__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  color: #6f777b;
}

.ita-success-story-block__cta-link {
  padding-bottom: 3px;
}
.ita-success-story-block__cta-link .link--secondary {
  color: #000000;
}

.ita-success-story-block__spacer {
  background-color: #6f777b;
}

.ita-tab {
  display: none;
}
@media screen and (min-width: 1024px) {
  .ita-tab {
    display: flex;
  }
}
.ita-tab--vertical {
  flex: 1 0 100%;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .ita-tab--vertical {
    flex: 1 0 30%;
  }
}
.ita-tab__card {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  display: flex;
  align-items: center;
  border: solid 1px #dee0e2;
  background-color: #f1f1f1;
  cursor: pointer;
  padding: 24px;
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
}
.ita-tab__card--active {
  border-top: solid 3px #004a7b;
  background-color: #dee0e2;
  padding-top: 22px;
  color: #004a7b;
}
.ita-tab__card:hover, .ita-tab__card:focus {
  background-color: #dee0e2;
  text-decoration: none;
}
.ita-tab__content--hidden {
  display: none;
}
.ita-tab__content--active {
  display: block;
}
.ita-tab__content img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .ita-tab__content .media-embed__media {
    width: 75%;
  }
}

.ita-tab--dropdown {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ita-tab--dropdown {
    display: none;
  }
}

.ita-tab--slick {
  margin-left: 34px;
  width: 852px;
}
.ita-tab--slick.slick-slider {
  display: none;
}
@media screen and (min-width: 1024px) {
  .ita-tab--slick.slick-slider {
    display: block;
  }
}

.ita-tab__items-label--dropdown {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ita-tab__items--dropdown {
  padding-right: 24px;
}

.ita-tabs--vertical {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .ita-tabs--vertical {
    flex-wrap: nowrap;
  }
}
.ita-tabs--vertical .ita-tab__card--active {
  border-top: 0;
  border-left: solid 3px #004a7b;
}
.ita-tabs--vertical .ita-tab__content {
  flex: 1 0 100%;
  overflow-y: scroll;
}
@media screen and (min-width: 1024px) {
  .ita-tabs--vertical .ita-tab__content {
    flex: 1 0 70%;
    padding: 0 32px;
  }
}

@media screen and (min-width: 1024px) {
  .ita-tabs--horizontal .ita-tab__content {
    padding: 32px;
  }
}

.ita-tabs--simple {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dee0e2;
  padding: 0;
  list-style: none;
}
.ita-tabs--simple li {
  margin-right: 28px;
}
.ita-tabs--simple li a {
  border-bottom: 3px solid transparent;
  padding-bottom: 8px;
}
.ita-tabs--simple li a:hover, .ita-tabs--simple li a:focus, .ita-tabs--simple li a.is-active {
  border-color: #004a7b;
  text-decoration: none;
}

.tabpanel-exit {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ita-vertical-list__item {
  border-top: 1px solid #bfc1c3;
}

.layout-page {
  position: relative;
}

.layout-container,
.ita-video,
.ita-office-page,
.explorer__search__message-container,
.explorer__search__page-container,
.explorer__search__result-container,
.explorer__form,
.ita-content-page,
.ac--meeting {
  margin-right: auto;
  margin-left: auto;
  padding: 24px 16px 40px;
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .layout-container,
  .ita-video,
  .ita-office-page,
  .explorer__search__message-container,
  .explorer__search__page-container,
  .explorer__search__result-container,
  .explorer__form,
  .ita-content-page,
  .ac--meeting {
    padding: 18px 48px 80px;
    max-width: 720px;
  }
}
@media screen and (min-width: 1024px) {
  .layout-container,
  .ita-video,
  .ita-office-page,
  .explorer__search__message-container,
  .explorer__search__page-container,
  .explorer__search__result-container,
  .explorer__form,
  .ita-content-page,
  .ac--meeting {
    max-width: 1046px;
  }
}
@media screen and (min-width: 1366px) {
  .layout-container,
  .ita-video,
  .ita-office-page,
  .explorer__search__message-container,
  .explorer__search__page-container,
  .explorer__search__result-container,
  .explorer__form,
  .ita-content-page,
  .ac--meeting {
    max-width: 1366px;
  }
}
.layout-container.layout-container--no-padding,
.layout-container--no-padding.ita-video,
.layout-container--no-padding.ita-office-page,
.layout-container--no-padding.explorer__search__message-container,
.layout-container--no-padding.explorer__search__page-container,
.layout-container--no-padding.explorer__search__result-container,
.layout-container--no-padding.explorer__form,
.layout-container--no-padding.ita-content-page,
.layout-container--no-padding.ac--meeting {
  padding: 0;
}

.grid,
.explorer__result,
.explorer__search__message-container,
.explorer__search__page-container,
.explorer__search__result-container,
.explorer__form {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: center;
  margin-right: -2%;
  margin-left: -2%;
}
@media screen and (min-width: 768px) {
  .grid,
  .explorer__result,
  .explorer__search__message-container,
  .explorer__search__page-container,
  .explorer__search__result-container,
  .explorer__form {
    align-items: stretch;
  }
}
.grid.ita-footer__main,
.ita-footer__main.explorer__result,
.ita-footer__main.explorer__search__message-container,
.ita-footer__main.explorer__search__page-container,
.ita-footer__main.explorer__search__result-container,
.ita-footer__main.explorer__form {
  margin-left: 2%;
}

.col-0 {
  margin: 2%;
  width: 96%;
}

.col-1 {
  margin: 2%;
  width: 96%;
}

.col-2 {
  flex: 0 auto;
  margin: 2%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .col-2 {
    width: 46%;
  }
}

.col-2--full-mobile {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .col-2--full-mobile {
    width: 46%;
  }
}

.col-2of3 {
  flex: 0 auto;
  margin: 2%;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .col-2of3 {
    width: 62.66%;
  }
}

.col-3of4 {
  flex: 0 auto;
  flex-basis: 96%;
  margin: 2%;
  width: 96%;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .col-3of4 {
    flex-basis: 71%;
    width: 71%;
  }
}

.col-1of4 {
  flex-basis: 96%;
  margin: 2%;
  width: 96%;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .col-1of4 {
    flex-basis: 21%;
    width: 21%;
  }
}

.col-3,
.content-finder__feed-item--featured > .views-element-container {
  position: relative;
  flex: 0 auto;
  flex-basis: 96%;
  margin: 2%;
}
@media screen and (min-width: 1024px) {
  .col-3,
  .content-finder__feed-item--featured > .views-element-container {
    flex-basis: 29.33%;
  }
}

.col-3--full-mobile {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .col-3--full-mobile {
    width: 29.33%;
  }
}

.col-3--half-mobile {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .col-3--half-mobile {
    width: 46%;
  }
}
@media screen and (min-width: 1024px) {
  .col-3--half-mobile {
    width: 29.33%;
  }
}

.col-4 {
  margin: 2%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .col-4 {
    width: 46%;
  }
}
@media screen and (min-width: 1024px) {
  .col-4 {
    width: 21%;
  }
}

.col-6 {
  margin: 2%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .col-6 {
    width: 29.33%;
  }
}
@media screen and (min-width: 1024px) {
  .col-6 {
    width: 12.66%;
  }
}

@media screen and (min-width: 40em) {
  .layout--twocol-section,
  .layout--twocol-padded {
    flex-wrap: nowrap;
  }
  .layout--twocol-section .layout__region--first,
  .layout--twocol-section .layout__region--second,
  .layout--twocol-padded .layout__region--first,
  .layout--twocol-padded .layout__region--second {
    box-sizing: border-box;
  }
  .layout--twocol-section .layout__region--first,
  .layout--twocol-padded .layout__region--first {
    padding-right: 24px;
  }
  .layout--twocol-section .layout__region--second,
  .layout--twocol-padded .layout__region--second {
    padding-left: 24px;
  }
}
@media screen and (min-width: 1024px) {
  main.menu-subnav-visible {
    margin-top: 52px;
  }
}

#kssref-templates-section .kss-section__modifiers,
#kssref-templates-topic .kss-section__modifiers,
#kssref-templates-content .kss-section__modifiers,
#kssref-templates-destination .kss-section__modifiers {
  border-bottom: 1px solid #cccccc;
}
#kssref-templates-section .kss-section__markup,
#kssref-templates-topic .kss-section__markup,
#kssref-templates-content .kss-section__markup,
#kssref-templates-destination .kss-section__markup {
  display: none;
}

.about-us__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  margin: 1rem 0 0;
  color: #6f777b;
}

.about-us__title-line {
  background-color: #6f777b;
}

.about-us__subtitle {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin-top: 2rem;
  color: #6f777b;
}

.about-us__subtitle--secondary {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-us__subtitle--secondary {
    display: block;
  }
}

.about-us__feeds h3 {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 0;
  color: #2c2c2c;
}
.about-us__feeds p:first-child {
  margin-top: 0;
}

.about-us__email {
  display: none;
}

@media screen and (min-width: 768px) {
  .about-us__feeds--experts .about-us__feeds-header,
  .about-us__feeds--experts .ita-bio-contact-cta {
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: center;
    margin-right: -2%;
    margin-left: -2%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .about-us__feeds--experts .about-us__feeds-header,
  .about-us__feeds--experts .ita-bio-contact-cta {
    align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .about-us__feeds--experts .ita-bio-contact-cta__meta,
  .about-us__feeds--experts .ita-bio-contact-cta__content {
    flex: 0 auto;
    margin: 2%;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .about-us__feeds--experts .ita-bio-contact-cta__meta,
  .about-us__feeds--experts .ita-bio-contact-cta__content {
    width: 46%;
  }
}
@media screen and (min-width: 768px) {
  .about-us__feeds--experts .about-us__feeds-header .about-us__subtitle {
    flex: 0 auto;
    margin: 2%;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .about-us__feeds--experts .about-us__feeds-header .about-us__subtitle {
    width: 46%;
  }
}
@media screen and (min-width: 768px) {
  .about-us__feeds--experts .ita-bio-contact-cta__tags--heading {
    display: none;
  }
}

.ac__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  margin: 1rem 0 0;
  color: #6f777b;
}

.ac__title-line {
  background-color: #6f777b;
}

.ac__subtitle {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin-top: 2rem;
}

.ac__download-link .ita-cta-button {
  display: inline-block;
}
.ac__download-link .ita-cta-button:after {
  margin-left: 2rem;
  content: url("/themes/custom/ita/images/svg/ic_file_download_24px_white.svg");
}

.ac__sidebar > .ita-sidenav__menu > .ita-sidenav__menu-item:first-child .ita-sidenav__menu-link {
  background-color: #005ea5;
  color: #ffffff;
}
.ac__sidebar > .ita-sidenav__menu > .ita-sidenav__menu-item:first-child .ita-sidenav__menu-link.is-active {
  background-color: transparent;
  color: #005ea5;
}

.ac--charter .ac__signature {
  margin-bottom: 2rem;
}
.ac--charter .ac__signature-signer {
  margin-top: 1rem;
}
.ac--charter .ac__date {
  font-style: italic;
}

.ac--meeting .ac__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.17;
  color: #000000;
  font-size: 40px;
  color: #000000;
}
.ac--meeting .ac__title-line {
  background-color: #000000;
}
.ac--meeting .ac__subtitle,
.ac--meeting .ita-horizontal-list__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  margin-top: 2rem;
  color: #6f777b;
}
.ac--meeting .ac__subtitle-line {
  background-color: #6f777b;
}

.ac__type {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #005ea5;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .ac__type {
    margin-right: 12px;
    margin-bottom: 0;
  }
}

.ac--members--committee .ita-bio-reference__content,
.ac--members--committee .ita-bio-reference__info--additional {
  flex-basis: 50%;
}
.ac--members--committee .ita-bio-reference__content {
  margin-right: 8px;
}

@media screen and (min-width: 768px) {
  .ac--members--subcommittee .ita-vertical-list,
  .ac--members--itac .ita-vertical-list {
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: center;
    margin-right: -2%;
    margin-left: -2%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .ac--members--subcommittee .ita-vertical-list,
  .ac--members--itac .ita-vertical-list {
    align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .ac--members--subcommittee .ita-vertical-list__item,
  .ac--members--itac .ita-vertical-list__item {
    flex: 0 auto;
    margin: 2%;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .ac--members--subcommittee .ita-vertical-list__item,
  .ac--members--itac .ita-vertical-list__item {
    width: 46%;
  }
}
@media screen and (min-width: 768px) {
  .ac--members--subcommittee .ita-bio-reference__content,
  .ac--members--itac .ita-bio-reference__content {
    flex-basis: 100%;
  }
}

.ita-biography__header {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .ita-biography__header {
    display: flex;
  }
}

.ita-biography__image {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 250px;
  height: auto;
  max-height: 250px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .ita-biography__image {
    margin-right: 48px;
    margin-left: 0;
  }
}
.ita-biography__image img {
  border-radius: 100%;
  width: 250px;
  height: 250px;
}

.ita-biography__name {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  text-transform: uppercase;
}

.ita-biography__meta-item {
  line-height: 1.43;
  color: #6f777b;
  font-size: 14px;
}

.ita-biography__summary {
  margin-bottom: 32px;
}

.content-finder__title {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.content-finder__feed-item {
  margin-top: 32px;
  margin-bottom: 32px;
}
.content-finder__feed-item .ita-success-story-cards__right {
  padding-top: 0;
}

.content-finder__feed-item--featured {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: center;
  margin-right: -2%;
  margin-left: -2%;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .content-finder__feed-item--featured {
    align-items: stretch;
  }
}
.content-finder__feed-item--featured > .views-element-container:nth-child(2) {
  order: 3;
}
.content-finder__feed-item--featured .views-row,
.content-finder__feed-item--featured .ita-content-cards,
.content-finder__feed-item--featured .ita-static-cards {
  height: 100%;
}

.content-finder__subtitle {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 0;
  color: #6f777b;
}

.content-finder__subtitle-line {
  background-color: #6f777b;
}

.content-finder__text {
  color: #6f777b;
}

.content-finder-confirmation {
  margin-right: auto;
  margin-left: auto;
  border: solid 1px #dee0e2;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2);
  padding: 64px;
  max-width: 450px;
}
.content-finder-confirmation .ita-cta-button {
  margin-right: 16px;
}

.content-finder-confirmation__message {
  margin-bottom: 8px;
}

.content-finder-confirmation__message--warning {
  margin-bottom: 16px;
  line-height: 1.86;
  color: #b10e1e;
  font-size: 14px;
}

.content-finder__sidebar .ita-office {
  background-color: #f8f8f8;
  padding: 32px;
}
.content-finder__sidebar .ita-office__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
  margin-bottom: 24px;
  color: #6f777b;
}
.content-finder__sidebar .ita-office__icon {
  float: left;
  margin-right: 8px;
}
.content-finder__sidebar .ita-office__icon img {
  width: 20px;
  height: auto;
}
.content-finder__sidebar .ita-office__subtitle {
  line-height: 1.43;
  font-size: 14px;
  font-weight: 700;
}
.content-finder__sidebar .ita-office__info {
  clear: left;
  margin-top: 16px;
  color: #6f777b;
  font-size: 14px;
}
.content-finder__sidebar .ita-office__phone,
.content-finder__sidebar .ita-office__email {
  margin-top: 8px;
}
.content-finder__sidebar a {
  font-weight: 300;
}

.ita-content-page a:not(.pdf__media, .ita-cta-button)[href$=".pdf"]:before {
  margin-right: 8px;
  background-image: url("/themes/custom/ita/images/svg/pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 15px;
  width: auto;
  height: 18px;
  content: "";
}

.ita-content-page__header {
  padding-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .ita-content-page__header {
    display: flex;
    align-items: center;
  }
}

.ita-content-page__type {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #005ea5;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .ita-content-page__type {
    margin-right: 12px;
    margin-bottom: 0;
  }
}

.ita-content-page__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  margin: 0;
  text-transform: uppercase;
}

.ita-content-page__spacer {
  background-color: #000000;
}

.ita-content-page__media img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .ita-content-page__body .media-embed__media {
    max-width: 50vw;
  }
}

.ita-content-page__summary {
  margin-bottom: 32px;
}

.ita-content-page__content--post {
  margin-top: 48px;
}

.news-blog .ita-content-page__type {
  color: #218379;
}

.press-release .ita-content-page__media img {
  float: left;
  clear: both;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .press-release .ita-content-page__media img {
    float: right;
    margin: 1px 5px 40px 20px;
    width: 33%;
    height: auto;
  }
}
.press-release .ita-content-page__media .media-caption {
  float: right;
  margin: 5px 1px 10px;
  width: 100%;
  font-size: 11.5px;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .press-release .ita-content-page__media .media-caption {
    float: left;
    margin: -30px 1px 5px 66.5%;
    width: 34%;
    font-size: 11.5px;
    font-style: italic;
  }
}
.press-release .ita-content-page__type {
  color: #2b8cc4;
}

.success-story .ita-content-page__type {
  color: #912b88;
}
@media screen and (min-width: 1024px) {
  .success-story .ita-content-page__media {
    float: right;
    margin-left: 48px;
    width: 50%;
    max-width: 560px;
  }
}

@media screen and (min-width: 768px) {
  .data-visualization .ita-content-page {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  .data-visualization .ita-content-page {
    padding: 0 20px;
    max-width: none;
  }
}

.explorer-container {
  background-color: #f8f8f8;
  padding-top: 3em;
  font-family: inherit !important;
}

.explorer {
  font-family: inherit !important;
}

.explorer__home,
.explorer__search__header-container {
  margin-top: 90px !important;
  margin-bottom: 0;
  background-color: #f8f8f8;
  padding-bottom: 12px;
}

.explorer__subheader {
  opacity: 1;
  margin-bottom: 2em;
}

.explorer__form-container {
  background-color: #f8f8f8;
  padding-bottom: 2em;
}

.explorer__form input[type=submit], .explorer__form input[type=reset] {
  border-radius: 0;
  width: 8em;
}
.explorer__form fieldset {
  width: 100%;
}

.explorer__message {
  padding: 10px !important;
}

.explorer__search__body-container {
  background-color: #ffffff;
  padding: 4em 0;
}

.explorer__search__message-container,
.explorer__search__page-container,
.explorer__search__result-container,
.explorer__form {
  margin: 0 auto;
  padding: 0 48px;
  width: auto;
}

.explorer__card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  margin: 2%;
  height: auto;
  overflow: inherit;
}

.explorer__card--simple * {
  box-sizing: border-box;
}
.explorer__card--simple .explorer__card__main {
  display: flex;
  flex-direction: column;
  align-items: start;
  border: solid 1px #bfc1c3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  padding: 0;
  height: 100%;
  line-height: 1.44;
}
.explorer__card--simple .explorer__card__date {
  order: 4;
  margin-bottom: 1em;
  padding: 0 12px;
  width: 100%;
  color: #929292;
  font-size: 14px;
  font-weight: normal;
}
.explorer__card--simple .explorer__card__name {
  position: relative;
  order: 2;
  margin-bottom: 32px;
  padding: 0 12px;
  width: 100%;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: bold;
}
.explorer__card--simple .explorer__card__name:after {
  position: absolute;
  bottom: -12px;
  left: 12px;
  background-color: #e01226;
  width: 65px;
  height: 3px;
  content: "";
}
.explorer__card--simple .explorer__card__type {
  order: 1;
  margin-bottom: 1em;
  padding: 0 12px;
  width: 100%;
  color: #929292;
  font-size: 14px;
}
.explorer__card--simple .explorer__card__location {
  order: 5;
  margin-top: 0;
  margin-bottom: 1em;
  padding: 0 12px;
  width: 100%;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: normal;
}
.explorer__card--simple .explorer__card__location li {
  margin: 0;
}
.explorer__card--simple .explorer__card__bottom {
  order: 6;
  margin-top: auto;
  width: 100%;
}
.explorer__card--simple .explorer__card__bottom .cta-button {
  background-color: #b10e1e;
}
.explorer__card--simple .explorer__card__bottom .cta-button p {
  padding-left: 0;
  text-transform: none;
  letter-spacing: 0;
  color: #ffffff;
  font-weight: normal;
}
.explorer__card--simple .explorer__card__bottom .cta-button:hover, .explorer__card--simple .explorer__card__bottom .cta-button:focus {
  transition: all 0.3s ease-in-out;
  background: #e01226;
  filter: brightness(175%);
}
.explorer__card--simple .explorer__card__bottom .cta-button:hover a, .explorer__card--simple .explorer__card__bottom .cta-button:focus a {
  text-decoration: none;
}

.explorer__page {
  margin-top: 2em;
}

.explorer__page__item {
  border-radius: 3px;
  background-color: transparent;
  padding: 0 1em;
  color: #112e51;
}
.explorer__page__item.disabled {
  opacity: 1;
  background-color: #112e51;
  color: #ffffff;
  font-weight: bold;
}

.faq .ita-block-content {
  padding: 0;
}

.ita-how-to__header-container {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.ita-how-to__header-type {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #005ea5;
  font-size: 20px;
}

.ita-how-to__header-tags {
  padding-left: 12px;
}

.ita-how-to__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
}

.ita-how-to__spacer {
  background-color: #000000;
}

.ita-how-to__summary {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 32px;
  line-height: 1.33;
  color: #2c2c2c;
  font-size: 24px;
}
.ita-how-to__summary p {
  margin: 0;
}

.ita-internship__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 0;
  color: #2c2c2c;
}

.ita-internship__spacer {
  background-color: #2c2c2c;
}

.ita-internship__dates {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .ita-internship__dates {
    flex-direction: row;
  }
}

.ita-internship__dates--heading,
.ita-internship__location--heading {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 8px 0;
  line-height: 1.86;
  color: #2c2c2c;
  font-size: 14px;
}

.ita-internship__dates--date {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.22;
  color: #6f777b;
  font-size: 18px;
}

.ita-internship__location--address .address {
  margin: 0;
}

.ita-internship__media {
  display: flex;
  justify-content: center;
}
.ita-internship__media img {
  max-width: 100%;
  height: auto;
}

.ita-internship__content {
  padding: 18px 0;
}

.ita-internship__tag {
  margin-right: 10px;
  border-radius: 4px;
  background-color: #dee0e2;
  padding: 4px 12px;
  color: #b10e1e;
}

.ita-knowledge-product__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  margin-top: 18px;
  padding-top: 36px;
  color: #6f777b;
}

.ccg-sidenav {
  padding-top: 36px;
}

.ita-knowledge-product__spacer {
  background-color: #6f777b;
}

.ita-knowledge-product__summary {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 32px;
  line-height: 1.33;
  color: #2c2c2c;
  font-size: 24px;
}
.ita-knowledge-product__summary p {
  margin: 0;
}

.ita-knowledge-product__published {
  padding-bottom: 16px;
}

.ita-knowledge-product__body {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  color: #2c2c2c;
  font-size: 18px;
}

@media screen and (min-width: 1366px) {
  .ita-landing-page__content .grid {
    flex-wrap: wrap;
  }
}

.ita-landing-page__main {
  padding-top: 0;
}

.ita-landing-page__title--hidden {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ui-dialog-off-canvas .inline-block-create-button,
.ui-dialog-off-canvas .button--primary,
.layout-builder-configure-section .inline-block-create-button,
.layout-builder-configure-section .button--primary {
  border: 0 !important;
  background-color: #4a91d5 !important;
  padding: 12px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 300 !important;
}
.ui-dialog-off-canvas .inline-block-create-button,
.layout-builder-configure-section .inline-block-create-button {
  padding-left: 40px !important;
}
.ui-dialog-off-canvas .block-categories .js-layout-builder-block-link,
.layout-builder-configure-section .block-categories .js-layout-builder-block-link {
  display: block !important;
  padding: 5px !important;
  min-height: 30px;
}
.ui-dialog-off-canvas .block-categories .js-layout-builder-block-link:hover,
.layout-builder-configure-section .block-categories .js-layout-builder-block-link:hover {
  margin: 0 -5px !important;
  background-color: #4a91d5 !important;
  padding: 5px !important;
  min-height: 30px;
  color: #ffffff !important;
}

.node-layout-builder-layout-builder-form .js-form-type-vertical-tabs {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .node-layout-builder-layout-builder-form #edit-actions {
    display: inline !important;
    float: right !important;
    margin: -70px 0 !important;
  }
}
.node-layout-builder-layout-builder-form #edit-submit {
  background-color: #238379 !important;
}
.node-layout-builder-layout-builder-form #edit-discard-changes {
  background-color: #9f353c !important;
}
.node-layout-builder-layout-builder-form #edit-revert {
  background-color: #903a92 !important;
}
.node-layout-builder-layout-builder-form #edit-preview-toggle {
  display: inline !important;
  padding: 20px !important;
}
.node-layout-builder-layout-builder-form #edit-moderation-state-0 {
  display: inline-block !important;
  width: auto !important;
}
.node-layout-builder-layout-builder-form .layout-builder__message--overrides {
  display: none !important;
}
.node-layout-builder-layout-builder-form .form-item-toggle-content-preview {
  margin-top: 20px !important;
}
.node-layout-builder-layout-builder-form .field--name-moderation-state {
  display: inline !important;
}
.node-layout-builder-layout-builder-form .form-item-moderation-state-0-current {
  display: inline !important;
  padding: 0 30px !important;
}
.node-layout-builder-layout-builder-form .form-item-moderation-state-0-state {
  display: inline;
  float: right;
}

.ita-maintenance-page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  text-align: center;
}
.ita-maintenance-page .container {
  width: 500px;
}
.ita-maintenance-page a {
  font-size: 35px;
}

.media-library__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  color: #2c2c2c;
}
.media-library__spacer {
  margin: 12px 0 48px;
  background-color: #2c2c2c;
}

.ita-office-page__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  text-transform: uppercase;
}

.ita-office-page__spacer {
  background-color: #000000;
}

.ita-office-page__media {
  padding-bottom: 48px;
}
.ita-office-page__media img {
  width: 100%;
  height: auto;
}

.ita-office-page__summary {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 32px;
  line-height: 1.33;
  color: #2c2c2c;
  font-size: 24px;
}
.ita-office-page__summary p {
  margin: 0;
}

.ita-office-page__body {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 18px;
  line-height: 1.44;
  color: #2c2c2c;
  font-size: 18px;
}
.ita-office-page__body p {
  margin: 0;
}

.ita-office-page__address {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 18px;
  line-height: 1.44;
  color: #2c2c2c;
  font-size: 18px;
}

.ita-report .ita-hero-banner__summary p {
  margin-top: 0;
  color: #ffffff;
}

.ita-report__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  margin: 1rem 0 0;
  color: #2c2c2c;
}

.ita-report__title-line {
  background-color: #2c2c2c;
}

.ita-report__card {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .ita-report__card {
    flex-direction: row;
    align-items: center;
    margin: 1rem;
  }
}

.ita-report__card-title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  margin: 1rem 0 0;
  color: #2c2c2c;
}

.ita-report__card--top {
  margin: 1rem;
}
@media screen and (min-width: 768px) {
  .ita-report__card--top {
    flex: 1 1 auto;
    width: 67%;
  }
}

.ita-report__card--bottom {
  margin: 1rem;
}
@media screen and (min-width: 768px) {
  .ita-report__card--bottom {
    flex: 1 1 auto;
    width: 33%;
  }
}

.ita-report__next {
  width: 240px;
}

@media screen and (min-width: 768px) {
  .ita-report__main .views-row:nth-child(even) .ita-report__card {
    flex-direction: row-reverse;
  }
}
#searchContainer .searchMessage {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
  font-size: 24px;
  font-size: 1.3em;
  font-weight: normal;
}
#searchContainer .searchMessage .searchMessageKeyword {
  color: #208078;
}
#searchContainer .ResultsContainer {
  display: flex;
  flex-wrap: wrap;
}
#searchContainer .FiltersContainer {
  margin: 0;
  background-color: #dee0e2;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #searchContainer .FiltersContainer {
    width: 29.33%;
  }
}
#searchContainer .FiltersContainer div:first-of-type {
  margin-left: 2rem;
}
#searchContainer .FiltersContainer button {
  color: #ffffff;
}
#searchContainer .FiltersContainer .FilterCategory {
  margin: 1rem 0 1rem 2rem;
}
#searchContainer .FiltersContainer .FilterCategory label {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  display: flex;
  color: #2c2c2c;
  font-size: 14px;
}
#searchContainer button {
  position: relative;
  top: 1px;
  right: 1px;
  border: 2px solid #218379;
  background-color: #218379;
  padding: 10px;
  appearance: none;
}
#searchContainer input {
  background-color: #ffffff;
}
#searchContainer input[type=checkbox] {
  margin-right: 4px;
  width: 18px;
  height: 18px;
  appearance: none;
}
#searchContainer input[type=checkbox]:checked:after {
  display: block;
  position: relative;
  top: 0;
  left: 4px;
  transform: rotate(45deg);
  border: solid #2c2c2c;
  border-width: 0 3px 3px 0;
  width: 7px;
  height: 12px;
  content: "";
}
#searchContainer input[type=text] {
  color: #2c2c2c;
}
#searchContainer form {
  background-color: #dee0e2;
  padding: 50px 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #searchContainer form {
    padding: 50px 0 50px 29.33%;
    text-align: left;
  }
}
#searchContainer form input {
  background-color: #f8f8f8;
  font-size: 14px;
}
#searchContainer form button {
  position: relative;
  right: 0;
  width: 99%;
}
@media screen and (min-width: 768px) {
  #searchContainer form button {
    width: 67%;
  }
}
@media screen and (min-width: 1024px) {
  #searchContainer form button {
    width: unset;
  }
}
#searchContainer form button svg {
  width: 15px;
  height: 15px;
}
#searchContainer form button svg path {
  fill: #ffffff;
}
#searchContainer .totalMessage {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  line-height: 1.5;
  font-size: 1.3em;
}
#searchContainer .anItem {
  padding: 12px 0;
}
#searchContainer .anItem a {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 2.39;
  font-size: 0.965em;
}
#searchContainer .anItem p {
  margin: 0;
  line-height: 1.69;
  color: #6f777b;
  font-size: 0.7em;
}
#searchContainer .pagination {
  display: flex;
  justify-content: space-between;
  padding-left: 3%;
  width: 80%;
  list-style: none;
}
#searchContainer .pagination li {
  text-align: center;
}
#searchContainer .pagination li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  color: #112e51;
}
#searchContainer .pagination li a:hover, #searchContainer .pagination li a:focus {
  background-color: #004b84;
  color: #ffffff;
}
#searchContainer .pagination li.active a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #112e51;
  width: 48px;
  height: 27px;
  color: #ffffff;
}
#searchContainer .pagination li.disabled a {
  cursor: default;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #6f777b;
}
@media screen and (min-width: 1024px) {
  #searchContainer .pagination {
    justify-content: space-around;
    padding-right: 5%;
    padding-left: 29.33%;
  }
}

.ita-trade-lead__search-form {
  margin-bottom: 24px;
  background-color: #f8f8f8;
  padding: 12px 24px;
}
.ita-trade-lead__search-form header {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  margin-top: 36px;
}
.ita-trade-lead__search-form .views-exposed-form {
  margin: 12px 0;
}
.ita-trade-lead__search-form .views-exposed-form .form-text {
  float: left;
}
.ita-trade-lead__search-form .views-exposed-form .image-button {
  margin-left: -1px;
  border: 2px solid #218379;
  background-color: #218379;
  padding: 18px;
  width: 17px;
  height: 17px;
  appearance: none;
}
.ita-trade-lead__search-form footer {
  margin-bottom: 24px;
  font-size: 18px;
}

.ita-trade-lead__search-result {
  margin: 12px;
  border-bottom: 1px solid #5b616b;
  padding: 12px;
}
.ita-trade-lead__search-result a {
  text-decoration: none;
  color: #000000;
  font-weight: normal;
}
.ita-trade-lead__search-result a:hover, .ita-trade-lead__search-result a:focus, .ita-trade-lead__search-result a:active {
  text-decoration: underline;
}

.ita-trade-lead__search-body {
  margin-top: 12px;
  color: #5b616b;
  font-size: 14px;
}

.ita-service-offering__header-container {
  padding-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .ita-service-offering__header-container {
    display: flex;
    align-items: center;
  }
}

.ita-service-offering__header-type {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #22709c;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .ita-service-offering__header-type {
    margin-right: 12px;
    margin-bottom: 0;
  }
}

.ita-service-offering__header-tags {
  padding-left: 12px;
}

.ita-service-offering__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  color: #000000;
}

.ita-service-offering__media {
  padding-bottom: 48px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ita-service-offering__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.ita-service-offering__main {
  color: #2c2c2c;
}
.ita-service-offering__main .ita-accordion__body {
  color: #2c2c2c;
}
.ita-service-offering__main .ita-accordion__spacer {
  background-color: #000000;
}

.ita-service-offering__subheading {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 20px;
  margin-top: 48px;
  color: #000000;
}

.ita-service-offering__spacer {
  background-color: #000000;
}

.ita-video__header-container {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.ita-video__header-type {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #005ea5;
  font-size: 20px;
}

.ita-video__header-tags {
  padding-left: 12px;
}

.ita-video__title {
  font-family: "Merriweather", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.33;
  color: #000000;
  font-size: 28px;
  text-transform: uppercase;
}

.ita-video__spacer {
  background-color: #000000;
}

.ita-video__media {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-bottom: 48px;
}
.ita-video__media div:first-child {
  width: 90vw;
  max-width: 1000px;
  height: 50.85vw;
  max-height: 563.3px;
}
.ita-video__media div iframe {
  width: 100%;
  height: 100%;
}

.ita-video__summary {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 32px;
  line-height: 1.33;
  color: #2c2c2c;
  font-size: 24px;
}
.ita-video__summary p {
  margin: 0;
}

.ita-video__body {
  font-family: "PublicSans", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.44;
  color: #2c2c2c;
  font-size: 18px;
}
.ita-video__body p {
  margin: 0;
}

.media-download span {
  vertical-align: middle;
  color: #000000;
  font-size: 14px;
}
.media-download .ic-download {
  width: 11px;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  article .webform-submission-form:not(.webform-submission-itac-application-form) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  article .webform-submission-form:not(.webform-submission-itac-application-form) .js-form-type-textfield,
  article .webform-submission-form:not(.webform-submission-itac-application-form) .js-form-type-email,
  article .webform-submission-form:not(.webform-submission-itac-application-form) .js-form-type-tel {
    flex: 0 46%;
    margin-right: 4%;
  }
  article .webform-submission-form:not(.webform-submission-itac-application-form) .js-form-wrapper {
    flex: 0 100%;
  }
  article .webform-submission-form:not(.webform-submission-itac-application-form) .js-webform-checkboxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  article .webform-submission-form:not(.webform-submission-itac-application-form) .js-webform-checkboxes .js-form-type-checkbox {
    flex: 0 46%;
    margin-right: 4%;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1024px) {
  article .webform-submission-form:not(.webform-submission-itac-application-form) .js-webform-checkboxes .js-form-type-checkbox {
    flex: 0 29.33%;
  }
}
article .webform-submission-form:not(.webform-submission-itac-application-form) input[type=text], article .webform-submission-form:not(.webform-submission-itac-application-form) input[type=email], article .webform-submission-form:not(.webform-submission-itac-application-form) input[type=tel] {
  padding: 10px 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
article .webform-submission-form:not(.webform-submission-itac-application-form) .captcha {
  display: flex;
  flex: 0 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  text-align: center;
}
article .webform-submission-form:not(.webform-submission-itac-application-form) .captcha .form-item {
  margin: 0;
}
article .webform-submission-form:not(.webform-submission-itac-application-form) .webform-elements__section {
  flex: 0 100%;
  margin-bottom: 12px;
  border-top: 1px solid #dee0e2;
  padding-top: 12px;
}
article .webform-submission-form:not(.webform-submission-itac-application-form) .webform-elements__footnote {
  flex: 0 100%;
  padding-top: 24px;
}

.webform-confirmation__message {
  margin-top: 24px;
  background-image: url("../images/svg/ic_check_circle.svg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  padding: 104px 24px 24px;
  text-align: center;
}
.webform-confirmation__message .ita-cta-button {
  display: inline-block;
  margin-top: 24px;
}

.webform-confirmation__message--itac-application {
  text-align: left;
}

.webform-step--completed,
.webform-step--incomplete {
  position: relative;
  padding-left: 35px;
}
.webform-step--completed::before,
.webform-step--incomplete::before {
  position: absolute;
  top: -2px;
  left: 0;
  border: solid 2px #218379;
  border-radius: 2px;
  background-color: #218379;
  width: 24px;
  height: 24px;
  content: "";
}
.webform-step--completed::after,
.webform-step--incomplete::after {
  position: absolute;
  top: 6px;
  left: 8px;
  transform: rotate(-45deg);
  border-bottom: solid 2px #ffffff;
  border-left: solid 2px #ffffff;
  width: 10px;
  height: 5px;
  content: "";
}

.webform-step--incomplete::before {
  border: solid 2px #dee0e2;
  background-color: #dee0e2;
}
.webform-step--incomplete::after {
  border-bottom: 0;
  border-left: 0;
}

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