/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  overflow-wrap: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

a {
  text-decoration: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img.rounded {
  border-radius: 16px !important;
}
/* End Reset */

/* Common styles & Typography */
:root {
  --white: #fff;
  --blue-400: #41cffd;
  --blue-500: #30c3f2;
  --blue-800: #2a2859;
  --blue-900: #212147;
  --blue-950: #171738;
  --blue-grayish-100: #f3f6f8;
  --blue-grayish-200: #f2f5fa;
  --blue-grayish-300: #e4eaf4;
  --blue-grayish-350: #e5ecf6;
  --blue-grayish-400: #98a6b8;
  --black: #000;
  --black-transparent-600: rgba(0, 0, 0, 0.6);
  --yellow-300: #ffed87;
  --orange-600: #ff4013;
  --red-400: #f06f72;
  --transparent: rgba(0, 0, 0, 0);
}

@font-face {
  font-family: "TTNormsPro";
  src:
    url("/nordics/fonts/tt_norms_pro_normal.woff2") format("woff2"),
    url("/nordics/fonts/tt_norms_pro_normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TTNormsPro";
  src:
    url("/nordics/fonts/tt_norms_pro_bold.woff2") format("woff2"),
    url("/nordics/fonts/tt_norms_pro_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetbrainsMono";
  src:
    url("/nordics/fonts/jetbrainsmono-medium.woff2") format("woff2"),
    url("/nordics/fonts/jetbrainsmono-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SirmaNumerals";
  src: url("/nordics/fonts/sirma_numerals.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  font:
    10px TTNormsPro,
    Roboto,
    sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  color: var(--blue-800);
  background: var(--white);
  overflow-x: hidden;
  padding: 0 8px 8px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0;
  text-size-adjust: none;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

body.home {
  padding: 0;
  transition:
    background-color 0.35s ease-in-out,
    color 0.35s ease-in-out;
  will-change: background-color, color;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: TTNormsPro, Tahoma, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1,
h2,
h3 {
  font-size: 3.6rem;
  line-height: 4rem;
}

h4,
h5 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}

ul {
  padding: 0;
}

p {
  margin: 0 0 2.4rem;
}

.text-normal {
  font-size: 1.6rem !important;
  line-height: 2.4rem !important;
  letter-spacing: 0;
}

.text-large {
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: -0.02em;
}

.text-tight {
  letter-spacing: -0.02em;
}

.text-capitalized {
  text-transform: capitalize;
}

.text-small {
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0;
}

.color-blue {
  color: var(--blue-800);
}

.color-lightblue {
  color: var(--blue-400);
}

.rounded {
  border-radius: 24px;
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

.overflow-hidden {
  overflow: hidden !important;
}

.bg-blurred {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.h-auto {
  min-height: auto !important;
  height: auto !important;
}

@media screen and (min-width: 1024px) {
  /* Add right padding to compensate for 
  missing scrollbar when showing modals. 
  Prevents layout shift */
  .overflow-hidden {
    padding-right: 33px;
  }

  .home.overflow-hidden > .content section {
    padding-right: 209px !important;
  }

  img.rounded {
    border-radius: 24px !important;
  }
}

.grecaptcha-badge {
  display: none;
}

/* Bootstrap classes extension */
.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.z-6 {
  z-index: 6;
}

.z-7 {
  z-index: 7;
}

.mt-auto {
  margin-top: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-1 {
  margin-left: 0.5rem;
}

.ml-2 {
  margin-left: 1rem;
}

.ml-3 {
  margin-left: 1.5rem;
}

.ml-4 {
  margin-left: 2rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 2.5rem;
}

.mb-7 {
  margin-bottom: 3rem;
}

.mb-8 {
  margin-bottom: 3.5rem;
}

.mb-9 {
  margin-bottom: 4rem;
}

.mb-10 {
  margin-bottom: 4.5rem;
}

.mb-11 {
  margin-bottom: 5rem;
}

.mb-12 {
  margin-bottom: 5.5rem;
}

.outline-0 {
  outline: none !important;
}

.transition-delay-0 {
  transition-delay: 0s !important;
}

.text-shadow {
  text-shadow: 0 0 rgba(0, 0, 0, 0.1);
}

.icon:not([class^="col-"]):not([class^="row-"]) {
  display: inline-block;
  line-height: 1;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  flex-shrink: 0;
  position: relative;
}

@media screen and (min-width: 1600px) {
  .text-xl-big {
    font-size: 3.2rem;
    line-height: 4.8rem;
    letter-spacing: -0.64px;
  }
}
/* End Bootstrap classes extension */

input,
textarea,
select {
  border-radius: 30px;
  border: 1px solid var(--blue-grayish-400);
  padding: 17px 32px;
  transition: 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-800);
  outline: none;
}

input.invalid,
textarea.invalid {
  transition: none;
  border-color: var(--red-400) !important;
  outline: 1px solid var(--red-400) !important;
}

[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

[type="checkbox"] + label {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin: 0 0 10px;
  outline: none;
}

[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background: transparent;
  border: 1px solid var(--blue-grayish-400);
  margin: 0 22px 0 0;
  border-radius: 2px;
  position: relative;
  top: 4px;
}

[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  width: 17px;
  height: 17px;
  top: 4px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: var(--blue-800);
  transition: 0.2s ease;
  border-radius: 2px;
}

[type="checkbox"].invalid + label:before {
  border-color: var(--red-400);
  outline: 1px solid var(--red-400);
}

[type="checkbox"]:checked + label:not([for="terms"]) {
  font-weight: 700;
  font-size: 24px;
}

[type="checkbox"]:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

[type="checkbox"]:disabled + label {
  pointer-events: none;
}

@media screen and (min-width: 1200px) {
  body {
    padding: 0;
  }

  [type="checkbox"] + label:before {
    top: 5px;
  }

  [type="checkbox"] + label:after {
    top: 5px;
  }
}

@media screen and (min-width: 1600px) {
  [type="checkbox"] + label:before {
    top: 7px;
  }

  [type="checkbox"] + label:after {
    top: 7px;
  }
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 5rem;
    line-height: 5rem;
  }

  h2 {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  h3 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }

  h4 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 6rem;
    line-height: 6rem;
  }

  h2 {
    font-size: 4.2rem;
    line-height: 4.8rem;
  }

  h3 {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  h4 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}

@media screen and (min-width: 1200px) {
  h2 {
    font-size: 4.8rem;
    line-height: 5rem;
  }
}

@media screen and (min-width: 1400px) {
  h2 {
    font-size: 5.2rem;
    line-height: 5.2rem;
  }
}

@media screen and (min-width: 1600px) {
  h1 {
    font-size: 8rem;
    line-height: 8rem;
  }

  h2 {
    font-size: 5.6rem;
    line-height: 5.6rem;
  }

  h3 {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  h4 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
}
/* End Common styles & Typography */

/* Bootstrap */
.container-fluid,
.container,
.row {
  --bs-gutter-x: 3.2rem;
  --bs-gutter-y: 0;
}

.container-fluid .container-fluid {
  --bs-gutter-x: 0;
}
/* End Bootstrap */

/* Buttons */
.btn-primary {
  background-color: var(--blue-800);
  border-radius: 30px;
  font-size: 1.3rem;
  letter-spacing: -0.03rem;
  text-align: center;
  margin: 0;
  padding: 11px 24px;
  position: relative;
  color: var(--white);
  outline: none !important;
  cursor: pointer;
  overflow: hidden;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--blue-800);
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
}

.btn-primary:active {
  background-color: var(--blue-950);
  border-color: var(--blue-950);
  transform: scale(0.97);
}

.btn-primary:disabled {
  cursor: not-allowed !important;
}

.btn-lightblue {
  background: var(--blue-400);
  border-color: var(--blue-400);
  color: var(--blue-800) !important;
  text-shadow: 0 0 var(--blue-800);
}

.btn-lightblue:active {
  background: var(--blue-500);
  border-color: var(--blue-500);
  transform: scale(0.97);
}

.btn-white {
  border-color: var(--white);
  color: var(--blue-800);
  background-color: var(--white);
}

.btn-white:hover {
  background-color: var(--white);
  border-color: var(--blue-grayish-300);
  color: var(--blue-800);
}

.btn-transparent,
.bg-transparent {
  background-color: transparent !important;
  border-color: transparent;
}

.btn-blurred,
.bg-blurred {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  border-color: transparent;
  color: #fff;
}

.btn-darkblue {
  background-color: var(--blue-900);
  border-color: var(--blue-900);
  color: var(--white);
}

.btn-grayblue {
  background: var(--blue-grayish-200);
  border-color: var(--blue-grayish-200);
  color: var(--blue-900);
}

.btn-grayblue:active {
  color: var(--white) !important;
}

.btn-grayblue:active:before,
.btn-grayblue:active:after {
  background-image: url(../images/icon-arrow-right-white.svg) !important;
}

.btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  border-color: transparent;
}

.btn-circle.square-corners {
  border-radius: 8px;
}

.btn-close-modals {
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 1000;
  background-image: url(../images/icon-close-white.svg);
  background-size: 12px;
  background-color: var(--blue-900) !important;
}

.btn-toggle-search {
  background-image: url(../images/icon-search-white.svg);
  background-size: 13px !important;
}

body:not(.home):not(.has-hero-white) .btn-toggle-search,
.btn-toggle-search.mobile {
  background-image: url(../images/icon-search-blue.svg);
  background-color: var(--white);
  margin: 0 8px 0 0;
}

.home .btn-toggle-search,
.has-hero-white .btn-toggle-search {
  margin: 0 8px 0 0;
}

.search-opened .btn-toggle-search {
  background-image: url(../images/icon-close-white.svg) !important;
  background-size: 12px !important;
  background-color: var(--blue-900) !important;
}

.btn-toggle-menu {
  background-image: url(../images/icon-squares-small.svg);
  background-size: 12px;
  background-color: var(--blue-grayish-200);
}

.menu-opened .btn-toggle-menu {
  background-image: url(../images/icon-close-white.svg);
  background-color: var(--blue-900) !important;
  margin: 0 0 0 auto;
}

.btn-scroll-top {
  background-image: url(../images/icon-caret-up-blue.svg);
  background-size: 24px;
  background-color: transparent !important;
}

.arrow-right:before,
.arrow-right:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  background-image: url(../images/icon-arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transition: 0.2s;
  flex-shrink: 0;
  position: relative;
}

.arrow-right:before {
  margin: 0;
  position: absolute;
  left: -32px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
}

.icon-smaller:before,
.icon-smaller:after {
  width: 10px;
  height: 10px;
}

.btn-primary.arrow-right:hover {
  padding-right: 0px;
  padding-left: 47px;
}

.btn-primary.arrow-right:hover:before {
  transform: translateX(56px) translateY(-50%);
  opacity: 1;
}

.btn-ellipse.arrow-right:hover:before {
  transform: translateX(60px) translateY(-50%);
  opacity: 1;
}

.btn-primary.arrow-right:hover:after {
  background-image: url(../images/icon-arrow-right-blue.svg);
  transform: translateX(16px);
  opacity: 0;
}

.btn-primary.btn-lightblue.arrow-right:before,
.btn-primary.btn-lightblue.arrow-right:after,
.btn-primary.btn-white.arrow-right:before,
.btn-primary.btn-white.arrow-right:after,
.arrow-right-blue:after {
  background-image: url(../images/icon-arrow-right-blue.svg);
}

.btn-primary.btn-white.arrow-right:hover:after {
  background-image: url(../images/icon-arrow-right-white.svg);
}

.btn-text,
.btn-text:active:focus,
.btn-text:active,
.btn-text:hover {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0;
  background: transparent;
  color: var(--blue);
  border: none;
  flex-grow: 0;
  text-decoration: none;
  white-space: nowrap;
}

.btn-load-more {
  margin: 16px auto 0;
}

@media screen and (max-width: 1200px) {
  .btn-ellipse {
    width: 70px;
    height: 48px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    color: var(--blue-800);
    border-radius: 30px;
    flex-shrink: 0;
  }

  .btn-ellipse:after {
    margin: 0;
  }
}

@media screen and (min-width: 1200px) {
  .btn-primary {
    font-size: 1.6rem;
    padding: 17px 36px;
    border-radius: 40px;
    line-height: 1.5;
  }

  .arrow-right:before,
  .arrow-right:after {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }

  .btn-primary.arrow-right:hover {
    padding-right: 12px;
    padding-left: 60px;
  }

  .btn-primary.arrow-right:hover:before {
    transform: translateX(62px) translateY(-50%);
  }

  .icon-smaller:before,
  .icon-smaller:after {
    width: 10px;
    height: 10px;
  }

  .btn-circle {
    width: 60px;
    height: 60px;
    padding: 0;
  }

  .btn-close-modals {
    top: 45px;
    right: 32px;
    background-size: 16px;
  }

  .contact .btn-close-modals {
    top: 36px;
  }

  .btn-toggle-menu,
  .search-opened .btn-toggle-search {
    background-size: 16px !important;
  }

  .btn-toggle-search {
    background-size: 16px !important;
  }

  body:not(.menu-opened) .btn-toggle-menu {
    width: auto;
    padding: 12px 54px 12px 20px;
    background-position: 81px center;
    background-color: var(--blue-800);
    color: var(--white);
    border-radius: 16px !important;
    background-image: url(../images/icon-squares-small-white.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    transition: none;
  }
}

@media screen and (min-width: 1400px) {
  body:not(.menu-opened) .btn-toggle-menu {
    padding: 16px 60px 16px 25px;
    background-position: 87px center;
  }
}
/* End Buttons */

/* Animations */
.animate-slide-down {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  animation: slide-down;
  animation-duration: 0.5s;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 0.05s;
}

.animation-delay-200 {
  animation-delay: 0.1s !important;
}

.animation-delay-300 {
  animation-delay: 0.15s !important;
}

.animation-delay-400 {
  animation-delay: 0.2s !important;
}

.animation-delay-500 {
  animation-delay: 0.25s !important;
}

@keyframes slide-down {
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* End animations */

/* Content */
section.full-width {
  margin-left: -8px !important;
  margin-right: -8px !important;
  border-radius: 0 !important;
  padding: 42px 8px !important;
}

section.bg-darkblue .section-label:before {
  background: var(--white);
}

@media screen and (max-width: 1199px) {
  .content {
    padding-top: 80px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
  section:not(footer) {
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: -0.01em;
  }
}

@media screen and (min-width: 1200px) {
  .hero > .container-fluid {
    padding: 0;
    flex-grow: 1;
    padding-bottom: 28px;
  }

  section:not(footer):not(.hero):not(.prefooter):not(.careers) {
    margin: 0 0 120px;
  }

  section.small-xl-margins {
    margin-left: 16px !important;
    margin-right: 16px !important;
    padding: 80px !important;
    border-radius: 24px !important;
  }

  section.full-width {
    padding: 80px !important;
  }

  .content > div,
  .content > section,
  .content > footer {
    padding-left: 80px;
    padding-right: 80px;
  }

  .content > header {
    padding-left: 96px;
    padding-right: 96px;
  }

  .home .content > div,
  .home .content > section,
  .home .content > header,
  .home .content > footer {
    padding-right: 96px;
    padding-left: 96px;
  }

  .home .content > section:not(.hero) {
    padding: 192px 96px;
    margin: 0 !important;
  }

  .home .card {
    justify-content: space-between;
    margin: 0px 0px 48px;
    padding: 96px 92px;
    min-height: 640px;
    border-radius: 24px;
    overflow: hidden;
  }

  .home .card.square {
    padding: 36px;
    border-radius: 24px;
    justify-content: flex-end;
    margin-bottom: 112px;
  }

  .home .card.square:last-child {
    margin: 0;
  }

  .home .card h3 {
    font-size: 5.6rem;
    line-height: 5.6rem;
    margin: 0 0 24px;
  }

  .home .card.square h3 {
    font-size: 4.2rem;
    line-height: 4.8rem;
  }

  .home .card p {
    margin: 0;
  }

  .home h1,
  .home h2,
  .home .footer h2 {
    font-size: 6.6rem;
    line-height: 6.8rem;
  }

  .home .quote {
    text-align: left;
    margin: 0 auto 100px;
  }

  .home .quote-author {
    font-weight: 500;
  }

  .home .logos {
    margin: 100px 0;
  }
}

@media screen and (min-width: 1600px) {
  .hero > .container-fluid {
    padding-bottom: 32px;
  }

  .home h1,
  .home h2 {
    font-size: 8rem;
    line-height: 8rem;
  }

  .home .card {
    min-height: 792px;
  }

  .home .card.square {
    padding: 48px;
    margin-bottom: 112px;
  }

  .home .card.square h3 {
    font-size: 5.6rem;
    line-height: 5.6rem;
  }

  section:not(footer) {
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: -0.02em;
  }
}
/* End Content */

/* Header */
.header {
  position: fixed;
  z-index: 900;
  width: 100%;
  left: 0;
  top: 0;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.94);
  transform: translate3d(0, 0, 0);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.header .logo {
  display: block;
  width: 158px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url(../images/sirma-nordics-logo.svg);
  background-size: 99%;
}

.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--transparent);
  text-indent: -9999px;
}

.header .centered {
  margin: 0 auto;
  position: relative;
  left: -12px;
}

.dimmer-opened .header .centered {
  opacity: 0;
  visibility: hidden;
}

.header .centered .btn-primary {
  padding-left: 24px;
  padding-right: 24px;
}

.header .centered .btn-primary:hover {
  padding-left: 48px;
  padding-right: 0px;
}

.header .centered .btn-primary:after,
.header .centered .btn-primary:before {
  background-image: url(../images/icon-arrow-right-blue.svg);
}

.header .centered .btn-primary:after {
  margin-left: 8px;
}

.header .search {
  margin: 0;
  position: relative;
}

.search-opened .header .search {
  z-index: 1000;
}

.header .search input {
  margin: 0 12px 0 0;
  width: 0;
  transition: 0.2s ease;
  opacity: 0;
  visibility: hidden;
}

.search-opened .header .search input {
  width: calc(50vw - 400px);
  min-width: 200px;
  opacity: 1;
  visibility: visible;
}
 .header .logo {
   background-image: var(--bg);
  transition: background-image 0.3s ease;
 }

@media screen and (max-width: 1200px) {
  .search-opened .header {
    z-index: 1200;
    flex-flow: row wrap !important;
    padding-top: 22px;
  }

  .search-opened .header .search,
  .search-opened .header .search form {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .search-opened .header .search {
    margin: 24px 0 0;
  }

  .search-opened .header .search input {
    width: auto;
    flex-grow: 1;
    padding: 11px 20px;
  }

  .search-opened .header .btn-toggle-menu {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .search-opened .header {
    z-index: 1200;
  }

  .menu-opened .header,
  .search-opened .header,
  .contact-opened .header {
    position: fixed;
    top: 0;
    left: 0;
  }

  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 36px 0;
    transform: none;
    backdrop-filter: none;
    background: transparent;
    z-index: 1000;
  }
  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark,
  .menu-opened .logo.dark,
  .contact-opened .logo.dark {
    width: 226px;
    height: 54px;
    margin: 12px 0 0 0;  
  }

  .search-opened .logo,
  .menu-opened .logo,
  .contact-opened .logo {
    background-image: var(--white-image) !important;
  }
}

@media screen and (min-width: 1400px) {
  .header {
    padding: 42px 0;
  }

  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark,
  .menu-opened .logo.dark,
  .contact-opened .logo.dark {
    width: 263px;
    height: 60px;
    margin: 0;
  }
}

@media screen and (min-width: 1600px) {
  .header {
    padding: 52px 0;
  }

  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark {
    height: 60px;
  }
}
/* End Header */

/* Sidebar */
.sidebar {
  position: fixed;
  left: 100%;
  top: 0;
  height: 100%;
  width: 80px;
  padding: 32px 0;
  z-index: 1000;
  background: var(--blue-grayish-200);
  border-radius: 16px;
  transition: 0.5s ease;
}

.sidebar h6 {
  transform: rotate(-90deg);
  user-select: none;
  color: var(--blue-800);
  white-space: nowrap;
}

.sidebar h6 a,
.sidebar h6 span {
  text-decoration: none;
  color: var(--blue-grayish-400);
  background: none !important;
  cursor: pointer;
}

.menu-opened .sidebar h6 span {
  background: none !important;
}

.sidebar h6 a:after,
.sidebar h6 span:after {
  content: "/";
  margin: 0 0 0 3px;
}

.sidebar .menu,
.sidebar .contact {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  height: 100%;
  top: 0;
  padding: 16px 24px 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  background: var(--blue-800);
  border-radius: 24px 0 0 24px;
  overflow-y: auto;
  overflow-x: hidden;
}

.menu-opened .sidebar .menu,
.contact-opened .sidebar .contact {
  transform: translateX(-24px);
  opacity: 1;
  visibility: visible;
}

.sidebar .menu .section-label {
  color: var(--blue-grayish-400);
  margin: 54px 0 16px;
}

.contact .section-label {
  color: var(--blue-grayish-400);
  margin: 0;
}

.sidebar .menu .custom-scrollbar {
  margin-top: 44px;
  counter-reset: menu-items;
}

.regional-page .menu-links a {
  color: var(--white);
  display: block;
  text-decoration: none;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.03rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-12px);
  transition-property: transform, opacity, visibity;
  transition-duration: 0.2s;
  counter-increment: menu-items;
}

.regional-page .menu-links a:before {
  content: counter(menu-items, decimal-leading-zero);
  font-family: "JetbrainsMono";
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--blue-grayish-400);
  margin: 0 10px 0 0;
  position: relative;
  top: -7px;
}

.regional-page .menu-links a:hover {
  color: var(--blue-400);
  transition-delay: 0 !important;
}

.menu-opened .regional-page .menu-links a {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.btn-menu-sticky {
  position: fixed;
  top: 42px;
  right: 104px;
  z-index: 1000;
  transition:
    width 0.4s ease,
    padding 0.4s ease !important;
}

.not-at-top .btn-menu-sticky {
  padding: 0 !important;
  width: 60px !important;
  background-position: center !important;
}

.not-at-top .btn-menu-sticky .text {
  display: none;
}

@media screen and (min-width: 1400px) {
  .btn-menu-sticky {
    right: 96px;
  }
}

@media screen and (min-width: 1600px) {
  .btn-menu-sticky {
    top: 52px;
  }
}

@media screen and (max-width: 576px) {
  .sidebar .menu,
  .sidebar .contact {
    width: calc(100vw - 24px);
    left: 48px;
  }
}

@media screen and (min-width: 576px) and (max-width: 1199px) {
  .sidebar .menu,
  .sidebar .contact {
    width: calc(50vw - 24px);
    left: auto;
    right: -24px;
    min-width: 400px;
  }
}

@media screen and (min-width: 1200px) {
  .sidebar .menu,
  .sidebar .contact {
    top: 20px;
    left: auto;
    right: -4px;
    width: 580px;
    height: calc(100% - 40px);
    padding: 32px;
    border-radius: 24px;
    overflow: hidden;
  }

  .sidebar .menu .section-label {
    margin: 54px 0 12px;
  }

  .sidebar .menu .section-label:first-child {
    margin-top: 0;
  }

  .sidebar .menu .btn-toggle-menu {
    position: absolute;
    right: 32px;
    z-index: 10;
  }

  .regional-page .menu-links a {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .regional-page .menu-links a:before {
    top: -8px;
    margin: 0 12px 0 0;
  }
}

@media screen and (min-width: 1400px) {
  .regional-page .menu-links a {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  .regional-page .menu-links a:before {
    top: -12px;
  }
}

@media screen and (min-width: 1600px) {
  .sidebar .menu .section-label {
    margin: 44px 0 12px;
  }

  .regional-page .menu-links a {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  .regional-page .menu-links a:before {
    top: -15px;
  }
}
/* End Sidebar */

/* Contact form */
.sidebar .contact {
  color: var(--white);
  padding-top: 32px;
}

.sidebar .contact h2 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: -0.03rem;
  margin: 12px 0 28px;
}

form .control {
  position: relative;
  width: 100%;
}

.control-wrapper .control {
  width: calc(50% - 8px);
}

form .control label {
  display: block;
  font-size: 1.6rem;
  line-height: 6.4rem;
  position: absolute;
  transform: translateY(2px);
  top: 0;
  left: 0;
  transition: 0.2s;
}

form .control.active label {
  transform: translateY(-18px);
  font-size: 1.4rem;
  color: var(--blue-grayish-400);
}

form .control input,
form .control input:active,
form .control input:focus,
form .control textarea,
form .control textarea:active,
form .control textarea:focus {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--blue-grayish-400);
  border-width: 0 0 1px 0;
  margin-bottom: 12px;
  outline: none;
  line-height: 2rem;
  transition: 0.2s;
  font-size: 0.9rem;
  color: var(--blue);
  border-radius: 0;
  font-size: 1.6rem;
  padding: 28px 0 8px;
}

.sidebar form .control input.invalid {
  outline: none !important;
  border-bottom-width: 2px !important;
}

form .control textarea,
form .control textarea:active,
form .control textarea:focus {
  border: 1px solid var(--blue-grayish-400);
  border-radius: 8px;
  padding: 16px;
  margin: 0 0 20px;
}

form .control.active input,
form .control.active textarea {
  border-color: #2eadd8;
}

form .control.message label,
form .control.message.active label {
  position: static;
  margin: 16px 0 4px;
  line-height: 2.4;
  transform: none !important;
  color: var(--white) !important;
  font-size: 1.6rem;
}

.success-message,
.error-message {
  display: none;
  font-size: 1.6rem;
  border-radius: 32px;
  padding: 12px 16px;
  border: none;
  text-align: left;
  margin: -10px 0 16px;
  text-align: center;
}

.error-message {
  color: var(--white);
  background-color: var(--red-400);
}

.error-message a {
  color: var(--white);
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .sidebar .contact {
    width: 50%;
    min-width: 780px;
    padding: 54px 64px;
  }

  .sidebar .contact h2 {
    font-size: 5.6rem;
    line-height: 5.6rem;
    margin: 32px 0 62px;
  }

  form .control input,
  form .control input:active,
  form .control input:focus,
  form .control textarea,
  form .control textarea:active,
  form .control textarea:focus {
    font-size: 2rem;
  }

  form .control label {
    font-size: 2.4rem;
    line-height: 5rem;
  }

  form .control.message label,
  form .control.message.active label {
    font-size: 2.4rem;
  }

  form .control.active label {
    font-size: 1.8rem;
  }

  form .control {
    margin: 0 0 20px;
  }

  .control-wrapper .control {
    width: calc(50% - 16px);
  }

  form .control textarea,
  form .control textarea:active,
  form .control textarea:focus {
    margin: 0 0 16px;
    min-height: 160px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .contact .custom-scrollbar {
    margin-top: 40px;
    max-height: 120%;
  }

  .sidebar .contact h2 {
    margin: 8px 0 32px;
    font-size: 4.8rem;
    line-height: 5.2rem;
  }

  form .control {
    margin: 0 0 12px;
  }

  form .control textarea,
  form .control textarea:active,
  form .control textarea:focus {
    min-height: 100px;
  }

  form .control input,
  form .control input:active,
  form .control input:focus,
  form .control textarea,
  form .control textarea:active,
  form .control textarea:focus {
    font-size: 1.6rem;
  }

  form .control label {
    font-size: 2rem;
    line-height: 5.6rem;
  }

  form .control.message label,
  form .control.message.active label {
    font-size: 2rem;
    line-height: 4.6rem;
  }
}

@media screen and (min-width: 1600px) {
  .sidebar .contact {
    min-width: 960px;
  }

  .sidebar .contact h2 {
    font-size: 8rem;
    line-height: 8rem;
    margin: 32px 0 62px;
  }
}
/* End contacts */

/* Language switcher */
.header .language-switcher {
  margin: 0 16px 0 0;
  position: relative;
  z-index: 1000;
}

.header .other-languages {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
}

.header .language-switcher a {
  font-size: 1.2rem !important;
  font-weight: 400;
  background: transparent;
  color: var(--blue-800) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 4px;
  padding: 8px 8px 0 0;
}

.header .language-switcher a:not(.current) {
  background: var(--blue-800);
  color: var(--white) !important;
  padding: 2px 0 0;
}

.header .language-switcher a:before {
  content: none;
}

.header .language-switcher a.current:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(../images/icon-caret-up-blue.svg);
  background-size: 98%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 2px;
  top: 21px;
  transform: rotateZ(180deg);
  transition: transform 0.2s ease;
}

.header .language-switcher.opened a.current:after {
  transform: rotateZ(0deg);
}

@media screen and (max-width: 320px) {
  .header .language-switcher a.current:after {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .header .language-switcher {
    margin: 6px 132px 0 0;
  }

  .header .language-switcher a {
    font-size: 1.4rem !important;
    background: var(--blue-grayish-200);
    text-shadow: 0 0 var(--blue-800);
    padding: 2px 16px 0 0;
    border-radius: 16px;
  }

  .header .language-switcher a.current:after {
    top: 24px;
    right: 11px;
  }
}

@media screen and (min-width: 1400px) {
  .header .language-switcher {
    margin: 0 144px 0 0;
  }
}
/* End Language switcher */

/* Menu Language switcher */
.menu .language-switcher {
  display: none;
  margin: 0 0 0 16px;
  position: relative;
  z-index: 1000;
}

.menu .other-languages {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
}

.menu .language-switcher a {
  font-size: 1.2rem !important;
  font-weight: 400;
  background: var(--blue-900);
  color: var(--white) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 2px;
  padding: 1px 0 0 0;
}

.menu .language-switcher a:not(.current) {
  color: var(--blue-grayish-400) !important;
}

.menu .language-switcher a:not(.current):hover {
  color: var(--white) !important;
}

.menu .language-switcher a:before {
  content: none;
}

.menu .language-switcher a.current:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(../images/icon-caret-up-white.svg);
  background-size: 98%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% + 12px);
  top: 18px;
  transform: rotateZ(180deg);
  transition: transform 0.2s ease;
}

.menu .language-switcher.opened a.current:after {
  transform: rotateZ(0deg);
}

@media screen and (max-width: 320px) {
  .menu .language-switcher a.current:after {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .menu .language-switcher {
    display: block;
    margin: 0 0 0 28px;
  }

  .menu .language-switcher a {
    font-size: 1.5rem !important;
  }

  .menu .language-switcher a.current:after {
    top: 24px;
  }
}

/* End Menu Language switcher */

/* Hero & Prefooter */
.hero:not(.white):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: var(--blue-800);
  background-image: url(../images/testimonial-background.svg);
  background-repeat: no-repeat;
  background-position: center 10rem;
  background-size: 145%;
  animation: disappear;
  animation-duration: 2s;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 0.75s;
}

@keyframes disappear {
  0% {
    opacity: 1;
    visibility: visible;
    background-size: 145%;
  }
  50% {
    background-size: 250%;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    background-size: 450%;
  }
}

.hero:not(.white):after,
.prefooter:after,
.card.photo:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    var(--black-transparent-600)
  );
  z-index: 1;
}

.hero > .container-fluid,
.prefooter > .container-fluid,
.card.photo > .row,
.card.square > div {
  position: relative;
  z-index: 10;
}

.hero,
.prefooter {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  color: var(--white);
  padding: 16px 0 24px;
  margin: 0 0 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  min-height: 512px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.hero:not(.white) {
  background-color: var(--blue-800);
}

.hero.hero-regional-page {
  border-radius: 0;
  margin: 0 !important;
  height: calc(100vh - 80px) !important;
  height: calc(100svh - 80px) !important;
  overflow: visible;
}

.hero .section-label {
  margin: 0 0 8px 2px;
}

.hero h1 {
  margin: 0;
}

.hero .btn-primary {
  margin-top: 24px;
}
.hero.white {
  color: var(--blue-800);
  background-color: var(--white);
  justify-content: flex-start;
  min-height: unset;
  padding-top: 54px;
  margin: 0 0 8px;
}

.hero.white h1 {
  margin: 0 0 64px;
}

.hero.white .btn-primary {
  margin: auto 0 0;
  font-family: "JetbrainsMono";
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 2.4rem;
  background: transparent;
  border: none;
  color: var(--blue-800);
  padding: 16px 0;
  width: auto;
  flex-grow: 0;
}

@media screen and (min-width: 1200px) and (max-height: 630px) {
  .hero.white .btn-primary {
    display: none !important;
  }
}

.hero.white .btn-primary img {
  display: inline-block;
  transform: rotateZ(90deg);
  position: relative;
  width: 24px;
  margin: 0 0 0 16px;
}

@media screen and (max-width: 420px) {
  .hero-regional-page h1 {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .hero.white h1 {
    font-size: 6rem;
    line-height: 6.2rem;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero.white h1 {
    font-size: 7.4rem;
    line-height: 7.4rem;
  }
}

@media screen and (min-width: 1200px) {
  .hero {
    height: calc(100vh - 32px);
    padding: 80px;
    border-radius: 24px;
  }

  .hero:not(.white):not(.hero-regional-page) {
    margin: 0 0 120px;
  }

  .hero.hero-regional-page {
    height: 100vh !important;
    justify-content: center;
    padding-top: 168px;
    padding-bottom: 0;
    padding-left: 96px;
    padding-right: 96px;
    margin-bottom: 120px !important;
  }

  .hero .btn-primary {
    margin-top: 36px;
  }

  .hero.home {
    padding-top: 225px;
    height: 100vh;
  }

  .hero.white:not(.hero-regional-page) {
    padding-top: 225px;
    height: auto;
  }

  .hero:not(.white):not(.hero-regional-page):after,
  .prefooter:after {
    background: radial-gradient(transparent 50%, var(--black-transparent-600));
  }

  .hero.white .section-label {
    margin: -24px 0 14px 6px;
  }

  .hero .section-label {
    margin: 0 0 12px 6px;
  }

  .hero.white h1 {
    margin: 0 0 36px;
  }

  .hero.height-auto {
    height: auto;
    margin: 0;
    padding-top: 300px;
  }
}

@media screen and (min-width: 1400px) {
  .hero.hero-regional-page {
    padding-top: 170px !important;
  }

  .hero.white h1 {
    margin: 0 0 48px;
  }
}

@media screen and (min-width: 1600px) {
  .hero.hero-regional-page {
    padding-top: 200px;
  }

  .hero:not(.white):not(.hero-regional-page) {
    margin: 0 0 160px;
  }

  .hero.white h1 {
    font-size: 10rem;
    line-height: 9.5rem;
  }

  .hero.white .btn-primary img {
    width: 32px;
    margin: 0 0 0 24px;
  }
}
/* End Hero & Prefooter */

/* Custom scrollbar */
@media screen and (min-width: 1200px) {
  .sidebar .menu .custom-scrollbar {
    max-height: 92%;
    scrollbar-width: 10px;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
    z-index: 100;
    position: relative;
    padding: 0 0 60px;
    margin: 56px 0 0;
  }

  .contact .custom-scrollbar {
    padding: 0;
    margin: 0;
    max-height: 110%;
    overflow-y: auto;
  }

  .custom-scrollbar::-webkit-scrollbar {
    width: 10px;
  }

  .custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
  }

  .custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: none;
  }

  .custom-scrollbar:hover::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 1200px) and (max-height: 620px) {
  .contact .custom-scrollbar {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1600px) {
  .custom-scrollbar {
    max-height: 100%;
  }
}
/* End Custom scrollbar */

/* Dimmer */
.dimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 900;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out;
}

.dimmer-opened .dimmer {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 1200px) {
  .search-opened .dimmer {
    z-index: 1100;
  }
}
/* End Dimmer */

/* Section header */
h2.section-header.m-small {
  margin: 10px 0 14px;
}

h2.section-header.m-big {
  margin: 10px 0 32px;
}

@media screen and (min-width: 1200px) {
  h2.section-header.m-small {
    margin: 24px 0 32px;
  }

  h2.section-header.m-big {
    margin: 24px 0 66px;
  }
}

@media screen and (min-width: 1600px) {
  h2.section-header.m-small {
    margin: 32px 0 36px;
  }

  h2.section-header.m-big {
    margin: 32px 0 68px;
  }
}
/* End Section header */

/* Section label */
.section-label {
  font-family: JetbrainsMono;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.section-label:before,
.leading-square:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  margin: 0 8px 0 0;
  background: var(--blue-800);
}

.leading-square:before {
  display: block;
  margin: 0 0 16px;
  width: 12px;
  height: 12px;
}

.menu .section-label:before,
.contact .section-label:before,
.footer .section-label:before,
.section-label.no-square:before {
  display: none;
}

.hero:not(.white) .section-label:before,
.prefooter .section-label:before {
  background: var(--white);
}

.home .industries .section-label {
  margin-bottom: 32px;
}

@media screen and (min-width: 1200px) {
  .section-label {
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0;
    margin: 0 0 32px 4px;
  }

  .section-label:before {
    width: 12px;
    height: 12px;
    margin: 0 16px 0 0;
  }
}

@media screen and (min-width: 1600px) {
  .section-label {
    margin: 0 0 40px 4px;
  }
}

/* End Section label */

/* Sections */
section {
  padding: 30px 0;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10;
}

section:before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

section.without-white-transition:before {
  display: none;
}

section.news {
  padding-top: 20px;
}

section.partnerships button {
  display: none;
}

section.partnerships-no-title {
  padding-bottom: 12px;
}

section.partnerships-no-title .logos {
  margin: 0 0 24px;
}

section.careers {
  padding: 60px 8px 54px;
}

section.careers .section-label {
  margin: 0 0 12px;
}

section.careers .photos {
  margin: 40px 0 60px;
}

section.clients {
  margin: 0 0 8px;
}

section.clients .logos {
  margin: 0;
}

section.careers-cta {
  border-radius: 16px;
  padding-top: 48px;
  padding-bottom: 48px;
}

section.careers-cta .section-label {
  margin: 0 0 12px;
}

section.careers-cta .section-label:before {
  display: none;
}

section.careers-cta .btn-careers-right {
  margin: 32px 0 0;
}

.bg-lightblue {
  color: var(--blue-800) !important;
  background-color: var(--blue-400) !important;
  background-image: none !important;
}

.bg-darkblue {
  color: var(--white) !important;
  background-color: var(--blue-800) !important;
  background-image: none !important;
}

.bg-yellow {
  color: var(--blue-800) !important;
  background-color: var(--yellow-300) !important;
  background-image: none !important;
}

.home section {
  padding: 60px 8px;
  margin: 30px 0;
}

.home section.expertise {
  z-index: 20;
}

.home .section-label {
  margin: 0 0 12px;
}

@media screen and (min-width: 768px) {
  section.careers-cta {
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: 24px;
  }

  section.careers-cta h2 {
    font-size: 6rem;
    line-height: 6rem;
    margin: 0 0 32px;
  }
}

@media screen and (min-width: 1200px) {
  section img {
    border-radius: 24px;
  }
  section.careers {
    padding: 90px 90px 110px;
  }

  section.careers .photos {
    margin: 80px 0 100px;
  }

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

  section.partnerships-no-title .logos {
    margin: 0 0 32px;
  }

  .home .section-label {
    margin: 0 0 16px;
  }

  section.careers-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media screen and (min-width: 1600px) {
  section.careers-cta h2 {
    font-size: 8rem;
    line-height: 8rem;
  }
}
/* End Sections */

/* Prefooter */
.prefooter {
  margin: 30px 0 0;
  border-radius: 24px;
  padding: 48px 24px 40px;
  background-color: var(--blue-800);
  position: relative;
  z-index: 5;
}

.prefooter h3 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  letter-spacing: -0.03rem;
}

.prefooter .info {
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.prefooter .info h3 {
  margin: 0 0 20px;
}

.prefooter a:hover:before {
  transform: translateX(60px) translateY(-50%) !important;
}

@media screen and (min-width: 576px) and (max-width: 1199px) {
  .prefooter h3 {
    font-size: 4.2rem;
    line-height: 4.6rem;
  }
}

@media screen and (min-width: 1200px) {
  .prefooter {
    padding: 90px 80px;
    min-height: 770px;
    border-radius: 24px;
    margin-top: 160px;
  }

  .prefooter h3 {
    font-size: 5.6rem;
    line-height: 5.6rem;
  }

  .prefooter .info {
    padding: 54px 40px;
  }

  .prefooter .info h3 {
    margin: 0 0 30px;
  }

  .prefooter .info p {
    margin: 0 0 36px;
    font-size: 24px;
    line-height: 3rem;
    letter-spacing: -0.03rem;
  }
}
/* End Prefooter */

/* Footer */
.footer {
  background: var(--blue-800);
  color: var(--white);
  padding: 60px 24px;
}

body:not(.home) .footer {
  border-radius: 16px;
  margin-top: 0;
}

.home .footer {
  background: transparent;
}

.footer h2 {
  margin: 0 0 24px;
}

.footer .btn-primary {
  margin: 0 0 60px;
}

.footer ul {
  margin: 0 0 36px;
}

.footer .contact .links {
  margin: 32px 0;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.15s ease;
}

.footer a:hover {
  color: var(--blue-400);
  border-bottom-color: var(--blue-400);
}

.footer .section-label {
  color: var(--blue-grayish-400);
  margin: 0 0 16px;
}

.footer .section-label + ul,
.footer .section-label + p {
  margin-top: 16px;
  margin-bottom: 16px;
}

.footer .office-label {
  margin: 0 !important;
  padding: 0 !important;
}


.footer p span {
  color: var(--blue-grayish-400);
}

.footer .legal {
  font-size: 1.2rem;
}

.footer .legal .links {
  margin: 30px 0 44px;
}

.footer .legal .links a:not(:last-child) {
  margin: 0 28px 0 0;
}

.footer .main-website {
  margin-top: 4rem;
}

@media screen and (min-width: 576px) {
  .footer h2 {
    font-size: 4.2rem;
    line-height: 4.6rem;
  }
}

@media screen and (min-width: 992px) {
  .footer h2 {
    font-size: 4.8rem;
    line-height: 5.4rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer .legal {
    margin-top: 32px;
  }

  .footer .legal .links {
    margin: 0;
  }
}

@media screen and (min-width: 1200px) {
  .footer {
    padding: 186px 80px 44px !important;
    border-radius: 48px !important;
    margin: 0 16px 16px;
  }

  .footer .section-label {
    margin: 0 0 12px;
  }

  .footer .quick-links {
    margin: 0 0 36px;
  }

  .footer .legal {
    font-size: 1.6rem;
    line-height: 2rem;
    margin: 112px 0 0;
  }

  .footer .legal .links {
    margin: 0;
  }

  .home .footer .legal .links {
    padding: 0 48px 0 0;
  }

  .footer .legal .links a:not(:last-child) {
    margin: 0 40px 0 0;
  }

  .footer .section-label + ul,
  .footer .section-label + p {
    margin-top: 12px;
  }

  .footer .main-website {
    margin-top: 3.25rem;
  }
}

@media screen and (min-width: 1200px) {
  .footer h2 {
    font-size: 6rem;
    line-height: 6rem;
    margin: 0 0 40px;
  }
}

@media screen and (min-width: 1600px) {
  .home .footer h2,
  .footer h2 {
    font-size: 8rem;
    line-height: 8rem;
    margin: 0 0 40px;
  }

  body:not(.home) {
    padding-bottom: 818px;
    position: relative;
  }

  body:not(.home) section {
    position: relative;
    z-index: 5;
  }

  body:not(.home):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 850px);
    background: var(--white);
    z-index: 3;
    border-bottom-left-radius: 76px;
    border-bottom-right-radius: 76px;
  }

  body:not(.home) .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 32px);
    z-index: 1;
  }
}
/* End Footer */

/* Logos */
.logos {
  margin: 60px 0;
  cursor: grab;
}

.logos .logo {
  background: var(--blue-grayish-100);
  background-size: 63%;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  width: 100%;
  min-height: 95px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1.8;
}
.logo.big-100 {
  background-size: 70%;
}

.logo-big-200 {
  background-size: 76%;
}

.logo-big-300 {
  background-size: 83%;
}

.logo.small-100 {
  background-size: 56%;
}

.logo.small-200 {
  background-size: 43%;
}

.logo.small-300 {
  background-size: 30%;
}

.logo.pull-up-100 {
  background-position-y: 43%;
}

.logo.pull-down-100 {
  background-position-y: 57%;
}



.logo.small-400 {
  background-size: 25%;
}

.logo.pull-up {
  background-position-y: 43%;
}

@media screen and (min-width: 1200px) {
  .logos .logo {
    background-size: 59%;
  }

  .logo.big-100 {
    background-size: 66%;
  }

  .logo.small-100 {
    background-size: 52%;
  }

  .logo.small-200 {
    background-size: 40%;
  }

  .logo.small-300 {
    background-size: 27%;
  }

  .logo.small-400 {
    background-size: 22%;
  }
}
/* End Logos */

/* Expertise */
.expertise .cards {
  margin: 28px 0 0;
}
/* End Expertise */

/* Nav cards */

.nav-cards a {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--blue-grayish-400);
  text-decoration: none;
  margin: 0 0 16px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.nav-cards a.active {
  color: var(--blue-800);
}

.bg-darkblue .nav-cards a.active {
  color: var(--white);
}

.nav-cards a:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-arrow-right-blue.svg);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 12px;
  position: relative;
  top: 1px;
  left: -16px;
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-cards a.active:after {
  opacity: 1;
  visibility: visible;
  transform: translateX(16px);
}

.bg-darkblue .nav-cards a.active:after {
  background-image: url(../images/icon-arrow-right-white.svg);
  width: 24px;
  height: 24px;
  background-size: 24px;
  margin-left: 24px;
}

.nav-cards-image {
  background-image: url(../images/icon-square-and-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  width: 50%;
  aspect-ratio: 1.11;
  z-index: -1;
  margin-top: calc(100vh - 250px);
  bottom: 64px !important;
}

.nav-cards-image.drops {
  background-image: url(../images/icon-drops-circle.svg);
}

.nav-cards-image.circle-squares {
  background-image: url(../images/icon-circle-squares.svg);
}

.nav-cards-image.square-circle {
  background-image: url(../images/icon-square-circle-square.svg);
}

.nav-cards-image.drops-circle-top {
  background-image: url(../images/icon-drops-circle2.svg);
}

.nav-cards-image.circle-square-hollow {
  background-image: url(../images/icon-circle-and-square.svg);
}

.nav-cards-image.circles {
  background-image: url(../images/icon-circles.svg);
}

.nav-cards-image.drops-squares {
  background-image: url(../images/icon-drops-squares.svg);
}

.nav-cards-image.circles-dark {
  background-image: url(../images/icon-circles-dark.svg);
}
@media screen and (min-width: 768px) {
  .nav-cards {
    margin-bottom: 350px;
  }
}

@media screen and (min-width: 1200px) and (max-height: 700px) {
  .nav-cards-image {
    width: 33% !important;
    bottom: 48px !important;
  }

  .inquiry .nav-cards-image {
    width: 50% !important;
  }
}

@media screen and (min-width: 1200px) {
  .bg-darkblue .nav-cards a {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  .nav-cards-image {
    width: 50%;
  }
}

@media screen and (min-width: 1600px) {
  .bg-darkblue .nav-cards a {
    font-size: 3.6rem;
    line-height: 4rem;
  }
}
/* End Nav Cards */

/* Cards */
.numbered-container {
  counter-reset: numbers;
}

.numbered {
  counter-increment: numbers;
}

.card-list.numbered h3 {
  width: 100%;
}

.numbered:before,
.slider .number {
  content: counter(numbers, decimal-leading-zero);
  margin: 0 0 auto;
  display: block;
  width: 36px;
  line-height: 36px;
  font-family: "JetbrainsMono";
  font-size: 1.2rem;
  text-align: center;
  color: var(--blue-800);
  background: var(--white);
  border-radius: 8px;
}

.numbered-circle:before {
  border-radius: 50%;
}

.home .card {
  border-radius: 16px;
  overflow: hidden;
  border: none !important;
}

.card.square h3,
.card.square a {
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .card-list.stick-top {
    outline: 16px solid var(--white);
  }

  .stick-top {
    position: -webkit-sticky;
    position: sticky;
    top: 112px;
  }

  .nav-cards.stick-top,
  div.stick-top:not(.card-list):not(.card.square) {
    top: 112px;
  }

  .stick-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 16px;
  }

  .stick-bottom.z-5 {
    bottom: 208px;
  }

  .stick-bottom.z-4 {
    bottom: 160px;
  }

  .stick-bottom.z-3 {
    bottom: 112px;
  }

  .stick-bottom.z-2 {
    bottom: 64px;
  }

  .stick-bottom.z-1 {
    bottom: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .mt-xl-big {
    margin-top: 40px;
  }

  .mb-xl-big {
    margin-bottom: 100px;
  }

  .home .card {
    border-radius: 24px;
  }

  .stick-top {
    top: 16px;
  }

  .nav-cards.stick-top,
  div.stick-top:not(.card-list):not(.card.square) {
    top: 66px;
  }

  .stick-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 16px;
  }

  .numbered:before {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    line-height: 6rem;
    margin: 0 0 24px;
  }
}

.card {
  min-height: 512px;
  margin: 0 0 24px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  background-color: var(--blue-900);
  padding: 24px;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-size: cover;
}

.card:last-child {
  margin: 0;
}

.card h3 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin: 0 0 16px;
}

.card p {
  margin: 0 0 20px;
}

.card.square {
  min-height: auto !important;
  aspect-ratio: 1/1;
}

.card.square h3 {
  margin: 0;
}


/* News Card */
section.news-single .card-news {
  margin: 0;
}

.card-news {
  display: flex;
  flex-flow: column nowrap;
  background-color: var(--blue-grayish-200);
  border-radius: 16px;
  text-decoration: none;
  color: var(--blue-800);
  margin: 0 0 28px;
  width: 100%;
  min-height: 512px;
}

.card-news .image {
  position: relative;
  overflow: hidden;
  height: 260px;
  border-radius: 16px;
}

.card-news .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-news .image .category {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 4px 12px;
}

.card-news .info {
  padding: 20px 24px 24px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
}

.card-news .published {
  font-family: "JetbrainsMono";
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: var(--blue-grayish-400);
  margin: 0 0 8px;
}

.card-news .info h2 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 0 20px;
}

.card-news .info .more {
  margin: auto 0 0 0;
}

.no-results {
  padding: 0 16px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .card-news .info h2 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    max-width: 83.33%;
  }
}

@media screen and (min-width: 1200px) {
  .card-news {
    flex-flow: row nowrap;
    align-items: stretch;
    border-radius: 24px;
    margin: 0 0 48px;
    height: 600px;
  }

  .card-news .image {
    height: unset;
    width: 50%;
    border-radius: 24px;
    flex-shrink: 0;
    flex-grow: 1;
  }

  .card-news .info {
    width: 50%;
    flex-shrink: 0;
    flex-grow: 1;
    border-radius: 24px;
  }

  .card-news .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .card-news.image-right .image {
    order: 2;
  }
  .card-news.image-right .info {
    order: 1;
  }

  .card-news .image .category {
    border-radius: 24px;
    top: 48px;
    left: 48px;
    padding: 7px 12px;
  }

  .card-news .info {
    padding: 40px 48px;
  }

  .card-news .published {
    order: 2;
    font-size: 1.6rem;
    line-height: 2.1rem;
  }

  .card-news .info h2 {
    font-size: 3.2rem;
    line-height: 3.8rem;
    order: 1;
    margin: 0 0 16px;
    max-width: 83.333%;
  }

  .card-news .info .more {
    order: 3;
    margin: auto 0 0;
  }
}

@media screen and (min-width: 1600px) {
  .card-news .info h2 {
    font-size: 3.6rem;
    line-height: 4rem;
    margin: 0 0 20px;
  }
}
/* End News Card */

/*Card for person*/
.card-person {
  background: var(--blue-grayish-200);
  border-radius: 16px;
  margin: 0 0 24px;
  position: relative;
}

.card-person .image {
  border-radius: 16px;
  overflow: hidden;
}

.card-person .image img {
  width: 100%;
}

.card-person .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 28px 24px;
}

.card-person .info h4 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.card-person .info .role {
  color: var(--blue-grayish-400);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.card-person .more {
  display: none;
  padding: 0 24px 32px;
  letter-spacing: -0.02em;
}

.card-person button.show-more,
.card-client-list button.show-more:after {
  display: block;
  width: 28px;
  height: 28px;
  border: none;
  background-image: url(../images/icon-plus.svg);
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  float: right;
  margin: 0 0 8px;
  transition: 0.4s ease;
}

.card-person button.show-more.toggled,
.card-client-list button.show-more.toggled:after {
  transform: rotate(135deg);
}

.card-person .person-linkedin {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 62px;
  height: 62px;
  display: block;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  background-image: url(../images/icon-linkedin-white.svg);
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1200px) {
  .card-person {
    margin: 0 0 42px;
  }

  .card-person .info h4 {
    font-size: 1.8rem;
  }

  .card-person .info .role {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1600px) {
  .card-person .info {
    padding: 32px 48px;
  }

  .card-person .info h4 {
    font-size: 2.4rem;
  }

  .card-person .info .role {
    font-size: 2.4rem;
    white-space: nowrap;
  }

  .card-person .more {
    padding: 0 48px 32px;
  }
}
/*End Card for person*/

/* Card Case Study */
.card-case-study {
  border-radius: 16px;
  background-image: url(../images/case-study.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  margin: 0 0 24px;
  min-height: 512px;
}

.card-case-study .logo {
  background: var(--blue-grayish-100);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 0 0 auto;
}

.card-case-study .logo img {
  border-radius: 0;
}

.card-case-study h2 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 0 24px;
}

@media screen and (min-width: 1200px) {
  .card-case-study {
    min-height: 600px;
  }

  .card-case-study .logo {
    padding: 20px 30px;
  }

  .card-case-study h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
    margin: 0 0 28px;
  }
}
/* End Card Case Study */

/* Card with Clients */
.card-client-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--blue-grayish-100);
  border-radius: 16px;
  padding: 24px;
  margin: 0 0 24px;
  height: calc(100% - 24px);
}

.card-client-list h2 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 0 16px;
}

.card-client-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.card-client-list ul + ul {
  margin-top: -24px;
}

.card-client-list ul li {
  margin: 0 0 2px;
}

.card-client-list ul li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--blue-800);
  margin: 0 10px 0 0;
  position: relative;
  top: -3px;
  border-radius: 50%;
}

.card-client-list .more {
  display: none;
}

.card-client-list .show-more {
  border: none;
  outline: none;
  background-color: transparent;
  margin: auto 0 8px;
  color: var(--blue-800);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.card-client-list button.show-more:after {
  content: "";
  margin: 0 0 0 8px;
  background-size: 20px;
}

@media screen and (min-width: 1200px) {
  .card-client-list h2 {
    font-size: 3.6rem;
    line-height: 4rem;
    margin: 0 0 24px;
  }

  .card-client-list {
    border-radius: 24px;
    padding: 40px;
  }

  .card-client-list .show-more {
    width: auto;
  }

  .card-client-list .show-more:after {
    margin: 0 0 0 12px !important;
  }
}
/* End Card Clients */

/* Card with plus */
.card-plus {
  margin: 0 0 36px;
}

.card-plus:before,
.plus:before {
  content: "";
  display: block;
  width: 66px;
  height: 66px;
  background-color: var(--blue-grayish-200);
  background-image: url(../images/icon-plus.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin: 0 0 24px;
}

.plus.check:before {
  background-image: url(../images/icon-check.svg);
  background-size: 20px !important;
}

.card-plus p {
  font-size: 2rem;
  line-height: 2.4rem;
}

@media screen and (min-width: 1200px) {
  .card-plus {
    margin: 0 0 42px;
  }

  .card-plus:before,
  .plus:before {
    content: "";
    display: block;
    width: 92px;
    height: 92px;
    background-size: 30px;
  }

  .card-plus p {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

@media screen and (min-width: 1600px) {
  .plus.check:before {
    background-size: 28px !important;
  }
}
/* End Card with plus */

/* Card with number */
.card-number-wrapper {
  margin: 20px 0 0;
}

.card-number {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--blue-grayish-100);
  width: calc(50% - 8px);
  height: 120px;
  padding: 16px 24px 12px;
  border-radius: 16px;
}

.card-list .card-number {
  background: var(--blue-grayish-300);
}

.card-number .label {
  font-family: "JetbrainsMono";
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.card-number .number {
  font-size: 3.2rem;
  line-height: 3.2rem;
  letter-spacing: 0.03rem;
  position: relative;
  font-family: SirmaNumerals;
  font-weight: 400;
}

.card-number .number.more-than:after {
  content: "";
  font-size: 3.2rem;
  position: absolute;
  right: -15px;
  top: 5px;
  font-weight: 500;
  background: url(../images/icon-plus-white.svg);
  background-size: cover;
  width: 10px;
  height: 10px;
  display: block;
}

@media screen and (min-width: 768px) {
  .card-number {
    min-height: 150px;
  }

  .card-number .number {
    font-size: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .card-number .number {
    font-size: 5rem;
    line-height: 5rem;
  }

  .card-number .label {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .card-number {
    padding: 28px 24px 20px;
    height: 190px;
  }
}

@media screen and (min-width: 1200px) {
  .card-number-wrapper.has-3 .card-number {
    width: 31%;
  }
}

@media screen and (min-width: 1600px) {
  .card-number {
    padding: 45px 48px 48px;
    min-height: 270px;
    width: calc(50% - 24px);
  }

  .card-number .label {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }

  .card-number .number {
    font-size: 9.6rem;
    line-height: 6.8rem;
  }

  .has-3 .card-number {
    padding: 32px;
  }

  .has-3 .card-number .number {
    font-size: 6.4rem;
    line-height: 5.4rem;
  }

  .card-number .number.more-than:after {
    width: 24px;
    height: 24px;
    top: -8px;
    right: -36px;
  }

  .has-3 .card-number .number.more-than:after {
    right: -32px;
    top: 6px;
  }
}
/* End card with number */

/* Card lists */
.card-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  background: var(--blue-grayish-200);
  margin: 0 0 24px;
  border-radius: 16px;
  min-height: 512px;
}

.card-list:last-child:not(:first-child) {
  margin: 0;
}

.card-list:before {
  margin: 0 0 16px;
}

.card-list h3 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin: 0 0 20px;
  width: 66.66%;
}

.card-list .card-list {
  padding: 0;
  min-height: auto;
}

.card-list.plus {
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0 0 24px;
}

.card-list.plus:before {
  width: 36px;
  height: 36px;
  background-color: var(--blue-grayish-300);
  border-radius: 4px;
  margin: 0 24px 0 0;
  background-size: 14px;
  flex-shrink: 0;
}

.card-list.plus h3 {
  font-size: 1.6rem;
  line-height: 2.1rem;
  margin: 0;
}

.card-list .btn-primary {
  margin-top: auto;
}

.card-list.h-auto {
  min-height: 163px !important;
}

.card-list.h-auto.has-image {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  padding: 0;
}

.card-list.h-auto.has-image:before {
  display: none;
}

.card-list.h-auto.has-image .image {
  margin: 0;
  width: 40%;
  flex-shrink: 0;
  background: var(--blue-grayish-300);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-list.h-auto.has-image .image img {
  width: 90px;
  border-radius: 0 !important;
}

.card-list.h-auto.has-image.has-checkmark .image img {
  width: 60px;
}

.card-list.h-auto.has-image .info {
  padding: 24px;
}

.card-list.h-auto.has-image h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 2.4rem;
}

/* Core Services */
.core-services .card-list {
  padding: 0;
}

.core-services .card-list .image {
  width: 100%;
  padding: 32px;
  border-radius: 16px;
  background-color: var(--blue-800);
  height: 180px;
}

.core-services .card-list .image img {
  width: auto;
  height: 100%;
  border-radius: 0;
}

.core-services .card-list .info {
  padding: 32px;
}

.core-services .card-list .info h3 {
  width: 100%;
  margin: 0 0 20px;
}

.core-services .card-list .info ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 3px;
}

.core-services .card-list .info ul li {
  margin: 0 0 2px;
}
.core-services .card-list .info ul li p {
display: initial;
}

.core-services .card-list .info ul li.spaced {
  margin-bottom: 20px;
}

@media screen and (min-width: 1200px) {
  .core-services .card-list {
    margin-bottom: 160px;
  }

  .core-services .card-list .image {
    border-radius: 24px;
    height: 200px;
    padding: 36px 48px;
  }

  .core-services .card-list .info {
    padding: 36px 40px;
  }

  .core-services .card-list .info h3 {
    font-size: 3.6rem;
    line-height: 4.2rem;
    margin: 0 0 24px;
  }

  .core-services .card-list .info ul li.spaced {
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 1400px) {
  .core-services .card-list .image {
    height: 220px;
  }

  .core-services .card-list .info {
    padding: 40px 48px;
  }
}

@media screen and (min-width: 1600px) {
  .core-services .card-list {
    margin-bottom: 160px;
  }

  .core-services .card-list .image {
    padding: 54px 64px;
    height: 300px;
  }

  .core-services .card-list .info {
    padding: 54px 64px;
    flex-grow: 1;
    width: 100%;
  }
}
/* End Core Services */

/* Our experts */
.our-experts .card-list.h-auto.has-image {
  height: 96px !important;
  min-height: unset !important;
  align-items: center;
  margin: 0 0 20px;
}

.our-experts .card-list.h-auto.has-image h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.our-experts .card-list.h-auto.has-image .image {
  height: 100%;
  width: 96px;
  background-color: var(--blue-800);
}

.our-experts .card-list.h-auto.has-image .image img {
  width: 36px;
}

.our-experts .card-list.h-auto.has-image .info {
  padding: 16px 24px;
}
/* End Our experts */

/* Technologies */
.technologies .card-list.h-auto.has-image {
  flex-flow: column nowrap;
  padding: 32px;
  height: calc(100% - 24px) !important;
}

.technologies .card-list.h-auto.has-image .image {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: transparent;
  justify-content: flex-start;
}

.technologies .card-list.h-auto.has-image .image img {
  width: 44px;
  height: 44px;
}

.technologies .card-list.h-auto.has-image .info {
  padding: 0;
}

.technologies .card-list.h-auto.has-image h3 {
  margin: 16px 0 24px;
  font-size: 2.4rem;
  line-height: 2.8rem;
}

.technologies .tag {
  font-size: 1.5rem;
  padding: 6px 16px;
}

.technologies-list {
  height: calc(100% - 28px);
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

.technology {
  display: flex;
  margin: 0 0 16px;
  align-items: center;
}

.technology:last-child {
  margin: 0;
}

.technology .image {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--blue-grayish-300);
  margin: 0 16px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.technology .image img {
  width: 36px;
  border-radius: 0;
}

.technology h3 {
  font-size: 2.4rem;
  line-height: 2.8rem;
}

@media screen and (min-width: 1200px) {
  .technologies .card-list.h-auto.has-image {
    padding: 36px 36px 24px;
    justify-content: space-between;
    height: calc(100% - 48px) !important;
  }

  .technologies .card-list.h-auto.has-image .image img {
    width: 60px;
    height: 60px;
  }

  .technologies .card-list.h-auto.has-image .info {
    flex-grow: 1;
  }

  .technologies .card-list.h-auto.has-image h3 {
    font-size: 3.6rem;
    line-height: 4rem;
    margin: 36px 0 28px;
  }

  .technologies .tag {
    font-size: 2rem;
    line-height: 2.8rem;
    padding: 6px 12px;
    margin: 0 12px 12px 0;
  }

  .technologies-list {
    height: calc(100% - 48px);
  }
}

@media screen and (min-width: 1400px) {
  .technologies .card-list.h-auto.has-image h3 {
    margin: 74px 0 28px;
  }
}

@media screen and (min-width: 1600px) {
  .technologies .card-list.h-auto.has-image {
    padding: 36px 48px 24px;
  }

  .technologies .tag {
    font-size: 2.4rem;
    line-height: 3.2rem;
    padding: 6px 12px;
    margin: 0 12px 12px 0;
  }
}

@media screen and (max-width: 375px) {
  .technologies .tag {
    font-size: 1.4rem;
    padding: 4px 12px;
  }
}
/* End Technologies */

/* Inquiry */
section.inquiry {
  background: var(--blue-grayish-200);
  border-radius: 16px;
  padding: 32px 8px 0;
  margin-bottom: 42px;
  margin-left: 16px;
  margin-right: 16px;
}

form#inquiryForm {
  background: var(--blue-grayish-350);
  margin: 0 -24px 0;
  padding: 32px 24px;
  border-radius: 16px;
}

.inquiry .control-wrapper {
  flex-flow: row wrap;
}

.inquiry .control-wrapper .control {
  width: 100%;
}

.inquiry form .control label {
  position: static !important;
  line-height: 1.5;
  margin: 0 0 10px;
  opacity: 1 !important;
  transform: none !important;
  font-size: 1.6rem !important;
  color: var(--blue-800) !important;
}

.inquiry form .control input {
  border: 1px solid var(--blue-grayish-400);
  border-radius: 8px;
  margin: 0 0 20px;
  line-height: 1.5;
  padding: 16px;
  font-weight: 700;
}

.inquiry form label[for="terms"] {
  margin: 6px 0 20px;
  font-size: 24px;
}

.link-terms {
  color: var(--blue-800);
}

.link-terms:hover {
  text-decoration: underline;
}
form#inquiryForm [type="checkbox"] + label:before {
  border: 1px solid var(--blue-grayish-400);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .inquiry .nav-cards {
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 768px) {
  .inquiry .control-wrapper .control {
    width: calc(50% - 18px);
    margin: 0 0 10px;
  }
}

@media screen and (min-width: 992px) {
  form#inquiryForm {
    margin-top: -32px;
    padding: 32px;
  }
}

@media screen and (min-width: 1200px) {
  section.inquiry {
    padding-bottom: 0 !important;
  }

  form#inquiryForm {
    padding: 144px 100px;
    border-radius: 24px;
    height: calc(100% + 80px);
    width: calc(100% + 120px);
    top: -48px;
    position: relative;
  }

  form#inquiryForm b {
    margin: 0 0 24px !important;
  }

  form#inquiryForm [type="checkbox"] + label:before {
    margin: 0 12px 0 0;
  }

  .inquiry form label[for="terms"]:after {
    top: 8px;
  }

  .inquiry form .control label {
    font-size: 2rem !important;
  }

  .inquiry form .control input {
    margin: 0 0 16px;
  }

  section.inquiry .nav-cards-image {
    margin-top: 111px;
    margin-bottom: 83px;
    position: static;
  }
}

@media screen and (min-width: 1400px) {
  section.inquiry .nav-cards-image {
    margin-top: 43px;
  }

  .inquiry form label[for="terms"]:before {
    top: 1px;
  }

  .inquiry form label[for="terms"]:after {
    top: 6px;
  }
}

@media screen and (min-width: 1600px) {
  .inquiry form .control label {
    font-size: 2.4rem !important;
  }

  section.inquiry .nav-cards-image {
    margin-top: 20px;
  }

  .inquiry form label[for="terms"] {
    margin: 6px 0 48px;
  }
}

@media screen and (min-width: 1921px) {
  section.inquiry .nav-cards-image {
    margin-top: 129px;
  }
}

/* End Inquiry */

/* About */
.about {
  background: var(--blue-grayish-100);
  border-radius: 16px;
}

.about .hero {
  margin: -32px -16px 32px;
  padding: 40px 16px;
  min-height: 655px;
  justify-content: space-between;
}

.about .hero .head,
.about .hero .text {
  position: relative;
  z-index: 5;
}

.about .card-number-wrapper {
  margin: 0 0 20px;
}

.about .text p {
  margin: 0;
}

.about .p-more-than {
  margin: 0 0 32px;
  font-size: 2.4rem;
  line-height: 2.8rem;
}

.about p.leading-square {
  margin: 0 0 20px;
}

@media screen and (min-width: 768px) {
  .about .hero {
    margin-top: -40px;
  }

  .about .p-more-than {
    margin: 16px 0 32px;
  }
}

@media screen and (min-width: 992px) {
  .about .hero {
    padding: 40px;
  }

  .about .hero .text {
    display: flex;
    align-items: flex-end;
  }

  .about .hero .text .text-wrapper {
    order: 1;
  }

  .about .hero .text .card-number-wrapper {
    order: 2;
    margin-left: 8.33333%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1200px) {
  .about .hero {
    margin: -80px -96px 42px !important;
    border-radius: 24px;
    padding: 100px 80px;
  }

  .about .hero .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }

  .about .hero .head > div {
    width: auto;
  }

  .about .hero .head > .section-label {
    margin: 0 0 6px;
  }

  .about .p-more-than {
    margin: 48px 0 48px;
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}

@media screen and (min-width: 1400px) {
  .about .p-more-than {
    font-size: 3.6rem;
    line-height: 4rem;
  }
}
/* End About */

/* Sectors */
.sectors .card {
  color: #fff;
  justify-content: stretch;
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 0 36px;
  padding: 32px 24px;
  min-height: 636px;
  user-select: none;
  border: none;
}

.sectors .card > div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  height: 100%;
  flex-grow: 1;
}

.sectors .card h3 {
  font-size: 3.6rem;
  line-height: 4rem;
  margin: 0 0 16px;
  text-wrap: balance;
}

/* .sectors .card .list-wrapper ul,  */
.sectors .card .list-wrapper .bg-blurred  {
  padding: 32px 28px 32px 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18) !important;
  list-style: disc;
  list-style-position: outside;
}

.sectors .card .list-wrapper ul li {
  margin: 0 0 2px;
  list-style: disc;
}

@media screen and (min-width: 768px) {
  /* .sectors .card .list-wrapper ul, */
  .sectors .card .list-wrapper .bg-blurred {
    max-width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  section.sectors {
    padding-bottom: 140px !important;
  }

  .sectors .card {
    border-radius: 24px;
    padding: 48px;
    min-height: 536px;
  }

  .slider .number {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }

  .sectors .card h3 {
    font-size: 4.8rem;
    line-height: 4.8rem;
    margin: 0;
  }

  /* .sectors .card .list-wrapper ul,  */
  .sectors .card .list-wrapper .bg-blurred {
    width: 50%;
    padding: 40px 56px;
  }
}

@media screen and (min-width: 1400px) {
  .sectors .card {
    min-height: 636px;
  }

  /* .sectors .card .list-wrapper ul,  */
  .sectors .card .list-wrapper .bg-blurred {
    width: 50%;
    padding: 48px 72px;
  }
}
@media screen and (max-width: 768px) {
    .sectors .card {
    background-image: var(--mobile-bg)!important;
  }
}

/* End Sectors */

.tags {
  display: flex;
  flex-flow: row wrap;
}

.tag {
  background: var(--blue-grayish-300);
  padding: 4px 14px;
  font-size: 1.4rem;
  border-radius: 8px;
  margin: 0 4px 6px 0;
}

.card-list.h-auto.pill-check {
  height: 80px !important;
  min-height: 80px !important;
  border-radius: 300px !important;
}

.card-list.h-auto.pill-check .image {
  width: 80px;
  border-radius: 50% !important;
  position: relative;
}

.card-list.h-auto.pill-check .image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.card-list.h-auto.pill-check .info {
  padding: 16px;
}

.card-list.h-auto.pill-check h3 {
  font-size: 1.6rem !important;
  line-height: 2rem !important;
  margin: 0;
}

.card-list.h-auto.pill-check p {
  margin: 0 !important;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .card-list.h-auto.has-image .image {
    border-radius: 24px;
  }

  .card-list.h-auto.has-image .image img {
    width: 105px;
  }

  .card-list.h-auto.pill-check {
    height: 140px !important;
  }

  .card-list.h-auto.pill-check .image {
    width: 140px;
  }

  .card-list.h-auto.pill-check .image:before {
    background-size: 40px;
  }

  .card-list.h-auto.pill-check .info {
    padding: 24px;
  }

  .card-list.h-auto.pill-check h3 {
    font-size: 2.4rem !important;
    line-height: 2.8rem !important;
    margin: 0 0 8px !important;
  }

  .card-list.h-auto.pill-check p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

@media screen and (min-width: 1200px) {
  .card-list {
    padding: 48px;
    border-radius: 24px;
    min-height: 630px;
    margin: 0 0 112px;
  }

  .card-list h3 {
    font-size: 4.8rem;
    line-height: 5rem;
    margin: 0 0 28px;
  }

  .card-list:before {
    margin: 0 0 32px;
  }

  .card-list.h-auto.stick-top h3 {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  .card-list.plus:before {
    width: 40px;
    height: 40px;
    background-size: 16px;
    flex-shrink: 0;
    margin: 0 16px 0 0;
  }

  .card-list.plus h3 {
    font-size: 1.8rem;
    line-height: 2.4rem;
    width: auto;
  }

  .card-list.h-auto {
    min-height: 270px !important;
    margin: 0 0 48px !important;
  }

  .button-wrapper {
    padding-right: 0;
  }

  .card-list.h-auto.has-image h3 {
    margin: 0 0 20px;
    font-size: 2.8rem;
    line-height: 3.2rem;
  }

  .tag {
    font-size: 1.8rem;
    padding: 10px 20px;
    margin: 0 6px 6px 0;
  }

  .our-experts .card-list.h-auto.has-image {
    height: 183px !important;
    margin: 0 0 48px;
  }

  .our-experts .card-list.h-auto.has-image h3 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  .our-experts .card-list.h-auto.has-image .image {
    height: 100%;
    width: 183px;
  }

  .our-experts .card-list.h-auto.has-image .image img {
    width: 60px !important;
  }

  .our-experts .card-list.h-auto.has-image .info {
    padding: 16px 40px;
  }
}

@media screen and (min-width: 1400px) {
  .our-experts .card-list.h-auto.has-image .info {
    padding: 16px 60px;
  }
}

@media screen and (min-width: 1600px) {
  .card-list {
    min-height: 792px;
  }

  .card-list.plus {
    margin: 0 0 48px;
    align-items: flex-start;
  }

  .card-list h3 {
    font-size: 5.6rem;
    line-height: 5.6rem;
    margin: 0 0 40px;
  }

  .card-list.plus:before {
    width: 60px;
    height: 60px;
    background-size: 20px;
    flex-shrink: 0;
    margin: 0 32px 0 0;
  }

  .card-list.plus h3 {
    font-size: 2.4rem;
    line-height: 3rem;
    width: auto;
  }

  .card-list.h-auto {
    min-height: 310px !important;
  }

  .it-experts .card-list.h-auto {
    min-height: 360px !important;
  }

  .tag {
    font-size: 2.4rem;
    padding: 15px 26px;
    margin: 0 6px 6px 0;
  }

  .card-list.h-auto.has-image .image {
    width: 310px;
  }

  .card-list.h-auto.has-image .image img {
    width: 150px;
  }

  .card-list.h-auto.has-image.has-checkmark .image img {
    width: 125px;
  }

  .card-list.h-auto.has-image .info {
    padding: 48px;
  }

  .card-list.h-auto.has-image h3 {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  .card-list.h-auto.pill-check {
    height: 200px !important;
  }

  .card-list.h-auto.pill-check .image {
    width: 200px !important;
    border-radius: 50% !important;
  }

  .card-list.h-auto.pill-check .image:before {
    background-size: 60px;
  }

  .card-list.h-auto.pill-check h3 {
    font-size: 3.6rem !important;
    line-height: 4rem !important;
    margin: 0 0 8px;
  }

  .card-list.h-auto.pill-check p {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }

  .our-experts .card-list.h-auto.has-image h3 {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  .our-experts .card-list.h-auto.has-image .info {
    padding: 16px 64px;
  }
}
/* End card lists */

/* Cards with checkmark */
.card-checkmark {
  background: var(--blue-grayish-200);
  padding: 24px;
  margin: 0 0 24px;
  border-radius: 16px;
  aspect-ratio: 1;
}

.card-checkmark .checkmark {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "JetbrainsMono";
  background-image: url(../images/icon-checkmark.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 44px;
  color: var(--blue-800);
  font-size: 1.2rem;
  margin: 0 0 20px;
}

.card-checkmark h3 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin: 0 0 16px;
}

@media screen and (min-width: 768px) {
  .card-checkmark .checkmark {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    margin: 0 0 28px;
  }
}

@media screen and (min-width: 1200px) {
  .card-checkmark {
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 32px;
    height: 440px;
    aspect-ratio: unset;
  }

  .card-checkmark .checkmark {
    width: 80px;
    height: 72px;
    background-size: 60px;
    flex-shrink: 0;
  }

  .card-checkmark h3 {
    font-size: 3rem;
    line-height: 3.4rem;
    margin: 24px 0 12px;
  }
}

@media screen and (min-width: 1280px) {
  .card-checkmark {
    height: 396px;
  }
  .card-checkmark h3 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}

@media screen and (min-width: 1400px) {
  .card-checkmark {
    padding: 34px 46px;
  }

  .card-checkmark .info {
    flex-grow: 1;
  }

  .card-checkmark h3 {
    font-size: 3.6rem;
    line-height: 4rem;
    margin: 0 0 12px;
  }

  .card-checkmark .info p {
    margin: 0;
  }
}
/* End Cards with checkmark */

/* Card with quote */
.card-quote {
  padding: 100px 22px 30px;
  border-radius: 16px;
  cursor: grab;
  user-select: none;
  height: 512px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  position: relative;
}

.card-quote.single {
  background-color: var(--blue-800);
  color: var(--white);
}

@media screen and (max-width: 576px) {
  .card-quote.single {
    padding: 24px;
  }
}

@media screen and (min-width: 576px) {
  .quote-text {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}

/* End Card with quote */
/* End Cards */

/* Timeline */
.milestones {
  margin-top: 24px;
}

.timeline {
  position: relative;
  margin-top: 16px;
}

.timeline .event {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 24px;
  position: relative;
  min-height: 100px;
}

.timeline .event:before {
  content: "";
  position: absolute;
  left: 10%;
  top: -24px;
  height: calc(100% + 48px);
  width: 1px;
  background: var(--blue-grayish-400);
  z-index: -1;
}

.timeline .event:first-child:before {
  top: 0;
}

.timeline .event:last-child:before {
  top: -64px;
}

.timeline .event .year {
  width: 20%;
  height: 20%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue-800);
  color: var(--white);
  border-radius: 50%;
  aspect-ratio: 1/1;
  margin-right: 24px;
  position: relative;
  outline: 12px solid var(--white);
  font-weight: 700;
  word-break: break-word;
  text-align: center;
}

.timeline .event .text h3 {
  font-size: 2rem;
  line-height: 2.8rem;
}

@media screen and (min-width: 500px) {
  .timeline .event {
    min-height: 140px;
  }
}

@media screen and (min-width: 768px) {
  .timeline {
    margin: 0;
  }

  .timeline .event {
    min-height: 180px;
    max-width: 83%;
    align-items: center;
  }

  .timeline .event:before {
    left: 75px;
  }

  .timeline .event:first-child:before {
    top: 48px;
  }

  .timeline .event .year {
    width: 150px;
    font-size: 2rem;
  }

  .timeline .event .text {
    padding-top: 24px;
  }

  .timeline .event .text h3 {
    font-size: 2.4rem;
    line-height: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .timeline .event {
    margin-bottom: 47px;
  }

  .timeline .event:before {
    left: 116px;
  }

  .timeline .event .text {
    background: var(--blue-grayish-200);
    width: calc(100% + 232px);
    margin-left: -232px;
    height: 232px;
    border-radius: 200px;
    padding-left: 270px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }

  .timeline .event .year {
    width: 232px;
    height: 232px;
    outline: none;
    font-size: 3.6rem;
  }

  .timeline .event .text h3,
  .timeline .event .text p {
    max-width: 83%;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1380px) {
  section.milestones {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1280px) {
  .timeline {
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .timeline:before,
  .timeline:after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    display: block;
    background: var(--blue-800);
    border-radius: 8px;
    left: calc(50% - 24px);
    top: -8px;
  }

  .timeline:after {
    top: auto;
    bottom: 0;
  }

  .timeline .event {
    margin: 0 0 96px;
  }

  .timeline .event:before {
    height: calc(100% + 112px);
  }

  .timeline .event:nth-child(odd) {
    width: calc(50% + 116px);
    left: calc(50% - 116px);
    max-width: unset;
  }

  .timeline .event:nth-child(even) {
    width: calc(50% + 116px);
  }

  .timeline .event:nth-child(even):before {
    left: auto;
    right: 115px;
  }

  .timeline .event:nth-child(even) .year {
    order: 2;
    margin: 0;
  }

  .timeline .event:nth-child(odd) .text {
    padding-right: 48px;
  }

  .timeline .event:nth-child(even) .text {
    margin-left: auto;
    margin-right: -232px;
    padding-left: 78px;
    padding-right: 280px;
  }

  .timeline .event:nth-child(odd):before {
    left: 116px;
  }

  .timeline .event:first-child:before {
    top: -90px;
    height: calc(100% + 170px);
  }

  .timeline .event:last-child:before {
    top: -20px;
    height: calc(100% + 110px);
  }

  .timeline .event .text h3,
  .timeline .event .text p {
    max-width: 100%;
  }
}

@media screen and (min-width: 1600px) {
  .timeline .event .text h3,
  .timeline .event .text p {
    max-width: 90%;
  }

  .timeline .event .text h3 {
    margin-bottom: 4px;
  }

  .timeline .event:nth-child(even) .text {
    padding-left: 110px;
    padding-right: 210px;
  }
}
/* End Timeline */

/* Tinyslider */
.slider-wrapper {
  background: var(--blue-800);
  border-radius: 16px;
  color: var(--white);
  cursor: grab;
}

button[data-action="stop"] {
  display: none;
}

.slider-logos {
  margin: 32px 0 0 !important;
}

.tns-nav {
  position: absolute;
  top: 42px;
  left: 24px;
  z-index: 20;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-family: "JetbrainsMono";
  font-weight: 500;
}

@keyframes move-left {
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.tns-nav .current-slide-count:after {
  content: "/";
  margin: 0 10px;
}

.tns-nav button {
  width: 11px;
  height: 11px;
  border: none;
  background: var(--blue-grayish-400);
  border-radius: 50%;
  margin: 0 4px 0 0;
  outline: none;
  box-shadow: none;
  transition: 0.2s ease;
}

.tns-nav button.tns-nav-active {
  background: var(--white);
}

.slider-nav {
  position: absolute;
  right: 32px;
  top: 28px;
  z-index: 10;
}

.slider-nav button {
  font-size: 0;
  color: transparent;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--blue-900);
  position: relative;
  border-radius: 50%;
}

.slider-nav button:active {
  background: var(--blue-950);
}

.slider-nav button + button {
  margin-left: 12px;
}

.slider-nav button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/icon-caret-up-white.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
}

.slider-nav .slider-nav-left:before {
  transform: rotate(-90deg);
}

@media screen and (min-width: 1200px) {
  .sectors .slider-wrapper {
    width: calc(100% + 192px);
    margin-left: -96px;
  }

  .sectors .slider-wrapper .slide:last-child .card {
    margin-right: 40px !important;
  }
}
/* End Tinyslider */

/* Pill buttons */
.pill {
  padding: 3px 11px 3px;
  background: var(--blue-grayish-200);
  color: var(--blue-800);
  margin: 0 8px 8px 0;
  border-radius: 4px;
  border-color: transparent;
  font-family: "JetbrainsMono";
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0.03em;
}

.pill.active {
  background: var(--blue-800);
  color: var(--white);
}

.load-more {
  margin: 30px 0 0;
}

@media screen and (min-width: 1200px) {
  .load-more {
    margin: 160px 0 0;
  }
}
/* End Pill buttons */

/* Quote */
.quote-text {
  margin: 0 0 24px;
}

.quote-author {
  margin: auto 0 0;
}

.quote-white .quote-author {
  margin-bottom: 60px;
}

.quote-author .photo {
  margin: 0 16px 0 0;
  border-radius: 50%;
  overflow: hidden;
}

.quote-author .title {
  color: var(--blue-grayish-400);
  line-height: 1.4;
}

.quote-author .details {
  font-family: "JetbrainsMono";
}

@media screen and (min-width: 768px) {
  .card-quote {
    padding: 132px 22px 30px;
  }

  .card-quote.single {
    padding: 100px 22px 80px;
  }

  .tns-nav {
    left: calc(50% - 31.5%);
    top: 56px;
  }

  .slider-nav {
    right: 16px;
    top: -80px;
  }

  .slider-nav button[disabled] {
    opacity: 0.2;
  }
}

@media screen and (min-width: 1200px) {
  .pill {
    padding: 5px 12px;
  }

  .slider-wrapper {
    border-radius: 24px;
  }

  .slider-wrapper,
  .card-quote.single {
    background-position: center 66%;
    background-size: 50%;
  }

  .quote {
    margin: 0 auto 64px;
  }

  .quote-text {
    font-size: 2.8rem;
    line-height: 3.4rem;
    letter-spacing: -0.03em;
    margin: 0 0 40px;
  }

  .card-quote {
    padding: 210px 0 48px;
    border-radius: 24px;
    height: 728px;
  }

  .card-quote.single {
    padding: 100px 0 90px;
    margin: 0;
  }

  .quote-author .photo {
    margin: 0 24px 0 0;
  }

  .quote-author .details {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }

  .slider-nav {
    right: 24px;
    top: -148px;
  }

  .slider-nav button {
    width: 80px;
    height: 80px;
    transition: 0.2s ease;
  }

  .slider-nav button:before {
    background-size: 28px;
  }

  .slider-nav button + button {
    margin-left: 16px;
  }

  .tns-nav {
    left: calc(50% - 33%);
    top: 119px;
  }

  .tns-nav button {
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
  }
}

@media screen and (min-width: 1600px) {
  .quote-text {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  .slider-nav button {
    width: 100px;
    height: 100px;
    transition: 0.2s ease;
  }

  .slider-nav button:before {
    background-size: 32px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-nav {
    position: static;
  }

  .slider-nav button {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    bottom: 260px;
  }

  button.slider-nav-left {
    position: absolute;
    left: -24px;
    z-index: 100;
  }

  button.slider-nav-right {
    position: absolute;
    right: -24px;
    z-index: 100;
  }

  .slider-nav button[disabled] {
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .slider-nav button {
    bottom: 314px;
  }
}

/* End Quote */

/* Parallax */
.parallax {
  position: relative;
  z-index: -1;
}

[data-type="parallax"] {
  transition: 1s cubic-bezier(0.33, 0.92, 0.6, 1.01);
  position: relative;
  display: block;
  width: 100% !important;
}

.parallax .icon img {
  border-radius: 0 !important;
}

.parallax.icon-at-top .icon img {
  top: 40%;
}

.parallax.icon-at-top .image img {
  top: 30%;
}

.parallax.image-at-top .icon img {
  top: 40%;
}

.parallax.image-at-top .image img {
  top: 40px;
}

.hero-regional-page .parallax {
  margin-top: 32px;
  padding: 0 8px;
}

.hero-regional-page .parallax img {
  width: 100%;
}

.hero-regional-page .parallax [class*="col-"] {
  padding: 0 10px;
}

.hero-regional-page .parallax .icon-left {
  z-index: -5;
  top: 176px;
  border-radius: 0 !important;
  padding: 0;
}

.hero-regional-page .parallax .img-left {
  z-index: 1;
  top: 10%;
}

.hero-regional-page .parallax .icon-center {
  width: 25% !important;
  margin: 0 0 8px auto;
  top: 10%;
  border-radius: 0 !important;
}

.hero-regional-page .parallax .icon-right-circle {
  top: 10%;
  border-radius: 0 !important;
}

.hero-regional-page .parallax .icon-right-square {
  top: 16%;
  border-radius: 0 !important;
}

.parallax.careers {
  min-height: 512px;
  margin-bottom: 32px;
}

.parallax.careers [class*="col-"] {
  display: flex;
  flex-flow: column nowrap;
}

.parallax.careers .img-left {
  top: 30%;
}

.parallax.careers .img-center-top {
  top: 15%;
}

.parallax.careers .img-center-bottom {
  width: 70vw !important;
  max-width: 70vw;
  left: -57px;
  top: 5%;
}

.pull-up-5 {
  margin-top: -2rem;
}

@media screen and (min-width: 768px) {
  .hero-regional-page .parallax .icon-right-circle {
    top: 7%;
  }

  .hero-regional-page .parallax .icon-right-square {
    top: 16%;
  }

  .hero-regional-page .parallax .icon-left {
    top: 280px;
  }

  .hero-regional-page .parallax [class*="col-"] {
    padding: 0 24px 0 0;
  }

  .hero-regional-page .parallax [class*="col-"] + [class*="col-"] {
    padding: 0 0 0 24px;
  }

  .parallax.careers {
    margin: 0;
  }

  .parallax.careers .img-center-top {
    top: 20%;
  }

  .parallax.careers .img-center-bottom {
    left: -87px;
  }
}

@media screen and (min-width: 1024px) {
  .parallax.icon-at-top .icon img {
    top: 60%;
  }

  .parallax.icon-at-top .image img {
    top: 76px;
  }

  .parallax.image-at-top .icon img {
    top: 70%;
  }

  .parallax.image-at-top .image img {
    top: 42px;
  }

  .parallax.careers {
    max-width: 66.666%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .hero-regional-page .parallax {
    margin: 0;
    padding: 0;
    max-height: 66vh;
    overflow: visible;
  }

  .hero-regional-page .parallax .img-left {
    top: 5%;
  }

  .hero-regional-page .parallax .icon-left {
    top: 236px;
    padding: 0;
  }

  .hero-regional-page .parallax .icon-center {
    width: 30% !important;
  }

  .hero-regional-page .parallax .image-left {
    top: 5%;
  }

  .hero-regional-page .parallax .icon-right-circle {
    top: 13%;
  }

  .hero-regional-page .parallax .icon-right-square {
    top: 24%;
  }

  .parallax.careers {
    max-width: 66.666%;
    min-width: 1000px;
    margin: 0 auto;
  }

  .parallax.careers .img-center-bottom {
    width: 42vw !important;
    left: 8vw;
  }

  .parallax.careers .img-center-top {
    width: 250px !important;
  }

  .parallax.careers .img-right {
    left: 80px;
  }
}

@media screen and (min-width: 1600px) {
  .hero-regional-page .parallax .image-left {
    top: 3%;
  }

  .hero-regional-page .parallax .icon-left {
    top: 300px;
  }

  .hero-regional-page .parallax .icon-right-circle {
    top: 12.5%;
  }

  .hero-regional-page .parallax .icon-right-square {
    top: 21%;
  }

  .parallax.careers .img-center-top {
    width: 300px !important;
    top: 30%;
  }

  .parallax.careers .img-center-bottom {
    width: 30vw !important;
    left: 7vw;
  }
}

/* End Parallax */

/* Smallest screens */
@media screen and (max-width: 360px) {
  .header {
    padding: 12px 24px;
  }

  h2.section-header,
  .sectors .card h3 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  .regional-page .menu-links a {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}

@media screen and (max-width: 320px) {
  .hero-regional-page h1 {
    font-size: 3rem;
    line-height: 3.8rem;
  }

  h2.section-header,
  .sectors .card h3 {
    font-size: 3rem;
    line-height: 3.6rem;
  }

  .technologies .card-list.h-auto.has-image {
    padding: 24px;
  }

  /* .sectors .card .list-wrapper ul,  */
  .sectors .card .list-wrapper .bg-blurred {
    padding: 24px 24px 24px 40px;
  }

  .footer {
    padding-left: 8px;
    padding-right: 8px;
  }
}
/* End Smallest screens */

/* Extra large screens */
@media screen and (min-width: 2200px) {
  .header {
    padding: 74px 0;
  }

  .btn-menu-sticky {
    top: 72px;
    right: 104px;
  }

  .not-at-top .btn-menu-sticky {
    width: 72px !important;
  }

  body:not(.menu-opened) .btn-toggle-menu {
    padding: 16px 69px 16px 28px;
    background-position: 103px center;
  }

  body {
    font-size: 2rem;
    line-height: 2.8rem;
  }

  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark {
    width: 340px;
    height: 78px;
  }

  section:not(footer) {
    font-size: 2.8rem;
    line-height: 4rem;
  }

  .header .language-switcher {
    margin: -3px 172px 0 0;
  }

  .header .language-switcher a {
    font-size: 1.7rem !important;
    padding: 0 20px 0 0;
  }

  .header .language-switcher a.current:after {
    width: 15px;
    height: 15px;
    top: 28px;
  }

  .menu .language-switcher a {
    font-size: 1.8rem !important;
  }

  .menu .language-switcher a.current:after {
    width: 15px;
    height: 15px;
    top: 28px;
  }

  h1 {
    font-size: 12rem;
    line-height: 11.5rem;
  }

  h2 {
    font-size: 8.4rem;
    line-height: 8.4rem;
  }

  .hero.hero-regional-page {
    padding-top: 264px;
  }

  .hero > .container-fluid {
    padding-bottom: 54px;
  }

  .hero h1 {
    padding-right: 64px;
  }

  .hero.white h1 {
    font-size: 13rem;
    line-height: 13rem;
  }

  .section-label {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .section-label:before {
    width: 17px;
    height: 17px;
    margin: 0 16px 0 0;
  }

  .card-number {
    min-height: 310px;
  }

  .card-number .label {
    font-size: 2.2rem;
  }

  .card-number .number {
    font-size: 12rem;
    line-height: 8rem;
  }

  .card-number .number.more-than:after {
    top: -16px;
    right: -54px;
    width: 36px;
    height: 36px;
  }

  .nav-cards a {
    font-size: 3.6rem;
    line-height: 4.2rem;
    margin: 0 0 24px;
  }

  .card-list h3 {
    font-size: 7rem;
    line-height: 7rem;
    padding-right: 24px;
  }

  .card-list.plus h3 {
    font-size: 3rem;
    line-height: 3.6rem;
  }

  .quote-text {
    font-size: 3.8rem;
    line-height: 4.6rem;
  }

  .quote-author .details {
    font-size: 2rem;
    line-height: 2.8rem;
  }

  .sidebar .menu {
    padding: 40px;
  }

  .sidebar .menu .section-label {
    margin-top: 80px;
  }

  .regional-page .menu-links a {
    font-size: 4rem;
    line-height: 4.8rem;
  }

  .regional-page .menu-links a:before {
    font-size: 1.6rem;
    margin: 0 16px 0 0;
  }

  .sidebar .contact {
    padding: 64px 100px;
  }

  .sidebar .contact h2 {
    font-size: 10rem;
    line-height: 10rem;
    margin: 32px 0 88px -2px;
  }

  .parallax.image-at-top .image img {
    top: 50px;
  }

  .parallax.image-at-top .icon img {
    top: 80%;
  }

  .card-list.h-auto {
    min-height: 350px !important;
  }

  .card-list.h-auto.stick-top h3 {
    font-size: 4.6rem;
    line-height: 5.2rem;
  }

  .numbered:before {
    font-size: 2rem;
    line-height: 6.2rem;
  }

  .card-news {
    margin: 0 0 80px;
  }

  .card-news .info h2 {
    font-size: 4.2rem;
    line-height: 5rem;
    margin: 0 0 32px;
  }

  .card-news .published {
    font-size: 2rem;
  }

  .btn-primary {
    font-size: 2rem !important;
    line-height: 1.5 !important;
    padding: 20px 42px;
  }

  .btn-primary.arrow-right:hover {
    padding-right: 14px;
    padding-left: 69px;
  }

  .btn-primary.arrow-right:hover:before {
    transform: translateX(71px) translateY(-50%);
  }

  .btn-circle {
    width: 72px;
    height: 72px;
    padding: 0;
    background-size: 20px !important;
  }

  .nav-cards a:after {
    width: 24px;
    height: 24px;
    background-size: 24px;
    margin-left: 24px;
    top: 2px;
    line-height: 1;
  }

  form .control {
    margin: 0 0 32px;
  }

  form .control input,
  form .control input:active,
  form .control input:focus,
  form .control textarea,
  form .control textarea:active,
  form .control textarea:focus {
    font-size: 2.4rem;
  }

  form .control label,
  form .control.message label,
  form .control.message.active label {
    font-size: 3rem;
  }

  form .control.active label {
    font-size: 2.4rem;
    transform: translateY(-24px);
  }

  .success-message,
  .error-message {
    font-size: 2rem;
    padding: 20px;
  }

  body:not(.home) {
    padding-bottom: 950px;
  }

  body:not(.home):after {
    height: calc(100% - 1053px);
  }

  .home .footer h2,
  .footer h2 {
    font-size: 11rem;
    line-height: 11rem;
  }

  .footer,
  .footer a {
    font-size: 2.4rem;
    line-height: 3.6rem;
    letter-spacing: -0.02em;
  }

  .footer .legal a {
    font-size: 2.2rem;
  }

  .mt-1 {
    margin-top: 32px !important;
  }

  .prefooter {
    min-height: 950px;
  }

  .prefooter h3 {
    font-size: 9rem;
    line-height: 9rem;
  }

  .sidebar h6 {
    letter-spacing: -0.01rem;
  }

  .hero.height-auto {
    padding-top: 400px !important;
    padding-bottom: 112px;
  }

  .pill {
    font-size: 2rem;
    margin: 0 10px 10px 0;
    padding: 8px 16px;
  }

  .container-fluid.load-more {
    padding-top: 130px;
  }

  .home .container-fluid {
    max-width: 100% !important;
  }

  .home .hero.white h1 {
    font-size: 11.5rem;
    line-height: 12rem;
  }

  .home .expertise h2 + p {
    max-width: 800px;
    font-size: 3.2rem;
    line-height: 4.6rem;
    margin-top: 54px;
  }

  .home .card {
    min-height: 1050px;
  }

  .home .card h3 {
    font-size: 10rem;
    line-height: 10rem;
  }

  .home .card p {
    font-size: 3.2rem !important;
    line-height: 4.2rem !important;
  }

  .home .card.square {
    padding: 64px;
  }

  .home .card.square h3 {
    font-size: 9rem;
    line-height: 9rem;
  }

  .home h1,
  .home h2 {
    font-size: 11rem;
    line-height: 11rem;
  }

  .hero-regional-page .parallax .img-left {
    top: 0;
  }

  .hero-regional-page .parallax .icon-left {
    top: 390px;
  }

  .card-list.h-auto.has-image .image {
    width: 350px;
  }

  .has-3 .card-number .number {
    font-size: 8rem;
    line-height: 5rem;
  }

  .has-3 .card-number .number.more-than:after {
    right: -48px;
  }

  .card-person .info {
    padding: 40px;
  }

  .card-person .info h4 {
    font-size: 3.2rem;
  }

  .card-person .info .role {
    font-size: 3.2rem;
  }

  .card-person button.show-more,
  .card-client-list button.show-more:after {
    width: 36px;
    height: 36px;
    background-size: 36px;
  }

  .card-person .more {
    padding: 0 42px 42px;
  }

  section.careers-cta h2 {
    font-size: 10rem;
    line-height: 10rem;
  }

  section.careers-cta {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .card-case-study h2 {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }

  .card-client-list h2 {
    font-size: 5rem;
    line-height: 5rem;
  }

  .card-client-list ul li {
    margin: 0 0 5px;
  }

  .card-list.h-auto.pill-check {
    height: 300px !important;
  }

  .card-list.h-auto.pill-check .image {
    width: 300px !important;
  }

  .card-list.h-auto.pill-check .image:before {
    background-size: 80px;
  }

  .card-list.h-auto.pill-check h3 {
    font-size: 5rem !important;
    line-height: 5rem !important;
    margin: 0 0 16px !important;
  }

  .card-list.h-auto.has-image .info {
    padding: 60px 48px;
  }

  .it-experts .card-list.h-auto {
    min-height: 396px !important;
  }

  .it-experts .card-list.h-auto h3 {
    margin-bottom: 32px;
  }

  .tags {
    max-width: 95%;
  }

  .timeline .event .year {
    width: 300px;
    height: 300px;
    font-size: 4.2rem;
  }

  .timeline .event:nth-child(odd) {
    width: calc(50% + 150px);
    left: calc(50% - 150px);
    max-width: unset;
  }

  .timeline .event:nth-child(even) {
    width: calc(50% + 151px);
  }

  .timeline .event:nth-child(odd):before {
    left: 150px;
  }

  .timeline .event:nth-child(even):before {
    right: 150px;
  }

  .timeline .event .text {
    height: 300px;
  }

  .timeline .event:nth-child(odd) .text {
    padding-left: 280px;
  }

  .timeline .event:nth-child(even) .text {
    padding-right: 220px;
  }

  .timeline .event .text h3 {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }

  .core-services .card-list .info h3 {
    font-size: 5.4rem;
    line-height: 6rem;
    margin: 0 0 40px;
  }

  .our-experts .card-list.h-auto.has-image h3,
  .technologies .card-list.h-auto.has-image h3,
  .card-checkmark h3 {
    font-size: 4.6rem;
    line-height: 5.2rem;
  }

  .sectors .card {
    min-height: 800px;
  }

  .sectors .card h3 {
    font-size: 6rem;
    line-height: 6rem;
  }

  .inquiry form .control label {
    font-size: 2.8rem !important;
  }

  section.inquiry .nav-cards-image {
    margin-top: 20px;
  }

  [type="checkbox"] + label:after {
    top: 13px;
  }

  .card-checkmark {
    height: 460px;
  }

  .about .p-more-than {
    font-size: 4.6rem;
    line-height: 5.2rem;
  }

  .our-experts .card-list.h-auto.has-image {
    height: 220px !important;
  }

  .our-experts .card-list.h-auto.has-image .image {
    width: 220px;
  }

  .technologies .card-list.h-auto.has-image {
    padding: 48px 48px 36px;
  }

  .our-experts .card-list.h-auto.has-image .image img {
    width: 80px !important;
  }

  .technologies .card-list.h-auto.has-image .image {
    width: 80px;
    height: 80px;
  }

  .technology .image {
    width: 76px;
    height: 76px;
  }

  .technologies .tag {
    font-size: 2.6rem;
    line-height: 3.4rem;
    padding: 8px 14px;
  }
}

@media screen and (min-width: 2500px) {
  .hero.white .btn-primary {
    font-size: 2.4rem !important;
  }

  .hero-regional-page .parallax .icon-right-circle {
    top: 14.5%;
  }

  .core-services .card-list .image {
    padding: 64px;
    height: 360px;
  }

  .core-services .card-list .info {
    padding: 64px;
  }

  .card-checkmark h3 {
    margin-top: 64px;
  }

  .header .centered {
    position: relative;
    left: -24px;
  }

  .header .centered .btn-primary:hover {
    padding-left: 64px;
    padding-right: 0px;
  }
}
/* End Extra large screens */

/* Pagefind */
.pagefind-ui {
  font-family: "TTNormsPro", sans-serif !important;
  font-weight: 400 !important;
  color: var(--blue-800) !important;
}

.pagefind-ui__search-input {
  margin: 16px 0 4px !important;
  border: 1px solid var(--blue-grayish-400) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}

.pagefind-ui__search-clear {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
}

.pagefind-ui__message {
  font-size: 1.3rem !important;
  line-height: 1.8rem !important;
}

.pagefind-ui__result {
  border-width: 1px !important;
  padding: 16px 0 !important;
}

.pagefind-ui__result-title {
  font-size: 2rem !important;
  line-height: 2.8rem !important;
  margin: 0 !important;
  color: var(--blue-800) !important;
}

.pagefind-ui__result-title a {
  color: var(--blue-800) !important;
}

.pagefind-ui__result-excerpt {
  font-size: 1.2rem !important;
  line-height: 2rem !important;
}

.pagefind-ui__result mark {
  background: var(--blue-400) !important;
  padding: 0 4px !important;
  border-radius: 4px !important;
}

@media screen and (min-width: 1200px) {
  .page-not-found {
    padding-top: 164px;
    min-height: 100vh;
  }

  .pagefind-ui__result-title {
    font-size: 2.4rem !important;
    line-height: 3.2rem !important;
    max-width: 75% !important;
  }

  .pagefind-ui__result-excerpt {
    font-size: 1.6rem !important;
    line-height: 2.4rem !important;
    max-width: 75% !important;
  }
}

@media screen and (min-width: 2200px) {
  .page-not-found {
    padding-top: 260px;
  }

  .pagefind-ui__result-title {
    font-size: 3.6rem !important;
    line-height: 4rem !important;
  }

  .pagefind-ui__result-excerpt {
    font-size: 2rem !important;
    line-height: 2.6rem !important;
  }

  .pagefind-ui__message {
    font-size: 1.6rem !important;
  }

  .pagefind-ui__search-clear {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
  }

  .pagefind-ui__search-input {
    font-size: 2.2rem !important;
    margin-top: 24px !important;
  }
}
/* End Pagefind */
