/** Fonts **/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
/** Variables **/
/** Responsive breakpoints **/
/** Mixins **/
/** Styles **/
/** typography **/
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #08090A;
  font-weight: 300;
  line-height: 1.55;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

h1, .h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
}
@media (min-width: 1440px) {
  h1, .h1 {
    font-size: 48px;
  }
}

h2, .h2 {
  --line-color: #0073FF;
  position: relative;
  max-width: 514px;
  margin: 100px 0 0;
  padding: 30px 0 60px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
}
@media (min-width: 1440px) {
  h2, .h2 {
    margin-top: 120px;
  }
}
@media (min-width: 1440px) {
  h2, .h2 {
    font-size: 42px;
  }
}
h2:before, .h2:before { /* line */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--line-color);
}

h3, .h3 {
  font-size: 26px;
}
@media (min-width: 1440px) {
  h3, .h3 {
    font-size: 28px;
  }
}

h4, .h4 {
  font-size: 22px;
}
@media (min-width: 1440px) {
  h4, .h4 {
    font-size: 24px;
  }
}

h5, .h5 {
  font-size: 18px;
}

strong {
  font-weight: 600;
}

a, a:hover, a:focus {
  color: #08090A;
  text-decoration: none;
  outline: none;
}

a {
  transition: all 0.25s;
}

p {
  margin: 0 0 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

iframe {
  max-width: 100%;
}

ul.menu,
ul.menu ul,
ul.socials,
ul.slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote {
  margin: 3rem 0;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
}
blockquote:before, blockquote:after {
  display: none;
}

.more-link {
  position: relative;
  display: inline-block;
  margin: 40px 0 0;
  padding: 0 20px 0 35px;
  color: #0073FF;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 25px;
  transition: all 0.4s;
  cursor: pointer;
}
@media (min-width: 1440px) {
  .more-link {
    font-size: 20px;
  }
}
.more-link:before { /* icon */
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 21px;
  height: 25px;
  background: #0073FF url(../svg/arrow--white.svg) no-repeat 8px center;
  background-size: 6px auto;
  border-radius: 50px;
  transition: all 0.4s;
}
.more-link:hover {
  padding-left: 42px;
  color: #fff;
}
.more-link:hover:before {
  width: 100%;
  height: 100%;
  background-position-x: 15px;
}
.more-link .more-link-inner {
  position: relative;
  z-index: 2;
}
.more-link.white {
  color: #fff;
}
.more-link.white:before { /* icon */
  background-color: #fff;
  background-image: url(../svg/arrow--blue.svg);
  background-size: 7px auto;
}
.more-link.white:hover {
  color: #0073FF;
}

.full-link {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  cursor: pointer;
}

/** END typography **/
/** page-content **/
.entry-content h1:first-child, .entry-content .h1:first-child, .entry-content h2:first-child, .entry-content .h2:first-child, .entry-content h3:first-child, .entry-content .h3:first-child, .entry-content h4:first-child, .entry-content .h4:first-child, .entry-content blockquote:first-child {
  margin-top: 0;
}
.entry-content h1:last-child, .entry-content .h1:last-child, .entry-content h2:last-child, .entry-content .h2:last-child, .entry-content h3:last-child, .entry-content .h3:last-child, .entry-content h4:last-child, .entry-content .h4:last-child, .entry-content blockquote:last-child {
  margin-bottom: 0;
}
.entry-content h2 + h3, .entry-content h2 + h4, .entry-content h2 + h5, .entry-content h3 + h4, .entry-content h3 + h5, .entry-content h4 + h5 {
  margin-top: 0;
}
.entry-content a:not(.button):not(.more-link) {
  color: #08090A;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.entry-content a:not(.button):not(.more-link):hover {
  color: #0073FF;
  text-decoration: underline;
}
.entry-content ul:not([class]) {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.entry-content ul:not([class]) li {
  position: relative;
  padding: 5px 0 5px 26px;
}
.entry-content ul:not([class]) li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 9px;
  height: 10px;
  background-color: #0073FF;
  border-radius: 50%;
}
.entry-content table:not([class]) {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}
.entry-content table:not([class]) thead, .entry-content table:not([class]) tbody {
  border: none;
}
.entry-content table:not([class]) tr {
  border-bottom: 2px solid #072b31;
}
.entry-content table:not([class]) tr th, .entry-content table:not([class]) tr td {
  padding-left: 0;
  padding-right: 40px;
}
.entry-content table:not([class]) tr th {
  padding-top: 23px;
  padding-bottom: 22px;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
}
.entry-content table:not([class]) tr td {
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 1.4;
}
.entry-content div.table-responsive {
  margin-bottom: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/** END page-content **/
/** WP DEFAULT **/
.alignnone {
  margin: 30px 0;
}

.aligncenter {
  display: block;
  margin: 30px auto;
}

.alignright {
  float: right;
  margin: 5px 0 30px 40px;
}

.alignleft {
  float: left;
  margin: 5px 40px 30px 0;
}

@media (max-width: 600px) {
  .aligncenter, .alignright, .alignleft, .alignnone {
    display: block;
    float: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.wp-caption {
  max-width: 100%;
  margin: 50px 0;
  padding: 0;
  border: 0;
  line-height: 0;
  text-align: left;
}
.wp-caption .wp-caption-text {
  margin: 0;
  padding-top: 18px;
  line-height: 1.35;
}

.pagination {
  margin: 80px 0 0 -4px;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
}
.pagination .nav-links .page-numbers {
  display: inline-block;
  margin-right: 15px;
  padding: 4px;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  text-decoration: none !important;
}
.pagination .nav-links .page-numbers:hover, .pagination .nav-links .page-numbers.current {
  color: #0073FF;
}
.pagination .nav-links .page-numbers.prev {
  margin-right: 40px;
}
.pagination .nav-links .page-numbers.next {
  margin-left: 25px;
  margin-right: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  z-index: 100000;
  top: 5px;
  left: 5px;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  font-size: 1em;
  line-height: normal;
  text-decoration: none;
}

/** END WP DEFAULT **/
/** button **/
.button,
.button-primary,
#searchsubmit,
.hsfc-Button {
  position: relative;
  display: inline-block;
  padding: 17px 46px 16px 24px;
  background: #0073FF;
  border: none;
  color: #fff;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2 !important;
  text-align: left;
  transition: all 0.25s;
  cursor: pointer;
}
.button:after,
.button-primary:after,
#searchsubmit:after,
.hsfc-Button:after { /* arrow */
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background: url(../svg/arrow--white.svg) no-repeat center center;
  background-size: contain;
  transition: all 0.25s;
}
.button:hover, .button:focus,
.button-primary:hover,
.button-primary:focus,
#searchsubmit:hover,
#searchsubmit:focus,
.hsfc-Button:hover,
.hsfc-Button:focus {
  background-color: #A3C9A8;
  color: #fff;
}
.button:hover:after, .button:focus:after,
.button-primary:hover:after,
.button-primary:focus:after,
#searchsubmit:hover:after,
#searchsubmit:focus:after,
.hsfc-Button:hover:after,
.hsfc-Button:focus:after { /* arrow */
  right: 18px;
}
.button.white,
.button-primary.white,
#searchsubmit.white,
.hsfc-Button.white {
  min-width: 190px;
  padding-right: 56px;
  background-color: #fff;
  color: #0073FF;
}
.button.white:after,
.button-primary.white:after,
#searchsubmit.white:after,
.hsfc-Button.white:after { /* arrow */
  width: 12px;
  height: 20px;
  background-image: url(../svg/arrow--blue.svg);
}
.button.white:hover, .button.white:focus,
.button-primary.white:hover,
.button-primary.white:focus,
#searchsubmit.white:hover,
#searchsubmit.white:focus,
.hsfc-Button.white:hover,
.hsfc-Button.white:focus {
  background-color: #0073FF;
  color: #fff;
}
.button.white:hover:after, .button.white:focus:after,
.button-primary.white:hover:after,
.button-primary.white:focus:after,
#searchsubmit.white:hover:after,
#searchsubmit.white:focus:after,
.hsfc-Button.white:hover:after,
.hsfc-Button.white:focus:after { /* arrow */
  background-image: url(../svg/arrow--white.svg);
}

input[type=button],
input[type=submit] { /* iOS fix */
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/** END button **/
/** form **/
input, button, textarea {
  outline: none;
}

.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper textarea,
.gform_wrapper select,
.searchform input[type=text],
.searchform input[type=email],
.searchform textarea,
.searchform select {
  width: 100%;
  height: 66px;
  padding: 15px 25px !important;
  background-color: #fff;
  border: solid 2px #f7f5f0;
  color: #072b31;
  font-family: "Roboto", sans-serif;
  font-size: 16px !important;
  font-weight: 500;
  /* to remove inner shadow and rounded corners on iOS */
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus,
.searchform input[type=text]:focus,
.searchform input[type=email]:focus,
.searchform textarea:focus,
.searchform select:focus {
  outline: none;
}
.gform_wrapper textarea,
.searchform textarea {
  height: 300px;
  padding: 20px 25px !important;
}
.gform_wrapper ::placeholder,
.searchform ::placeholder {
  color: #072b31;
  opacity: 1;
}

.white-bg-form .gform_wrapper input[type=text],
.white-bg-form .gform_wrapper input[type=email],
.white-bg-form .gform_wrapper textarea,
.white-bg-form .gform_wrapper select,
.white-bg-form .searchform input[type=text],
.white-bg-form .searchform input[type=email],
.white-bg-form .searchform textarea,
.white-bg-form .searchform select {
  background-color: #e6f1ff;
  border-color: #fff;
}
.white-bg-form .gform_wrapper [type=checkbox] + label:before,
.white-bg-form .searchform [type=checkbox] + label:before {
  background-color: #e6f1ff;
  border-color: #fff;
}

.gform_wrapper .ginput_container_select {
  position: relative;
}
.gform_wrapper .ginput_container_select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: rotate(90deg);
  display: block;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  background: url(../svg/arrow--blue.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  pointer-events: none;
}
.gform_wrapper .ginput_container_select select {
  padding-right: 60px !important;
  appearance: none;
  outline: none;
}
.gform_wrapper .ginput_container_select select::-ms-expand {
  display: none;
}
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  font-size: 16px !important;
}
.gform_wrapper .gfield_checkbox .gchoice,
.gform_wrapper .gfield_radio .gchoice {
  position: relative;
}
.gform_wrapper [type=checkbox]:checked, .gform_wrapper [type=checkbox]:not(:checked) {
  position: absolute;
  opacity: 0;
}
.gform_wrapper [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.gform_wrapper [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.gform_wrapper [type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 43px;
  cursor: pointer;
}
.gform_wrapper [type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 29px;
  height: 29px;
  background: #fff;
  border: solid 2px #f7f5f0;
}
.gform_wrapper [type=checkbox] + label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  width: 13px;
  height: 13px;
  background: #0073FF;
  transition: all 0.2s ease;
}
.gform_wrapper .gfield_consent_description {
  max-height: none !important;
  margin: 0 !important;
  padding: 0 0 16px 0 !important;
  overflow: auto !important;
  border: none !important;
}
.gform_wrapper .gfield_description {
  font-size: 16px !important;
}
.gform_wrapper .gform_validation_errors {
  width: 100%;
  margin: 0 0 60px 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.gform_wrapper .gform_validation_errors:focus, .gform_wrapper .gform_validation_errors:focus-visible {
  outline: none !important;
}
.gform_wrapper .gform_validation_errors > h2 {
  max-width: none;
  color: #c02b0a !important;
  font-family: "Roboto", sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}
.gform_wrapper .gform_validation_errors > h2:focus-visible {
  outline: none !important;
}
.gform_wrapper .gform_validation_errors > h2 .gform-icon {
  display: none !important;
}
.gform_wrapper .validation_message {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  color: #c02b0a !important;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1 !important;
}
.gform_wrapper .gfield_required,
.gform_wrapper .gform_required_legend {
  display: none !important;
}
.gform_wrapper .gform-loader {
  margin-left: 20px;
}

.gform_confirmation_message {
  margin: 0 0 90px;
  padding: 40px;
  background: #d1e4d4;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 400;
}
.gform_confirmation_message p:first-child {
  margin-top: 0;
}
.gform_confirmation_message p:last-child {
  margin-bottom: 0;
}
.gform_confirmation_message a {
  text-decoration: underline;
}
.gform_confirmation_message a:hover {
  opacity: 0.7;
}

/** END form **/
/** HEADER **/
#header {
  position: relative;
  padding: 30px 0;
}
#header > .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#header a.logo {
  display: inline-block;
  line-height: 0;
}
#header a.logo img {
  max-width: 150px;
}
#header .toggle-menu {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 30px;
  height: 22px;
  transform: translateY(-50%);
  cursor: pointer;
}
#header .toggle-menu span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #072b31;
  transition: all 0.25s;
}
#header .toggle-menu.active span:nth-child(1), #header .toggle-menu.active span:nth-child(3) {
  top: 50%;
  margin-top: -1.5px;
}
#header .toggle-menu.active span:nth-child(1) {
  transform: rotate(45deg);
}
#header .toggle-menu.active span:nth-child(2) {
  opacity: 0;
}
#header .toggle-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
}
#header .toggle-menu:not(.active) span:nth-child(1) {
  top: 0;
}
#header .toggle-menu:not(.active) span:nth-child(2) {
  top: 50%;
  margin-top: -1.5px;
}
#header .toggle-menu:not(.active) span:nth-child(3) {
  bottom: 0;
}

@media (min-width: 1024px) {
  #header {
    padding: 0;
  }
  #header > .container {
    padding-right: 0;
  }
  #header a.logo {
    margin: 30px 100px 30px 0;
  }
  #header a.logo img {
    max-width: 220px;
  }
  #header .toggle-menu {
    display: none;
  }
}
@media (min-width: 1440px) {
  #header > .container {
    max-width: none;
    padding-left: calc((100% - 1280px) / 2);
  }
  #header a.logo img {
    max-width: 267px;
  }
}
/** END HEADER **/
/** Desktop Menu **/
#menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#menu ul.menu { /* level 1 */
  display: flex;
  align-items: center;
}
#menu ul.menu > li:hover > a {
  color: #0073FF;
}
#menu ul.menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
}
#menu ul.menu > li:last-child {
  position: relative;
}
#menu ul.menu > li:last-child > ul.sub-menu { /* level 2 */
  right: 0;
  min-width: 250px;
}
#menu ul.menu > li > a {
  display: inline-block;
  padding: 15px 27px;
  color: #08090A;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
#menu ul.menu > li > ul.sub-menu { /* level 2 */
  position: absolute;
  z-index: 10;
  min-width: 285px;
  padding: 34px 32px;
  background-color: #e6f1ff;
  border-top: solid 2px #0073FF;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#menu ul.menu > li ul.sub-menu { /* level 2 & 3 */ }
#menu ul.menu > li ul.sub-menu li a {
  position: relative;
  display: inline-block;
  padding: 12px 0 12px 25px;
  color: #0073FF;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: all 0.4s;
}
#menu ul.menu > li ul.sub-menu li a:hover {
  margin-right: -7px; /* to avoid rows jumping */
  padding-left: 32px;
}
#menu ul.menu > li ul.sub-menu li a:hover:before { /* icon */
  left: 7px;
}
#menu ul.menu > li ul.sub-menu li a:before { /* icon */
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 17px;
  background: #0073FF url(../svg/arrow--white.svg) no-repeat 6px center;
  background-size: 4px auto;
  border-radius: 50px;
  transition: all 0.4s;
}
#menu ul.menu > li.menu-item-26 { /* What we do */ }
#menu ul.menu > li.menu-item-26 > ul.sub-menu { /* level 2 */
  left: 0;
  display: flex;
  width: 100%;
  padding: 55px 40px 80px;
}
#menu ul.menu > li.menu-item-26 > ul.sub-menu > li {
  width: 33.333%;
  padding-right: 20px;
}
#menu ul.menu > li.menu-item-26 > ul.sub-menu > li:last-child {
  padding-right: 0;
}
#menu ul.menu > li.menu-item-26 > ul.sub-menu > li > a {
  display: block;
  margin: 0 !important;
  padding: 17px 56px 16px 24px !important;
  background-color: #fff;
}
#menu ul.menu > li.menu-item-26 > ul.sub-menu > li > a:hover {
  background-color: #0073FF;
  color: #fff;
}
#menu ul.menu > li.menu-item-26 > ul.sub-menu > li > a:hover:before { /* arrow */
  right: 18px;
  background-image: url(../svg/arrow--white.svg);
}
#menu ul.menu > li.menu-item-26 > ul.sub-menu > li > a:before { /* arrow */
  top: 50%;
  left: auto;
  right: 22px;
  transform: translateY(-50%);
  width: 12px;
  height: 20px;
  background: url(../svg/arrow--blue.svg) no-repeat center center;
  background-size: contain;
  transition: all 0.25s;
}
#menu ul.menu > li.menu-item-26 > ul.sub-menu > li ul.sub-menu { /* level 2 & 3 */
  margin: 20px 56px 0 24px;
}
#menu ul.menu-primary {
  margin-top: 20px;
}
#menu ul.menu-primary > li > a {
  margin-bottom: 20px;
  color: #072b31;
}
#menu ul.menu-secondary {
  background-color: #e6f1ff;
}
#menu ul.menu-secondary > li > a {
  font-size: 14px;
}
#menu ul.menu-secondary > li ul.sub-menu { /* level 2 & 3 */
  background-color: #0073FF;
}
#menu ul.menu-secondary > li ul.sub-menu li a {
  color: #fff;
}
#menu ul.menu-secondary > li ul.sub-menu li a:before { /* icon */
  background-color: #fff;
  background-image: url(../svg/arrow--blue.svg);
}

@media (min-width: 1440px) {
  #menu ul.menu {
    padding-right: calc((100vw - 1280px) / 2 - 27px);
  }
  #menu ul.menu > li.menu-item-26 { /* What we do */ }
  #menu ul.menu > li.menu-item-26 > ul.sub-menu { /* level 2 */
    padding-left: calc((100% - 1280px) / 2);
    padding-right: calc((100% - 1280px) / 2);
  }
  #menu ul.menu-primary {
    margin-top: 30px;
  }
  #menu ul.menu-primary > li > a {
    margin-bottom: 30px;
  }
}
@media (max-width: 1023px) { /* mobile only */
  #menu ul.menu {
    display: none;
  }
}
/** END Desktop Menu **/
/** Mobile Menu **/
body.show-side-menu {
  overflow: hidden;
}
body.show-side-menu #side-menu {
  transform: none;
  overflow-x: hidden;
  overflow-y: scroll;
}
body.show-side-menu #side-menu .side-menu__inner {
  opacity: 1;
  visibility: visible;
}

#side-menu {
  position: fixed;
  z-index: 1050;
  top: 108px;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
  background-color: #0073FF;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
#side-menu .side-menu__inner {
  position: relative;
  visibility: hidden;
  opacity: 0;
  flex-grow: 1;
  padding: 30px 0;
  transition: all 0.4s ease-in;
}
#side-menu ul.menu { /* level 1 */ }
#side-menu ul.menu > li {
  position: relative;
}
#side-menu ul.menu > li.open {
  padding-bottom: 25px;
}
#side-menu ul.menu > li.open > a:after { /* arrow */
  transform: rotate(270deg) !important;
}
#side-menu ul.menu > li.open > ul.sub-menu {
  display: block;
}
#side-menu ul.menu > li.menu-item-has-children > a:after { /* arrow */
  content: "";
  position: absolute;
  top: 13px;
  right: 13px;
  display: block;
  width: 40px;
  height: 40px;
  background: url(../svg/arrow--white.svg) no-repeat center center;
  background-size: auto 15px;
  transform: rotate(90deg);
  transition: all 0.25s;
  cursor: pointer;
}
#side-menu ul.menu > li > a {
  position: relative;
  display: block;
  padding: 22px 60px 22px 50px;
  color: #fff;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
#side-menu ul.menu > li > a:before { /* icon */
  content: "";
  position: absolute;
  left: 25px;
  top: 23px;
  width: 14px;
  height: 17px;
  background: #fff url(../svg/arrow--blue.svg) no-repeat 6px center;
  background-size: 4px auto;
  border-radius: 50px;
  transition: all 0.4s;
}
#side-menu ul.menu > li ul.sub-menu { /* level 2 & 3 */
  display: none;
}
#side-menu ul.menu > li ul.sub-menu li a {
  display: block;
  padding: 11px 60px 11px 50px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
}
#side-menu ul.menu > li ul.sub-menu li ul.sub-menu { /* level 3 */
  display: block;
}
#side-menu ul.menu > li ul.sub-menu li ul.sub-menu li a {
  padding-left: 70px;
  font-size: 14px;
}

@media (min-width: 1024px) {
  #side-menu {
    display: none;
  }
}
/** END Mobile Menu **/
/** Modules **/
#modules {
  padding: 100px 0;
  /* image + text */
  /* text + image */
  /* cards */
  /* blocks with icons & cards with icons */
  /* case study */
  /* product */
  /* accordion */
}
@media (min-width: 1024px) {
  #modules {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #modules {
    padding: 140px 0;
  }
}
#modules > .item {
  padding: 100px 0;
  padding-top: 0 !important;
}
@media (min-width: 1024px) {
  #modules > .item {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #modules > .item {
    padding: 140px 0;
  }
}
#modules > .item:last-child {
  padding-bottom: 0 !important;
}
#modules > .item .image {
  padding-bottom: 80%;
  background-color: rgba(0, 0, 0, 0.03);
  position: relative;
}
@media (min-width: 600px) {
  #modules > .item .image {
    padding-bottom: 70%;
  }
}
#modules > .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modules > .item .text {
  padding: 0 0 40px 0;
}
@media (max-width: 1023px) {
  #modules > .item .text { /* mobile only */ }
  #modules > .item .text:last-child {
    padding: 0;
  }
}
#modules > .item .text p:first-child {
  margin-top: 0;
}
#modules > .item .text p:last-child {
  margin-bottom: 0;
}
#modules > .item .list {
  border-top: solid 2px #A6A8AB;
}
#modules > .item .list > div {
  min-height: 66px;
  padding: 20px 0;
  border-bottom: solid 2px #A6A8AB;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (min-width: 1024px) {
  #modules > .item .cols {
    display: flex;
    justify-content: space-between;
  }
  #modules > .item .image {
    flex-shrink: 0;
    width: 47%;
    min-height: 400px;
    padding: 0;
  }
  #modules > .item .text,
  #modules > .item .list {
    width: 47%;
    padding: 0;
  }
}
#modules .item.text-only {
  padding: 100px 0 !important;
  background-color: #f7f5f0;
  text-align: center;
}
@media (min-width: 1024px) {
  #modules .item.text-only {
    padding: 120px 0 !important;
  }
}
@media (min-width: 1440px) {
  #modules .item.text-only {
    padding: 140px 0 !important;
  }
}
#modules .item.text-only > .container {
  max-width: 834px;
}
#modules .item.text-only .section-heading {
  max-width: none;
}
#modules .item.text-only .text {
  width: auto;
}
#modules .item.image-text .image {
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #modules .item.image-text .image {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  #modules .item.image-text .image {
    border-bottom-right-radius: 280px;
  }
}
@media (min-width: 1024px) {
  #modules .item.image-text > .container {
    max-width: none;
    padding-left: 0;
  }
  #modules .item.image-text .text {
    order: 2;
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  #modules .item.image-text > .container {
    padding-right: calc((100% - 1280px) / 2);
  }
  #modules .item.image-text .image {
    width: 53%;
  }
  #modules .item.image-text .text {
    width: 601.6px;
    padding: 70px 0;
  }
}
#modules .item.text-image .image {
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #modules .item.text-image > .container {
    max-width: none;
    padding-right: 0;
  }
  #modules .item.text-image .image {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 180px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #modules .item.text-image .image {
    border-bottom-left-radius: 280px;
  }
}
@media (min-width: 1024px) {
  #modules .item.text-image .text {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  #modules .item.text-image > .container {
    padding-left: calc((100% - 1280px) / 2);
  }
  #modules .item.text-image .image {
    width: 53%;
  }
  #modules .item.text-image .text {
    width: 601.6px;
    padding: 70px 0;
  }
}
#modules .item.cards {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #modules .item.cards {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #modules .item.cards {
    padding: 140px 0;
  }
}
#modules .item.cards .cards-heading-wrap {
  padding-bottom: 60px;
}
#modules .item.cards .cards-heading-wrap .section-description {
  color: #072b31;
}
#modules .item.cards .items .item {
  padding: 0 0 60px;
}
#modules .item.cards .items .item:nth-child(1) .item-inner {
  background-color: #f0f0f0;
}
#modules .item.cards .items .item:nth-child(3) .item-inner {
  background-color: #e8f2e9;
}
#modules .item.cards .items .item:nth-child(4) .item-inner {
  background-color: #f7f5f0;
}
#modules .item.cards .items .item .item-inner {
  background-color: #e6f1ff;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
#modules .item.cards .items .item .image {
  padding-bottom: 80%;
  background-color: rgba(0, 0, 0, 0.03);
  position: relative;
}
#modules .item.cards .items .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modules .item.cards .items .item .text {
  padding: 50px 25px;
}
#modules .item.cards .items .item .text .title {
  color: #072b31;
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 20px;
}
#modules .item.cards .items .item .text .title:after { /* line */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: -1000px;
  height: 4px;
  background-color: #0073FF;
}
@media (min-width: 768px) {
  #modules .item.cards .cards-heading-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
  }
  #modules .item.cards .cards-heading-wrap .section-heading {
    width: 45%;
  }
  #modules .item.cards .cards-heading-wrap .section-description {
    width: 52%;
    padding-left: 35px;
  }
  #modules .item.cards .items .item .item-inner {
    display: flex;
  }
  #modules .item.cards .items .item .image {
    flex-shrink: 0;
    width: 48%;
    padding: 0;
  }
  #modules .item.cards .items .item .text {
    width: 52%;
    padding: 55px 35px;
  }
}
@media (min-width: 1024px) {
  #modules .item.cards .cards-heading-wrap .section-description {
    width: 50%;
    padding-left: 10px;
  }
  #modules .item.cards .items {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
  }
  #modules .item.cards .items .item {
    display: flex;
    width: 50%;
    padding: 10px;
  }
  #modules .item.cards .items .item .item-inner {
    width: 100%;
  }
}
#modules .item.blocks-with-icons,
#modules .item.cards-with-icons {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #modules .item.blocks-with-icons,
  #modules .item.cards-with-icons {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #modules .item.blocks-with-icons,
  #modules .item.cards-with-icons {
    padding: 140px 0;
  }
}
#modules .item.blocks-with-icons .items,
#modules .item.cards-with-icons .items {
  margin-bottom: -40px;
}
#modules .item.blocks-with-icons .items .item,
#modules .item.cards-with-icons .items .item {
  display: flex;
  padding: 0 0 40px;
}
#modules .item.blocks-with-icons .items .item .icon,
#modules .item.cards-with-icons .items .item .icon {
  flex-shrink: 0;
  width: 60px;
  height: 40px;
  margin-right: 25px;
  position: relative;
}
#modules .item.blocks-with-icons .items .item .icon > img,
#modules .item.cards-with-icons .items .item .icon > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modules .item.blocks-with-icons .items .item .icon img,
#modules .item.cards-with-icons .items .item .icon img {
  object-fit: contain;
}
#modules .item.blocks-with-icons .items .item .text,
#modules .item.cards-with-icons .items .item .text {
  width: auto;
  color: #072b31;
}
#modules .item.blocks-with-icons .items .item .text .title,
#modules .item.cards-with-icons .items .item .text .title {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  #modules .item.blocks-with-icons .items,
  #modules .item.cards-with-icons .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -80px;
  }
  #modules .item.blocks-with-icons .items .item,
  #modules .item.cards-with-icons .items .item {
    width: 29%;
    padding: 0 0 120px;
  }
  #modules .item.blocks-with-icons .section-heading + .items,
  #modules .item.cards-with-icons .section-heading + .items {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  #modules .item.blocks-with-icons .items .item .icon,
  #modules .item.cards-with-icons .items .item .icon {
    width: 80px;
    height: 50px;
  }
}
#modules .item.cards-with-icons .items {
  margin-bottom: -40px;
}
#modules .item.cards-with-icons .items .item {
  margin-bottom: 40px;
  padding: 35px 35px 35px 20px;
  background-color: #e6f1ff;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
#modules .item.cards-with-icons .items .item:nth-child(2) {
  background-color: #f0f0f0;
}
#modules .item.cards-with-icons .items .item:nth-child(3) {
  background-color: #e8f2e9;
}
#modules .item.cards-with-icons .items .item:nth-child(4) {
  background-color: #f7f5f0;
}
@media (min-width: 1024px) {
  #modules .item.cards-with-icons .items .item {
    width: 32%;
  }
}
#modules .item.case-study {
  background-color: #fff;
}
#modules .item.case-study .col-1 {
  padding: 100px 25px;
  background-color: #0073FF;
  color: #fff;
}
#modules .item.case-study .col-1 .section-heading h2, #modules .item.case-study .col-1 .section-heading .h2 {
  --line-color: #fff;
}
#modules .item.case-study .col-1 .logo {
  position: relative;
  height: 45px;
  margin-top: 60px;
}
#modules .item.case-study .col-1 .logo > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modules .item.case-study .col-1 .logo img {
  object-fit: contain;
  object-position: left;
}
#modules .item.case-study .col-2 {
  padding: 100px 25px 80px;
  background-color: #e6f1ff;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #modules .item.case-study .col-2 {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  #modules .item.case-study .col-2 {
    border-bottom-right-radius: 280px;
  }
}
#modules .item.case-study .col-2 .case-study-list-title {
  margin: 0 0 15px;
  color: #0073FF;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#modules .item.case-study .col-2 .case-study-list {
  border-bottom: solid 2px #A6A8AB;
}
#modules .item.case-study .col-2 .case-study-list > div {
  display: flex;
  padding: 20px 0;
  border-top: solid 2px #A6A8AB;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #modules .item.case-study .col-1 {
    padding-left: 40px;
    padding-right: 40px;
  }
  #modules .item.case-study .col-2 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  #modules .item.case-study {
    display: flex;
    justify-content: space-between;
    padding-right: 40px;
  }
  #modules .item.case-study .col-1 {
    flex-grow: 1;
    padding-right: 80px;
  }
  #modules .item.case-study .col-2 {
    flex-shrink: 0;
    width: calc(50% - 50px);
    max-width: 540px;
    padding-right: 80px;
  }
}
@media (min-width: 1440px) {
  #modules .item.case-study {
    padding-right: calc((100% - 1280px) / 2);
  }
  #modules .item.case-study .col-1 {
    padding: 120px 100px 120px calc((100vw - 1280px) / 2);
  }
  #modules .item.case-study .col-2 {
    padding: 120px 100px 120px 65px;
  }
}
#modules .item.product {
  margin-bottom: 100px;
  padding: 0;
  color: #fff;
}
@media (min-width: 1024px) {
  #modules .item.product {
    margin-bottom: 120px;
  }
}
@media (min-width: 1440px) {
  #modules .item.product {
    margin-bottom: 140px;
  }
}
#modules .item.product .section-heading h2, #modules .item.product .section-heading .h2 {
  --line-color: #A3C9A8;
}
#modules .item.product .image {
  padding-bottom: 80%;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
}
#modules .item.product .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modules .item.product .content {
  padding: 100px 0;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #072b31;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #modules .item.product .content {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #modules .item.product .content {
    padding: 140px 0;
  }
}
@media (min-width: 768px) {
  #modules .item.product .content {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  #modules .item.product .content {
    border-bottom-right-radius: 280px;
  }
}
#modules .item.product .content .items {
  margin-top: 80px;
}
#modules .item.product .content .items .item {
  display: flex;
  align-items: center;
  padding: 0 0 40px;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.35;
}
#modules .item.product .content .items .item:last-child {
  padding-bottom: 0;
}
#modules .item.product .content .items .item .icon {
  flex-shrink: 0;
  width: 60px;
  height: 40px;
  margin-right: 25px;
  position: relative;
}
#modules .item.product .content .items .item .icon > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modules .item.product .content .items .item .icon img {
  object-fit: contain;
}
@media (min-width: 768px) {
  #modules .item.product .content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  #modules .item.product {
    position: relative;
    background-color: #072b31;
  }
  #modules .item.product .content {
    position: relative;
    z-index: 2;
    width: 50%;
    min-height: 550px;
    padding-right: 120px;
  }
  #modules .item.product .content .items .item {
    font-size: 24px;
  }
  #modules .item.product .image {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc(50% + 300px);
    padding: 0;
  }
}
@media (min-width: 1440px) {
  #modules .item.product .content {
    width: calc(50% + 90px);
    min-height: 700px;
    padding-left: calc((100% - 1280px) / 2);
  }
  #modules .item.product .image {
    width: calc(50% + 200px);
  }
}
#modules .item.accordion .items .item:hover .title {
  color: #0073FF;
}
#modules .item.accordion .items .item .title {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 32px 50px 16px 0;
  border-bottom: solid 4px #0073FF;
  font-weight: 600;
  text-decoration: none;
}
#modules .item.accordion .items .item .title .arrow {
  position: absolute;
  top: 40px;
  right: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../svg/arrow--blue.svg) no-repeat center center;
  background-size: contain;
  transform: rotate(90deg);
  transition: all 0.25s;
}
#modules .item.accordion .items .item .title:not(.collapsed) .arrow {
  transform: rotate(270deg);
}
#modules .item.accordion .items .item .content .content__inner {
  margin-bottom: 25px;
  padding: 30px 25px 50px;
  background-color: #e6f1ff;
  border-bottom-right-radius: 125px;
}
@media (min-width: 768px) {
  #modules .item.accordion .items .item .title {
    padding-right: 120px;
  }
  #modules .item.accordion .items .item .content .content__inner {
    padding: 30px 65px 55px 45px;
  }
}
#modules .collapse:not(.show) {
  display: none;
}
#modules .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s;
}

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

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
    padding-left: 0;
    padding-right: 0;
  }
}

.section-heading {
  max-width: 514px;
}
.section-heading.align-center {
  margin: 0 auto;
  text-align: center;
}
.section-heading h2, .section-heading .h2 {
  max-width: none;
  margin-top: 0;
  font-size: 40px;
}
@media (min-width: 1440px) {
  .section-heading h2, .section-heading .h2 {
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .section-heading h2, .section-heading .h2 {
    font-size: 48px;
  }
}

.section-heading + h3,
.section-heading + .h3,
.section-heading + h4,
.section-heading + .h4 {
  margin-top: 0;
}

.heading-wrap .section-heading {
  max-width: none;
}
.heading-wrap .more-link {
  margin: 0 0 40px 0;
}

@media (min-width: 768px) {
  .heading-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .heading-wrap .section-heading {
    flex-grow: 1;
  }
  .heading-wrap .more-link {
    flex-shrink: 0;
    margin: -11px 7px 0 40px;
  }
  .heading-wrap .more-link:hover {
    margin-right: 0;
  }
}
/** page-hero **/
#page-hero {
  background-color: #fff;
}
#page-hero .images {
  position: relative;
  width: calc(100% - 25px);
  height: 450px;
  padding-bottom: 100px;
}
#page-hero .images .image-bg,
#page-hero .images .image-overlay {
  width: 100%;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto 450px;
  /* Pages: About, Why, Consulting, Support, Ironfield, Products */
  /* Page: Services */
  /* Page: Solutions */
}
.page-id-9 #page-hero .images .image-bg, .page-id-186 #page-hero .images .image-bg, .page-id-190 #page-hero .images .image-bg, .page-id-194 #page-hero .images .image-bg, .page-id-208 #page-hero .images .image-bg, .page-id-221 #page-hero .images .image-bg, .page-id-1472 #page-hero .images .image-bg, .page-id-1508 #page-hero .images .image-bg,
.page-id-9 #page-hero .images .image-overlay,
.page-id-186 #page-hero .images .image-overlay,
.page-id-190 #page-hero .images .image-overlay,
.page-id-194 #page-hero .images .image-overlay,
.page-id-208 #page-hero .images .image-overlay,
.page-id-221 #page-hero .images .image-overlay,
.page-id-1472 #page-hero .images .image-overlay,
.page-id-1508 #page-hero .images .image-overlay {
  background-position: center top;
}
@media (max-width: 1100px) {
  .page-id-188 #page-hero .images .image-bg,
  .page-id-188 #page-hero .images .image-overlay { /* mobile only */
    background-position: -420px top;
  }
}
@media (max-width: 767px) {
  .page-id-188 #page-hero .images .image-bg,
  .page-id-188 #page-hero .images .image-overlay { /* mobile only */
    background-position: -300px top;
  }
}
@media (max-width: 450px) {
  .page-id-188 #page-hero .images .image-bg,
  .page-id-188 #page-hero .images .image-overlay { /* mobile only */
    background-position: -380px top;
  }
}
.page-id-198 #page-hero .images .image-bg:after,
.page-id-198 #page-hero .images .image-overlay:after { /* dot icon */
  display: none;
}
#page-hero .images .image-bg {
  position: relative;
  z-index: 1;
  border-bottom-right-radius: 200px;
}
#page-hero .images .image-bg:after { /* dot icon */
  content: "";
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 32px;
  height: 35px;
  background-color: #0073FF;
  border-radius: 50px;
}
.home-page #page-hero .images .image-bg:after, .campaign-page #page-hero .images .image-bg:after { /* dot icon is replaces with DA mark */
  right: 0;
  bottom: -52px;
  width: 50px;
  height: 104px;
  background: url(../svg/DA-mark.svg) no-repeat center center;
  background-size: contain;
  border-radius: 0;
}
@media (min-width: 1280px) {
  .home-page #page-hero .images .image-bg:after, .campaign-page #page-hero .images .image-bg:after {
    width: 56px;
  }
}
#page-hero .images .image-overlay {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}
#page-hero .text {
  padding: 25px;
}
#page-hero .text .page-heading {
  padding-bottom: 10px;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
#page-hero .text .section-heading {
  max-width: none;
}
#page-hero .text .section-heading h2, #page-hero .text .section-heading .h2 {
  padding-bottom: 60px;
}
#page-hero .text .page-subtitle {
  margin: 0 0 30px;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.35;
}
#page-hero .text .links {
  margin-bottom: 30px;
}
#page-hero .text .links .more-link {
  margin: 25px 0 0 0;
}
@media (max-width: 1279px) {
  .home-page #page-hero .text, .campaign-page #page-hero .text { /* mobile only */ }
  .home-page #page-hero .text .section-heading h2, .home-page #page-hero .text .section-heading .h2, .campaign-page #page-hero .text .section-heading h2, .campaign-page #page-hero .text .section-heading .h2 {
    font-size: 38px;
  }
  .home-page #page-hero .text .page-subtitle, .campaign-page #page-hero .text .page-subtitle {
    font-size: 20px;
  }
}
.home-page #page-hero .text .links > div:first-child a {
  color: #424241;
}
.home-page #page-hero .text .links > div:first-child a:before { /* icon */
  background-color: #424241;
}
.home-page #page-hero .text .links > div:first-child a:hover {
  color: #fff;
}
#page-hero.without-overlay .images .image-bg {
  background-position: center center;
  background-size: cover !important;
}
#page-hero.no-image {
  background-color: #e6f1ff;
}
#page-hero.no-image .images {
  display: none;
}
#page-hero.no-image .text {
  max-width: 514px;
  margin: 0 auto;
  padding: 80px 25px;
  text-align: center;
}
#page-hero.no-image .text .page-subtitle {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  #page-hero .images {
    width: calc(100% - 70px);
    height: 550px;
  }
  #page-hero .images .image-bg,
  #page-hero .images .image-overlay {
    background-size: auto 550px;
  }
  #page-hero .images .image-bg {
    border-bottom-right-radius: 300px;
  }
}
@media (min-width: 768px) {
  #page-hero {
    display: flex;
  }
  #page-hero .images {
    flex-shrink: 0;
    width: calc(50% + 50px);
  }
  #page-hero .images .image-bg:after { /* dot icon */
    bottom: 20px;
    right: 30px;
  }
  .home-page #page-hero .images, .campaign-page #page-hero .images {
    height: 650px;
  }
  .home-page #page-hero .images .image-bg,
  .home-page #page-hero .images .image-overlay, .campaign-page #page-hero .images .image-bg,
  .campaign-page #page-hero .images .image-overlay {
    background-size: auto 650px;
  }
  #page-hero .text {
    order: 2;
    width: calc(50% - 50px);
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  #page-hero .images {
    height: 620px;
  }
  #page-hero .images .image-bg,
  #page-hero .images .image-overlay {
    background-size: auto 620px;
  }
  #page-hero .images .image-bg {
    border-bottom-right-radius: 400px;
  }
  #page-hero .images .image-bg:after { /* dot icon */
    right: 30px;
    width: 39px;
    height: 43px;
  }
  .home-page #page-hero .images, .campaign-page #page-hero .images {
    height: 820px;
  }
  .home-page #page-hero .images .image-bg,
  .home-page #page-hero .images .image-overlay, .campaign-page #page-hero .images .image-bg,
  .campaign-page #page-hero .images .image-overlay {
    background-size: auto 820px;
  }
}
@media (min-width: 1440px) {
  #page-hero .images {
    width: calc(50% + 90px);
  }
  #page-hero .images .image-bg {
    border-bottom-right-radius: 400px;
  }
  #page-hero .text {
    width: calc(50% - 90px);
    padding: 80px calc((100% - 1280px) / 2) 80px 100px;
  }
  #page-hero .text .page-subtitle {
    font-size: 28px;
  }
}
@media (min-width: 1800px) {
  #page-hero .images {
    height: 700px;
  }
  #page-hero .images .image-bg,
  #page-hero .images .image-overlay {
    background-size: auto 700px;
  }
}
@media (min-width: 2100px) {
  #page-hero .images {
    height: 800px;
  }
  #page-hero .images .image-bg,
  #page-hero .images .image-overlay {
    background-size: auto 920px;
  }
  .home-page #page-hero .images, .campaign-page #page-hero .images {
    height: 920px;
  }
  .home-page #page-hero .images .image-bg,
  .home-page #page-hero .images .image-overlay, .campaign-page #page-hero .images .image-bg,
  .campaign-page #page-hero .images .image-overlay {
    background-size: auto 1020px;
  }
}
/** END page-hero **/
/** page-introduction **/
#page-introduction {
  padding: 100px 0;
  background-color: #0073FF;
  color: #fff;
}
@media (min-width: 1024px) {
  #page-introduction {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #page-introduction {
    padding: 140px 0;
  }
}
#page-introduction .section-heading h2, #page-introduction .section-heading .h2 {
  --line-color: #fff;
}
#page-introduction .col-1 .logo {
  width: 100%;
  height: 130px;
  margin-bottom: 40px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}
#page-introduction .col-1 .logo.ironfield-logo {
  background-image: url(../images/Ironfield-logo.png);
}
#page-introduction .col-1 .logo.full-circle-partners-logo {
  background-image: url(../images/Full-Circle-Partners-logo.png);
}
#page-introduction .col-1 h4, #page-introduction .col-1 .h4 + .logo {
  margin-top: 40px;
}

@media (min-width: 1024px) {
  #page-introduction > .container {
    display: flex;
    justify-content: space-between;
  }
  #page-introduction .col-1 {
    flex-shrink: 0;
    width: 50%;
    padding-right: 120px;
  }
  #page-introduction .col-1 .h4 {
    margin-bottom: 0;
  }
  #page-introduction .col-1 .logo {
    margin-bottom: 0;
  }
  #page-introduction .col-2 {
    width: 50%;
  }
}
/** END page-introduction **/
/** page-content **/
#main {
  background-color: #f7f5f0;
}

#page-content {
  padding: 100px 0;
  position: relative;
  z-index: 5;
  background-color: #fff;
}
@media (min-width: 1024px) {
  #page-content {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #page-content {
    padding: 140px 0;
  }
}
#page-content.rounded-corner {
  border-bottom-right-radius: 125px;
  overflow: hidden;
  padding-bottom: 200px;
}
@media (min-width: 768px) {
  #page-content.rounded-corner {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  #page-content.rounded-corner {
    border-bottom-right-radius: 280px;
  }
}

#regular-content {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #regular-content {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #regular-content {
    padding: 140px 0;
  }
}

#modules + #regular-content {
  padding-top: 0 !important;
}

/** END page-content **/
/** About page **/
.about-page #brands {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  .about-page #brands {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  .about-page #brands {
    padding: 140px 0;
  }
}
.about-page #brands .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 100px;
}
.about-page #brands .items .item:last-child {
  padding-bottom: 0;
}
.about-page #brands .items .item .image {
  margin-bottom: 50px;
  width: 100%;
  height: 130px;
  position: relative;
}
.about-page #brands .items .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page #brands .items .item .image img {
  object-fit: contain;
}
.about-page #brands .items .item .description {
  flex-grow: 1;
}
@media (min-width: 768px) {
  .about-page #brands .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about-page #brands .items .item {
    width: 45%;
    padding: 40px 0 0;
  }
  .about-page #brands .items .item .image {
    margin-bottom: 60px;
  }
  .about-page #brands .items .item .description {
    max-width: 480px;
  }
}
@media (min-width: 1440px) {
  .about-page #brands .items .item {
    width: 48%;
  }
}
.about-page #board {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  .about-page #board {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  .about-page #board {
    padding: 140px 0;
  }
}
.about-page #board .people {
  margin: -10px;
}
.about-page #board .people .item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  cursor: pointer;
}
.about-page #board .people .item:hover .button {
  background-color: #A3C9A8;
}
.about-page #board .people .item:hover .button:after { /* arrow */
  right: 18px;
}
.about-page #board .people .item .item-inner {
  position: relative;
  background-color: #e8f2e9;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
.about-page #board .people .item .image {
  padding-bottom: 90%;
  background-color: rgba(0, 0, 0, 0.03);
  position: relative;
}
@media (min-width: 1440px) {
  .about-page #board .people .item .image {
    padding-bottom: 70%;
  }
}
.about-page #board .people .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page #board .people .item .button {
  position: absolute;
  top: 0;
  right: 0;
}
.about-page #board .people .item .text {
  padding: 40px 50px 40px 25px;
  color: #072b31;
}
.about-page #board .people .item .text .name {
  margin: 0 0 15px;
}
.about-page #board .people .item .text .position {
  color: #0073FF;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .about-page #board .items {
    padding-top: 40px;
  }
  .about-page #board .items .item .item-inner {
    height: 100%;
  }
  .about-page #board .items .item .text {
    padding-left: 35px;
  }
}

/** people popup **/
.profiles {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.profiles.inview .item {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 0.5s;
}
.profiles .item {
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.profiles .item .image {
  min-height: 200px;
  padding-bottom: 90%;
  background-color: rgba(0, 0, 0, 0.03);
  position: relative;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
.profiles .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .profiles .item .image {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  .profiles .item .image {
    border-bottom-right-radius: 280px;
  }
}
.profiles .item .text {
  padding: 50px 25px;
  color: #072b31;
}
.profiles .item .text .section-heading h2 {
  padding-bottom: 30px;
  font-size: 36px;
}
.profiles .item .text .h4 {
  margin: 0 0 30px;
}
.profiles .slick-arrow {
  top: 40px;
  right: 0;
  background-color: #0073FF;
  border-radius: 0 0 0 15px;
}
.profiles .slick-arrow.slick-prev {
  left: 0;
  border-radius: 15px 0 0 0;
}
.profiles .slick-arrow:before, .profiles .slick-arrow:after {
  background-image: url(../svg/arrow--white.svg);
  background-size: 9px auto;
}

.profiles-wrap {
  content: "";
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  padding: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.profiles-wrap .close-button {
  position: relative;
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #0073FF;
  cursor: pointer;
  transition: all 0.25s;
}
.profiles-wrap .close-button:before, .profiles-wrap .close-button:after { /* icons */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.25s;
}
.profiles-wrap .close-button:after {
  opacity: 0;
}
.profiles-wrap .close-button:hover:before, .profiles-wrap .close-button:focus:before {
  opacity: 0;
}
.profiles-wrap .close-button:hover:after, .profiles-wrap .close-button:focus:after {
  opacity: 1;
}
.profiles-wrap .close-button:before, .profiles-wrap .close-button:after {
  background-image: url(../svg/close--white.svg);
  background-size: 13px auto;
}

.show-profiles {
  overflow: hidden;
}
.show-profiles .profiles-wrap {
  display: block;
}
.show-profiles .people .slick-arrow {
  display: none;
}

@media (min-width: 768px) {
  .profiles .item {
    flex-direction: row;
    justify-content: space-between;
    max-height: calc(100vh - 120px);
  }
  .profiles .item .image {
    width: 45%;
    min-height: 400px;
    padding: 0;
  }
  .profiles .item .text {
    width: 55%;
    padding: 55px 55px 55px 40px;
    overflow-y: auto;
  }
  .profiles-wrap {
    padding: 60px 40px;
    overflow: initial;
  }
  .profiles-wrap .close-button {
    top: 60px;
    right: 40px;
  }
}
@media (min-width: 1440px) {
  .profiles {
    width: 1300px;
  }
  .profiles .item {
    max-height: calc(100vh - 200px);
  }
  .profiles .item .text {
    padding: 100px 120px 100px 80px;
  }
  .profiles .slick-arrow {
    top: 50%;
    right: -70px;
    background-color: transparent;
  }
  .profiles .slick-arrow.slick-prev {
    left: -70px;
  }
  .profiles .slick-arrow:hover:before, .profiles .slick-arrow:focus:before {
    opacity: 0.6;
  }
  .profiles .slick-arrow:before, .profiles .slick-arrow:after {
    background-size: 12px auto;
  }
  .profiles .slick-arrow:after {
    display: none;
  }
  .profiles-wrap {
    padding: 100px calc((100% - 1280px) / 2 - 10px);
  }
  .profiles-wrap .close-button {
    top: 125px;
    right: calc((100% - 1280px) / 2 + 25px);
    background-color: transparent;
  }
  .profiles-wrap .close-button:before {
    background-image: url(../svg/close--blue.svg);
  }
  .profiles-wrap .close-button:after {
    background-image: url(../svg/close--green.svg);
  }
}
/** END About page **/
/** Why page **/
.why-page #latest-news {
  padding-top: 60px;
}
.why-page #case-studies-module .posts-list .item .item-inner {
  background-color: #fff;
}

#delivery-principles {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #delivery-principles {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #delivery-principles {
    padding: 140px 0;
  }
}
#delivery-principles .delivery-principles-heading-wrap {
  padding-bottom: 60px;
}
#delivery-principles .delivery-principles-heading-wrap .section-description {
  color: #072b31;
}
#delivery-principles .items .item {
  padding: 0 0 60px;
}
#delivery-principles .items .item:nth-child(1) .item-inner {
  background-color: #f0f0f0;
}
#delivery-principles .items .item:nth-child(3) .item-inner {
  background-color: #e8f2e9;
}
#delivery-principles .items .item:nth-child(4) .item-inner {
  background-color: #f7f5f0;
}
#delivery-principles .items .item .item-inner {
  background-color: #e6f1ff;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
#delivery-principles .items .item .image {
  padding-bottom: 80%;
  background-color: rgba(0, 0, 0, 0.03);
  position: relative;
}
#delivery-principles .items .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#delivery-principles .items .item .text {
  padding: 50px 25px;
}
#delivery-principles .items .item .text .title {
  color: #072b31;
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 20px;
}
#delivery-principles .items .item .text .title:after { /* line */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: -1000px;
  height: 4px;
  background-color: #0073FF;
}

@media (min-width: 768px) {
  #delivery-principles .delivery-principles-heading-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
  }
  #delivery-principles .delivery-principles-heading-wrap .section-heading {
    width: 45%;
  }
  #delivery-principles .delivery-principles-heading-wrap .section-description {
    width: 52%;
    padding-left: 35px;
  }
  #delivery-principles .items .item .item-inner {
    display: flex;
  }
  #delivery-principles .items .item .image {
    flex-shrink: 0;
    width: 48%;
    padding: 0;
  }
  #delivery-principles .items .item .text {
    width: 52%;
    padding: 55px 35px;
  }
}
@media (min-width: 1024px) {
  #delivery-principles .delivery-principles-heading-wrap .section-description {
    width: 50%;
    padding-left: 10px;
  }
  #delivery-principles .items {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
  }
  #delivery-principles .items .item {
    display: flex;
    width: 50%;
    padding: 10px;
  }
  #delivery-principles .items .item .item-inner {
    width: 100%;
  }
}
#pillars-of-success,
#proof-points {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #pillars-of-success,
  #proof-points {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #pillars-of-success,
  #proof-points {
    padding: 140px 0;
  }
}
#pillars-of-success .items,
#proof-points .items {
  margin-bottom: -40px;
}
#pillars-of-success .items .item,
#proof-points .items .item {
  display: flex;
  padding: 0 0 40px;
}
#pillars-of-success .items .item .icon,
#proof-points .items .item .icon {
  flex-shrink: 0;
  width: 60px;
  height: 40px;
  margin-right: 25px;
  position: relative;
}
#pillars-of-success .items .item .icon > img,
#proof-points .items .item .icon > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#pillars-of-success .items .item .icon img,
#proof-points .items .item .icon img {
  object-fit: contain;
}
#pillars-of-success .items .item .text,
#proof-points .items .item .text {
  color: #072b31;
}
#pillars-of-success .items .item .text .title,
#proof-points .items .item .text .title {
  margin: 0 0 20px;
}

#pillars-of-success {
  background-color: #f7f5f0;
}

@media (min-width: 1024px) {
  #pillars-of-success .items,
  #proof-points .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -80px;
    padding-top: 40px;
  }
  #pillars-of-success .items .item,
  #proof-points .items .item {
    width: 29%;
    padding: 0 0 120px;
  }
}
@media (min-width: 1440px) {
  #pillars-of-success .items .item .icon,
  #proof-points .items .item .icon {
    width: 80px;
    height: 50px;
  }
}
/** END Why page **/
/** Brand page **/
.brand-page #page-introduction {
  background-color: #f7f5f0;
  color: #072b31;
}
.brand-page #page-introduction .section-heading h2, .brand-page #page-introduction .section-heading .h2 {
  --line-color: #0073FF;
}
.brand-page #case-studies-module {
  background-color: #f7f5f0;
}
.brand-page #case-studies-module .posts-list .item .item-inner {
  background-color: #fff;
}

.page-id-210 { /* Full Circle Partners */ }
.page-id-210 #careers {
  margin-bottom: 60px;
}

.page-id-208 { /* Ironfield */ }
.page-id-208 #careers {
  display: none;
}
.page-id-208 #latest-news {
  padding-top: 60px;
}

/** END Brand page **/
/** Services page **/
.services-page #modules {
  background-color: #f7f5f0;
}
.services-page #services-list {
  background-color: #f7f5f0;
}
.services-page #latest-news {
  padding-top: 60px;
}

#services-list {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #services-list {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #services-list {
    padding: 140px 0;
  }
}
#services-list .items .item {
  padding: 0 0 40px;
}
#services-list .items .item:last-child {
  padding-bottom: 0;
}
#services-list .items .item:nth-child(1) .text {
  background-color: #dadfe0;
}
#services-list .items .item:nth-child(3) .text {
  background-color: #d1e4d4;
}
#services-list .items .item:nth-child(4) .text {
  background-color: #eeece2;
}
#services-list .items .item .item-inner {
  position: relative;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #services-list .items .item .item-inner {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  #services-list .items .item .item-inner {
    border-bottom-right-radius: 280px;
  }
}
#services-list .items .item .item-inner:before { /* mask */
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #f7f5f0;
}
#services-list .items .item .images {
  position: relative;
}
#services-list .items .item .images:before {
  content: "";
  display: block;
  padding-bottom: 80%;
}
@media (min-width: 600px) {
  #services-list .items .item .images:before {
    padding-bottom: 70%;
  }
}
@media (min-width: 2100px) {
  #services-list .items .item .images:before {
    padding-bottom: 60%;
  }
}
#services-list .items .item .images .image-bg,
#services-list .items .item .images .image-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
#services-list .items .item .images .image-overlay {
  z-index: 3;
}
#services-list .items .item .text {
  padding: 50px 25px;
  background-color: #d9eaff;
  overflow: hidden;
}
#services-list .items .item .text .title {
  color: #072b31;
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 20px;
}
#services-list .items .item .text .title:after { /* line */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: -1000px;
  height: 4px;
  background-color: #0073FF;
}
#services-list .items .item .text .button {
  margin-top: 40px;
}

@media (min-width: 768px) {
  #services-list > .container {
    max-width: none;
    padding-left: 0;
  }
  #services-list .items .item .item-inner {
    display: flex;
  }
  #services-list .items .item .images {
    width: calc(50% - 40px);
    flex-shrink: 0;
  }
  #services-list .items .item .text {
    width: calc(50% + 40px);
    min-height: 475px;
    padding: 95px 35px 55px;
  }
  #services-list .items .item:nth-child(2n) .images {
    order: 2;
  }
}
@media (min-width: 1024px) {
  #services-list .items .item .text {
    padding-left: 80px;
    padding-right: 80px;
  }
  #services-list .items .item:nth-child(2n) .text {
    padding-left: 40px;
    padding-right: 80px;
  }
}
@media (min-width: 1440px) {
  #services-list > .container {
    max-width: none;
    padding-right: calc((100% - 1280px) / 2);
  }
  #services-list .items .item .images {
    width: calc(50% - 90px);
  }
  #services-list .items .item .text {
    width: calc(50% + 90px);
    padding: 110px 180px 70px;
  }
  #services-list .items .item:nth-child(2n) .text {
    padding-left: calc((100vw - 1280px) / 2);
    padding-right: 90px;
  }
}
@media (min-width: 2100px) {
  #services-list > .container {
    padding-right: 200px;
  }
  #services-list .items .item:nth-child(2n+1) .text {
    padding-right: calc((100vw - 1280px) / 2 - 200px);
  }
}
.service-single-page #case-studies-module {
  background-color: #f7f5f0;
}
.service-single-page #case-studies-module .posts-list .item .item-inner {
  background-color: #fff;
}

/** END Services page **/
/** Products / Solutions page **/
.products-page #what-we-solve {
  padding: 100px 0;
  background-color: #e6f1ff;
}
@media (min-width: 1024px) {
  .products-page #what-we-solve {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  .products-page #what-we-solve {
    padding: 140px 0;
  }
}
.products-page #what-we-solve .content .sap-partner-logo {
  width: 103px;
  height: 61px;
  margin-top: 20px;
  background: url(../svg/SAP-Partner.svg) no-repeat left center;
  background-size: contain;
}
.page-id-198 .products-page #what-we-solve .content .sap-partner-logo {
  display: none;
}
.products-page #what-we-solve .content .items .item {
  margin: 0 0 10px;
}
.products-page #what-we-solve .content .items .item.active .button {
  background-color: #0073FF;
  color: #fff;
}
.products-page #what-we-solve .content .items .item.active .button:after { /* arrow */
  background-image: url(../svg/arrow--white.svg);
}
.products-page #what-we-solve .content .items .item.active .text {
  display: block;
}
.products-page #what-we-solve .content .items .item .button {
  display: block;
}
.products-page #what-we-solve .content .items .item .text {
  display: none;
  padding: 25px 25px 40px;
}
.products-page #what-we-solve .content .items .item .text .title {
  display: none;
}
@media (max-width: 1023px) {
  .products-page #what-we-solve .content .items .item .text { /* mobile only */ }
  .products-page #what-we-solve .content .items .item .text .more-link {
    margin: 25px 0 0;
  }
}
.products-page #what-we-solve .content .items .item .image {
  display: none;
}
.products-page #latest-news {
  padding-top: 60px;
}

@media (min-width: 1024px) {
  .products-page #what-we-solve {
    position: relative;
  }
  .products-page #what-we-solve:before { /* blue bg */
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #e6f1ff;
    border-bottom-right-radius: 125px;
    overflow: hidden;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .products-page #what-we-solve:before {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .products-page #what-we-solve:before {
    border-bottom-right-radius: 280px;
  }
}
@media (min-width: 1024px) {
  .products-page #what-we-solve .content {
    width: 50%;
    padding-right: 120px;
  }
  .products-page #what-we-solve .content .section-heading, .products-page #what-we-solve .content > .h4, .products-page #what-we-solve .content .button, .products-page #what-we-solve .content .sap-partner-logo {
    position: relative;
    z-index: 5;
  }
  .products-page #what-we-solve .content .sap-partner-logo {
    position: absolute;
  }
  .products-page #what-we-solve .content .items .item {
    margin: 0 0 10px;
  }
  .products-page #what-we-solve .content .items .item.active .text,
  .products-page #what-we-solve .content .items .item.active .image {
    opacity: 1;
    visibility: visible;
  }
  .products-page #what-we-solve .content .items .item .text {
    position: absolute;
    z-index: 3;
    bottom: 120px;
    right: 0;
    width: 50%;
    padding: 0 40px 0 80px;
    overflow: hidden;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  .products-page #what-we-solve .content .items .item .text .title {
    display: block;
    position: relative;
    margin: 0 0 30px;
    padding: 0 0 20px;
  }
  .products-page #what-we-solve .content .items .item .text .title:after { /* line */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: -1000px;
    height: 4px;
    background-color: #fff;
  }
  .products-page #what-we-solve .content .items .item .text .more-link {
    color: #fff;
  }
  .products-page #what-we-solve .content .items .item .text .more-link:before { /* icon */
    background-color: #fff;
    background-image: url(../svg/arrow--blue.svg);
    background-size: 7px auto;
  }
  .products-page #what-we-solve .content .items .item .text .more-link:hover {
    color: #0073FF;
  }
  .products-page #what-we-solve .content .items .item .image {
    position: relative;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: calc(50% + 300px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s;
  }
  .products-page #what-we-solve .content .items .item .image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .products-page #what-we-solve .content .items .item .image:before { /** black mask  **/
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%);
  }
}
@media (min-width: 1440px) {
  .products-page #what-we-solve:before { /* blue bg */
    width: calc(50% + 90px);
  }
  .products-page #what-we-solve .content {
    width: calc(50% + 90px);
    padding-right: 240px;
  }
  .products-page #what-we-solve .content .items .item .text {
    bottom: 140px;
    width: calc(50% - 90px);
    padding-left: 100px;
    padding-right: calc((100% - 1280px) / 2);
  }
  .products-page #what-we-solve .content .items .item .image {
    width: calc(50% + 200px);
  }
}
/** END Products / Solutions page **/
/** contact-page **/
.contact-page #company-contacts .image {
  position: relative;
  width: calc(100% - 25px);
  height: 350px;
  border-bottom-right-radius: 200px;
  overflow: hidden;
}
.contact-page #company-contacts .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-page #company-contacts .image img {
  object-position: right center;
}
.contact-page #company-contacts .text {
  padding: 60px 25px;
}
.contact-page #company-contacts .text .section-heading {
  max-width: none;
}
.contact-page #company-contacts .text .contacts {
  border-bottom: solid 2px #A6A8AB;
}
.contact-page #company-contacts .text .contacts > div {
  display: flex;
  padding: 20px 0;
  border-top: solid 2px #A6A8AB;
}
.contact-page #company-contacts .text .contacts > div .label {
  flex-shrink: 0;
  width: 120px;
  padding-right: 40px;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.contact-page #company-contacts .text .contacts > div .value > div {
  padding: 5px 0;
  line-height: 1.2;
}

@media (min-width: 600px) {
  .contact-page #company-contacts .image {
    width: calc(100% - 70px);
    height: 470px;
    border-bottom-right-radius: 280px;
  }
}
@media (min-width: 768px) {
  .contact-page #company-contacts {
    display: flex;
    justify-content: space-between;
  }
  .contact-page #company-contacts .image {
    flex-shrink: 0;
    width: 50%;
  }
  .contact-page #company-contacts .text {
    width: 50%;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .contact-page #company-contacts .text {
    padding-left: 80px;
  }
}
@media (min-width: 1440px) {
  .contact-page #company-contacts .text {
    padding-left: 120px;
    padding-right: calc((100% - 1280px) / 2);
  }
}
#careers {
  position: relative;
  margin: 0 25px;
  background-color: #e6eaea;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #careers {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  #careers {
    border-bottom-right-radius: 280px;
  }
}
#careers:before { /* mask */
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
}
#careers .images {
  position: relative;
}
#careers .images:before {
  content: "";
  display: block;
  padding-bottom: 80%;
}
@media (min-width: 600px) {
  #careers .images:before {
    padding-bottom: 70%;
  }
}
#careers .images .image-bg,
#careers .images .image-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
#careers .images .image-overlay {
  z-index: 3;
}
#careers .text {
  padding: 50px 25px;
  overflow: hidden;
}
#careers .text .title {
  color: #072b31;
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 20px;
}
#careers .text .title:after { /* line */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: -1000px;
  height: 4px;
  background-color: #0073FF;
}
#careers .text .button {
  margin-top: 40px;
}

@media (min-width: 600px) {
  #careers:before { /* mask */
    height: 70px;
  }
}
@media (min-width: 768px) {
  #careers {
    display: flex;
    margin: 0 40px 0 0;
  }
  #careers:before { /* mask */
    height: 90px;
  }
  #careers .images {
    width: calc(50% - 40px);
    flex-shrink: 0;
    padding: 0;
  }
  #careers .text {
    width: calc(50% + 40px);
    padding: 145px 35px 55px;
  }
}
@media (min-width: 1024px) {
  #careers .text {
    padding: 150px 80px 60px;
  }
}
@media (min-width: 1440px) {
  #careers {
    margin-right: calc((100% - 1280px) / 2);
  }
  #careers .images {
    width: calc(50% - 90px);
  }
  #careers .text {
    width: calc(50% + 90px);
    padding: 160px 120px 70px;
  }
}
/** END contact-page **/
/** contact-form **/
#contact-form {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #contact-form {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #contact-form {
    padding: 140px 0;
  }
}

@media (min-width: 1024px) {
  #contact-form .gform_wrapper form {
    position: relative;
  }
  #contact-form .gform_wrapper .gform_fields {
    position: relative;
    padding-right: calc(50% + 10px);
  }
  #contact-form .gform_wrapper .gform_fields #field_1_4 {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 10px);
  }
  #contact-form .gform_wrapper .gform_fields #field_1_4 textarea {
    min-block-size: 394px;
  }
  #contact-form .gform_wrapper .gform-footer {
    margin: -2px 2px 0 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 394px;
  }
  #contact-form .gform_wrapper.gform_validation_error .gform-footer {
    margin: 0;
  }
}
/** END contact-form **/
/** latest-news **/
#latest-news {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #latest-news {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #latest-news {
    padding: 140px 0;
  }
}
#latest-news .posts-list { /* slider */
  margin: -10px;
}
#latest-news .posts-list .item {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

/** END latest-news **/
.posts-list .item {
  padding: 0 0 60px;
}
@media (max-width: 767px) {
  .posts-list .item { /* mobile only */ }
  .posts-list .item:last-child {
    padding: 0;
  }
}
.posts-list .item:hover .button {
  background-color: #A3C9A8;
}
.posts-list .item:hover .button:after { /* arrow */
  right: 18px;
}
.posts-list .item .post-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  color: #0073FF;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.posts-list .item .post-meta .post-category {
  margin-right: 40px;
}
.posts-list .item .post-meta .post-category > span:last-child .separator {
  display: none;
}
.posts-list .item .post-meta .post-date {
  text-align: right;
}
.posts-list .item .item-inner {
  position: relative;
  background-color: #e8f2e9;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
.posts-list .item .image {
  padding-bottom: 55%;
  background-color: rgba(0, 0, 0, 0.03);
  position: relative;
}
.posts-list .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posts-list .item .button {
  position: absolute;
  top: 0;
  right: 0;
}
.posts-list .item .text {
  padding: 35px 25px 70px;
  color: #072b31;
}
.posts-list .item .text .title {
  color: #072b31;
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 20px;
}
.posts-list .item .text .title:after { /* line */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: -1000px;
  height: 4px;
  background-color: #0073FF;
}
.posts-list .item .text .logo {
  width: 120px;
  height: 30px;
  margin-bottom: 10px;
  position: relative;
}
.posts-list .item .text .logo > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posts-list .item .text .logo img {
  object-fit: contain;
  object-position: left;
}

@media (min-width: 768px) {
  .posts-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
  }
  .posts-list .item {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 10px;
  }
  .posts-list .item .item-inner {
    flex-grow: 1;
  }
  .posts-list .item .text {
    padding: 35px 35px 70px;
  }
  .posts-list .item .text .title {
    display: flex;
    align-items: flex-end;
    min-height: 85px;
  }
}
@media (min-width: 1024px) {
  .posts-list .item {
    width: 33.333%;
  }
}
/** News/Case studies category page **/
.category-page .col-1 {
  padding: 0 0 80px;
}
.category-page .filter .filter-group {
  padding: 60px 0 0;
  border-bottom: solid 2px #A6A8AB;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
}
.category-page .filter .filter-group:first-of-type {
  padding-top: 0;
}
.category-page .filter .filter-group .filter-title {
  margin: 0 0 20px;
  font-size: 20px;
}
.category-page .filter .filter-group .form-check {
  position: relative;
  padding: 20px 0;
  border-top: solid 2px #A6A8AB;
}
.category-page .filter .filter-group .form-check [type=checkbox]:checked, .category-page .filter .filter-group .form-check [type=checkbox]:not(:checked) {
  position: absolute;
  opacity: 0;
}
.category-page .filter .filter-group .form-check [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.category-page .filter .filter-group .form-check [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.category-page .filter .filter-group .form-check [type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 50px;
  cursor: pointer;
}
.category-page .filter .filter-group .form-check [type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background: #e6f1ff;
}
.category-page .filter .filter-group .form-check [type=checkbox] + label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 13px;
  height: 13px;
  background: #0073FF;
  transition: all 0.2s ease;
}
.category-page .filter .clear-filter {
  display: inline-block;
  padding-left: 20px;
  margin: 0 0 24px;
  background: url(../svg/close--blue.svg) no-repeat left center;
  background-size: 11px auto;
  color: #0073FF;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.category-page .filter .clear-filter:hover {
  color: #08090A;
}
.category-page.case-studies-page .posts-list .item .item-inner {
  background-color: #e6eaea;
}

@media (min-width: 768px) {
  .category-page .cols {
    display: flex;
  }
  .category-page .col-1 {
    flex-shrink: 0;
    width: 40%;
    padding: 0 70px 0 0;
  }
  .category-page .posts-list .item {
    width: 100%;
    padding-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .category-page .col-1 {
    padding-right: 120px;
  }
}
@media (min-width: 1280px) {
  .category-page .col-1 {
    width: 33.333%;
  }
  .category-page .posts-list .item {
    width: 50%;
  }
}
/** News/Case studies category page **/
/** News/Case study single page **/
.post-page #page-hero .text .section-heading h2, .post-page #page-hero .text .section-heading .h2 {
  font-size: 36px;
}
.post-page #page-hero .text .post-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  color: #072b31;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.post-page #page-hero .text .post-meta .post-category {
  margin-right: 40px;
}
.post-page #page-hero .text .post-meta .post-category > span:last-child .separator {
  display: none;
}
.post-page #page-hero .text .post-meta .post-date {
  text-align: right;
}
.post-page #page-content img.size-full {
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .post-page #page-content img.size-full {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  .post-page #page-content img.size-full {
    border-bottom-right-radius: 280px;
  }
}

@media (min-width: 1440px) {
  .post-page #regular-content > .container {
    padding: 0 220px;
  }
  .post-page #regular-content img.size-full, .post-page #regular-content img.size-full + .wp-caption-text {
    max-width: calc(100% + 232px);
    margin-left: -116px;
    margin-right: -116px;
  }
}
/** END News/Case study single page **/
/** News single page **/
.post-page.single-news-page {
  background-color: #fff !important;
}
.post-page.single-news-page #page-content {
  background-color: #f7f5f0;
}
.post-page.single-news-page #latest-news .posts-list .item .item-inner {
  background-color: #f7f5f0;
}

/** END News single page **/
/** Case study single page **/
.post-page.single-case-study-page #case-study-details {
  background-color: #fff;
}
.post-page.single-case-study-page #case-study-details .introduction {
  padding: 100px 25px;
  background-color: #0073FF;
  color: #fff;
}
.post-page.single-case-study-page #case-study-details .introduction .section-heading h2, .post-page.single-case-study-page #case-study-details .introduction .section-heading .h2 {
  --line-color: #fff;
}
.post-page.single-case-study-page #case-study-details .details {
  padding: 100px 25px 80px;
  background-color: #e6f1ff;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .post-page.single-case-study-page #case-study-details .details {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  .post-page.single-case-study-page #case-study-details .details {
    border-bottom-right-radius: 280px;
  }
}
.post-page.single-case-study-page #case-study-details .details > div:not(.logo) {
  display: flex;
  padding: 20px 0;
  border-top: solid 2px #A6A8AB;
}
.post-page.single-case-study-page #case-study-details .details > div:not(.logo) .label {
  flex-shrink: 0;
  width: 120px;
  padding-right: 40px;
  color: #0073FF;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.post-page.single-case-study-page #case-study-details .details > div:not(.logo) .value > div {
  padding: 5px 0;
  line-height: 1.2;
}
.post-page.single-case-study-page #case-study-details .details .logo {
  max-width: 200px;
  margin-bottom: 25px;
}
.post-page.single-case-study-page #case-studies-module .posts-list .item .item-inner {
  background-color: #fff;
}
@media (min-width: 768px) {
  .post-page.single-case-study-page #case-study-details .introduction {
    padding-left: 40px;
    padding-right: 40px;
  }
  .post-page.single-case-study-page #case-study-details .details {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .post-page.single-case-study-page #case-study-details {
    display: flex;
    justify-content: space-between;
    padding-right: 40px;
  }
  .post-page.single-case-study-page #case-study-details .introduction {
    flex-grow: 1;
    padding-right: 80px;
  }
  .post-page.single-case-study-page #case-study-details .details {
    flex-shrink: 0;
    width: calc(50% - 50px);
    max-width: 540px;
    padding-right: 80px;
  }
}
@media (min-width: 1440px) {
  .post-page.single-case-study-page #case-study-details {
    padding-right: calc((100% - 1280px) / 2);
  }
  .post-page.single-case-study-page #case-study-details .introduction {
    padding: 120px 100px 120px calc((100vw - 1280px) / 2);
  }
  .post-page.single-case-study-page #case-study-details .details {
    padding: 120px 100px 120px 65px;
  }
}

/** END Case study single page **/
/** Case Studies module **/
#case-studies-module {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #case-studies-module {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #case-studies-module {
    padding: 140px 0;
  }
}
#case-studies-module .col-1 {
  padding: 0 0 80px;
}
#case-studies-module .col-1 .more-link {
  margin: 0;
}
#case-studies-module .col-1 .description + .more-link {
  margin-top: 40px;
}
#case-studies-module .posts-list .item .item-inner {
  background-color: #f0f0f0;
}

@media (min-width: 1024px) {
  #case-studies-module .cols {
    display: flex;
  }
  #case-studies-module .col-1 {
    flex-shrink: 0;
    width: 33.333%;
    padding-right: 60px;
  }
  #case-studies-module .col-1 .section-heading {
    margin-top: 30px;
  }
  #case-studies-module .col-1 .section-heading h2, #case-studies-module .col-1 .section-heading .h2 {
    padding-top: 60px;
  }
  #case-studies-module .col-2 .item {
    width: 50%;
  }
}
/** END Case Studies module **/
/** Archive page **/
.archive__list .archive__item {
  position: relative;
  padding: 40px 0;
  border-bottom: solid 2px #A6A8AB;
}
.archive__list .archive__item .archive__title {
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1.4;
}
.archive__list .archive__item .archive__link {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .archive__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .archive__list .archive__item {
    width: 42%;
  }
  .archive__list .archive__item .archive__title {
    font-size: 24px;
  }
}
/** END Archive page **/
/** Search Results page **/
.search__params {
  margin: 0 0 30px 0;
  color: #0073FF;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.post__list .post__item {
  position: relative;
  padding: 50px 0;
  border-bottom: solid 2px #A6A8AB;
}
.post__list .post__item .post__title {
  font-family: "noka", "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}
.post__list .post__item .post__description {
  margin: 25px 0 20px;
  font-size: 15px;
}
.post__list .post__item .post__link {
  margin-top: 10px;
}

.searchform {
  padding: 40px 0 0 0;
}
.searchform input[type=search],
.searchform input[type=text] {
  height: 56px;
}
.searchform #searchsubmit {
  width: 100%;
  height: 56px;
  min-width: 0;
  margin: 10px 0;
  padding: 15px 30px;
  text-align: center;
}

@media (min-width: 600px) {
  .searchform input[type=search],
  .searchform input[type=text] {
    width: 73%;
  }
  .searchform #searchsubmit {
    width: 25%;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .searchform {
    max-width: 760px;
  }
}
/** END Search Results page **/
/** campaign-page **/
.campaign-page #page-hero {
  background-color: #e6f1ff;
}
.campaign-page #page-hero .text .page-heading {
  margin-top: 20px;
}
.campaign-page #page-introduction {
  background-color: #fff;
  color: #072b31;
}
.campaign-page #page-introduction .section-heading h2, .campaign-page #page-introduction .section-heading .h2 {
  --line-color: #0073FF;
}
.campaign-page #modules {
  padding: 0;
}
.campaign-page #modules .item.accordion {
  padding: 100px 0 !important;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .campaign-page #modules .item.accordion {
    padding: 120px 0 !important;
  }
}
@media (min-width: 1440px) {
  .campaign-page #modules .item.accordion {
    padding: 140px 0 !important;
  }
}
.campaign-page #download-form {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  .campaign-page #download-form {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  .campaign-page #download-form {
    padding: 140px 0;
  }
}
@media (min-width: 1024px) {
  .campaign-page #download-form .gform_wrapper form {
    position: relative;
  }
  .campaign-page #download-form .gform_wrapper .gform-footer {
    margin: -2px 2px 0 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 170px;
  }
}

/** END campaign-page **/
/** HubSpot Form **/
:root {
  --hsf-global__font-family: "Roboto", sans-serif;
  --hsf-field-label__font-family: "Roboto", sans-serif;
  --hsf-background__padding: 0;
  --hsf-row__horizontal-spacing: 20px;
  --hsf-row__vertical-spacing: 20px;
  --hsf-field-input__background-color: #fff;
  --hsf-field-input__border-color: #fff;
  --hsf-field-input__border-radius: 0;
  --hsf-field-input__padding: 15px 25px;
  --hsf-button__border-radius: 0;
  --hsf-button__padding: 17px 46px 16px 24px;
  --hsf-navigationrow-buttons-single__justify-content: start;
  --hsf-global__error-color: #c02b0a;
  --hsf-erroralert__color: #c02b0a;
}

.hs-form-html {
  position: relative;
}
@media (min-width: 1024px) {
  .hs-form-html {
    margin-bottom: -25px;
  }
}
.hs-form-html .hsfc-FieldLabel {
  font-weight: 500;
}
.hs-form-html .hsfc-TextInput {
  height: 60px;
  font-weight: 500;
}
.hs-form-html .hsfc-CheckboxField .hsfc-CheckboxInput {
  margin-right: 5px;
  padding: 12px !important;
}
.hs-form-html .hsfc-CheckboxField .hsfc-FieldLabel {
  font-weight: 400;
}
.hs-form-html .hsfc-RichText {
  font-size: 14px !important;
}
.hs-form-html .hsfc-DataPrivacyField .hsfc-Row {
  margin-bottom: 0 !important;
}
.hs-form-html .hsfc-DataPrivacyField .hsfc-CheckboxField {
  margin: 20px 0;
}
.hs-form-html .hsfc-DataPrivacyField .hsfc-CheckboxField .hsfc-FieldLabel {
  font-size: 14px;
}
.hs-form-html .hsfc-NavigationRow {
  margin-top: 0 !important;
}
.hs-form-html .hsfc-Button {
  font-family: "noka", "Roboto", sans-serif !important;
}
@media (min-width: 1024px) {
  .hs-form-html .hsfc-Button {
    position: absolute !important;
    top: 240px;
    right: 0;
  }
}
.hs-form-html .hsfc-Button:hover {
  background-color: #A3C9A8 !important;
  transform: none !important;
}
.hs-form-html .hsfc-FieldLabel__RequiredIndicator {
  margin-left: 2px;
}
.hs-form-html .hsfc-ErrorAlert {
  font-size: 14px !important;
  font-weight: 400;
}
.hs-form-html .hsfc-NavigationRow__Alerts .hsfc-ErrorAlert {
  font-size: 18px !important;
  font-weight: 500;
}

/** END HubSpot Form **/
/** Animations **/
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes draw-line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.animations-on section:not(.not-animate) .section-heading h2, .animations-on section:not(.not-animate) .section-heading .h2,
.animations-on #modules .item .section-heading h2,
.animations-on #modules .item .section-heading .h2 {
  opacity: 0;
}
.animations-on section:not(.not-animate) .section-heading h2:before, .animations-on section:not(.not-animate) .section-heading .h2:before,
.animations-on #modules .item .section-heading h2:before,
.animations-on #modules .item .section-heading .h2:before { /* line */
  width: 0;
}
.animations-on section:not(.not-animate) .section-description,
.animations-on #modules .item .section-description {
  opacity: 0;
}
.animations-on section:not(.not-animate) .heading-wrap .more-link,
.animations-on #modules .item .heading-wrap .more-link {
  opacity: 0;
}
.animations-on section:not(.not-animate).inview .section-heading h2, .animations-on section:not(.not-animate).inview .section-heading .h2,
.animations-on #modules .item.inview .section-heading h2,
.animations-on #modules .item.inview .section-heading .h2 {
  animation: fade-in 1s ease-in-out forwards;
}
.animations-on section:not(.not-animate).inview .section-heading h2:before, .animations-on section:not(.not-animate).inview .section-heading .h2:before,
.animations-on #modules .item.inview .section-heading h2:before,
.animations-on #modules .item.inview .section-heading .h2:before { /* line */
  animation: draw-line 1s ease-in-out forwards;
}
.animations-on section:not(.not-animate).inview .section-description,
.animations-on #modules .item.inview .section-description {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on section:not(.not-animate).inview .heading-wrap .more-link,
.animations-on #modules .item.inview .heading-wrap .more-link {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #modules .item .text-inner, .animations-on #modules .item .list {
  opacity: 0;
}
.animations-on #modules .item.inview .text-inner, .animations-on #modules .item.inview .list {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #modules .item.cards-with-icons .items .item,
.animations-on #modules .item.blocks-with-icons .items .item {
  opacity: 0;
}
.animations-on #modules .item.cards-with-icons.inview .items .item,
.animations-on #modules .item.blocks-with-icons.inview .items .item {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #modules .item.cards-with-icons.inview .items .item:nth-child(2),
.animations-on #modules .item.blocks-with-icons.inview .items .item:nth-child(2) {
  animation-delay: 1.5s;
}
.animations-on #modules .item.cards-with-icons.inview .items .item:nth-child(3),
.animations-on #modules .item.blocks-with-icons.inview .items .item:nth-child(3) {
  animation-delay: 2s;
}
.animations-on #modules .item.case-study .description, .animations-on #modules .item.case-study .logo,
.animations-on #modules .item.product .description,
.animations-on #modules .item.product .logo {
  opacity: 0;
}
.animations-on #modules .item.case-study .case-study-list-title,
.animations-on #modules .item.case-study .case-study-list,
.animations-on #modules .item.case-study .items,
.animations-on #modules .item.product .case-study-list-title,
.animations-on #modules .item.product .case-study-list,
.animations-on #modules .item.product .items {
  opacity: 0;
}
.animations-on #modules .item.case-study.inview .description, .animations-on #modules .item.case-study.inview .logo,
.animations-on #modules .item.product.inview .description,
.animations-on #modules .item.product.inview .logo {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #modules .item.case-study.inview .case-study-list-title,
.animations-on #modules .item.case-study.inview .case-study-list,
.animations-on #modules .item.case-study.inview .items,
.animations-on #modules .item.product.inview .case-study-list-title,
.animations-on #modules .item.product.inview .case-study-list,
.animations-on #modules .item.product.inview .items {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1.5s;
}
.animations-on #page-hero .page-heading,
.animations-on #page-hero .page-subtitle,
.animations-on #page-hero .links {
  opacity: 0;
}
.animations-on #page-hero.inview .page-heading,
.animations-on #page-hero.inview .page-subtitle,
.animations-on #page-hero.inview .links {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #page-introduction .col-1 h4, .animations-on #page-introduction .col-1 .h4, .animations-on #page-introduction .col-1 .logo {
  opacity: 0;
}
.animations-on #page-introduction .col-2 {
  opacity: 0;
}
.animations-on #page-introduction.inview .col-1 h4, .animations-on #page-introduction.inview .col-1 .h4, .animations-on #page-introduction.inview .col-1 .logo {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 0.5s;
}
.animations-on #page-introduction.inview .col-2 {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #home-about .col-1 h4, .animations-on #home-about .col-1 .h4, .animations-on #home-about .col-1 .description, .animations-on #home-about .col-1 .more-link {
  opacity: 0;
}
.animations-on #home-about .col-2 .items, .animations-on #home-about .col-2 .more-link {
  opacity: 0;
}
.animations-on #home-about.inview .col-1 h4, .animations-on #home-about.inview .col-1 .h4, .animations-on #home-about.inview .col-1 .description, .animations-on #home-about.inview .col-1 .more-link {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #home-about.inview .col-2 .items, .animations-on #home-about.inview .col-2 .more-link {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1.5s;
}
.animations-on #home-expertise .col-1 h4, .animations-on #home-expertise .col-1 .h4, .animations-on #home-expertise .col-1 .description, .animations-on #home-expertise .col-1 .more-link {
  opacity: 0;
}
.animations-on #home-expertise.inview .col-1 h4, .animations-on #home-expertise.inview .col-1 .h4, .animations-on #home-expertise.inview .col-1 .description, .animations-on #home-expertise.inview .col-1 .more-link {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #pillars-of-success .item {
  opacity: 0;
}
.animations-on #pillars-of-success.inview .item {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #pillars-of-success.inview .item:nth-child(2) {
  animation-delay: 1.5s;
}
.animations-on #pillars-of-success.inview .item:nth-child(3) {
  animation-delay: 2s;
}
.animations-on #proof-points .item {
  opacity: 0;
}
.animations-on #proof-points.inview .item {
  animation: fade-in 1s ease-in-out forwards;
}
.animations-on #proof-points.inview .item:nth-child(-n+3) {
  animation-delay: 1s;
}
.animations-on #proof-points.inview .item:nth-child(n+4) {
  animation-delay: 2s;
}
.animations-on #delivery-principles .section-description {
  opacity: 0;
}
.animations-on #delivery-principles.inview .section-description {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #case-studies-module .col-1 h4, .animations-on #case-studies-module .col-1 .h4, .animations-on #case-studies-module .col-1 .description, .animations-on #case-studies-module .col-1 .more-link {
  opacity: 0;
}
.animations-on #case-studies-module.inview .col-1 h4, .animations-on #case-studies-module.inview .col-1 .h4, .animations-on #case-studies-module.inview .col-1 .description, .animations-on #case-studies-module.inview .col-1 .more-link {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #case-study-details .introduction .description,
.animations-on #case-study-details .details > div {
  opacity: 0;
}
.animations-on #case-study-details.inview .introduction .description {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 0.5s;
}
.animations-on #case-study-details.inview .details > div {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}
.animations-on #company-contacts .text {
  opacity: 0;
}
.animations-on #company-contacts.inview .text {
  animation: fade-in 1s ease-in-out forwards;
}
.animations-on #services-list .item,
.animations-on #careers {
  opacity: 0;
}
.animations-on #services-list .item.inview,
.animations-on #careers.inview {
  animation: fade-in 1s ease-in-out forwards;
}
.animations-on #what-we-solve .content > .h4 {
  opacity: 0;
}
.animations-on #what-we-solve.inview .content > .h4 {
  animation: fade-in 1s ease-in-out forwards;
  animation-delay: 1s;
}

/** END Animations **/
/** home-about **/
#home-about .items .item {
  display: flex;
  align-items: center;
  padding: 0 0 40px;
  font-family: "noka", "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.35;
}
#home-about .items .item .icon {
  flex-shrink: 0;
  width: 60px;
  height: 40px;
  margin-right: 25px;
  position: relative;
}
#home-about .items .item .icon > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home-about .items .item .icon img {
  object-fit: contain;
}

@media (min-width: 1024px) {
  #home-about .items .item {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  #home-about .items .item {
    padding-bottom: 60px;
    font-size: 30px;
  }
  #home-about .items .item .icon {
    width: 80px;
    height: 50px;
    margin-right: 30px;
  }
}
#home-about,
#home-expertise {
  background-color: #e6f1ff;
}
#home-about .section-heading h2, #home-about .section-heading .h2,
#home-expertise .section-heading h2,
#home-expertise .section-heading .h2 {
  --line-color: #fff;
}
#home-about .col-1,
#home-expertise .col-1 {
  padding: 100px 25px;
  background-color: #0073FF;
  color: #fff;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #home-about .col-1,
  #home-expertise .col-1 {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 1024px) {
  #home-about .col-1,
  #home-expertise .col-1 {
    border-bottom-right-radius: 280px;
  }
}
#home-about .col-2,
#home-expertise .col-2 {
  padding: 100px 25px;
}

@media (min-width: 768px) {
  #home-about .col-1,
  #home-expertise .col-1 {
    padding-left: 40px;
    padding-right: 40px;
  }
  #home-about .col-2,
  #home-expertise .col-2 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  #home-about,
  #home-expertise {
    display: flex;
    justify-content: space-between;
  }
  #home-about .col-1,
  #home-expertise .col-1 {
    flex-shrink: 0;
    width: calc(50% + 50px);
    padding-right: 80px;
  }
  #home-about .col-2,
  #home-expertise .col-2 {
    width: calc(50% - 50px);
  }
}
@media (min-width: 1280px) {
  #home-about .col-2,
  #home-expertise .col-2 {
    padding-left: 80px;
  }
}
@media (min-width: 1440px) {
  #home-about .col-1,
  #home-expertise .col-1 {
    width: calc(50% + 90px);
    padding: 120px 100px 120px calc((100% - 1280px) / 2);
  }
  #home-about .col-2,
  #home-expertise .col-2 {
    width: calc(50% - 90px);
    padding: 120px calc((100% - 1280px) / 2) 120px 100px;
  }
}
/** END home-about **/
/** home-services **/
#home-services {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #home-services {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #home-services {
    padding: 140px 0;
  }
}
#home-services .items .item {
  padding: 0 0 60px;
}
@media (max-width: 767px) {
  #home-services .items .item { /* mobile only */ }
  #home-services .items .item:last-child {
    padding: 0;
  }
}
#home-services .items .item:nth-child(1) .item-inner {
  background-color: #f0f0f0;
}
#home-services .items .item:nth-child(3) .item-inner {
  background-color: #e8f2e9;
}
#home-services .items .item:nth-child(4) .item-inner {
  background-color: #f7f5f0;
}
#home-services .items .item .item-inner {
  background-color: #e6f1ff;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
#home-services .items .item .image {
  padding-bottom: 80%;
  background-color: rgba(0, 0, 0, 0.03);
  position: relative;
}
@media (min-width: 600px) {
  #home-services .items .item .image {
    padding-bottom: 70%;
  }
}
#home-services .items .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home-services .items .item .text {
  padding: 50px 25px;
}
#home-services .items .item .text .title {
  color: #072b31;
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 20px;
}
#home-services .items .item .text .title:after { /* line */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: -1000px;
  height: 4px;
  background-color: #0073FF;
}
#home-services .items .item .text .button {
  margin-top: 40px;
}

@media (min-width: 768px) {
  #home-services .items .item .item-inner {
    display: flex;
  }
  #home-services .items .item .image {
    flex-shrink: 0;
    width: 48%;
    padding: 0;
  }
  #home-services .items .item .text {
    width: 52%;
    padding: 55px 35px;
  }
}
@media (min-width: 1280px) {
  #home-services .items {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
  }
  #home-services .items .item {
    display: flex;
    width: 50%;
    padding: 10px;
  }
  #home-services .items .item .item-inner {
    width: 100%;
  }
}
/** END home-services **/
/** home-products **/
#home-products {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  #home-products {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  #home-products {
    padding: 140px 0;
  }
}
#home-products .col-1 .heading,
#home-products .col-2 .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#home-products .col-1 .heading h3,
#home-products .col-2 .heading h3 {
  margin: 0;
  color: #072b31;
}
#home-products .col-1 .heading .button,
#home-products .col-2 .heading .button {
  flex-shrink: 0;
  margin-left: 40px;
}
#home-products .col-1 .content,
#home-products .col-2 .content {
  padding: 50px 25px 70px;
  background-color: #e6f1ff;
  border-top: solid 4px #0073FF;
  border-bottom-right-radius: 125px;
  overflow: hidden;
}
#home-products .col-1 .content .description,
#home-products .col-2 .content .description {
  margin-bottom: 40px;
}
#home-products .col-1 .content .items .button,
#home-products .col-2 .content .items .button {
  display: block;
  margin: 0 0 10px;
}
#home-products .col-1 {
  padding-bottom: 60px;
}
#home-products .col-2 .content {
  background-color: #e6eaea;
}

@media (min-width: 768px) {
  #home-products .cols {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
  }
  #home-products .col-1,
  #home-products .col-2 {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 10px;
  }
  #home-products .col-1 .content,
  #home-products .col-2 .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 50px 35px 70px;
  }
  #home-products .col-1 .content .description,
  #home-products .col-2 .content .description {
    flex-grow: 1;
  }
  #home-products .col-1 .content .items .button,
  #home-products .col-2 .content .items .button {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (min-width: 1024px) {
  #home-products .cols {
    margin: 0 -32px;
  }
  #home-products .col-1,
  #home-products .col-2 {
    padding: 32px;
  }
  #home-products .col-1 .content,
  #home-products .col-2 .content {
    padding: 55px;
  }
}
/** END home-products **/
/** home-expertise **/
#home-expertise .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -30px 0;
}
#home-expertise .logos .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 40%;
  padding: 30px 0;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-align: center;
}
#home-expertise .logos .item:first-child {
  width: 100%;
}
@media (max-width: 1439px) {
  #home-expertise .logos .item:first-child { /* mobile only */ }
  #home-expertise .logos .item:first-child img {
    max-width: 180px;
  }
}
#home-expertise .logos .item .logo {
  flex-shrink: 0;
}
#home-expertise .logos .item .text {
  padding-top: 10px;
}

/** END home-expertise **/
/** FOOTER **/
#footer {
  padding: 50px 0 30px;
  background-color: #072b31;
  color: #fff;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  color: #2989ff;
}
#footer a.footer__logo {
  display: inline-block;
}
#footer a.footer__logo img {
  max-width: 200px;
}
#footer .company-contacts {
  padding: 35px 0 25px;
  border-bottom: solid 4px #fff;
}
#footer ul.socials {
  display: flex;
  margin-top: 20px;
}
#footer ul.socials li:not(:last-child) {
  padding-right: 15px;
}
#footer ul.socials li a {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
#footer ul.socials li a:before, #footer ul.socials li a:after { /* icons */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.25s;
}
#footer ul.socials li a:after {
  opacity: 0;
}
#footer ul.socials li a:hover:before, #footer ul.socials li a:focus:before {
  opacity: 0;
}
#footer ul.socials li a:hover:after, #footer ul.socials li a:focus:after {
  opacity: 1;
}
#footer ul.socials li a.facebook:before {
  background-image: url(../svg/facebook--white.svg);
}
#footer ul.socials li a.facebook:after {
  background-image: url(../svg/facebook--blue.svg);
}
#footer ul.socials li a.linkedin:before {
  background-image: url(../svg/linkedin--white.svg);
}
#footer ul.socials li a.linkedin:after {
  background-image: url(../svg/linkedin--blue.svg);
}
#footer .footer__menu {
  margin-top: 45px;
}
#footer .footer__menu ul.menu { /* level 1 */ }
#footer .footer__menu ul.menu > li {
  padding-bottom: 20px;
}
#footer .footer__menu ul.menu > li > a {
  display: inline-block;
  padding: 4px 0;
  font-family: "noka", "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
#footer .footer__menu ul.menu > li ul.sub-menu { /* level 2 */
  padding-top: 5px;
}
#footer .footer__menu ul.menu > li ul.sub-menu li a {
  display: inline-block;
  padding: 4px 0;
  line-height: 1.2;
}

.footer__copyright {
  padding: 10px 0;
  background-color: #456065;
  color: #fff;
  font-size: 14px;
}
.footer__copyright a {
  color: #fff;
}
.footer__copyright a:hover {
  color: #00FFFF;
}

@media (min-width: 1024px) {
  #footer {
    font-size: 14px;
  }
  #footer > .container {
    display: flex;
    justify-content: space-between;
  }
  #footer .col-1 {
    flex-shrink: 0;
    width: 250px;
  }
  #footer .col-2 {
    flex-grow: 1;
  }
  #footer .company-contacts {
    display: flex;
    justify-content: flex-end;
    padding: 18px 0 22px;
  }
  #footer .company-contacts > div:not(:last-child) {
    padding-right: 60px;
  }
  #footer ul.socials {
    margin: 0;
  }
  #footer .footer__menu {
    display: flex;
    justify-content: flex-end;
    margin-top: 27px;
  }
  #footer .footer__menu ul.menu {
    display: flex;
  }
  #footer .footer__menu ul.menu > li {
    padding: 0 40px 0 0;
  }
  #footer .footer__menu ul.menu-secondary {
    position: relative;
  }
  #footer .footer__menu ul.menu-secondary > li:last-child {
    padding-right: 0;
  }
  #footer .footer__menu ul.menu-secondary li.menu-item-35 { /* Careers */
    position: absolute;
    right: -40px;
    top: 32px;
  }
  .footer__copyright > .container {
    display: flex;
  }
  .footer__copyright > .container > div:not(:last-child) {
    padding-right: 40px;
  }
}
@media (min-width: 1280px) {
  #footer .footer__menu ul.menu { /* level 1 */ }
  #footer .footer__menu ul.menu > li {
    padding-right: 70px !important;
  }
  #footer .footer__menu ul.menu > li > a {
    white-space: nowrap;
  }
  #footer .footer__menu ul.menu > li ul.sub-menu { /* level 2 */ }
  #footer .footer__menu ul.menu > li ul.sub-menu li a {
    white-space: nowrap;
  }
  #footer .footer__menu ul.menu-secondary li.menu-item-35 { /* Careers */
    right: 0;
  }
}
/** END FOOTER **/
/** Hide/Show element **/
.d-none {
  display: none;
}

@media (min-width: 768px) {
  .d-none-sm {
    display: none;
  }
}
@media (min-width: 1024px) {
  .d-none-md {
    display: none;
  }
}
@media (min-width: 1280px) {
  .d-none-lg {
    display: none;
  }
}
@media (min-width: 1440px) {
  .d-none-xl {
    display: none;
  }
}
.d-block {
  display: block;
}

@media (min-width: 768px) {
  .d-block-sm {
    display: block;
  }
}
@media (min-width: 1024px) {
  .d-block-md {
    display: block;
  }
}
@media (min-width: 1280px) {
  .d-block-lg {
    display: block;
  }
}
@media (min-width: 1440px) {
  .d-block-xl {
    display: block;
  }
}
.d-flex {
  display: flex;
}

@media (min-width: 768px) {
  .d-flex-sm {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .d-flex-md {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .d-flex-lg {
    display: flex;
  }
}
@media (min-width: 1440px) {
  .d-flex-xl {
    display: flex;
  }
}
/** END Hide/Show element **/
/** Position **/
.c-position-relative {
  position: relative;
}

/** END Position **/
/** Margins **/
.c-margin-0 {
  margin: 0 !important;
}

.c-margin-vert-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.c-margin-sides-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.c-margin-top-0 {
  margin-top: 0 !important;
}

.c-margin-bottom-0 {
  margin-bottom: 0 !important;
}

.c-margin-left-0 {
  margin-left: 0 !important;
}

.c-margin-right-0 {
  margin-right: 0 !important;
}

.c-clear-p-margins p:first-child {
  margin-top: 0;
}
.c-clear-p-margins p:last-child {
  margin-bottom: 0;
}

/** END Margins **/
/** Paddings **/
.c-padding-0 {
  padding: 0 !important;
}

.c-padding-vert-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.c-padding-sides-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.c-padding-top-0 {
  padding-top: 0 !important;
}

.c-padding-bottom-0 {
  padding-bottom: 0 !important;
}

.c-padding-left-0 {
  padding-left: 0 !important;
}

.c-padding-right-0 {
  padding-right: 0 !important;
}

/** END Paddings **/
/** Text styles **/
.c-text-left {
  text-align: left !important;
}

.c-text-center {
  text-align: center !important;
}

.c-text-right {
  text-align: right !important;
}

.c-word-break {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}

.c-no-wrap {
  white-space: nowrap;
}

/** END Text styles **/
/** Slick **/
.slick-slider ul.slick-dots {
  display: flex !important;
  justify-content: center;
  line-height: 0;
}
.slick-slider ul.slick-dots li {
  padding: 6px;
}
.slick-slider ul.slick-dots li:hover button, .slick-slider ul.slick-dots li.slick-active button {
  opacity: 1;
}
.slick-slider ul.slick-dots li button {
  width: 13px;
  height: 13px;
  padding: 0;
  opacity: 0.1;
  background-color: #0073FF;
  border: none;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  transition: all 0.25s;
  cursor: pointer;
}
.slick-slider ul.slick-dots li button:after {
  display: none;
}

.slick-arrow {
  position: relative;
  position: absolute;
  z-index: 5;
  top: 260px;
  right: -20px;
  display: block;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.slick-arrow:before, .slick-arrow:after { /* icons */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.25s;
}
.slick-arrow:after {
  opacity: 0;
}
.slick-arrow:hover:before, .slick-arrow:focus:before {
  opacity: 0;
}
.slick-arrow:hover:after, .slick-arrow:focus:after {
  opacity: 1;
}
@media (min-width: 768px) {
  .slick-arrow {
    right: -30px;
  }
}
@media (min-width: 1440px) {
  .slick-arrow {
    right: -50px;
  }
}
@media (min-width: 1800px) {
  .slick-arrow {
    right: -70px;
  }
}
.slick-arrow.slick-prev {
  left: -20px;
  right: auto;
  transform: rotate(-180deg);
}
@media (min-width: 768px) {
  .slick-arrow.slick-prev {
    left: -30px;
  }
}
@media (min-width: 1440px) {
  .slick-arrow.slick-prev {
    left: -50px;
  }
}
@media (min-width: 1800px) {
  .slick-arrow.slick-prev {
    left: -70px;
  }
}
.slick-arrow:before, .slick-arrow:after {
  background-image: url(../svg/arrow--blue.svg);
  background-size: 12px auto;
}
.slick-arrow:after {
  background-image: url(../svg/arrow--green.svg);
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-equal-height.slick-initialized .slick-track {
  display: flex;
}
.slick-equal-height.slick-initialized .slick-track:before, .slick-equal-height.slick-initialized .slick-track:after {
  display: none;
}
.slick-equal-height.slick-initialized .slick-track .slick-slide {
  display: flex;
  height: auto;
}

/** END Slick **/