/* 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;
}

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

b,
strong {
  font-weight: bolder;
  letter-spacing: -0.03rem;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}


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

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

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

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

/* Common styles & Typography */
:root {
  --white: #fff;
  --blue-400: #41cffd;
  --blue-500: #30c3f2;
  --blue-800: #2A2859;
  --blue-825: #262551;
  --blue-850: #201f4a;
  --blue-900: #212147;
  --blue-950: #171738;
  --blue-grayish-100: #f3f6f8;
  --blue-grayish-200: #f2f5fa;
  --blue-grayish-250: #e2e8f2;
  --blue-grayish-300: #e4eaf4;
  --blue-grayish-350: #e6eaf0;
  --blue-grayish-400: #98a6b8;
  --blue-grayish-500: #6e7e8f;
  --blue-grayish-600: #4a5a6b;
  --black-transparent-600: rgba(0, 0, 0, 0.6);
  --yellow-300: #ffed87;
  --green-300: #d2fff7;
  --green-400: #b2fbee;
  --green-600: #87f4e1;
  --orange-300: #ffe4c8;
  --orange-400: #fdd1a5;
  --orange-600: #ffc280;
  --purple-300: #d4d4f3;
  --purple-400: #c1c1f3;
  --purple-600: #9394fe;
  --red-400: #f06f72;
  --transparent: rgba(0, 0, 0, 0);
}

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

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

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

@font-face {
  font-family: SirmaNumerals;
  src: url(../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.3s ease-in-out,
    color 0.3s 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);
}

.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;
}

.grecaptcha-badge {
  display: none !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;
  }
}

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

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

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

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

.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;
}

.bg-blue-800 {
  background: var(--blue-800) !important;
}

.bg-blue-825 {
  background: var(--blue-825) !important;
}

.bg-blue-850 {
  background: var(--blue-850) !important;
}

.text-white {
  color: var(--white) !important;
}

@media screen and (min-width: 1600px) {
  .col-2xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-2xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-2xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-2xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-2xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-2xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-2xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-2xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-2xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-2xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-2xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-2xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
/* End Bootstrap classes extension */

input,
textarea,
select {
  border-radius: 8px;
  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;
}

label {
  user-select: none;
}

[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 24px;
  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 16px 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"].white + label:before {
  border-color: var(--white);
}

[type="checkbox"].white + label:after {
  background: var(--blue-400);
}

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

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

[type="checkbox"]:disabled + label {
  pointer-events: none;
}
.hero > .container-fluid.hero-landing-page{
  min-height: calc(100vh - 200px);
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  align-items: stretch;
}

 .hero-landing-page .text-section {
  background-repeat: no-repeat;
  background-position:center;
  background-size: cover;
  border-radius:24px;
  padding:60px;
  flex:1;
  justify-content: center;
  height: 100%;
  display: flex;
  flex-direction: column;
 }
 .landing-page, .apple-page, .business-page {
  padding-top: 8px;
 }

 .hero-landing-page .text-section h3 {
  padding-bottom: 80px; 
  font-size: 2.6rem;
  font-weight: inherit;
 }

 .hero-landing-page .text-section h1 {
  padding-bottom: 27px;
  font-size: 5.6rem;
}

.hero-landing-page .text-section p{
  font-size: 1.6rem;
  margin-bottom: 50px;
}

.hero-landing-page .text-section .call-to-button {
  display: flex; 
  align-items: center;
}

.hero-landing-page .text-section .call-to-button  p{
  margin: 0; 
  padding-right: 20px;
}

.hero-landing-page .text-section .call-to-button .btn-primary {
  margin: 0;
}

.hero-landing-page .logosImg {
  max-width: 445px;
}
  
.hero-landing-page .logosImg.mobile {
  display: none;
}
.landing-page .menu-section,
.apple-page .menu-section,
.business-page .menu-section, 
.sirmaAI-page .menu-section {
  margin: 40px 0;
  font-weight: 700;
}
.landing-page .sidebar .menu a,
.apple-page .sidebar .menu a,
.business-page .sidebar .menu a, 
.sirmaAI-page .sidebar .menu a {
  font-size: 3.2rem;
  line-height: 4rem;
}
.container-fluid.big-landing-section, .small-landing-page section, .height-section  {
height: 100%;
}
.small-landing-page>.container-fluid, 
.landing-vertical-slider{
  --bs-gutter-x: 0 !important;
}

@media screen and (min-width: 2200px) {
   .landing-page h1,
   .apple-page h1, 
   .business-page h1, 
   .sirmaAI-page h1 {
    font-size: 9.5rem;
  }
}
  
@media screen and (max-width: 768px) {
  .hero > .container-fluid.hero-landing-page{
    padding-top: inherit;
  }
  .hero-landing-page .text-section {
    margin-top: 50%;
    justify-content: inherit;
  height: inherit;
  }
  .hero-landing-page .logosImg.mobile {
    display: block;
    margin: auto;
    max-width: 338px;
  }
  .hero-landing-page .logosImg.desktop {
    display: none;
  }
  .hero-landing-page .text-section h3{
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .hero-landing-page .text-section h1{
    font-size: 3.2rem;
    padding-bottom: 20px;
  }
  .hero-landing-page .text-section p {
    font-size: 1.6rem;
  }
  .hero-landing-page .text-section {
    padding: 20px;
  }
  .landing-page .hero:not(.white):not(.hero-home),
  .apple-page .hero:not(.white):not(.hero-home),
  .sirmaAI-page .hero:not(.white):not(.hero-home), 
  .business-page .hero:not(.white):not(.hero-home),  .hero.no-full-height:not(.white):not(.hero-home) {
    background-position: 85% 85%;
    min-height: inherit !important;
    margin: 0 !important;
  }
 
}
@media screen and (min-width: 1600px) {
.hero-landing-page .text-section h3 {
  padding-bottom: 170px;
  font-size: 5.2rem;
  font-weight: inherit;
 }

 .hero-landing-page .text-section h1 {
  padding-bottom: 27px;
  font-size: 8.2rem;
}

.hero-landing-page .text-section p {
  font-size: 4rem;
  margin-bottom: 50px;
  line-height: 7rem;
}
}
@media screen and (min-width: 1200px) {
  body {
    padding: 16px;
  } 
}

@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: 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 */



/* big-landing-section */
    .landing-page section,
    .apple-page section, 
    .sirmaAI-page  section {
      margin: 0 !important;
    }
    .badges-image-section .card-list.card-square {
      aspect-ratio: auto;
    }
     .landing-vertical-slider .card-list.card-square {
      aspect-ratio: inherit !important;
    }
    /* .landing-vertical-slider  .card-list, */
    .badges-image-section .card-list {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .landing-vertical-slider .left-text,
    .badges-image-section .left-text {
  flex: 1;
  position: sticky;
  top: 50px;
  height: fit-content;
  align-self: flex-start;
  padding: 20px;
  border-radius: 10px;
}
.landing-vertical-slider .left-text .text-section {
  width: 83%;
}
.badges-image-section {
  padding: 0;
}
   .landing-vertical-slider .slider-image-wrapper {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  width: 100%;
   }
    .landing-vertical-slider .slider-image-wrapper > img {
  margin: auto;
}
    .landing-vertical-slider .card-list h3 {
    font-size: 3rem;
    line-height: 3.2rem;
    width: 100%;
    padding: 48px 0;
    margin: 0;
  }
   .landing-vertical-slider  .text-section-content {
font-size: 2.0rem;
  line-height: 2.8rem;

  font-weight: 450;
  }
   .landing-vertical-slider .card-list .text-section-content {
font-size: 3.2rem;
  line-height: 3.8rem;

  font-weight: 450;
  }

  
  .landing-vertical-slider .text-section-content h2 {
    padding: 48px 0;
  }
   .landing-vertical-slider  .text-section-content p:last-of-type {
    margin-bottom: 0;
   }
    .landing-vertical-slider  .card-list.card-square {
    aspect-ratio: 1 / 1;
    justify-content: start;
     }


    
.landing-vertical-slider .card-square::before,
.badges-image-section .card-square::before {
  content: none !important;
}


.big-landing-section, .slider-small-content  {
  background:#F2F5FA;
  border-radius:16px;
  padding:48px;
}

.slider-small-content  .numbered-container strong {
  margin: 100px 0 30px 0 ;
}
.slider-small-content  .card-square:not(.numbered)::before {
  content: none;
}
.slider-small-content .nav-cards {
  margin: 0;
margin-top: 30%;
}
.slider-small-content .nav-cards .text-section-content {
  margin: 20px 0;
}
.slider-small-content .card-list{
background: #fff;
margin: 0 0 100px !important;
}

.big-landing-section.blue-background {
  background:  var(--blue-800);
  border-radius: 24px;
  padding: 45px;
  color: var(--white);
}
.big-landing-section .row-section {
  position: relative;
  height: 100%;
 }
.big-landing-section .call-to-button {
  width: fit-content;
   padding-top: 48px;
}
 .big-landing-section.header-section .text-section-content {
  font-size: 3.2rem;
  line-height: 4rem;
  font-weight: 450;
   padding-top: 48px;
 }
 .big-landing-section .text-section-content, 
 .small-landing-page .big-landing-section .text-section-content {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 450;
   padding-top: 48px;
 }
 
  .big-landing-section  .text-section-content p {
  margin: 0;
 }
.big-landing-section .section-label, .small-landing-page .section-label{
  text-transform:none;
}
.small-landing-page .section-label {
  font-size: 1.4rem;
}
.small-landing-page h2 {
  font-size: 2.8rem;
  line-height: 3.6rem;
}
.small-landing-page .text-section{
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.small-landing-page  .big-landing-section {
  padding: 30px;
}
.dot-nav-wrapper {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.dot-nav .dot {
  width: 10px;
  height: 10px;
  background-color: #aaa;
  border-radius: 50%;
  margin: 6px 0;
  transition: background-color 0.3s;
}

.dot-nav .dot.active,
.dot-nav .dot:hover {
  background-color: #000; /* Or your brand color */
}
.dot-nav-wrapper .nav-cards a.active::before {
  opacity: 0;
  visibility: hidden;
}
.dot-nav-wrapper  .nav-cards a.active {
  transform: translateX(0);
}

.dot-nav-wrapper  .nav-cards a {
  transform: none;
}


.section-with-img .container-fluid {
  background: #F2F5FA;
  border-radius: 16px;
  padding: 48px;
}
.section-text-center {
  background:  var(--blue-800);
  border-radius: 16px;
  padding: 48px;
  color: #fff;
  text-align: center;
}
.section-text-center .section-label {
  text-transform: none;
}
.section-text-center .text-logo-small {
  background: #1F1D4E;
  border-radius: 24px;
  padding: 96px 48px 48px 48px;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes image to top, text to bottom */
  height: 100%; /* full height so spacing works */
}

.section-text-center  .text-logo-small-image {
  max-width: 100%;
  height: auto;
}
.section-text-center .text-section-content{
  font-size: 2rem;
  margin: 48px 0;
  line-height: 2.8rem;
}
.section-text-center .text-logo-small-content{
  margin-top: 96px;
}
.section-text-center .text-logo-small-content-text{
  font-size: 2rem;
  line-height: 2.8rem;
  margin-top: 48px;
}
.section-text-center .text-logo-small-image {
  border-radius: 0;
  margin: auto;
  
}
.custom-footer {
  padding-bottom: 0;
}
.custom-footer .container-fluid {
  background:  var(--blue-800);
  border-radius: 16px;
  padding: 65px 65px 30px 65px;
  font-size: 1.6rem;
  color: #fff;
}
.company-logos img {
  border-radius: 0;
}
.custom-footer .company-logos .logos-line{
  margin: 0 20px;
  width: 1px; height: 40px; background-color: #98A6B8;

}
.custom-footer .company-logos .logoSirmaMobile {
  display: none
}
.custom-footer .company-logos .logoSirma {
  display: block;
}
.custom-footer .footer-links {
  padding-top: 100px;
}
.custom-footer .footer-links a{
  text-decoration: none;
  color: #fff;
}
.custom-footer .offices {
  line-height: 2.4rem;
}


.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-form-landing-page {
  background: #F2F5FA;
  border-radius: 16px;
}
.contact-form-landing-page  .contact-form-inline::before {
  content: none;
}
.contact-form-landing-page .contact-form-inline {
  background:none;
}
.contact-form-landing-page .bg-cover {
  color: #fff;
  padding: 55px 45px;

}
.contact-form-landing-page .contact-title-section{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 55%;
}
.contact-form-landing-page form .control.message label{
 color: inherit !important;
  font-size: 1.6rem;

}
.contact-form-landing-page .inquiry{
  padding: 50px;
}
.contact-form-landing-page h2 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .contact-form-landing-page .section-label {
    text-transform: inherit;
  }


.landing-menu {
  padding: 16px 0 22px 0;
}
.landing-page h1,
.apple-page h1, 
.business-page h1,
.sirmaAI-page h1 {
font-size: 7.2rem;
line-height: 7.4rem;
}
.landing-page h2,
.apple-page h2, 
.business-page h2, 
.sirmaAI-page h2 {
font-size: 4.8rem;
line-height: 5.2rem;
}
.landing-page h3,
.apple-page h3, 
.business-page h3,
.sirmaAI-page h3 {
font-size: 3.2rem;
line-height: 3.4rem;
}
.landing-page .section-label,
.apple-page .section-label {
  font-family: TTNormsPro, Tahoma, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-transform: none;
}
  .landing-page .section-label,
  .apple-page .section-label{
    margin: 0 0 48px 0px;
  }

section.landing-menu + section {
  padding-top: 0;
}
.landing-page-menu {
background-color: #F2F5FAB5;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border-radius: 16px;
  padding: 0 25px;
}
.landing-page-menu .company-logos .logo, .landing-page-menu .btn-primary, .landing-page-menu .btn-toggle-landing-menu {
  margin: 20px 25px;
}
.landing-page-menu nav {
  width: 100%;
  text-align: center;
  height: 100%;
}
.landing-page-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 5px;
  color:  var(--blue-800);
  height: 100%;
  justify-content: center;
  align-items: center;
}
.landing-page-menu nav ul .menu-item {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.landing-page-menu nav ul li a {
  text-decoration: none;
  color:  var(--blue-800);
  font-weight: 700;
  padding: 15px 15px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  line-height: 2.8rem;
}
.landing-page-menu nav ul li a.active {
  background: #FFF;
  border-radius: 8px;
}
.landing-page-menu nav ul li a:hover {
  text-decoration: none !important;
  background: #FFF;
  border-radius: 8px;
}
/* Product Section */
.product-box-section {
  border: 3px solid #F2F5FA;
  border-radius: 16px;
  text-align: center;
  padding: 40px;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products-section {
  padding: 0;
}
.products-section .row{
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
.products-section .col-md-4 {
  display: flex;
}
.product-box-section img {
  margin: 0 auto;
  border-radius: 0;
}
.product-box-section a{
  width: fit-content;
  display: inline-block;
  margin: 0 auto;
}
.product-box-section .logo {
  padding: 30px 0 60px 0;
}
.logos-line-section .row{
  border-top: 3px solid #F2F5FA;
  padding-top: 40px;
  border-bottom: 3px solid #F2F5FA;
  padding-bottom: 40px;
}
.logos-line-section .row .col {
  max-width: 200px;
}
.logos-line-section img {
  border-radius: 0;
  display: inline;
  margin: auto;
}
.landing-menu.sticky-top {
  z-index: 1000;
  position: sticky;
}

.product-image-wrapper {
   background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 40px;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.logo-wrapper {
  min-height: 100px;
}
.product-image-wrapper > img{
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .products-section .row {
    margin-bottom: 0;
  }
  .product-box-section {
    margin-bottom: 40px;
  }
  .contact-form-landing-page .bg-cover {
    min-height: 350px;
  }
  .big-landing-section {
    padding: 25px 16px;
  }
  .big-landing-section-image {
    margin-top: 30px;
  }
  .big-landing-section-image img {
    border-radius: 24px;
  }
  .section-text-center, .landing-vertical-slider .slide,.big-landing-section.blue-background {
  padding: 16px !important;
  }
  .section-text-center .col-md-4 {
    margin-bottom: 24px;
  }
  .no-background .big-landing-section-image {
    display: none !important;
  }
  .no-background {
  background: none;
  border-radius: 0;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.custom-footer .offices {
  margin-top: 50px;
}
.custom-footer .footer-links {
  padding-top: 50px;
}
.custom-footer .company-logos .logoSirmaMobile {
  display: block;
  width: 100%;
}
.custom-footer .company-logos .logoSirma {
  display: none
}
.custom-footer .container-fluid {
  padding: 30px 45px 30px 45px;
}
.custom-footer .footer-links .links {
  padding-bottom: 50px;
}
.contact-form-landing-page .name-email .control {
  width: 100%;
}
.contact-form-landing-page .inquiry {
  padding: 25px 15px;
}
.logos-line-section {
  display: none;
}
  .landing-vertical-slider .container {
    flex-direction: column;
    gap: 0;
  }

  .landing-vertical-slider .left-text {
    position: static;
    width: 100%;
    padding: 20px;
  }

  .landing-vertical-slider .slider-wrapper {
    position: static;
    height: auto;
    padding: 0;
  }

  .landing-vertical-slider .slider-sticky {
    position: static;
    top: auto;
  }

  .landing-vertical-slider .slide {
    position: static !important;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    padding: 20px;
  }

  .landing-vertical-slider .slide img {
    /* width: 100%; */
    height: auto;
  }
  .landing-vertical-slider .slide:first-child {
    box-shadow: none;
  }
  .landing-vertical-slider h3 {
    margin: 20px 0;
  }
  .landing-vertical-slider .left-text .text-section {
    width: 100%;
  }
  .landing-page h1,
  .apple-page h1,
  .business-page h1, 
  .sirmaAI-page h1 {
  font-size: 3.2rem;
  line-height: 3.4rem;
}
.big-landing-section.header-section .text-section-content {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.landing-page h2, .landing-page h3,
.apple-page h2, .apple-page h3,
.business-page h2, .business-page h3, .sirmaAI-page h2, .sirmaAI-page h3 {
  font-size: 2rem;
  line-height: 2.8rem;
}
.big-landing-section .text-section-content,
.section-text-center .text-section-content, 
.landing-vertical-slider .slider-wrapper .text-section-content, 
.small-landing-page .big-landing-section .text-section-content {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.section-text-center .text-logo-small {
  padding-top: 48px;
}


  /* Remove JavaScript effects on scroll in mobile */
  #sliderWrapper,
  #sliderSticky {
    transform: none !important;
  }
}


/* 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: 8px;
  font-size: 1.2rem;
  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;
  text-shadow: 0 0 var(--blue-800);
}

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

button {
  transform-origin: center;
}

button:active {
  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;
}
.sirmaAI-page .btn-lightblue {
  color: var(--white) !important;
  background: linear-gradient(90.86deg, rgba(103, 86, 225, 0.8) 1.89%, rgba(65, 207, 253, 0.8) 92.2%);
}

.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.4) !important;
  backdrop-filter: blur(6px);
  border-color: transparent;
  color: #fff !important;
}

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

.btn-close-modals {
  position: absolute;
  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: 14px !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:not(.btn-search) {
  background-image: url(../images/icon-close-white.svg) !important;
  background-size: 12px !important;
  background-color: var(--blue-900) !important;
}

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


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

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

.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;
}
.download-icon:before,
.download-icon:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  background-image: url(../images/download-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
  position: relative;
}
.download-icon:before{
  margin: 0;
  position: absolute;
  left: -32px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.btn-primary.arrow-right:hover,
.btn-primary.download-icon:hover {
  padding-right: 0px;
  padding-left: 47px;
}
@media screen and (min-width: 1200px) {
  .btn-primary.download-icon:hover {
    padding-right: 12px;
    padding-left: 60px;
  }
  .btn-primary.download-icon:hover:before,
  .btn-primary.download-icon.active:before {
    transform: translateX(62px) translateY(-50%);
  }
}

.btn-primary.arrow-right:hover:before,
.btn-primary.arrow-right.active:before,
.btn-primary.download-icon:hover:before,
.btn-primary.download-icon.active: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,
.btn-primary.arrow-right.active:after {
  background-image: url(../images/icon-arrow-right-blue.svg);
  transform: translateX(16px);
  opacity: 0;
}
.btn-primary.download-icon:hover:after,
.btn-primary.download-icon.active:after {
  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-lightblue.download-icon:before,
.btn-primary.btn-lightblue.download-icon:after,
.btn-primary.btn-white.download-icon:before,
.btn-primary.btn-white.download-icon:after,
.arrow-right-blue:after {
  background-image: url(../images/download-icon-light.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;
}

@media screen and (max-width: 1199px) {
  .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);
    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: 8px;
    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,
  .btn-primary.arrow-right.active:before {
    transform: translateX(62px) translateY(-50%);
  }

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

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

  .btn-scroll-top {
    border-radius: 50%;
  }

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

  /* body:not(.menu-opened) .btn-toggle-menu:hover, */
   body:not(.menu-opened) .btn-toggle-landing-menu:hover,
  body:not(.menu-opened) .btn-scroll-top:hover {
    background-color: var(--blue-grayish-300) !important;
  }

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

  body:not(.search-opened) .btn-toggle-search.dark {
    background-image: url(../images/icon-search-white.svg) !important;
    background-color: var(--blue-800) !important;
  }

  .search-opened .btn-toggle-search:not(.btn-search) {
    background-size: 14px !important;
  }
}
/* 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 */
@media screen and (min-width: 768px) {
  .home .card {
    padding: 48px;
  }

  .home .card.square {
    padding: 32px;
  }

  .home .card p {
    margin: 0;
    text-wrap: balance;
  }

  .home .card h3 {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
}

@media screen and (max-width: 1199px) {
  .content {
    padding-top: 80px;
  }
  .landing-page .content,
  .apple-page .content, 
  .business-page .content {
    padding-top: 0px;
  }

  .home .card {
    bottom: unset !important;
  }
}

@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;
  }

  body:not(.home):not(.landing-page):not(.business-page):not(.regional-page):not(.apple-page):not(.sirmaAI-page) .content {
    margin-right: 96px;
  }

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

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

  .content > .hero {
    padding-left: 80px;
    padding-right: 80px;
  }

  .width-xl-full {
    margin-left: -64px !important;
    margin-right: -64px !important;
    padding-left: 92px !important;
    padding-right: 92px !important;
  }

  .content > .prefooter,
  .content > footer {
    padding-left: 64px;
    padding-right: 64px;
  }

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

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

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

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

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

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

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

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

  .home h1,
  .home h2,
  .home .footer h2,
  .home .hero h1 {
    font-size: 4.4rem;
    line-height: 5rem;
  }

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

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

  .home .logos {
    margin: 80px 0 96px;
  }
}

@media screen and (min-width: 1300px) {
  .home h1,
  .home h2,
  .home .footer h2,
  .home .hero h1 {
    font-size: 5.2rem;
    line-height: 6rem;
  }
}

@media screen and (min-width: 1400px) {
  .home h1,
  .home h2,
  .home .footer h2,
  .home .hero h1 {
    font-size: 6.2rem;
    line-height: 6.4rem;
  }
}

@media screen and (min-width: 1600px) {
  section:not(footer):not(.hero):not(.prefooter):not(.careers)  {
    margin: 0 0 140px;
  }

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

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

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

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

  section:not(footer) {
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: -0.02em;
  }

  .home .logos {
    margin: 96px 0 108px;
  }
}
/* 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: 96px;
  height: 37px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url(../images/sirma-logo-dark-mobile.svg);
  background-size: 99%;
}

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

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

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

.header .search input,
.header .search .btn-search {
  margin: 0 12px 0 0;
  width: 0;
  transition: 0.2s ease;
  display: none;
}

.search-opened .header .search input {
  width: calc(50vw - 400px);
  min-width: 200px;
  display: block;
}

.header .search .btn-search {
  flex-shrink: 0;
  width: 48px;
}

.search-opened .header .search .btn-search {
  display: flex;
}

@media screen and (max-width: 1199px) {
  .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, 
  .download-opened .header {
    position: fixed;
    top: 0;
    left: 0;
  }

  .header > .btn-toggle-contact-form {
    min-width: 166px;
  }

  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 52px 0;
    transform: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: transparent;
    z-index: 1000;
  }

  .header .logo.dark {
    background-image: url(../images/sirma-logo-dark.svg);
  }

  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark,
  .menu-opened .logo.dark,
  .contact-opened .logo.dark, 
  .download-opened .logo.dark {
    width: 158px;
    height: 61px;
    margin: 0 auto 0 0;
    background-image: url(../images/sirma-logo-light.svg);
  }

  .header .search .btn-search {
    width: 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;
  max-width: 57.5vh;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.menu-opened .sidebar h6 .btn-toggle-menu,
body:not(.menu-opened) .sidebar h6 .btn-toggle-menu:hover {
  background: none !important;
}

.sidebar h6 a:after,
.sidebar h6 .btn-toggle-menu:after {
  content: "/";
  margin: 0 0 0 4px;
}

.sidebar .menu,
.sidebar .contact, 
.sidebar .download {
  position: fixed;
  height: 100%;
  top: 0;
  padding: 16px 24px 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s 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,
.download-opened .sidebar .download {
  transform: translateX(-24px);
  opacity: 1;
  visibility: visible;
}

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

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

.sidebar .menu a {
  color: var(--white);
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: -0.02rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-12px);
  transition-property: transform, opacity, visibity;
  transition-duration: 0.2s;
}

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

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

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

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

@media screen and (min-width: 992px) {
  .menu-sections-wrapper:first-child {
    margin: 0 0 40px;
  }

  .menu-section {
    width: 50%;
    padding: 0 24px 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .sidebar {
    top: 16px;
    left: auto;
    right: 16px;
    height: calc(100% - 32px);
    padding: 40px 0 30px;
  }

  .bg-darkblue .sidebar {
    background: rgba(255, 255, 255, 0.18);
    color: #fff !important;
  }

  .bg-darkblue .sidebar h6,
  .bg-darkblue .sidebar a {
    color: var(--white);
  }

  .bg-darkblue:not(.menu-opened) .sidebar .btn-toggle-menu {
    background-color: transparent !important;
  }

  .bg-darkblue:not(.menu-opened) .sidebar .btn-toggle-menu:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
  }

  .bg-darkblue:not(.menu-opened) .btn-toggle-menu {
    background-image: url(../images/icon-squares-small-white.svg);
  }

  .bg-darkblue .btn-scroll-top {
    background-image: url(../images/icon-caret-up-white.svg);
  }

  body.bg-darkblue:not(.menu-opened) .btn-scroll-top:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
  }

  .sidebar .menu,
  .sidebar .contact, 
  .sidebar .download {
    top: 16px;
    left: auto;
    right: -9px;
    width: 50%;
    height: calc(100% - 32px);
    padding: 45px 140px;
    border-radius: 16px;
    overflow: hidden;
  }

  .sidebar .menu a {
    font-size: 2rem;
    line-height: 2.8rem;
  }

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

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

@media screen and (min-width: 1400px) {
  .menu-sections-wrapper:first-child {
    margin: 0 0 64px;
  }
}

@media screen and (min-width: 1600px) {
  .sidebar h6 {
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: -0.02rem;
  }

  .menu-section + .menu-section {
    padding-left: 32px;
  }
}
/* End Sidebar */

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

.sidebar .contact h2, 
.sidebar .download h2 {
  font-size: 3.2rem;
  line-height: 3.4rem;
  letter-spacing: -0.03rem;
  margin: 26px 0 8px;
}

.sidebar .contact .link-terms, 
.sidebar .download .link-terms {
  color: var(--blue-400);
}

.sidebar .contact label[for="terms"] {
  font-size: 1.2rem;
}

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

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

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

form .control.active label {
  transform: translateY(-18px);
  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;
}

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.2rem;
}

.success-message,
.error-message {
  display: none;
  font-size: 1.4rem;
  border-radius: 32px;
  padding: 12px 16px;
  border: none;
  text-align: left;
  margin: -16px 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, 
  .sidebar .download {
    width: 50%;
    padding: 70px 180px 70px 140px;
  }

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

  .sidebar .contact label[for="terms"] {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  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: 2rem;
    line-height: 5rem;
    pointer-events: none;
  }

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

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

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

  .name-email .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,
  .download .custom-scrollbar {
    margin-top: 40px;
    max-height: 120%;
  }

  .sidebar .contact h2, 
  .sidebar .download 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 h2, 
  .sidebar .download h2 {
    font-size: 7.2rem;
    line-height: 7.4rem;
    margin: 28px 0 56px;
  }

  .sidebar .contact label[for="terms"] {
    margin: -8px 0 32px;
  }
}
/* End contacts */

/* Contact form inline */
.contact-form-inline {
  background: var(--blue-grayish-200);
  border-radius: 16px;
  padding: 0;
}

.contact-form-inline header {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 340px;
  padding: 24px;
  border-radius: 16px;
  color: var(--white);
  background-image: url(../images/woman-contact-form.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.contact-form-inline header > * {
  z-index: 5;
}

.contact-form-inline header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.13);
  z-index: 1;
}

.contact-form-inline header h2,
.contact-form-landing-page header h2 {
  font-size: 3.2rem;
  line-height: 3.4rem;
}

.contact-form-inline .inquiry {
  padding: 28px 24px 24px;
}

.contact-form-inline .control-wrapper ,
.contact-form-landing-page .control-wrapper {  
  flex-flow: row wrap;
}

.contact-form-inline .control-wrapper .control {
  width: 100%;
}

form label[for="terms"],
form label[for="terms-inquiry"] {
  margin: 0 0 24px;
  user-select: none;
  font-size: 1.6rem;
}

.link-terms {
  color: var(--blue-500);
  text-decoration: none;
}

.link-terms:hover {
  border-bottom: 1px solid;
}

@media screen and (max-width: 576px) {
  .contact-form-inline .name-email .control {
    width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .contact-form-inline form .control label,
  .contact-form-landing-page .control label,
  .contact-form-inline form .control.active label {
    position: static !important;
    line-height: 1.5 !important;
    margin: 0 0 10px !important;
    opacity: 1 !important;
    transform: none !important;
    font-size: 1.6rem !important;
    color: var(--blue-800) !important;
  }

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

@media screen and (min-width: 1200px) {
  .contact-form-inline form .control label,
  .contact-form-landing-page .control label,
  form label[for="terms-inquiry"] {
    font-size: 1.6rem;
    color: var(--blue-800) !important;
  }

  .contact-form-inline form .control.active label,
   .contact-form-landing-page form .control.active label {
    font-size: 1.6rem;
    color: var(--blue-grayish-400) !important;
  }

  .contact-form-inline label[for="message-inquiry"],
  .contact-form-landing-page label[for="message-inquiry"] {
    line-height: 4rem !important;
    margin: 8px 0 20px;
  }

  .contact-form-inline label[for="terms-inquiry"],
  .contact-form-landing-page label[for="terms-inquiry"] {
    margin: 8px 0 20px;
  }

  .contact-form-inline form .control,
  .contact-form-landing-page form .control {
    margin: 0 0 -10px;
  }

  .contact-form-inline {
    background-image: url(../images/woman-contact-form.jpg);
    background-position: center;
    background-size: cover;
    padding: 80px !important;
    border-radius: 24px;
    overflow: hidden;
  }

  .contact-form-inline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.13);
    z-index: 1;
  }

  .contact-form-inline .contact {
    position: relative;
    background-color: var(--blue-grayish-200);
    color: var(--blue-800);
    border-radius: 24px;
    padding: 36px;
    z-index: 5;
  }

  .contact-form-inline header {
    background: transparent;
    min-height: auto;
    color: var(--blue-800);
    padding: 0;
    overflow: visible;
  }

  .contact-form-inline header:before {
    display: none;
  }

  .contact-form-inline header h2 {
    font-size: 4rem;
    line-height: 4.4rem;
    margin: 0 0 8px;
  }

  .contact-form-inline .section-label {
    margin: 0 0 20px;
  }

  .contact-form-inline .inquiry {
    padding: 8px 0 0;
  }

  .contact-form-inline form .control textarea {
    border-radius: 24px;
    min-height: 120px;
  }

  .contact-form-inline [type="checkbox"] + label:after {
    top: 5px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1360px) {
  .contact-form-inline .contact {
    width: 66%;
  }
}

@media screen and (min-width: 1600px) {
  .contact-form-inline .contact {
    padding: 48px;
  }

  .contact-form-inline header h2 {
    font-size: 4.8rem;
    line-height: 5.2rem;
    margin: 0 0 8px;
  }

  .contact-form-inline form .control label,.contact-form-landing-page .control label {
    line-height: 7rem;
  }

  .contact-form-inline .inquiry {
    padding: 4px 0 0;
  }
}
/* End Contact form inline */

/* Related products */
.related-products {
  background: var(--blue-800);
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
}

.related-products .product:not(:last-child) {
  margin: 0 0 40px;
}

.related-products img {
  border-radius: 16px;
}

.related-products h3 {
  margin: 28px 0 20px;
  font-size: 2rem;
  line-height: 2.8rem;
  cursor: pointer;
  transition: 0.2s ease;
}

@media screen and (max-width: 1199px) {
  .related-products .product .image-wrapper {
    height: 294px;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
  }

  .related-products .product .image-wrapper img {
    object-fit: cover;
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .products-mobile {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
  }

  .products-mobile .product {
    width: calc(50% - 20px);
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
  }

  .products-mobile .product:last-child {
    margin: 0 0 40px;
  }

  .products-mobile .product a {
    margin-top: auto;
  }
}

@media screen and (min-width: 1200px) {
  .related-products {
    min-height: 600px;
    padding: 80px;
    border-radius: 24px;
  }

  .related-products .description:not(.active),
  .related-products .images img:not(.active) {
    display: none;
  }

  .related-products .titles {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .related-products h3 {
    display: flex;
    align-items: center;
    font-size: 3.2rem;
    line-height: 4rem;
    margin: 0 0 12px;
    opacity: 0.66;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateX(-42px);
    position: relative;
    top: -1px;
    user-select: none;
  }

  .related-products h3:hover {
    opacity: 0.83;
  }

  .related-products h3.active {
    opacity: 1;
    transform: translateX(0);
  }

  .related-products h3:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon-arrow-right-white.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    margin: 0 16px 0 0;
    opacity: 0;
    transition: 0.2s ease;
  }

  .related-products h3.active:before {
    opacity: 1;
  }

  .related-products .description {
    margin-top: 80px;
  }

  .related-products .btn-primary {
    background: var(--white);
    margin-top: 12px;
  }

  .related-products .images {
    height: 100%;
    aspect-ratio: 1/1;
  }

  .images-wrapper {
    aspect-ratio: 1/1;
  }

  .related-products img {
    border-radius: 24px;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 1600px) {
  .related-products {
    min-height: 800px;
    padding: 80px;
  }

  .related-products h3 {
    font-size: 3.6rem;
    line-height: 4rem;
    margin: 0 0 20px;
  }

  .related-products h3.active:before {
    width: 28px;
    height: 28px;
    background-size: 28px;
    margin: 0 24px 0 0;
  }

  .related-products .description {
    margin-top: 140px;
  }

  .related-products .btn-primary {
    margin-top: 24px;
  }
}
/* End Related products */

/* 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: 110%;
  animation: disappear;
  animation-duration: 2s;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 0.5s;
}

@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 33%, rgb(15 15 47 / 50%));
  z-index: 1;
}

.card.photo:after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.6)
  );
  z-index: -1;
}

.card.photo.darker-overlay:after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.6)
  );
  z-index: -1;
}

.hero.darker-overlay:after {
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(15 15 47 / 66%)
  ) !important;
}

.prefooter:after {
  background: linear-gradient(to bottom, transparent 33%, rgb(15 15 47 / 33%));
}

.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-home {
  border-radius: 0;
  margin: 0 !important;
  overflow: visible;
  background: transparent !important;
  justify-content: flex-start !important;
  min-height: unset !important;
  padding-top: 44px !important;
  padding-bottom: 0;
}

.hero.hero-gray {
  height: 600px;
  background: var(--blue-grayish-100);
  color: var(--blue-800);
}

.hero.hero-gray:before,
.hero.hero-gray:after {
  display: none;
}

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

.hero h1 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 3.4rem;
}

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

.hero.white {
  background-color: var(--blue-grayish-200);
  color: var(--blue-800);
  justify-content: flex-end;
  padding-top: 30px;
  margin: 0 0 24px;
  min-height: 300px;
}

.hero.white h1 {
  margin: 0;
}

.hero.hero-home h1 {
  margin: 0 0 24px;
}

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

.hero.hero-home .btn-primary {
  margin: 0 0 4px;
}
.landing-page .hero:not(.white):not(.hero-home),
.apple-page .hero:not(.white):not(.hero-home), 
.business-page .hero:not(.white):not(.hero-home),
.sirmaAI-page .hero:not(.white):not(.hero-home) {
  margin:  0;
    border-radius:  24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 32px);
    padding-top: 16px;
    padding-bottom: 16px;
}

@media screen and (max-width: 380px) {
  .hero-home h1 {
    font-size: 3.4rem;
  }
}

@media screen and (min-width: 567px) {
  .hero-home h1 {
    font-size: 4.2rem;
    line-height: 4.8rem;
  }
}

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

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .hero:not(.white):not(.hero-home) {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero.hero-home h1 {
    font-size: 5.4rem;
    line-height: 5.6rem;
  }

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

  section.careers-cta img {
    max-height: 400px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero.white:not(.hero-home) h1 {
    font-size: 5.4rem;
    line-height: 5.8rem;
  }
}

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

  .hero:not(.white):not(.hero-home) {
    margin: 0 0 100px;
  }


  .hero.hero-home {
    height: 100vh !important;
    justify-content: center;
    padding-top: 74px !important;
  }

  .hero h1 {
    font-size: 5.4rem;
    line-height: 5.6rem;
  }

  .hero.hero-home h1 {
    margin: 16px 0 40px;
  }

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

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

  .hero.white:not(.hero-home) {
    padding-top: 225px;
    height: auto;
    min-height: 500px;
    margin: 0 0 64px;
  }

  .hero:not(.white):not(.hero-home):after,
  .prefooter:after {
    background: rgba(0, 0, 0, 0.3);
    background: radial-gradient(transparent 40%, rgb(15 15 47/77%));
  }

  .hero.darker-overlay:after {
    background: radial-gradient(transparent, rgb(15 15 47 / 84%)) !important;
  }

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

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

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

@media screen and (min-width: 1600px) {
  .hero:not(.white):not(.hero-home) {
    margin: 0 0 160px;
  }

  .hero.white:not(.hero-home) {
    min-height: 600px;
    margin: 0 0 72px;
  }

  .hero h1 {
    font-size: 7.2rem;
    line-height: 7.4rem;
  }

  .hero.hero-home h1 {
    margin: -16px 0 48px;
  }

  .hero .hero-button-wrapper {
    margin-top: 8px;
  }
}
.hero-button-wrapper .btn-primary {
  margin-left: 16px;
}
/* End Hero & Prefooter */

/* Custom scrollbar */
@media screen and (min-width: 1200px) {
  .regional-page .custom-scrollbar {
   overflow-y: hidden;
  }
  .custom-scrollbar {
    overflow-y: auto;
    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: 88px 0 0;
  }

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

  .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: 1600px) {
  .custom-scrollbar {
    max-height: 100%;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .sidebar .menu,
  .sidebar .contact {
    padding: 36px 140px 36px 96px;
  }

  .custom-scrollbar {
    padding-right: 24px !important;
  }

  .menu .custom-scrollbar {
    margin-top: 40px;
  }

  .contact .custom-scrollbar {
    margin-top: 24px;
    max-height: 94%;
  }
}
/* End Custom scrollbar */

/* Dimmer */
.dimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 900;
  background: #060620ed;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out;
}

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

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

/* 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 0 24px;
  padding: 0;
}

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

.section-label.square-orange:before {
  background: var(--orange-600);
}

.section-label.square-green:before {
  background: var(--green-600);
}

.section-label.square-purple:before {
  background: var(--purple-600);
}

.section-label.no-before:before {
  display: none;
}

.menu .section-label:before,
.contact:not(.contact-inline) .section-label:before,
.footer .section-label:before {
  display: none;
}

.hero .section-label:before,
.prefooter .section-label:before,
.bg-darkblue .section-label:before {
  background: var(--blue-400);
}

.section-label.gray:before {
  display: none;
}

.section-label.gray {
  color: var(--blue-grayish-400);
}

@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 6px 0 0;
  }
}

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

/* Sections */
section {
  padding: 30px 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

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;
}

.home section.careers {
  margin: 0;
}

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

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

section.clients .logos {
  margin: 0;
}

section.careers-cta {
  border-radius: 16px;
  padding: 40px 20px;
  margin: 0 0 40px;
}

section.careers-cta.gray {
  background-color: var(--blue-grayish-200);
}

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

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-purple {
  background-color: var(--purple-300) !important;
}

button.bg-purple:hover,
a.bg-purple:hover {
  background-color: var(--purple-400) !important;
}

.bg-green {
  background-color: var(--green-300) !important;
}

button.bg-green:hover,
a.bg-green:hover {
  background-color: var(--green-400) !important;
}

.bg-orange {
  background-color: var(--orange-300) !important;
}

button.bg-orange:hover,
a.bg-orange:hover {
  background-color: var(--orange-400) !important;
}

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

.home.bg-lightblue section .btn-primary:not(.btn-blurred) {
  background-color: var(--blue-800) !important;
  color: var(--white) !important;
}

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

.home.bg-darkblue section .btn-primary:not(.btn-blurred) {
  background-color: var(--blue-400) !important;
  color: var(--blue-800) !important;
}

.home.bg-darkblue section .btn-primary:not(.btn-blurred):after,
.home.bg-darkblue section .btn-primary:not(.btn-blurred):before {
  background-image: url(../images/icon-arrow-right-blue.svg) !important;
}

.home.bg-lightblue .card,
.home.bg-darkblue .card,
.home.bg-white .card,
.home.bg-darkblue .hero.white {
  color: var(--white) !important;
}

.home.bg-white,
.home.bg-white .footer h2,
.home.bg-white .footer,
.home.bg-white .footer a {
  color: var(--blue-800) !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.partnerships {
  padding: 24px 8px 40px;
}

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

@media screen and (min-width: 768px) {
  section.careers-cta img {
    margin: 0 0 0 auto;
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  section.careers-cta h2 {
    font-size: 5.2rem;
    line-height: 5.2rem;
    margin: 0 0 32px;
  }

  .home section.partnerships {
    padding: 60px 0 0;
    margin-bottom: 96px !important;
  }
}

@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 24px;
  }

  .home .latest .section-label-wrapper .section-label {
    margin: 0 0 48px;
  }

  section.careers-cta {
    height: 600px;
    padding: 80px 64px;
    border-radius: 24px;
  }

  section.careers-cta > .container-fluid,
  section.careers-cta .row,
  section.careers-cta .image-wrapper,
  section.careers-cta .image-wrapper img {
    height: 100%;
  }

  .home section#clients {
    padding-top: 0 !important;
  }

  .home section#partnerships,
  .home section.careers {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

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

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

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

.prefooter h3 {
  font-size: 2rem;
  line-height: 2.4rem;
  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;
}

.prefooter .tns-outer,
.prefooter .tns-inner,
.prefooter .tns-item {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  z-index: 10;
  flex-grow: 1;
  width: 100%;
}

.prefooter .tns-item {
  animation: none !important;
  transition: none !important;
}

.prefooter [data-action],
.prefooter .tns-nav {
  display: none;
}

.prefooter .slider-nav {
  z-index: 15;
}

.prefooter .slider-nav button {
  background-color: var(--blue-grayish-200) !important;
}

.prefooter .slider-nav button:hover {
  background-color: var(--blue-grayish-300) !important;
}

.prefooter .slider-nav button:before {
  background-image: url(../images/icon-caret-up-blue.svg);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center;
}

.prefooter .slider-nav .slider-nav-left:before {
  transform: rotate(-90deg);
}

.prefooter .slider-nav .slider-nav-right:before {
  transform: rotate(90deg);
}

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

@media screen and (max-width: 576px) {
  .prefooter .slider-nav {
    top: 30px;
    right: 32px;
    display: flex;
    flex-flow: column nowrap;
  }

  .prefooter .slider-nav button {
    margin: 0 0 6px;
  }

  .prefooter .slider-nav button:before {
    background-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .prefooter .slider-nav {
    right: 38px;
    top: 28px;
  }
}

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

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

  .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;
  }

  .prefooter .slider-nav {
    top: 68px;
    right: 80px;
  }
}

@media screen and (min-width: 1600px) {
  .prefooter {
    margin-top: 160px;
  }
}
/* End Prefooter */

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

body:not(.home) .footer {
  border-radius: 0 0 24px 24px;
  margin-top: -28px;
  padding-top: 88px;
}

.home .footer {
  background: transparent;
}

.footer.standalone {
  margin-top: 40px !important;
  border-radius: 24px !important;
  padding: 60px 24px !important;
}

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

.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);
}

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

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

.footer p span, .custom-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;
}

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

@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: 192px 64px 60px !important;
  }

  .home .footer {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }

  .footer.standalone {
    padding: 160px 80px 48px !important;
  }

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

  .footer .footer-header-label {
    margin: 0 0 16px;
  }

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

  .footer .legal {
    font-size: 1.6rem;
    line-height: 2rem;
    margin: 84px 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;
  }
}

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

@media screen and (min-width: 1600px) {
  .footer.standalone {
    padding: 200px 80px 48px !important;
  }

  .footer .legal {
    margin: 160px 0 0;
  }

  .home .footer h2,
  .footer h2 {
    font-size: 8rem;
    line-height: 8rem;
    margin: 0 0 40px;
  }

  body:not(.home):not(.landing-page):not(.apple-page):not(.business-page):not(.sirmaAI-page) {
    padding-bottom: 818px;
    position: relative;
  }

  body:not(.home) section  {
    position: relative;
    z-index: 5;
  }
  body:not(.home):not(.sirmaAI-page):after {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    width: calc(100% - 128px);
    height: calc(100% - 850px);
    background: var(--white);
    z-index: 1;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  body:not(.home) .footer {
    padding-top: 224px !important;
    position: fixed;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 128px);
    z-index: 0;
  }
}
/* End Footer */

/* Logos */
.logos {
  margin: 48px 0 60px;
  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;
  position: relative;
}

.logos .logo.outlined {
  background-color: #fff;
  border: 2px solid var(--blue-grayish-200);
}

.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%;
}

a.logo-link {
  width: 36px;
  height: 36px;
  display: block;
  background-image: url(../images/icon-arrow-right-blue.svg);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 50;
  background-color: #fff;
  border-radius: 16px 0 16px 0;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--blue-grayish-200);
  opacity: 1;
  visibility: visible;
  transition: 0.2s ease;
}

@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%;
  }
  a.logo-link {
    width: 48px;
    height: 48px;
    background-size: 16px;
  }
}
/* End Logos */

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

/* Nav cards */

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

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

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

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

.nav-cards a:before {
  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 16px 0 0;
  position: relative;
  top: -1px;
  left: 0;
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-cards a.active:before {
  opacity: 1;
  visibility: visible;
}

.nav-cards a span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.bg-darkblue .nav-cards a.active:before {
  background-image: url(../images/icon-arrow-right-white.svg);
}

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

.nav-cards-image.no-background {
  background: none;
  display: none !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.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);
}

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

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

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

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

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

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

@media screen and (min-width: 1600px) {
  .nav-cards {
    margin-bottom: 400px;
  }

  .nav-cards a {
    font-size: 3.2rem;
    line-height: 3.4rem;
    margin: 0 0 20px;
    transform: translateX(-32px);
  }

  .nav-cards a:before {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}
/* End Nav Cards */

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

.numbered {
  counter-increment: numbers;
}

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

.numbered:before,
.checkmarked:before {
  content: counter(numbers, decimal-leading-zero);
  margin: 0 0 auto;
  display: block;
  width: 48px;
  line-height: 48px;
  font-family: "SirmaNumerals", JetBrainsMono, sans-serif;
  font-size: 2rem;
  text-align: center;
  color: var(--blue-800);
  background: var(--white);
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.checkmarked:before {
  content: "";
  background-image: url(../images/icon-check-lightblue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

/* Card Feature */
.card-list ul {
  margin: 0 0 24px;
}

.card-list li {
  margin: 0 0 2px;
}
.regional-page .card-list li:before {
  display: none
}

.card-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 16px 0 0;
  background: var(--blue-800);
  position: relative;
  top: -2px;
}

@media screen and (min-width: 1200px) {
  .numbered:before,
  .checkmarked:before {
    width: 60px;
    line-height: 60px;
    font-size: 2.4rem;
  }
}
/* End Card Feature */

/* Card Feature Square */
.card-list.card-square {
  width: 100%;
  min-height: 183px;
}

.section-with-img .card-list.card-square {
  min-height: auto;
  aspect-ratio: auto;
  background: #fff;
  border-radius: 24px;
  margin-bottom: 80px;
}
.section-with-img .card-list.card-square h4 {
  margin: 60px 0 20px 0;
}

.section-with-img .stick-top{
  top: 175px !important;
}
.section-with-img .card-list.card-square::before {
  display: none
}
.card-list.card-square.extra-content {
  height: auto !important;
  min-height: auto !important;
  aspect-ratio: auto;
}

.card-list.card-square.extra-content p:last-child {
  margin: 0;
}

.card-list.card-square.extra-content strong + p {
  margin-top: 1.5rem !important;
}

.card-list .card-list.card-square {
  background: var(--blue-grayish-250);
}

.card-square.text-lg strong {
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: -0.02rem;
}

.card-square:not(.numbered):before,
.card-square:not(.numbered) .icon {
  content: "";
  margin: 0 0 auto;
  display: block;
  width: 48px;
  height: 48px;
  /* background: url(../images/icon-cloud.svg) no-repeat;
  background-size: contain; */
  flex-shrink: 0;
  border-radius: 0;

  background-image: url(../images/icon-check-lightblue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

.card-square:not(.numbered):not(.has-icon):before,
.card-square:not(.numbered):not(.has-icon) .icon {
  background-color: var(--white);
  border-radius: 50%;
}

.card-square:not(.numbered) .icon {
  background: none;
  content: unset;
  background-size: unset;
}

.card-square.has-icon:before {
  display: none;
}

.card-square:not(.numbered) .icon + strong {
  margin-top: 20px !important;
}

.card-square:not(.numbered).large-icon .icon {
  width: 60px;
  height: 60px;
}

.card-list > *:last-child,
.card-list .row > [class^="col-"]:last-child > *:last-child {
  margin-bottom: 0 !important;
}

.card-list > *:empty {
  margin: 0 !important;
  padding: 0 !important;
}

@media screen and (max-width: 1199px) {
  .home .card.numbered:before {
    border-radius: 4px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    line-height: 36px;
  }
}

@media screen and (min-width: 1200px) {
  .card-list.card-square {
    aspect-ratio: 1/1.1;
    margin-bottom: 36px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    text-wrap: balance;
    padding: 42px;
  }

  .card-list .card-list.card-square {
    padding: 32px;
  }

  .card-square:not(.numbered):before,
  .card-square:not(.numbered) .icon {
    width: 60px;
    height: 60px;
  }

  .card-square:not(.numbered).large-icon .icon {
    width: 90px;
    height: 90px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .card-square.text-lg.large-icon strong {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}

@media screen and (min-width: 1600px) {
  .card-list.card-square {
    aspect-ratio: auto;
    margin-bottom: 48px;
    padding: 48px;
  }

  .card-list .card-list.card-square {
    padding: 48px;
  }

  .card-square.text-lg strong {
    font-size: 3.2rem;
    line-height: 3.4rem;
  }
}
.card-list.slider-background {
  color: var(--white);
}
.card-list.slider-background .btn-primary{
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: none;
}
.card-list.slider-background h3{
  font-size: 4.8rem;
}
@media screen and (min-width: 1600px) {
  .landing-vertical-slider .card-list::before {
    margin-bottom: 40%;
  }
}
.landing-vertical-slider .card-list::before {
    margin-bottom: 40%;
}
/* End Card Feature Square */
/* Business Pages */

.business-page .container-fluid .landing-page-menu {
  padding: 0 25px;
}
.business-page .landing-menu.sticky-top,.business-page #contact-form-landing-page,.business-page .custom-footer{
margin-bottom: 0 !important;
}
.business-page .hero:not(.white):not(.hero-home), 
.hero.no-full-height:not(.white):not(.hero-home) {
  min-height: 800px;
  height: 800px;
  margin: 0 0 160px;
}
.business-page .full-screen {
  padding-left: 0;
  padding-right: 0;
}
.business-page  .careers-cta {
  margin: auto !important;
}
 .card-list.has-background{
    min-height: 730px;
   }
     .business-page .card-list.card-square.extra-content {
  height: auto !important;
  min-height: auto !important;
  aspect-ratio: 1;
}
   .business-page   .card-number .number {
    font-size: 8.6rem;
    line-height: 6.8rem;
  }
.business-page   .card-list .bottom-content .btn-primary {
  margin: 0;
}
.business-page   .card-list .bottom-content p {
  margin: 20px 0;
}
.business-page  .nav-cards p {
margin-top: 40px;
}
.clients.partnerships h1 {
  margin-bottom: 46px;
}
/* Base state: hidden */
.menu-item .dropdown-full {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px); /* small slide down */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  padding: 43px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 16px;
}

/* On hover: visible */
.menu-item:hover .dropdown-full,
.menu-item .dropdown-full:hover,
.landing-page-menu nav .menu-item:hover .dropdown-full {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item-menu {
  text-align: left;
  padding: 0 20px;
}

.dropdown-item-menu img {
  max-height: fit-content !important;
}
.dropdown-item-menu h3 {
  padding: 30px 0;
}
.dropdown-item-menu p {
  max-width: 80%;
}
.dropdown-full .col-md-6:first-child {
    border-right: 1px solid #98A6B8;
  }
 @media screen and (max-width: 768px) {
.business-page .card-list {
          min-height: auto !important;
 }
 .container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.card-list.card-square.extra-content {
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: auto;
}
.grey-design-testimonials .card-quote {
    padding: 174px 45px 120px !important;
}
  .hero-landing-page .text-section .call-to-button .btn-primary {
    display: inline !important;
  }
}

/* End Business Pages */

/* When sectionB follows sectionA, remove margin-bottom */
.hero + .context-anchor-menu {
  margin-top: 0 !important;
}

.hero:has(+ .context-anchor-menu) {
  margin-bottom: 0 !important;
}

/* ContextAnchorMenu */
.context-anchor-menu {
  position: sticky !important;
  top: 16px;
  z-index: 999 !important;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
  margin-bottom: 0 !important;
  padding-top: 0;
}

.context-anchor-menu .context-anchor-menu-row {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(242, 245, 250, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #2A2859;
    border-radius: 16px;
    margin: 0;
    backdrop-filter: blur(64px);
}

.context-anchor-menu .text-col {
  min-height: 40px;
}

/* when visible */
.context-anchor-menu.visible {
  opacity: 1;
  transform: translateY(0);
}

.context-anchor-menu p {
  margin: 0;
  font-weight: 700;
}
.context-anchor-menu .meni-item {
  color: #2A2859;
  text-decoration: none;
  font-size: 1.6rem;
  padding: 2rem 3rem;
  border-radius: 8px;
}
.context-anchor-menu .meni-item:hover, .context-anchor-menu a.active {
  backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 1);
  color: #2A2859;
}
/* --- Base Styles --- */
.context-anchor-menu nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

/* --- Hamburger Button --- */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

/* --- Mobile Behavior --- */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .context-anchor-menu p {
    display: inline-block;
  }
  .context-anchor-menu .menu-toggle {
    float: right;
    float: right;
    background-image: url(../images/icon-caret-up-blue.svg);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    transform: rotate(180deg);
  }
  .context-anchor-menu .menu-toggle.active {
    transform: rotate(360deg);
  }

  .context-anchor-menu .col-8 {
    width: 100%;
  }

  .context-anchor-menu .menu-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 1rem;
  }

  .context-anchor-menu .menu-nav.active {
    display: flex;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.7);
    margin-top: 0;
  }

  .meni-item {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }
  .menu-nav {
    background: #201F4A;
  }
  .menu-col {
    padding: 0;
  }
  .context-anchor-menu .meni-item {
    margin: 0;
    padding: 10px calc(var(--bs-gutter-x) * 0.5);
  }
  .context-anchor-menu {
    border-radius: 0;
    top: 80px;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0 -8px;
  }
  .context-anchor-menu  .container-fluid {
    padding: 0 !important;
  }
  .context-anchor-menu .context-anchor-menu-row {
    padding-top: 0;
    padding-bottom: 0;
  }
  .context-anchor-menu .meni-item:hover, .context-anchor-menu a.active {
    border-radius: 0;
  }
  .context-anchor-menu .text-col {
    background: rgba(242, 245, 250, 1);
    padding-top: 16px;
    padding-bottom: 16px;
  }
  
}

.markdown-content :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 20px;
} 




/* End ContextAnchorMenu */

/* Grey Design Testimonials */
.grey-design-testimonials .slider-wrapper {
  background: none;
  color:  var(--blue-800);
  margin: 0 -64px auto;
  width: calc(100% + 128px);
  max-width: initial;
}
@media screen and (max-width: 1200px) {
  .grey-design-testimonials .slider-wrapper {
    max-width: 100%;
    margin: 0;
  }

}
.grey-design-testimonials .quote-wrapper .tns-nav {
  display: none !important;
}
  .grey-design-testimonials .card-quote {
min-height: inherit;
    background: #F2F5FA;
    padding: 174px 0 120px;
  }
  .grey-design-testimonials .slider-nav .slider-nav-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
  }
  .grey-design-testimonials .slider-nav .slider-nav-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
  }
  @media screen and (max-width: 768px) {
    .grey-design-testimonials .slider-nav {
    display: none;
  }

}
  .grey-design-testimonials  .slider-nav {
    position: initial;
   }
/* End Grey Design Testimonials */


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

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

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

@media screen and (min-width: 768px) {
  .card-list.stick-top,
  [class^="col-"].stick-top .card-list {
    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: 48px;
  }

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

  .stick-top {
    top: 66px;
  }

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

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

.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: 1199px) {
  .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;
  transition: 0.2s ease;
  cursor: default;
}

.card-person .image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  background: var(--blue-grayish-250);
}

.card-person .image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.card-person .info {
  padding: 20px 24px;
  border-radius: 0 0 16px 16px;
}

.card-person .info h4 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 2px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.card-person .info .role {
  color: var(--blue-grayish-400);
  line-height: 1.3;
}

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

.has-plus-after:after {
  content: "";
}

.card-person button.show-more,
.card-client-list button.show-more:after,
.has-plus-after: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,
.has-plus-after.toggled:after {
  transform: rotate(135deg);
}

.card-person .person-linkedin {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  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;
  background-size: 18px;
}

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

  .card-person:hover {
    z-index: 20;
    background: var(--blue-grayish-250);
  }

  .card-person .text {
    position: relative;
    min-height: 105px;
  }

  .card-person .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 18px 22px;
    border-radius: 16px;
    background: var(--blue-grayish-200);
    transition: 0.2s ease;
  }

  .card-person:hover .info {
    background: var(--blue-grayish-250);
    height: auto;
  }

  .card-person .info .role {
    font-size: 1.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 70px;
    transition: max-height 1s ease;
  }

  .card-person:hover .info .role {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    white-space: normal;
    max-height: 400px;
    transition: max-height 1s ease;
    color: var(--blue-grayish-500);
  }

  .card-person .person-linkedin {
    top: 16px;
    left: 22px;
  }
}
/*End Card for person*/

/* Card Case Study */
.card-case-study {
  border-radius: 16px;
  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: 2rem;
  line-height: 2.8rem;
  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.2rem;
    line-height: 3.8rem;
    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;
  }
}

@media screen and (min-width: 1600px) {
  .card-client-list h2 {
    font-size: 3.8rem;
    line-height: 4.4rem;
    margin: 0 0 24px;
  }
}
/* 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: 163px;
  padding: 24px 24px 20px;
  border-radius: 12px;
}

.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.6rem;
  line-height: 3.6rem;
  letter-spacing: -0.03em;
  position: relative;
  font-family: SirmaNumerals, "JetbrainsMono";
  font-weight: 400;
}

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

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

  .card-number {
    min-height: 150px;
    border-radius: 24px;
    padding: 28px 28px 18px;
    height: 240px;
  }

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

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

  .card-number .number.more-than:after {
    width: 20px;
    height: 20px;
    top: 2px;
    right: -28px;
  }
}

@media screen and (min-width: 1600px) {
  .card-number {
    padding: 46px 48px 48px;
    width: calc(50% - 24px);
    aspect-ratio: 1/1;
    min-height: auto;
    height: auto;
  }

  .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: 7.2rem;
    line-height: 5.4rem;
  }

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

  .has-3 .card-number .number.more-than:after {
    right: -28px;
  }
}
/* 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 20px;
}

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

.card-list p + .row,
.card-list a + .row {
  margin-top: 16px;
}

.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: 12px;
  margin-bottom: 36px;
}

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

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

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

.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;
  aspect-ratio: 1 / 1;
  max-width: 174px;
}

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

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

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

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

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

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

.tag {
  background: var(--blue-grayish-300);
  padding: 4px 12px;
  font-size: 1.2rem;
  border-radius: 4px;
  letter-spacing: 0.02rem;
}

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

.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 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: 2rem !important;
    line-height: 2.4rem !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;
    margin: 0 0 48px;
  }

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

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

  .card-list.h-auto.stick-top:not(.header-normal) h3 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  .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 .image {
    border-radius: 24px;
  }

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

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

  .tag {
    font-size: 1.6rem;
    padding: 5px 12px;
  }

  .card-list.h-auto.has-image.image-size-medium .image img {
    width: 80px;
  }

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

@media screen and (min-width: 1600px) {
  .card-list:before {
    margin: 0 0 36px;
  }

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

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

  .card-list p + .row,
  .card-list a + .row {
    margin-top: 20px;
  }

  .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;
  }

  .card-list .btn-primary {
    margin-top: 24px;
    margin-bottom: 36px;
  }

  .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.image-size-medium .image img {
    width: 90px;
  }

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

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

  .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;
  }

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

.card-list.has-image-header {
  padding: 0;
}
.card-list.has-image-header .card-feature-image-header {
  width: 100%;
}
.card-list.has-image-header  .bottom-content {
  padding: 50px;
}
/* End card lists */

/* Card with icon */
.card-with-icon .tag {
  margin: 0 4px 6px 0;
  font-size: 1.4rem;
}

.card-with-icon .info a {
  margin: 0;
}

@media screen and (min-width: 1200px) {
  .card-with-icon .tag {
    font-size: 2rem;
    padding: 10px 20px;
    margin: 0 6px 6px 0;
  }
}

@media screen and (min-width: 1600px) {
  .card-with-icon .tag {
    padding: 12px 24px;
  }
}
/* End Card with icon */

/* Cards with year */
.card-year {
  background: var(--blue-800);
  color: var(--white);
  padding: 24px;
  margin: 0 0 24px;
  border-radius: 16px;
}

.card-year .year {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "JetbrainsMono";
  background: var(--white);
  border-radius: 50%;
  color: var(--blue-800);
  font-size: 1.2rem;
  margin: 0 0 20px;
}

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

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

@media screen and (min-width: 1200px) {
  .card-year {
    padding: 48px;
    margin-bottom: 48px;
    border-radius: 24px;
    min-height: 370px;
  }

  .card-year h3 {
    text-wrap: balance;
  }
}
@media screen and (min-width: 1600px) {
  .card-year h3 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}
/* End Cards with year */

/* Card with quote */
.card-quote {
  padding: 100px 22px 30px;
  border-radius: 16px;
  cursor: grab;
  user-select: none;
  min-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 */

/* Collapsible */
.collapsible + .collapsible {
  margin-top: 16px;
}

.collapsible button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-radius: 8px;
  background: var(--blue-grayish-200);
  border: none;
  outline: none;
  color: var(--blue-800);
  transition: 0.2s ease;
  text-align: left;
}

.collapsible button.text-large {
  font-size: 2.4rem;
  line-height: 2.8rem;
}

.collapsible button:hover {
  background: var(--blue-grayish-300);
}

.collapsible button:after {
  width: 16px;
  height: 16px;
  background-size: 16px;
  margin: 0 0 0 24px;
  flex-shrink: 0;
}

.collapsible .more {
  display: none;
  padding: 24px 0;
}

.collapsible .more > p:only-child {
  margin: 0;
}

@media screen and (min-width: 1200px) {
  .collapsible button {
    padding: 24px 40px;
  }

  .collapsible button:after {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }

  .collapsible .more {
    padding: 36px 0;
  }

  .collapsible button.text-large {
    font-size: 3.8rem;
    line-height: 4.2rem;
  }
}

@media screen and (min-width: 1600px) {
  .collapsible button {
    padding: 30px 40px;
  }

  .collapsible button:after {
    width: 28px;
    height: 28px;
    background-size: 28px;
  }

  .collapsible button.text-large {
    font-size: 4.8rem;
    line-height: 5.4rem;
  }

  .collapsible .more {
    padding: 48px 0;
  }
}
/* End Collapsible */

/* 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);
}

.slider-wrapper,
.card-quote.single {
  background-image: url(../images/testimonial-background.svg);
  background-repeat: no-repeat;
  background-position: center 10rem;
}

.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:hover,
.slider-nav button:active {
  background: var(--blue-950);
}

.slider-nav button + button {
  margin-left: 4px;
}

.slider-nav button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/icon-caret-right.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.slider-nav .slider-nav-left:before {
  transform: rotate(180deg);
}

.tns-slider {
  cursor: grab;
}
/* End Tinyslider */

/* Pill buttons */
.pill {
  padding: 3px 12px 3px;
  background: var(--blue-grayish-350);
  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;
  text-shadow: 0 0  var(--blue-800)7a;
  user-select: none;
}

.pill.active {
  background: var(--blue-800);
  color: var(--white);
}

@media screen and (min-width: 1600px) {
  .pill {
    margin: 0 16px 16px 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;
  flex-shrink: 0;
}

.quote-author .photo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.quote-author .title {
  color: var(--blue-grayish-400);
  line-height: 1.4;
  text-wrap: balance;
}

.quote-author .details {
  font-family: "JetbrainsMono";
  font-size: 1.4rem;
}

@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: calc(50% - 30%);
    top: 40px;
  }

  .quote-author .photo img {
    width: 60px;
    height: 60px;
  }
}

@media screen and (min-width: 1200px) {
  .pill {
    padding: 5px 12px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .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.6rem;
    letter-spacing: -0.03em;
    margin: 0 0 40px;
    font-weight: 700;
  }

  .card-quote {
    padding: 210px 0 48px;
    border-radius: 24px;
    min-height: 600px;
  }

  .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: calc(50% - 33%);
    top: 100px;
  }

  .slider-nav button {
    width: 60px;
    height: 60px;
  }

  .slider-nav button:before {
    background-size: 12px;
  }

  .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) {
  .card-quote {
    min-height: 640px;
  }

  .quote-text {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}
/* End Quote */

/* Load more */
.load-more {
  margin: 44px 0 60px;
}

@media screen and (min-width: 1200px) {
  .load-more {
    margin: 80px 0 96px;
  }
}

/* End Load more */

/* 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: 20%;
}

.parallax.icon-at-top .image img {
  top: 25%;
}

.parallax.image-at-top .icon img {
  top: 40%;
}

.parallax.image-at-top .image img {
  top: 10%;
}

.hero-home .parallax {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 72px;
  padding: 0;
}

.hero-home .parallax .col-left,
.hero-home .parallax .col-right {
  width: 27%;
  flex-shrink: 0;
  flex-grow: 0;
}

.hero-home .parallax .col-center {
  width: calc(46% - 32px);
  flex-shrink: 0;
  flex-grow: 0;
}

.hero-home .parallax img {
  width: 100%;
}

.hero-home .parallax .card-number-left {
  top: 0;
}

.hero-home .parallax .icon-left-circle {
  z-index: -5;
  top: 128px;
  width: 25% !important;
  margin-left: auto;
}

.hero-home .parallax .icon-left-square {
  z-index: -5;
  top: 136px;
  width: 25% !important;
  margin-left: auto;
}

.hero-home .parallax .icon-center-square {
  width: 33% !important;
  margin: 0 auto 8px 0;
  top: 0;
  border-radius: 0 !important;
}

.hero-home .parallax .img-center {
  top: 30px;
  z-index: 5;
}

.hero-home .parallax .card-number-center {
  top: 46px;
}

.hero-home .parallax .icon-center-circle {
  width: 20% !important;
  margin-left: auto;
  top: -48px;
}

.hero-home .parallax .card-number-right {
  top: 57px;
}

.hero-home .parallax .icon-right-square {
  width: 25% !important;
  top: 44px;
  border-radius: 0;
}

.hero-home .parallax .img-right {
  width: 50% !important;
  top: 106px;
}

.hero-home .card-number {
  display: flex !important;
  width: 100%;
  max-width: 24vw;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 14px 14px 4px;
  background: var(--blue-grayish-200);
  transition:
    transform 1s cubic-bezier(0.33, 0.92, 0.6, 1.01),
    background 0.4s ease;
}

.bg-darkblue .hero-home .card-number {
  background: var(--blue-850);
  color: var(--white);
}

.hero-home .card-number .label {
  font-size: 1rem;
}

.hero-home .card-number .number {
  font-size: 1.8rem;
}

.hero-home .card-number .number:after {
  right: -18px;
  width: 12px;
  height: 12px;
}

.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: 567px) {
  .hero-home .card-number .number {
    font-size: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .hero-home .parallax .icon-left-circle {
    top: 306px;
  }

  .hero-home .parallax .icon-left-square {
    top: 320px;
  }

  .hero-home .parallax .img-center {
    top: 52px;
  }

  .hero-home .parallax .card-number-center {
    top: 82px;
  }

  .hero-home .parallax .icon-center-circle {
    top: -105px;
  }

  .hero-home .parallax .icon-right-square {
    top: 90px;
  }

  .hero-home .parallax .card-number-right {
    top: 110px;
  }

  .hero-home .parallax .img-right {
    top: 256px;
  }

  .parallax.careers {
    margin: 0;
  }

  .parallax.careers .img-center-top {
    top: 20%;
  }

  .parallax.careers .img-center-bottom {
    left: -87px;
  }

  .hero-home .card-number {
    padding: 24px 24px 12px;
    max-width: auto;
  }

  .hero-home .card-number .label {
    font-size: 1.6rem;
  }

  .hero-home .card-number .number {
    font-size: 3.6rem;
  }

  .hero-home .card-number .number:after {
    width: 16px;
    height: 16px;
    right: -22px;
    top: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .parallax.careers {
    max-width: 66.666%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .hero-home .parallax {
    margin-top: 60px;
  }

  .hero-home .parallax .img-center {
    top: 54px;
  }

  .hero-home .parallax .icon-left-circle {
    top: 213px;
  }

  .hero-home .parallax .icon-left-square {
    top: 224px;
  }

  .hero-home .parallax .card-number-center {
    top: 76px;
  }

  .hero-home .parallax .icon-center-circle {
    top: -73px;
  }

  .hero-home .parallax .icon-right-square {
    top: 78px;
  }

  .hero-home .parallax .card-number-right {
    top: 96px;
  }

  .hero-home .parallax .img-right {
    top: 176px;
  }

  .hero-home .card-number {
    max-width: 11vw;
  }

  .hero-home .card-number .number {
    font-size: 2.8rem;
  }

  .parallax.careers {
    max-width: 66.666%;
    min-width: 1000px;
    margin: 0 auto;
  }

  .parallax.careers .img-center-bottom {
    width: 33vw !important;
    left: 13vw;
  }

  .parallax.careers .img-center-top {
    width: 250px !important;
  }
  .home .card.square h3 .parallax.careers .img-right {
    left: 80px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1240px) {
  .hero.hero-home h1 {
    margin-top: 48px;
  }

  .hero-home .card-number .number {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 1400px) {
  .hero-home .card-number .number {
    font-size: 3.6rem;
  }

  .hero-home .card-number {
    max-width: 12vw;
  }

  .hero-home .parallax .icon-left-circle {
    top: 247px;
  }

  .hero-home .parallax .icon-left-square {
    top: 257px;
  }

  .hero-home .parallax .icon-center-circle {
    top: -109px;
  }

  .hero-home .parallax .card-number-right {
    top: 102px;
  }

  .hero-home .parallax .img-right {
    top: 205px;
  }
}

@media screen and (min-width: 1600px) {
  .hero-home .col-xl-6:first-child {
    width: 42%;
    margin-top: -32px;
  }

  .hero-home .col-xl-6:last-child {
    width: 58%;
  }

  .hero-home .parallax .col-left,
  .hero-home .parallax .col-right {
    width: 26%;
  }

  .hero-home .parallax .col-center {
    width: calc(48% - 56px);
  }

  .hero-home .parallax .img-center {
    top: 90px;
  }

  .hero-home .parallax .card-number-center {
    top: 128px;
  }

  .hero-home .parallax .icon-left-circle {
    top: 442px;
    width: 28% !important;
  }

  .hero-home .parallax .icon-left-square {
    top: 460px;
    width: 28% !important;
  }

  .hero-home .card-number {
    max-width: 13vw;
    padding: 28px 28px 10px;
  }

  .hero-home .card-number .number {
    font-size: 5rem;
  }

  .hero-home .card-number .number:after {
    width: 24px;
    height: 24px;
    right: -32px;
    top: 12px;
  }

  .hero-home .parallax .card-number-right {
    top: 173px;
  }

  .hero-home .parallax .icon-center-circle {
    top: -138px;
    width: 30% !important;
  }

  .hero-home .parallax .icon-right-square {
    top: 144px;
  }

  .hero-home .parallax .img-right {
    top: 375px;
  }

  .parallax.careers .img-center-top {
    width: 300px !important;
    top: 30%;
  }

  .parallax.careers .img-center-bottom {
    width: 30vw !important;
  }
}

@media screen and (min-width: 1900px) and (max-width: 1930px) {
  .hero-home .parallax .img-center {
    top: 90px;
  }

  .hero-home .parallax .icon-right-square {
    top: 144px;
  }

  .hero-home .parallax .card-number-right {
    top: 166px;
  }

  .hero-home .parallax .img-right {
    top: 356px;
  }

  .hero-home .parallax .card-number-center {
    top: 126px;
  }

  .hero-home .parallax .icon-center-circle {
    top: -122px;
  }

  .hero-home .parallax .icon-left-circle {
    top: 412px;
  }

  .hero-home .parallax .icon-left-square {
    top: 430px;
  }
}
/* End Parallax */

/* Article */
.article {
  padding: 0;
  margin: 40px 0;
  position: relative;
  z-index: 5;
}

.article-content {
  width: calc(100% - 76px);
  margin: 0 auto;
}

.article-content.full-width {
  width: 100% !important;
  max-width: 100% !important;
}

.article > *:not(img):not(.article-content) {
  margin: 0 auto 24px;
}

.article-content > *:not(img):not(iframe):not(.article-content) {
  margin: 0 auto 24px;
}

.article img,
.article iframe {
  margin: 40px auto;
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
}


.article img.large {
  max-width: 100%;
  width: calc(100% - 32px);
}

.article h2 {
  font-size: 4.800rem;
  line-height: 5.2rem;
}

.article h3 {
  font-size: 3.2rem;
  line-height: 3.4rem;
}

.article p > a {
  border-bottom: 1px solid var(--blue-400);
  text-transform: none;
  text-decoration:none;
  color:var(--blue-800);
  font-weight: bold;
}

.article blockquote {
  background: var(--blue-grayish-200);
  padding:50px;
  border-radius:24px;
  font-size: 2.8rem;
  line-height: 3.2rem;
  font-family: TTNormsPro, Tahoma, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.article blockquote::before  {
  content: ''; /* Required! */
  display: inline-block; /* Or block, depending on layout */
  width: 52px;           /* Set size */
  height: 35px;
  background-image: url(../images/blockquote.png);
  background-size: cover; /* Or 'contain' if needed */
  background-repeat: no-repeat;
  transform-origin: center;
  margin-bottom: 40px;
}


.article-content h2,
.article-content h3 {
  margin-top: 54px !important;
  margin-bottom: 24px !important;
}

.article h4 {
  font-size: 2rem;
  line-height: 2.8rem;
}

.article-content strong,
.article-content b {
  font-weight: 500;
  text-shadow: 0 0 var(--blue-800);
}

.article-content li {
  margin-left: 0;
  margin-bottom: 1.75rem;
}

.article-content li:before {
  content: "";
  background: var(--blue-800);
  width: 24px;
  height: 2px;
  position: relative;
  top: -5px;
  left: 0;
  display: inline-block;
  margin: 0 24px 0 0;
}

@media screen and (min-width: 1200px) {
  .article {
    margin: 60px 0;
  }

  .article-content {
    width: 50%;
    font-size: 2rem;
    line-height: 2.8rem;
  }

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

  .article h3 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }

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

  .article img,
  .article iframe {
    margin: 54px auto;
  }

  .article img.large {
    width: calc(100% - 160px);
  }

  .article-content > ul {
    display: flex;
    flex-flow: row wrap;
    gap: 28px;
  }

  .article-content > ul > li {
    width: calc(50% - 14px);
  }
}

@media screen and (min-width: 1600px) {
  .article-content > *:not(img):not(iframe):not(.article-content) {
    margin: 0 auto 40px;
  }

  .article img,
  .article iframe {
    margin: 64px auto;
  }

  .article-content h2,
  .article-content h3 {
    margin-top: 64px !important;
  }

  .article-content > ul {
    gap: 40px;
  }

  .article-content > ul > li {
    width: calc(50% - 20px);
  }
}
/* End Article */

/* LeadGenBig */
.lead-gen-big {
  background: var(--blue-400);
  border-radius: 24px;
  padding: 48px;
}
.lead-gen-big.lead-header {
  background: var( --blue-grayish-350);
  padding: 24px;
  border-radius: 16px;
  position: relative;
}
.lead-gen-big .tag {
  font-size: 16px;
  background:none;
  text-transform: uppercase;
  padding: 0;
 }
 .lead-gen-big .tag.header-label {
  display: none
 }
 .lead-gen-big.lead-header .tag {
  display: none;
 }
 .lead-gen-big.lead-header .tag.header-label {
  font-size: 12px;
  display: block;
 }
 .lead-gen-big h2 {
  margin: 0 !important;
  font-size: 32px;
 }
 .lead-gen-big.lead-header h2{
  font-size: 20px;
  line-height: 28px;
}
 .lead-gen-big img {
  margin: 0;
 }
 .lead-gen-big .col-12.col-md-7 {
  position: relative; 
}
 .lead-gen-big .button-container {
  margin-top: 20px;
}
.lead-gen-big.lead-header .file-size{
  margin-top: 15px;
}
.lead-gen-big.lead-header .button-container {
  display: none;
}
.lead-gen-big.lead-header .clickable-cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  text-decoration: none;
}
.lead-gen-big .clickable-cover {
  display:none;
}
.lead-gen-big .row {
  display: flex;
  flex-wrap: wrap;
}

.lead-gen-big .row .col-12.col-md-7 {
  order: 1; 
}

.lead-gen-big .row .col-12.col-md-5 {
  order: 2; 
}
@media screen and (max-width: 768px) {
  .lead-gen-big {
    padding: 31px;
  }
  .lead-gen-big.lead-header {
    margin-top: 21px;
  }
  .lead-gen-big.lead-header .col-12.col-md-5 {
    display: none;
  }
  .lead-gen-big.lead-header h2 {
    display: none
  }
  .lead-gen-big.lead-header .tag.header-label {
    right: 15px;
    display: inline-block;
    left: auto;
    margin: 0;
    
  }
  .lead-gen-big.lead-header .tag.header-label {
    font-size: 12px;
  }
  .lead-gen-big .row {
    flex-direction: column; 
  }
  .lead-gen-big .row .col-12.col-md-7 {
    order: 2; 
  }
  .lead-gen-big .row .col-12.col-md-5 {
    order: 1;
    margin-bottom: 25px;
  }
  .lead-gen-big h2 {
    margin: 20px 0 !important;
    font-size: 20px;
  }
  .lead-gen-big.lead-header .row .flex-column {
    flex-direction: initial !important;
  }
  /* .lead-gen-big .button-container {
    position: relative;
    padding: 0;
    margin-top: 56px;
  } */
  .lead-gen-big .tag{
    font-size: 12px;
  }
}
/*  End LeadGenBig */

/* Card Article */
.card-article {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  position: relative;
  border-radius: 16px;
  background-color: var(--blue-grayish-200);
  transition: 0.2s ease;
  margin: 0 0 24px;
  min-height: 512px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}

.card-article:hover {
  background-color: var(--blue-grayish-300);
}

.card-article a {
  text-decoration: none;
  display: flex;
  flex-flow: column nowrap;
  color: var(--blue-800);
  flex-grow: 1;
}

.card-article .img-wrapper {
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.card-article .img-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.33)
  );
  z-index: 1;
}

.card-article.full .img-wrapper:before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.4)
  );
}

.card-article img {
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: 0.4s ease;
}

.card-article:hover img {
  transform: scale(1.1);
}

.card-article .meta-wrapper {
  padding: 24px;
}

.card-article .tag, .articles-slider .tag{
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  font-family: "JetbrainsMono";
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-transform: uppercase;
}
.card-article .section-label {
  color: var(--blue-grayish-400);
  margin: 0 0 14px;
}

.card-article.full .section-label {
  color: var(--white);
  opacity: 0.7;
}

.card-article .section-label:before {
  display: none;
}

.card-article h3 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 0 20px;
}

.card-article.full {
  background-color: transparent;
}

.card-article.full a {
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

.card-article.full .meta-wrapper {
  display: flex;
  flex-flow: column nowrap;
  flex-grow: 1;
  justify-content: flex-end;
  width: 100%;
}

.card-article.full .img-wrapper {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1199px) {
  .card-article.full .btn-primary {
    margin: 0;
  }
}

@media screen and (min-width: 1200px) {
  .card-article {
    border-radius: 24px;
    min-height: 512px;
  }

  .card-article .meta-wrapper {
    padding: 32px 40px 40px;
  }

  .card-article.large .meta-wrapper {
    padding: 40px;
  }

  .card-article:not(.full) .meta-wrapper {
    flex-grow: 1;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
  }

  .card-article .tag, .articles-slider .tag{
    top: 36px;
    left: 40px;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    padding: 6px 12px;
  }

  .card-article.large .tag,
  .card-article.full .tag {
    top: 40px;
    left: 40px;
  }

  .card-article.small .tag {
    top: 32px;
  }

  .card-article h3 {
    font-size: 2rem;
    line-height: 2.8rem;
    margin-bottom: 28px;
    text-wrap: balance;
  }

  .card-article.large h3,
  .card-article.full h3 {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }

  .card-article .arrow-right.standalone {
    margin: 0;
  }

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

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

  .card-article .img-wrapper {
    height: 336px;
  }

  .card-article .meta-wrapper {
    padding: 32px 48px 48px;
  }

  .card-article.large .meta-wrapper {
    padding: 48px;
  }

  .card-article .tag,
  .card-article.large .tag,
  .card-article.full .tag,
  .articles-slider .tag {
    top: 48px;
    left: 48px;
  }

  .card-article.small .tag {
    top: 36px;
  }

  .card-article.large h3,
  .card-article.full h3 {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
}
/* End Card Article */

/* Standalone arrow icon */
.arrow-right.standalone {
  padding: 0 !important;
  margin: 40px 0 0;
  width: 60px;
  height: 60px;
}

.arrow-right.standalone:after {
  margin: 0;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.arrow-right.standalone:before {
  background-size: 16px;
  width: 16px;
  height: 16px;
  margin-left: -3px;
}

@media screen and (min-width: 1200px) {
  .arrow-right.standalone {
    margin: 24px 0 0;
  }

  .arrow-right.standalone:before {
    margin-left: -8px;
  }
}
/* End Standalone arrow icon */

/* Related products slider */
.related-products-slider .slider-wrapper {
  background: none;
}

.related-products-slider a {
  display: flex;
  flex-flow: column nowrap;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 24px;
  color: #fff;
  background: var(--blue-800);
  text-decoration: none;
  min-height: 512px;
  transition: 0.2s ease;
}

.related-products-slider a:hover {
  background: var(--blue-850);
}

.related-products-slider .meta-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  order: 2;
  flex-grow: 1;
  padding: 24px;
}

.related-products-slider img {
  border-radius: 16px;
}

.related-products-slider h3 {
  font-size: 2rem;
  line-height: 2.8rem;
  margin: 0 0 16px;
  text-wrap: balance;
}

@media screen and (min-width: 768px) {
  .related-products-slider .slider-nav {
    top: -56px;
    right: 20px;
  }

  .related-products-slider .img-wrapper {
    height: 290px;
    overflow: hidden;
    display: flex;
  }

  .related-products-slider .img-wrapper img {
    object-fit: cover;
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .slider-related-products {
    margin-top: 12px;
  }

  .related-products-slider .slider-nav {
    top: -72px;
    right: 16px;
  }

  .related-products-slider .slider-nav button {
    background: var(--blue-grayish-200);
    transition: 0.2s ease;
  }

  .related-products-slider .slider-nav button:hover {
    background: var(--blue-grayish-300);
  }

  .related-products-slider .slider-nav button:before {
    background-image: url(../images/icon-caret-up-blue.svg);
    background-size: 20px;
    transform-origin: center;
  }

  .related-products-slider .slider-nav-left:before {
    transform: rotate(-90deg);
  }

  .related-products-slider .slider-nav-right:before {
    transform: rotate(90deg);
  }

  .related-products-slider a {
    flex-flow: row nowrap;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    min-height: 420px;
    padding: 40px;
    border-radius: 24px;
  }

  .related-products-slider .meta-wrapper {
    flex-grow: 1;
    flex-shrink: 0;
    width: 55%;
    padding: 0 48px 0 0;
    order: 1;
  }

  .related-products-slider h3 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  .related-products-slider .img-wrapper {
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    width: 45%;
    height: auto;
    order: 2;
  }

  .related-products-slider img {
    object-fit: cover;
    border-radius: 24px;
  }
}

@media screen and (min-width: 1600px) {
  .slider-related-products {
    margin: 0;
  }

  .related-products-slider .slider-nav {
    top: -84px;
  }

  .related-products-slider a {
    padding: 48px;
  }

  .related-products-slider h3 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}
/* End Related products slider */

/* Article Slider */
  .articles-slider {
    background:  var(--blue-800);
    border-radius: 24px;
    padding: 80px;
  }
  @media screen and (max-width: 768px) {
    .articles-slider {
      padding: 30px 20px;
      margin-bottom: 30px;
    }
  }
 .related-products-slider.articles-slider .slider-nav button::before {
   background-image: url(../images/icon-caret-up-dots.svg);
   background-size: 14px;
 }
  .related-products-slider.articles-slider .slider-nav-left::before {
    transform: rotate(-1800deg);
  }
  .related-products-slider.articles-slider .slider-nav-right::before {
    transform: rotate(180deg);
  }
  .related-products-slider.articles-slider  .slider-nav button{
    background: #201F4A;
    transition: 0.2s ease;
  }
  .related-products-slider .slider-nav button:hover {
    background: #201F4A;
  }
  .articles-slider .section-label {
    color: var(--white);
  }
  .articles-slider h1 {
    margin: 36px 0;
    max-width: 50%;
    font-size: 7.2rem;
    line-height: 7.2rem;
  }
  .articles-slider .product {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    position: relative;
    border-radius: 24px;
    transition: 0.2s ease;
    margin: 0 0 24px;
    min-height: 550px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    background-size: cover;
  }
  .articles-slider  a:hover {
   background-size: cover;
}
  .articles-slider .product .meta-wrapper{
    display: flex;
    flex-flow: column nowrap;
    flex-grow: 1;
    justify-content: flex-end;
    width: 100%;
    z-index: 1;
  }
.articles-slider .product .section-label {
  color: var(--white);
  opacity: 0.7;
  margin: 0 0 12px;
}
.articles-slider .product .section-label::before {
  display: none;
 }
 .articles-slider .img-wrapper {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .articles-slider .img-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  }
 @media screen and (min-width: 768px) and (max-width: 1199px) {
  .articles-slider h1 {
    margin: 36px 0;
    max-width: 100%;
    font-size: 3.8rem;
    line-height: 4.2rem;
  }
  .articles-slider .product {
    min-height: 450px;
  }
    .articles-slider {
  padding: 30px;
}
 }
 @media screen and (max-width: 768px) {
  .articles-slider h1 {
    margin: 12px 0;
    max-width: 100%;
    font-size: 3.2rem;
    line-height: 3.4rem;
    }
      .articles-slider .slider.slider-related-products   > div:nth-child(n+5) {
    display: none; /* hide from the 5th onward */
  }
    .articles-slider img {
    height: 100%;
  }
  .articles-slider .product {
    min-height: 450px;
  }

 }

/* End Article Slider */

/* Card link hero */
.card-link {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  position: relative;
  border-radius: 16px;
  padding: 32px;
  margin-left: auto;
  transition: 0.2s ease;
  aspect-ratio: 1/1;
  min-height: 320px;
  min-width: 50%;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  background-size: cover;
  background-repeat: no-repeat;
}

.card-link.colored.has-image {
  background-image: none !important;
}

.card-link.colored .image {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 37.5%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}

.card-link.colored .image img {
  border-radius: 0;
}

.card-link > * {
  position: relative;
  z-index: 5;
}

.card-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.6;
  z-index: 0;
  transition: 0.2s ease;
}

.card-link:hover:before {
  background: rgba(0, 0, 0, 0.4);
}

.card-link .section-label {
  color: var(--white);
  margin: 0 0 10px;
}

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

  .card-link h3 {
    font-size: 4.8rem;
    line-height: 5.2rem;
  }

  .card-link.colored .image {
    width: 42.5%;
  }
}
/* End Card link hero */

/* Card link colored */
.card-link.colored {
  color: var(--blue-800);
  background-position: bottom 32px right 32px;
  background-repeat: no-repeat;
  background-size: 37.5%;
  margin: 0 0 24px;
  transition: 0.25s ease;
}

.card-link.colored:hover {
  background-blend-mode: screen;
  background-size: 35%;
}

.card-link.colored.bg-green {
  background-image: url(../images/icon-square-rectangle-green.svg);
}

.card-link.colored.bg-purple {
  background-image: url(../images/icon-square-rectangle-purple.svg);
}

.card-link.colored.bg-orange {
  background-image: url(../images/icon-square-rectangle-orange.svg);
}

.card-link.colored:before {
  display: none;
}

.card-link.colored h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  text-wrap: balance;
}

@media screen and (min-width: 1200px) {
  .card-link.colored h3 {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}

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

/* End Card link colored */

/* Background dark blue */
.bg-darkblue-extended {
  background: var(--blue-800) !important;
  color: var(--white) !important;
  position: relative;
  z-index: 4 !important;
  transform: translate3d(
    0,
    0,
    0
  ); /* Don't remove. Fixes the element not respecting its z-index and overlapping the hero on Safari */
}

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

.bg-darkblue-extended .nav-cards a:before {
  background-image: url(../images/icon-arrow-right-white.svg);
}

.bg-darkblue-extended + .bg-darkblue-extended {
  z-index: 3 !important;
}

.bg-darkblue-extended + .bg-darkblue-extended + .bg-darkblue-extended {
  z-index: 2 !important;
}

.bg-darkblue-extended
  + .bg-darkblue-extended
  + .bg-darkblue-extended
  + .bg-darkblue-extended {
  z-index: 1 !important;
}
.bg-darkblue-extended .subSectionIcone {
  width: 96px;
  height: 96px;
  background: #262551;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 35px;
}
.bg-darkblue-extended  h3{
  margin-bottom: 45px;
}

.bg-darkblue-extended-top:before {
  content: "";
  position: absolute;
  top: -398px;
  left: 0;
  width: 100%;
  height: 400px;
  background: var(--blue-800);
  z-index: -5;
}

.bg-darkblue-extended-end {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  margin-bottom: 36px;
}

@media screen and (min-width: 1200px) {
  .bg-darkblue-extended-end {
    padding-bottom: 80px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}
/* End Background dark blue */

/* Vendors ecosystem */
.vendors-ecosystem {
  background: var(--blue-grayish-200);
  border-radius: 16px;
  padding: 32px 24px 8px;
}

.card-vendors {
  background: var(--blue-grayish-250);
  border-radius: 16px;
  padding: 24px 24px 12px;
  margin: 0 0 24px;
}

.card-vendors h3 {
  font-size: 2rem;
  margin: 0 0 16px;
}

.card-vendors .vendor-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  margin: 0 0 24px;
}

@media screen and (min-width: 1200px) {
  .vendors-ecosystem {
    border-radius: 24px;
    padding: 48px 48px 24px;
  }

  .card-vendors {
    padding: 36px 36px 16px;
    margin: 0 0 36px;
    border-radius: 24px;
  }

  .card-vendors h3 {
    font-size: 2.8rem;
    line-height: 3.4rem;
    margin: 0 0 28px;
  }

  .vendor-logo-wrapper {
    margin-top: 24px;
  }
}

@media screen and (min-width: 1600px) {
  .card-vendors {
    margin: 0 0 40px;
  }

  .card-vendors h3 {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
}
/* End Vendors ecosystem */

/* Contact page */
body.page-contact .contact-form-inline {
  z-index: 10;
}

.section-collapsibles > div + div {
  margin-top: 48px;
}

@media screen and (max-width: 1199px) {
  body.page-contact .hero {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0 0 -16px;
    padding-bottom: 40px;
    min-height: 316px;
  }
}

@media screen and (min-width: 1200px) {
  body.page-contact .hero {
    margin: 0 0 -32px !important;
    min-height: 532px !important;
    padding-bottom: 104px;
  }

  .section-collapsibles > div + div {
    margin-top: 68px;
  }

  body.page-contact .offices-content-sticky {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  body.page-contact section + .prefooter {
    margin-top: 0;
  }
}
@media screen and (min-width: 1600px) {
  body.page-contact .hero {
    min-height: 632px !important;
  }
}
/* End Contact page */

/* ESG */
.social-initiatives [data-action="stop"] {
  display: none;
}

.social-initiative {
  display: flex;
  margin: 0 0 24px;
  border-radius: 16px;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.social-initiative img {
  object-fit: cover;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .collapsible-wrapper {
    margin-top: 60px;
  }

  .has-large-icon .col-6.icon {
    transform: scale(2);
    transform-origin: center left;
    z-index: -1;
  }

  .has-large-icon .col-6.image + .col-6.icon {
    transform-origin: center right;
  }

  .social-initiative {
    border-radius: 24px;
  }
}
/* End ESG */

/* Locale Dropdown */
.header .locale-dropdown {
  margin: 0 10px 0 auto;
  position: relative;
  z-index: 1000;
}

.search-opened .locale-dropdown {
  display: none;
}

.locale-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  outline: none;
  border-color: transparent !important;
  color: var(--blue-800);
}

.locale-icon {
  display: block;
}

.locale-icon.locale-globe img {
  width: 18px;
}

.locale-icon.locale-caret img {
  width: 12px;
  transition: 0.2s ease;
}

.locale-icon.locale-close {
  display: none;
}

.locales-label {
  font-size: 1rem;
  font-weight: 400;
  font-family: "JetbrainsMono", sans-serif;
  text-transform: uppercase;
  color: var(--white);
  margin: 10px 0;
}

.header .locales {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 50;
  background: var(--blue-800) !important;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
  min-width: 100px;
}

.header .locale-dropdown a {
  font-size: 1.6rem;
  font-weight: 400;
  background: transparent;
  display: flex;
  align-items: center;
  margin: 0;
  text-decoration: none;
  padding: 4px 0;
  color: var(--white);
  user-select: none;
}

.header .locale-dropdown a:hover {
  color: var(--blue-400);
}

.header .locale-dropdown a.active {
  color: var(--blue-400);
  pointer-events: none;
}

.header .locale-dropdown.opened .locale-icon.locale-caret img {
  transform: rotateZ(180deg);
}

.locale-lang {
  margin: 0 0 0 4px;
  opacity: 0.6;
}

@media screen and (max-width: 1200px) {
  .locale-btn {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media screen and (min-width: 1200px) {
  .locale-btn {
    gap: 10px;
    background: var(--white) !important;
  }

  .home .locale-btn {
    background: var(--blue-grayish-200) !important;
  }

  .locale-icon.locale-caret img {
    width: 16px;
  }

  body:not(.home) .locale-caret {
    display: none;
  }

  body:not(.home) .locale-dropdown.opened .locale-globe {
    display: none;
  }

  body:not(.home) .locale-dropdown.opened .locale-close {
    display: block;
  }

  .locale-close img {
    width: 16px;
  }

  .locale-icon.locale-globe img {
    width: 22px;
  }

  .header .locales {
    width: 100%;
    min-width: 180px;
  }
}
/* End Locale Dropdown */

/* Management */
.people h2 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin: 0 0 32px;
}

.people h2.inner {
  margin-top: 48px;
}

.people .row + .collapsible {
  margin-top: 88px;
}

.people .collapsible .section-label {
  margin: 24px 0 20px;
}

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

  .people h2.inner {
    margin-top: 60px;
  }

  .people .collapsible .section-label {
    margin-top: 20px;
  }
}

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

  .people h2.inner {
    margin-top: 84px;
  }
}

/* End Management */

/* Privacy policy */
.privacy-policy h2,
.privacy-policy h3 {
  margin: 32px 0 24px;
}

.privacy-policy ul {
  list-style: disc;
  list-style-position: inside;
}
/* End Privacy policy */

/* Search */
.searched-term {
  color: var(--blue-400);
}

.search-results {
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.search-results ul li {
  margin: 0 0 12px;
  list-style: disc;
  list-style-position: inside;
}

.search-results ul li a {
  text-decoration: none;
  color: var(--blue-800);
}

.search-results ul li a:hover {
  text-decoration: underline;
}
/* End search */

/* Video wrapper */
.video-wrapper {
  display: flex;
  width: 100%;
}

.video-wrapper-inner {
  width: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.video-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient( var(--blue-800)e8, var(--blue-800));
  z-index: -1;
  transition: 0.3s ease;
}

.video-overlay:hover:after {
  opacity: 0.97;
}

.video-overlay h3 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-wrap: balance;
  margin: 0 0 24px;
}

.video-text {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.btn-play-video {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  transition: 0.2s ease;
  width: 48px;
  height: 48px;
}

.btn-play-video img {
  width: 100%;
}

.video-overlay:hover .btn-play-video {
  transform: scale(1.1);
}

.btn-play-video:hover {
  transform: scale(1.1);
}

.btn-play-video:active {
  transform: scale(0.9) !important;
}

.video-btn-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.btn-play-video-text {
  font-weight: 700;
  font-size: 1.6rem;
  margin-left: 24px;
  opacity: 0;
  transform: translateX(-24px);
  transition: 0.25s ease;
}

.video-overlay:hover .btn-play-video-text {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (min-width: 480px) {
  .video-overlay h3,
  .btn-play-video-text {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  .video-overlay {
    padding: 48px;
  }

  .video-text {
    margin-top: 16px;
  }

  .video-overlay h3 {
    font-size: 2.8rem;
    line-height: 3.6rem;
    max-width: 66%;
    margin: 0 0 42px;
  }

  .btn-play-video {
    width: 64px;
    height: 64px;
  }

  .btn-play-video-text {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .video-overlay h3,
  .btn-play-video-text {
    font-size: 3.4rem;
    line-height: 4.2rem;
  }

  .btn-play-video {
    width: 76px;
    height: 76px;
  }
}

@media screen and (min-width: 1200px) {
  .video-wrapper-inner {
    border-radius: 24px;
  }

  .video-overlay {
    border-radius: 24px;
    padding: 80px 92px;
  }

  .video-text {
    margin-top: 24px;
  }

  .btn-play-video {
    width: 84px;
    height: 84px;
  }
}

@media screen and (min-width: 1400px) {
  .video-text {
    margin-top: 36px;
  }

  .video-overlay h3 {
    font-size: 4.2rem;
    line-height: 4.8rem;
    margin: 0 0 64px;
  }

  .btn-play-video-text {
    font-size: 4.2rem;
    margin-left: 32px;
  }

  .btn-play-video {
    width: 96px;
    height: 96px;
  }
}

@media screen and (min-width: 1600px) {
  .video-wrapper-inner {
    aspect-ratio: 16 / 8;
  }

  .video-text {
    margin-top: 48px;
  }

  .video-overlay h3 {
    font-size: 5.2rem;
    line-height: 5.8rem;
    margin: 0 0 88px;
  }

  .btn-play-video-text {
    font-size: 5.2rem;
  }
}

/* End video wrapper */
/* Banner infographic */
.banner-infographic .banner-inner {
  background: var(--blue-grayish-200);
  border-radius: 16px;
  padding: 0;
}
.banner-infographic .banner-content {
  flex-flow: column nowrap;
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  padding: 80px 140px;
  text-align: left;
  align-items: baseline;
}
.banner-infographic .banner-logo {
  margin: 0 0 40px;
}
.banner-infographic .banner-content h2 {
  font-size: 2rem;
  line-height: 2.8rem;
  margin: 0 0 24px;
}
.banner-infographic .banner-content .text {
  margin: 0 0 24px;
}
.banner-infographic .banner-content p:empty {
  display: none;
}
.banner-infographic .banner-inner .emphasized {
  font-weight: 600;
  margin: 0 0 24px;
}
.banner-infographic .banner-inner .emphasized span {
  padding: 0 6px 0 8px;
  position: relative;
}
.banner-infographic .banner-inner .emphasized span + span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--blue-800);
  opacity: 0.4;
  flex-shrink: 0;
}
.banner-infographic .banner-content .bullets {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 16px;
  white-space: nowrap;
}
.banner-infographic .banner-content .pi-pullup-container {
  margin: 24px 0 16px;
}
.banner-infographic .banner-image {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background:  var(--blue-800);
}
.banner-infographic .banner-center .banner-image {
  position: relative;
  z-index: 9;
}
.banner-infographic .banner-image img  {  
  border-radius: 24px;
  width: 100%;
  height: 100%;
  display: block;
  transform: none;
}
.banner-infographic .banner-center .wrapper{
  position: relative;
  width: 100%;
}
.banner-infographic .banner-center .banner-image img{
  border-radius: 24px;
  width: 100%;
  height: auto;
  display: block;
}
.banner-infographic .banner-center .banner-content{
  padding: 80px 140px;
  background: var(--blue-grayish-200);
  width: 50%;
  border-radius: 24px;
  position: relative;
  top: -40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.parallax-content .banner-content{
  padding: 80px 140px;
  background: var(--blue-grayish-200);
  border-radius: 24px;
  position: relative;
  top: -40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.parallax-icon img {
  width: auto !important;
}
.parallax-icon.centerRightImage img {
  left: 60%;
  top: 15%;
}
/* Right column: logo image */
.banner-content-wrapper.centerRightImage .banner-logo {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  width: 40%;            /* adjust width as needed */
}
.banner-content-wrapper.centerLeftImage .banner-logo {  
  display: flex;
  flex-direction: column;
  justify-content: flex-end;     /* push to bottom */
  align-items: flex-end;         /* push to right */
  width: 40%;  /* adjust width as needed */
}
.banner-content-wrapper .banner-logo img {
  max-width: 100%;               /* scale image to fit column */
  height: auto;
}
.banner-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  border-radius: 24px;
  position: relative;
}
.banner-infographic .btn-primary {
  margin-top: 46px;
}
@media screen and (min-width: 576px) {
  .banner-infographic .banner-content h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .banner-infographic .banner-inner {
    border-radius: 24px;
  }
  .banner-infographic .banner-content .bullets {
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-infographic .banner-logo {
    margin: 0 0 28px;
  }
  .banner-infographic .banner-content h2 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .banner-infographic .banner-center .banner-content {
    padding: 50px 30px;
    display: block;
    background: var(--blue-grayish-200);
    left: 0;
    transform: inherit;
    width: 100%;
    border-radius: 24px;
    position: relative;
    top: 0;
  }
  .banner-infographic .banner-content, .banner-infographic .banner-center .banner-content {
    padding: 25px;
  }
  .banner-content-wrapper.centerLeftImage .banner-logo {
    display: none
  }
  .banner-infographic .parallax-content {
    width: 100%;
  }
  .banner-infographic .parallax-icon {
    display: none
  }
   .banner-infographic .parallax {
    margin-top: 40px;
  }
  .banner-infographic .center-image-infogafic .banner-image {
    background: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .banner-infographic  .banner-center .banner-content {
    padding: 80px 80px;
    width: 70%;
  }
  .banner-infographic .banner-content {
    padding: 25px;
  }
  .banner-infographic .parallax {
    margin-top: 40px;
  }
}

/* Banner Infographic for SirmaAI */
.banner-infographic.is-sirma-ai .banner-inner, .banner-infographic.is-sirma-ai .parallax-content .banner-content {
  background: #2A2859;
}
.banner-infographic.is-sirma-ai .btn-primary {
  background: linear-gradient(90.86deg, rgba(103, 86, 225, 0.8) 1.89%, rgba(65, 207, 253, 0.8) 92.2%);
}

.banner-infographic.is-sirma-ai .sirma-ai-title-center {
  font-size: 4.8rem;
  text-align: center;
  line-height: 5.2rem;
  width: 80%;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 94px;
}
.banner-infographic.is-sirma-ai .banner-center .banner-image img {
  max-height: 680px;
}




/* End banner infographic*/

/* SirmaAI Page Styles */
/* sirmaAI-page */
  .sirmaAI-page {
    padding:16px;
    color: #fff;
  }

  .sirmaAI-page .content {
    background: rgba(31, 30, 69, 1);
    border-radius: 16px;
    padding: 16px 0;
  }
  .sirmaAI-page .landing-menu .landing-page-menu {
    border-radius: 16px;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
   .sirmaAI-page .landing-page-menu nav ul li a {
    color: #FFFFFF;
   }

   .sirmaAI-page .landing-page-menu nav ul li a.active {
    text-decoration: none !important;
    background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 8px;
  }
  .sirmaAI-page .landing-page-menu nav ul li a:hover {
    text-decoration: none !important;
    background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 8px;
  }

   .sirmaAI-page .related-products-slider {
    background: none;
   }
   .sirmaAI-page .careers-cta .container-fluid .row {
    background: #2A2866;
    margin: 0;
    border-radius: 16px;
    padding: 50px;
   }
   .sirmaAI-page .careers-cta {
    background-color: transparent !important;
    color: #fff !important;
    height: auto;
    margin: auto !important;
   }
   .sirmaAI-page .careers-cta h2 {
    font-size: 4.8rem;
    line-height: 5.6rem;
   }
   .sirmaAI-page .careers-cta .btn-careers-left {
    background: linear-gradient(90.86deg, rgba(103, 86, 225, 0.8) 1.89%, rgba(65, 207, 253, 0.8) 92.2%);
    margin-top: 2rem;
    }

    .sirmaAI-page  .articles-slider {
    background: none;
   }
  .sirmaAI-page .sirmaAI-hero-section {
    background: none;
    padding-left: 0;
    padding-right: 0;
   }
   .sirmaAI-page .sirmaAI-hero-section .gradient-text {
    font-size: 7.2rem;
    background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   }
  .sirmaAI-page .sirmaAI-hero-section h2 {
    font-size:6.4rem;
    line-height: 7.2rem;
   }
   .sirmaAI-page .big-landing-section .text-section-content {
    font-size: 2.4rem;
    line-height: 3.2rem;
    }

  .sirmaAI-page .expertise .card {
    min-height: 640px;
    color : #fff;
    padding: 68px 92px;
    background-size: 100% auto;
  }

    .sirmaAI-page .call-to-button a {
    background: linear-gradient(90.86deg, rgba(103, 86, 225, 0.8) 1.89%, rgba(65, 207, 253, 0.8) 92.2%);
   }
   .sirmaAI-hero-section video {
    border-radius: 16px;
   }
   .sirmaAI-hero-section  .hiro-sirmaAI-media {
    width: 100%;
    height: 100%;
    border-radius: 16px;
   }
   .sirmaAI-hero-section  .hiro-sirmaAI-media video {
    width: 100%;
    height: 100%;
   }
   .sirmaAI-page .clients.partnerships .section-label{
    text-align: center;
   }
   .sirmaAI-page .clients.partnerships h1 {
    font-size: 4.8rem;
    text-align: center;
    line-height: 5.2rem;
    width: 80%;
    margin: auto;
   }

   .sirmaAI-page .clients.partnerships .logos .logo {
    border-radius: 8px;
   }
   .sirmaAI-page .clients.partnerships .slider-text {
    text-align: center;
    margin: 54px 0;
   }
   .sirmaAI-page .articles-slider h1 {
    margin: 62px 0 84px 0;
   }
   .sirmaAI-page .left-column-careers-cta {
    width: 80%;
   }

  .sirmaAI-page .careers-cta span {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 3.4rem;
    margin-bottom: 16px;
   }

   .sirmaAI-page .text-with-left-image, .sirmaAI-page .text-with-right-image {
    margin: 84px 0 !important;
   }
   .sirmaAI-page .cards-list .section-label{
    font-size: 3.2rem;
    line-height: 34px;
    text-align: center;
    text-transform: none;
    font-family: TTNormsPro, Tahoma, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 80px;
   }
  .sirmaAI-page .card-list .numbered .has-background,
  .sirmaAI-page .card-list.has-background {
    background-color: #2A2859; 
  }

   .sirmaAI-page .cards-list .section-label::before {
    content: none;
   }
   .sirmaAI-page .card-list.card-square.extra-content {
    background:#2A2859;
    aspect-ratio: 1 / 1;
   }
   .sirmaAI-page .card-square:not(.numbered) .icon {
    height: auto;
   }
   .sirmaAI-page .expertise h2 {
    width: 75%;
    margin: auto;
   }
   .sirmaAI-page .card-list.stick-top, .sirmaAI-page  [class^="col-"].stick-top .card-list {
    outline: 16px solid #1f1e45;
    background: none;
   }
   .sirmaAI-page .stick-top .card-list .card-list.card-square {
    padding: 30px;
    background: #2A2859;
   }
   .sirmaAI-page .card-list.has-background .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
   }
   .sirmaAI-page .card-list.card-square.extra-content {
      min-height: 100% !important;
      margin-bottom: 30px !important;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 382px;
      padding: 20px;
      box-sizing: border-box;
      /* border: 1px solid #ddd; */
      border-radius: 10px;
      /* background: #fff; */
      overflow: hidden;
    }
     .sirmaAI-page .card-list.card-square.extra-content .bottom-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .sirmaAI-page .card-list.card-square.extra-content .bottom-content p{
      margin: 0;
      overflow-wrap: break-word;
    }



   .sirmaAI-page .card-list .card-list.card-square {
    background: #2A2859;
    }
    .sirmaAI-page .card-list .card-list.card-square .icon {
      border-radius: 0;
    }
    .sirmaAI-page .card-list.card-square.extra-content {
      min-height: 100% !important;
    }
    .sirmaAI-page .card-list .col-12.col-xl-6 {
      margin-bottom: 30px;
    }

   .sirmaAI-page  .nav-cards-image.square-circle {
      background-image: url(../images/icon-square-circle2.svg);
    }
    .sirmaAI-page .nav-cards a.active {
      color: #FFFFFF;
    }
    .sirmaAI-page  .nav-cards a::before {
      background-image: url(../images/icon-arrow-right-white2.svg);
    }
    .sirmaAI-page   .nav-cards a:hover {
      color: #FFFFFF;
    }
    .sirmaAI-page .pi-pullup-template {
      background: linear-gradient(90.86deg, rgba(103, 86, 225, 0.8) 1.89%, rgba(65, 207, 253, 0.8) 92.2%);
      color: #FFFFFF !important;
      border-color: #41cffd69;
    }
    .sirmaAI-page .expertise .pi-pullup-template {
      background: rgba(255, 255, 255, 0.4) !important;
      backdrop-filter: blur(6px);
      border-color: transparent;
      color: #fff !important;
    }
    .sirmaAI-page .btn-primary.btn-lightblue.arrow-right::before, .sirmaAI-page .btn-primary.btn-lightblue.arrow-right::after{
      background-image: url(../images/icon-arrow-right-white.svg);
    }

   .sirmaAI-page  .menu .btn-primary.btn-lightblue.arrow-right::after{
      background-image: url(../images/icon-arrow-right-blue.svg);
    }
    .sirmaAI-page .sticky-left-cards-right .stick-top .section-label {
      display: none;
    }
    .sirmaAI-page .sticky-left-cards-right .full-line-title .section-label {
      text-align: center;
    }
    .sirmaAI-page .sticky-left-cards-right .full-line-title .nav-cards-text {
      width: 75%;
      margin: auto;
      margin-bottom: 94px;
      text-align: center;
    }

    .sirmaAI-page  .percentage-preview h2 {
      background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
      background-clip: border-box;
      background-clip: border-box;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 92px;
    }
    .sirmaAI-page  .percentage-preview .percent-box-item img {
      border-radius: unset;
      margin-bottom: 30px;
    }
    .sirmaAI-page  .percentage-preview .percent-box-item {
      font-size: 2rem;
      text-align: left;
    }
    .sirmaAI-page  .percentage-preview .percent-box-item {
      position: relative;
      padding-bottom: 5px; /* space for the border */
    }
    .sirmaAI-page .percentage-preview .percent-box-item::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -30px;
      width: 100%;
      height: 5px;
      background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
      width: 87%;
      text-align: center;
      margin-left: 16px;
      margin-right: 16px;
    }

    .h2-sirmaAI-title {
      font-size: 4.8rem;
      line-height: 5.2rem;
      font-weight: 700;
      margin-bottom: 48px;
      text-align: center;
      width: 75%;
    }
    
    .h2-sirmaAI-title span {
    background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
    .h3-sirmaAI-title {
      font-size: 3.2rem;
      line-height: 3.4rem;
      font-weight: 700;
      margin-bottom: 48px;
      text-align: center;
      width: 75%;
    }
    .h3-sirmaAI-text {
      font-size: 2rem;
      line-height: 2.8rem;
      font-weight: 700;
      margin-bottom: 48px;
      text-align: center;
      width: 75%;
    }
    .sirmaAI-page section.hero {
      background: none;
      min-height: auto !important;
      margin: 75px 0 !important;
    }
    .sirmaAI-page section.hero:not(.white)::before, 
    .sirmaAI-page section.hero:not(.white)::after {
      background: none;
    }
    .sirmaAI-page section.careers-cta img {
      max-height: 447px;
    }
   .sirmaAI-page .hero.card-article-wrapper.filterable .row.info-section {
    margin-bottom: 70px;
   }

    @media screen and (max-width: 768px) {
    .sirmaAI-page .clients.partnerships h1 {
      font-size: 2rem;
      line-height: 2.8rem;
      width: 100%;
      overflow: hidden;
     }
     .sirmaAI-page .sirmaAI-hero-section {
      width: 80%;
     }

     .sirmaAI-page .sirmaAI-hero-section .gradient-text {
    font-size: 3.2rem;
    background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   }
  .sirmaAI-page .sirmaAI-hero-section h2 {
    font-size:3.2rem;
    line-height: 3.4rem;
   }
   .sirmaAI-page .big-landing-section .text-section-content {
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding-top: 24px;
    }
    .sirmaAI-page .expertise h2 {
      padding-bottom: 48px;
    }
    .sirmaAI-page .cards-list .section-label{
    font-size: 2.0rem;
    line-height: 2.4rem;
    margin-bottom: 24px;
   }

    .sirmaAI-page .card-list.card-square.extra-content {
    aspect-ratio: auto;  
    }
  .sirmaAI-page .card-list.card-square.extra-content .bottom-content {
    margin-top: 16px;  
    }

   .sirmaAI-page  .percentage-preview .percent-box-item {
      margin-bottom: 48px; /* space for the border */
    }
    .sirmaAI-page  .percentage-preview h2 {
      margin: 48px 0;
      font-size: 2.8rem;
      line-height: 3.6rem;
  }
    .sirmaAI-page .landing-page-menu .company-logos .logo, .landing-page-menu .btn-primary, .landing-page-menu .btn-toggle-landing-menu {
      margin: 10px 0px;
    }
  .sirmaAI-page .careers-cta {
    padding: 0;
   }

   .sirmaAI-page .careers-cta .container-fluid .row {
    padding: 16px;
   }
   .sirmaAI-page .left-column-careers-cta {
    width: 100%;
   }
  
   .sirmaAI-page section.careers-cta img {
    margin-top: 16px;
    margin-bottom: 16px;
    border-radius: 16px;
  }
  .sirmaAI-page .careers-cta h2 {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin: 16px 0;
   }
    .sirmaAI-page .careers-cta span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
    margin-bottom: 16px;
   }
   .sirmaAI-page .careers-cta .btn-careers-right {
    margin-top: 2rem;
    background: linear-gradient(90.86deg, rgba(103, 86, 225, 0.8) 1.89%, rgba(65, 207, 253, 0.8) 92.2%);
  }
  .h2-sirmaAI-title {
      font-size: 2rem;
      line-height: 2.8rem;
      font-weight: 700;
      margin-bottom: 16px auto;
      width: 80%;
      text-align: center;
    }
  .h2-sirmaAI-title span {
    background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   }
   .banner-infographic.is-sirma-ai .sirma-ai-title-center {
    font-size: 2rem !important;
    text-align: center;
    line-height: 2.8rem !important;
    width: 95%;
    margin: auto;
    margin-bottom: auto;
    margin-bottom: 48px;
}

  .sirmaAI-page .expertise .card {
    min-height: 400px;
    color : #fff;
    padding: 16px 16px;
    background-size: 100% auto;
  }
   .h3-sirmaAI-title {
      font-size: 2rem;
      line-height: 2.8rem;
      font-weight: 700;
      margin-bottom: 24px;
      text-align: center;
      width: 75%;
    }
    .h3-sirmaAI-text {
      font-size: 1.6rem;
      line-height: 2.4rem;
      font-weight: 700;
      margin-bottom: 24px;
      text-align: center;
      width: 75%;
    }
  }

  @media screen and (min-width: 1200px) {
    .sirmaAI-page .nav-cards.stick-top, div.stick-top:not(.card-list):not(.card.square) {
        top: 180px !important;
    } 
  }

  @media screen and (min-width: 1200px) {

    .sirmaAI-page section.hero .container-fluid {
      max-width: 1920px;
      margin: 0 auto !important;
    }
    .sirmaAI-page .hero h1 {
      font-size: 6.4rem;
      line-height: 7.2rem;
    }

}
@media screen and (min-width: 3800px) {
  .sirmaAI-page section.hero .container-fluid {
    max-width: 2560px;
  }
}
    
/* SirmaAI Page Styles */

/* Free Floating Title Styles */

.free-floating-title .color-title {
  background: linear-gradient(90.86deg, #6756E1 1.89%, #41CFFD 92.2%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.free-floating-title .multiple-titles  > * {
  padding-bottom: 48px;
}
.free-floating-title .btn-primary {
  color: var(--white) !important;
  background: linear-gradient(90.86deg, rgba(103, 86, 225, 0.8) 1.89%, rgba(65, 207, 253, 0.8) 92.2%);
}
.free-floating-title  .light-theme {
  color: var(--blue-800);
}
  @media screen and (max-width: 768px) {
    .free-floating-title .multiple-titles  > * {
      padding-bottom: 32px;
    }
    .free-floating-title .multiple-titles  h2 {
      font-size: 3.2rem;
      line-height: 3.2rem;
    }
    .free-floating-title .multiple-titles  h4 {
      font-size: 2.8rem;
      line-height: 2.8rem;
    }
    .free-floating-title .multiple-titles  h4 {
      font-size: 2rem;
      line-height: 2rem;
    }
  }
/* End Free Floating Title Styles */


/* Banner */
.banner-inner {
  background: var(--blue-grayish-200);
  border-radius: 16px;
  padding: 40px 24px;
}

.banner-content {
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.banner-logo {
  margin: 0 0 40px;
}

.banner-content h2 {
  font-size: 2rem;
  line-height: 2.8rem;
  margin: 0 0 24px;
}

.banner-content .text {
  margin: 0 0 24px;
}

.banner-content p:empty {
  display: none;
}

.banner-inner .emphasized {
  font-weight: 600;
  margin: 0 0 24px;
}

.banner-inner .emphasized span {
  padding: 0 6px 0 8px;
  position: relative;
}

.banner-inner .emphasized span + span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--blue-800);
  opacity: 0.4;
  flex-shrink: 0;
}

.banner-content .bullets {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 16px;
  white-space: nowrap;
}

.banner-content .pi-pullup-container {
  margin: 24px 0 16px;
}

.banner-image {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image img {
  transform: scale(1.1);
}

@media screen and (min-width: 576px) {
  .banner-content h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

@media screen and (min-width: 768px) {
  .banner-inner {
    border-radius: 24px;
  }

  .banner-content .bullets {
    gap: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .banner-inner {
    padding: 56px 80px;
  }

  .banner-logo {
    margin: 0 0 28px;
  }

  .banner-content h2 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  .banner-image img {
    transform: scale(1.1) translateX(2.5%);
  }
}

@media screen and (min-width: 1600px) {
  .banner-inner {
    padding: 64px 100px;
  }
}
/* End banner */



/* Medium screens */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .card-list {
    min-height: auto;
  }

  .bg-darkblue-extended {
    padding-left: 8px;
    padding-right: 8px;
  }

  .bg-darkblue-extended .card-square.text-lg strong {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .card-number {
    height: 210px;
  }

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

  .hero {
    padding-bottom: 64px;
  }

  .hero:not(.white):not(.hero-home) {
    margin: 0 0 80px;
  }

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

  .hero h1 {
    font-size: 5.2rem;
    line-height: 5.4rem;
  }

  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark,
  .menu-opened .logo.dark,
  .contact-opened .logo.dark {
    width: 148px;
  }

  .card-list {
    padding: 32px;
  }

  .sidebar .menu,
  .sidebar .contact {
    width: 66%;
  }

  .card-list h3 {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }

  .card-list.card-square {
    aspect-ratio: 1 / 1.4;
    padding: 32px;
  }

  .card-quote {
    min-height: 500px;
  }

  .collapsible button.text-large {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  .card-link.colored {
    aspect-ratio: auto;
  }

  .home .card {
    padding: 64px;
    min-height: 600px;
  }
}
/* End Medium screens */

/* Old laptops */
@media screen and (min-width: 1200px) and (max-width: 1380px) {
  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark,
  .menu-opened .logo.dark,
  .contact-opened .logo.dark {
    width: 146px;
    height: 59px;
  }

  .hero.hero-home + section {
    padding-top: 120px !important;
  }

  .home .card {
    padding: 80px;
    min-height: 540px;
  }

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

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

  .home section.partnerships {
    padding: 72px 0 0;
  }

  .related-content-articles .col-md-4.col-2xl-6 > article:only-child h3 {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }

  .hero h1 {
    font-size: 5rem;
    line-height: 5.4rem;
  }

  .card-number {
    height: 220px;
  }

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

  .card-square.text-lg strong {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  .card-list.card-square {
    aspect-ratio: auto;
    min-height: 240px;
  }

  .card-list h3 {
    font-size: 3.8rem;
    line-height: 4.4rem;
    margin: 0 0 24px;
  }

  .card-quote {
    min-height: 540px;
  }

  .quote-text {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  section.careers-cta h2 {
    font-size: 5.4rem;
    line-height: 5.6rem;
  }

  .card-link {
    min-height: 300px;
  }

  .sidebar .menu,
  .sidebar .contact {
    width: 57.5%;
  }
}

/* End Old laptops */

/* Pagefind */
section.pagefind-section {
  padding-top: 0;
}

.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) {
  .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) {
  .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 */

/* Extra large screens */
@media screen and (min-width: 2200px) {
  section:not(.hero):not(footer):not(.prefooter) .container-fluid {
    max-width: 1920px;
    margin: 0 auto !important;
  }

  .hero.white:not(.hero-home) {
    min-height: 720px;
  }

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

  .home section.partnerships {
    padding: 96px 0 0;
  }

  .related-products-wrapper,
  .careers-cta,
  .contact-form-inline {
    max-width: 2064px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .header {
    padding: 74px 0;
  }

  body {
    font-size: 2rem;
    line-height: 2.8rem;
  }

  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark,
  .menu-opened .logo.dark,
  .contact-opened .logo.dark {
    width: 204px;
    height: 80px;
  }

  .header .search .btn-search {
    width: 72px;
  }

  .locale-icon.locale-globe img {
    width: 24px;
  }

  .locale-close img {
    width: 20px;
  }

  section:not(footer) {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }

  h1 {
    font-size: 12rem;
    line-height: 11.5rem;
  }

  .hero h1 {
    padding-right: 64px;
    font-size: 10rem;
    line-height: 10rem;
  }

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

  .section-label {
    font-size: 2rem;
    line-height: 2.8rem;
  }

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

  .card-number {
    padding: 64px;
  }

  .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;
  }

  .hero-home .card-number .number:after {
    top: 10px;
    right: -48px;
  }

  .nav-cards {
    margin-bottom: 550px;
  }

  .nav-cards a {
    font-size: 3.6rem;
    line-height: 4.2rem;
    margin: 0 0 20px;
    transform: translateX(-48px);
  }

  .card-list h3 {
    font-size: 5.4rem;
    line-height: 5.8rem;
    padding-right: 24px;
  }

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

  .card-square.text-lg strong {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  .card-quote {
    min-height: 720px;
  }

  .quote-text {
    font-size: 3.6rem;
    line-height: 4.6rem;
  }

  .quote-author .details {
    font-size: 2rem;
    line-height: 2.8rem;
  }

  .sidebar .menu .section-label {
    margin-top: 80px;
  }

  .sidebar .menu a {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }

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

  .menu-sections-wrapper:first-child {
    margin: 0 0 80px;
  }

  .sidebar .contact h2 {
    font-size: 10rem;
    line-height: 10rem;
    margin: 32px 0 80px -2px;
  }

  .sidebar .contact label[for="terms"] {
    font-size: 2.2rem;
    line-height: 2.8rem;
    margin-bottom: 40px;
  }

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

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

  .contact-form-inline [type="checkbox"] + label:after {
    top: 8px;
  }

  .numbered:before,
  .checkmarked:before {
    width: 72px;
    height: 72px;
    line-height: 72px;
    font-size: 2.6rem;
  }

  .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:not(.header-normal) {
    font-size: 4.6rem;
    line-height: 5.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%);
  }

  .arrow-right.standalone:before {
    margin-left: -2px;
  }

  .btn-circle,
  .arrow-right.standalone {
    width: 72px;
    height: 72px;
    padding: 0;
    background-size: 20px !important;
  }

  .nav-cards a:before {
    width: 24px;
    height: 24px;
    background-size: 24px;
    margin-right: 24px;
    top: 2px;
    line-height: 1;
  }

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

  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: 2.8rem;
  }

  form .control.active label {
    font-size: 2.4rem;
    transform: translateY(-24px);
  }

  .success-message,
  .error-message {
    font-size: 2rem;
    padding: 16px;
  }

  body:not(.home):not(.landing-page):not(.apple-page):not(.business-page):not(.sirmaAI-page) {
    padding-bottom: 950px;
  }

  body:not(.home):after {
    height: calc(100% - 1053px);
  }

  .home .footer h2,
  .footer h2 {
    font-size: 10rem;
    line-height: 10rem;
  }

  .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: 7rem;
    line-height: 7rem;
  }

  .sidebar h6 {
    letter-spacing: -0.01rem;
  }

  .hero.height-auto {
    padding-top: 400px !important;
    padding-bottom: 112px;
  }

  .pill {
    font-size: 2rem;
    padding: 8px 16px;
    margin: 0 16px 16px 0;
  }

  .home .container-fluid {
    max-width: 100% !important;
  }

  .home .hero.white h1 {
    font-size: 10rem;
    line-height: 10rem;
    padding-right: 0;
    margin-bottom: 56px;
  }

  .hero-home .card-number {
    padding: 36px 36px 16px;
  }

  .hero-home .card-number .label {
    font-size: 2rem;
  }

  .hero-home .card-number .number {
    font-size: 6rem;
    line-height: 8rem;
  }

  .hero-home .parallax .icon-left-circle {
    top: 561px;
  }

  .hero-home .parallax .icon-left-square {
    top: 581px;
  }

  .hero-home .parallax .card-number-right {
    top: 200px;
  }

  .hero-home .parallax .img-center {
    top: 90px;
  }

  .hero-home .parallax .icon-center-circle {
    top: -208px;
  }

  .hero-home .parallax .card-number-center {
    top: 126px;
  }

  .hero-home .parallax .img-right {
    top: 476px;
  }

  .home .expertise h2 + p {
    max-width: 1199px;
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin-top: 54px;
  }

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

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

  .home .card p {
    font-size: 2.8rem !important;
    line-height: 3.6rem !important;
  }

  .home .card.square {
    padding: 92px;
  }

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

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

  .hero-home .parallax .icon-left {
    top: 230px;
  }

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

  .has-3 .card-number .number {
    font-size: 9rem;
    line-height: 6rem;
  }

  .has-3 .card-number .number.more-than:after {
    right: -48px;
  }

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

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

  .people h2 {
    font-size: 5.6rem;
    line-height: 6rem;
    margin: 0 0 48px;
  }

  .card-person button.show-more,
  .card-client-list button.show-more:after,
  .has-plus-after:after {
    width: 36px;
    height: 36px;
    background-size: 28px;
  }

  .card-person .more {
    padding: 0 42px 42px;
  }

  section.careers-cta {
    height: 720px;
  }

  section.careers-cta h2 {
    font-size: 8rem;
    line-height: 8rem;
  }

  .card-case-study h2 {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }

  .card-client-list {
    padding: 48px;
  }

  .card-client-list h2 {
    font-size: 4.6rem;
    line-height: 4.6rem;
    margin: 0 0 36px;
  }

  .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: 4rem !important;
    line-height: 4.4rem !important;
    margin: 0 0 16px !important;
  }

  .card-square:not(.numbered):before,
  .card-square:not(.numbered) .icon {
    width: 72px;
    height: 72px;
    /* background-size: contain; */
    background-size: 32px;
  }

  .it-experts .card-list.h-auto h3 {
    margin-bottom: 32px;
  }

  .tags {
    max-width: 95%;
  }

  .card-year .year {
    width: 80px;
    height: 80px;
    margin: 0 0 32px;
    font-size: 2rem;
  }

  .card-year h3 {
    font-size: 3.2rem;
    line-height: 3.8rem;
    margin: 0 0 24px;
  }

  .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;
  }

  .card-article {
    min-height: 720px;
  }

  .card-article h3 {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }

  .card-article.large h3,
  .card-article.full h3 {
    font-size: 3.8rem;
    line-height: 4.4rem;
  }

  .tag,
  .card-article .tag, .articles-slider .tag {
    padding: 8px 16px;
    font-size: 2rem;
  }

  .related-products {
    min-height: 900px;
  }

  .related-products h3 {
    font-size: 4.2rem;
    line-height: 4.6rem;
  }

  .contact-form-inline header h2 {
    font-size: 5.6rem;
    line-height: 6rem;
    margin: 0 0 12px;
  }

  .contact-form-inline form .control label,
  .contact-form-landing-page .control label,
  form label[for="terms-inquiry"] {
    font-size: 2rem;
  }

  .contact-form-inline form .control.active label[for="message-inquiry"] {
    font-size: 2rem !important;
  }

  .slider-nav button {
    width: 72px;
    height: 72px;
  }

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

  .card-case-study {
    padding: 48px;
    min-height: 720px;
  }

  .article p {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }

  .card-link.colored h3 {
    font-size: 4rem;
    line-height: 4.8rem;
  }

  body.page-contact .contact-form-inline {
    max-width: 100% !important;
  }

  .video-text {
    margin-top: 56px;
  }

  .video-overlay h3,
  .btn-play-video-text {
    font-size: 6.2rem;
    line-height: 6.6rem;
  }

  .btn-play-video {
    width: 114px;
    height: 114px;
  }

  .related-products-slider h3 {
    font-size: 4.2rem;
    line-height: 4.8rem;
  }

  .card-square:not(.numbered).large-icon .icon {
    width: 114px;
    height: 114px;
  }

  .checkmarked:before {
    background-size: 32px;
  }

  .header .locales {
    min-width: 240px;
    padding: 24px;
  }

  .locales-label {
    font-size: 1.4rem;
    margin: 12px 0;
  }

  .header .locale-dropdown a {
    font-size: 2rem;
    padding: 5px 0;
  }

  .card-with-icon .tag {
    font-size: 2.4rem;
  }

  .banner-content h2 {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
}
/* End Extra large screens */

/* 4k */
@media screen and (min-width: 3800px) {
  body {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }

  body:not(.home):not(.landing-page):not(.apple-page):not(.regional-page):not(.business-page):not(.sirmaAI-page) .content{
    margin-right: 156px;
  }

  body:not(.home) {
    padding-bottom: 1370px;
  }

  body:not(.home):after {
    height: calc(100% - 1420px);
    width: calc(100% - 186px);
  }

  .header .logo,
  .header .logo.light,
  .search-opened .logo.dark,
  .menu-opened .logo.dark,
  .contact-opened .logo.dark {
    width: 280px;
    height: 110px;
  }

  .hero:not(.white):not(.hero-home),
  section:not(footer):not(.hero):not(.prefooter):not(.careers) {
    margin: 0 0 224px;
  }
  

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

  .home .hero.white h1 {
    font-size: 14rem;
    line-height: 13.5rem;
    margin-bottom: 64px;
  }

  .home h1,
  .home h2,
  .home .hero h1 {
    font-size: 14rem;
    line-height: 13.5rem;
  }

  .home .expertise h2 + p {
    font-size: 3.8rem;
    line-height: 5.4rem;
    margin-top: 64px;
  }

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

  .hero-home .card-number .number {
    font-size: 9rem;
    line-height: 9rem;
  }

  .hero-home .card-number {
    padding: 48px 48px 36px;
  }

  .hero-home .card-number .label {
    font-size: 2.8rem;
  }

  .home .content > section:not(.hero) {
    padding-bottom: 280px;
  }

  .home .card {
    min-height: 1500px;
    padding: 140px;
    border-radius: 40px;
  }

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

  .home section#clients {
    padding-top: 92px !important;
  }

  .home section#partnerships,
  .home section.careers {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
  }

  .home .card.square {
    padding: 140px;
  }

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

  .home .card p {
    font-size: 3.8rem !important;
    line-height: 5.4rem !important;
  }

  p {
    margin: 0 0 4.2rem;
  }

  .btn-primary {
    font-size: 3.2rem !important;
    line-height: 1.5 !important;
    padding: 32px 60px;
    border-radius: 16px;
  }

  .btn-primary.arrow-right:hover {
    padding-right: 14px;
    padding-left: 106px;
  }

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

  .btn-circle,
  .arrow-right.standalone {
    width: 114px;
    height: 114px;
    padding: 0;
    background-size: 36px !important;
  }

  .arrow-right:before,
  .arrow-right:after {
    width: 24px;
    height: 24px;
    margin-left: 24px;
  }

  .section-label {
    font-size: 3rem;
    line-height: 3.4rem;
    margin: 0 0 60px 4px;
  }

  .section-label:before {
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }

  .numbered:before,
  .checkmarked:before {
    width: 114px;
    height: 114px;
    line-height: 114px;
    font-size: 4rem;
    margin: 0 0 56px;
  }

  .hero-home .parallax .icon-left-circle {
    top: 910px;
  }

  .hero-home .parallax .icon-left-square {
    top: 950px;
  }

  .hero-home .parallax .img-center {
    top: 160px;
  }

  .hero-home .parallax .card-number-center {
    top: 220px;
  }
  .hero-home .parallax .icon-center-circle {
    top: -280px;
  }

  .hero-home .parallax .icon-right-square {
    top: 250px;
  }

  .hero-home .parallax .card-number-right {
    top: 328px;
  }

  .hero-home .parallax .img-right {
    top: 790px;
  }

  .hero.white:not(.hero-home) {
    min-height: 1050px;
    margin: 0 0 160px;
  }

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

  .hero.white h1 {
    font-size: 13rem;
    line-height: 12.5rem;
  }

  .sidebar {
    width: 140px;
    border-radius: 24px;
  }

  .custom-scrollbar {
    margin: 120px 0 0;
  }

  .menu-sections-wrapper:first-child {
    margin: 0 0 96px;
  }

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

  body:not(.home):not(.has-hero-white) .btn-toggle-search,
  .btn-toggle-search.mobile {
    margin: 0 12px 0 0;
  }

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

  .btn-scroll-top {
    background-size: 40px !important;
    border-radius: 50%;
  }

  .sidebar .contact h2 {
    font-size: 14rem;
    line-height: 13.5rem;
    margin: 64px 0 104px;
  }

  .sidebar .menu,
  .sidebar .contact {
    padding-left: 180px;
    padding-top: 114px;
    padding-bottom: 114px;
    border-radius: 24px;
  }

  .sidebar .menu .btn-toggle-menu,
  .btn-close-modals {
    right: 64px;
    top: 64px;
  }

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

  form .control input,
  form .control input:active,
  form .control input:focus,
  form .control textarea,
  form .control textarea:active,
  form .control textarea:focus {
    margin-bottom: 48px;
  }

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

  form .control.active label {
    font-size: 3.2rem;
    transform: translateY(-32px);
  }

  .sidebar .menu a {
    font-size: 4rem;
    line-height: 5.6rem;
  }

  .sidebar h6 {
    font-size: 3.4rem;
  }

  .sidebar .contact label[for="terms"] {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 64px;
  }

  form .control textarea,
  form .control textarea:active,
  form .control textarea:focus {
    min-height: 240px;
    border-radius: 16px;
  }

  [type="checkbox"] + label:before {
    width: 24px;
    height: 24px;
    margin: 0 24px 0 0;
  }

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

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

  .content > .hero {
    padding-left: 140px;
    padding-right: 140px;
    padding-bottom: 140px;
    border-radius: 40px;
  }

  .hero h1 {
    font-size: 14rem;
    line-height: 13.5rem;
  }

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

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

  .card-number {
    padding: 104px;
    border-radius: 40px;
  }

  .card-number .label {
    font-size: 3.2rem;
  }

  .card-number .number {
    font-size: 18rem;
    line-height: 14rem;
  }

  .card-number .number.more-than:after {
    width: 54px;
    height: 54px;
    background-size: 54px;
    right: -72px;
    top: -8px;
  }

  section:not(footer) {
    font-size: 3.6rem;
    line-height: 5.2rem;
  }

  section:not(.hero):not(footer):not(.prefooter) .container-fluid {
    max-width: 2560px;
  }

  .prefooter {
    min-height: 1500px;
    border-radius: 48px;
    padding: 140px !important;
  }

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

  .footer {
    padding: 360px 140px 140px !important;
  }

  .home .footer {
    padding-left: 160px !important;
    padding-right: 264px !important;
  }

  .footer,
  .footer a {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }

  .footer .legal,
  .footer .legal a {
    font-size: 2.8rem;
  }

  body:not(.home) .footer {
    border-radius: 48px;
    width: calc(100% - 188px);
    padding-top: 450px !important;
  }

  .home .footer h2,
  .footer h2 {
    font-size: 14rem;
    line-height: 13.5rem;
    margin: 0 0 56px;
  }

  .nav-cards a {
    font-size: 5.4rem;
    line-height: 6rem;
    margin: 0 0 32px;
    transform: translateX(-56px);
  }

  .nav-cards a:before {
    width: 36px;
    height: 36px;
    background-size: 36px;
    top: -1px;
  }

  .card-list {
    padding: 88px;
    border-radius: 36px;
  }

  .card-list h3 {
    font-size: 8rem;
    line-height: 9rem;
    margin: 0 0 56px;
  }

  .card-square.text-lg strong {
    font-size: 4.8rem;
    line-height: 5.4rem;
  }

  .card-list .card-list.card-square {
    padding: 60px;
  }

  .card-square:not(.numbered):before,
  .card-square:not(.numbered) .icon {
    width: 114px;
    height: 114px;
    /* background-size: contain; */
    background-size: 48px;
  }

  .card-quote {
    min-height: 1200px;
    padding: 320px 0 64px;
  }

  .card-quote.single {
    padding: 140px 0 140px;
  }

  .quote-author .photo {
    margin: 0 36px 0 0;
  }

  .quote-author .photo img {
    width: 114px;
    height: 114px;
  }

  .quote-text {
    font-size: 5.2rem;
    line-height: 6.4rem;
  }

  .quote-author .details {
    font-size: 3.2rem;
    line-height: 4.4rem;
  }

  .tns-nav {
    font-size: 3rem;
  }

  .slider-nav button {
    width: 114px;
    height: 114px;
  }

  .slider-nav button:before {
    background-size: 24px;
  }

  .prefooter .slider-nav {
    top: 114px;
    right: 140px;
  }

  .prefooter .slider-nav button:before {
    background-size: 36px;
  }

  .related-products-wrapper,
  .careers-cta,
  .contact-form-inline {
    max-width: 2760px !important;
  }

  .related-products {
    min-height: 1300px;
    padding: 120px !important;
  }

  .related-products h3 {
    font-size: 5.6rem;
    line-height: 6rem;
    margin: 0 0 28px;
  }

  .related-products h3.active:before {
    width: 36px;
    height: 36px;
    background-size: 36px;
  }

  .tag,
  .card-article .tag, .articles-slider .tag {
    font-size: 3rem;
    border-radius: 8px;
  }

  .card-with-icon .tag {
    font-size: 3.6rem;
    margin: 0 12px 12px 0;
  }

  section.careers-cta {
    height: 1000px;
    padding: 110px 100px 120px !important;
  }

  section.careers-cta h2 {
    font-size: 12rem;
    line-height: 11.5rem;
  }

  .contact-form-inline {
    padding: 120px !important;
  }

  .contact-form-inline .contact,
  .contact-form-landing-page .contact {
    padding: 80px 72px;
  }

  .contact-form-inline header h2 ,
  .contact-form-landing-page header h2 {
    font-size: 8rem;
    line-height: 8rem;
    margin: 24px 0 44px;
  }

  .contact-form-inline form .control label,
  .contact-form-landing-page .control label,
  form label[for="terms-inquiry"] {
    font-size: 3.2rem;
  }

  .contact-form-inline label[for="terms-inquiry"],
  .contact-form-landing-page label[for="terms-inquiry"] {
    margin: -24px 0 48px;
  }

  .contact-form-inline [type="checkbox"] + label:after,
  .contact-form-landing-page [type="checkbox"] + label:after {
    top: 12px;
  }

  .contact-form-inline form .control.active label,
  .contact-form-landing-page form .control.active label {
    font-size: 2.8rem !important;
    color: var(--blue-grayish-400) !important;
  }

  .contact-form-inline form .control label[for="message-inquiry"],
  .contact-form-landing-page .control label[for="message-inquiry"],
  .contact-form-inline form .control.active label[for="message-inquiry"] ,
  .contact-form-landing-page .control.active label[for="message-inquiry"] {
    font-size: 3.2rem !important;
    margin-bottom: 12px !important;
  }

  .contact-form-inline form .control textarea,
  .contact-form-landing-page form .control textarea {
    min-height: 240px;
  }

  .success-message,
  .error-message {
    font-size: 3.2rem;
    padding: 20px;
    margin-bottom: 32px;
  }

  .card-article {
    min-height: 1050px;
  }

  .card-article .meta-wrapper,
  .card-article.large .meta-wrapper {
    padding: 80px;
  }

  .card-article .img-wrapper {
    height: 500px;
  }

  .card-article .tag, .articles-slider .tag {
    padding: 16px 24px;
  }

  .card-article.large h3,
  .card-article.full h3 {
    font-size: 5.2rem;
    line-height: 6.4rem;
    margin-bottom: 56px;
  }

  .card-article .tag,
  .card-article.large .tag,
  .card-article.full .tag, .articles-slider .tag {
    top: 64px;
    left: 80px;
  }

  .card-article .section-label {
    margin: 0 0 20px;
  }

  .arrow-right.standalone:before,
  .arrow-right.standalone:after {
    width: 24px;
    height: 24px;
    background-size: 24px !important;
  }

  .arrow-right.standalone:before {
    margin-left: 14px;
  }

  .card-list.h-auto.stick-top h3:not(.header-normal) {
    font-size: 6rem;
    line-height: 6.4rem;
  }

  .card-list p + .row,
  .card-list a + .row {
    margin-top: 48px;
  }

  .vendors-ecosystem {
    padding: 88px;
  }

  .card-vendors h3 {
    font-size: 5.2rem;
    line-height: 6rem;
  }

  .card-vendors {
    padding: 64px 64px 36px;
  }

  .card-vendors .vendor-logo {
    width: 120px;
    height: 120px;
  }
  .card-vendors .vendor-logo img {
    width: 75%;
  }

  .people h2 {
    font-size: 8rem;
    line-height: 9rem;
    margin: 0 0 60px;
  }

  .card-person .info h4 {
    font-size: 3rem;
    margin: 0 0 4px;
  }

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

  .card-person .info {
    padding: 28px 32px;
  }

  .card-person .text {
    min-height: 130px;
  }

  .card-person .person-linkedin {
    width: 64px;
    height: 64px;
    background-size: 24px;
  }

  .card-case-study {
    min-height: 1200px;
    padding: 64px;
  }

  .card-case-study h2 {
    font-size: 4.8rem;
    line-height: 5.8rem;
    margin: 0 0 48px;
  }

  .card-client-list {
    padding: 64px;
  }

  .card-client-list h2 {
    font-size: 5.6rem;
    line-height: 6.4rem;
    margin: 0 0 48px;
  }

  .card-year {
    padding: 64px;
  }

  .card-year .year {
    width: 114px;
    height: 114px;
    font-size: 2.8rem;
    margin: 0 0 48px;
  }

  .card-year h3 {
    font-size: 4.8rem;
    line-height: 6.2rem;
    margin: 0 0 48px;
  }

  .pill {
    font-size: 3.2rem;
    padding: 16px 24px;
    border-radius: 8px;
    margin: 0 20px 20px 0;
  }

  .article p {
    font-size: 3.4rem;
    line-height: 4.6rem;
    margin: 0 auto 40px;
  }

  .article img,
  .article iframe {
    margin: 80px auto;
  }

  .latest .card-article {
    min-height: 1250px !important;
  }

  .latest .card-article h2 {
    font-size: 5rem;
  }

  .latest .card-article.large h3,
  .card-article.full h3 {
    font-size: 6.4rem;
    line-height: 7.6rem;
  }

  .card-article h3 {
    font-size: 4.2rem;
    line-height: 5.4rem;
  }

  .latest .card-article:not(.full) .img-wrapper {
    height: 660px;
  }

  .collapsible button {
    padding: 40px 64px;
  }

  .collapsible .more {
    padding: 64px 0;
  }

  .card-link {
    padding: 64px;
  }

  .card-link h3 {
    font-size: 9rem;
    line-height: 9rem;
  }

  .card-link.colored {
    padding: 64px;
  }

  .card-link.colored h3 {
    font-size: 5.6rem;
    line-height: 6.8rem;
  }

  body.page-contact .hero {
    min-height: 1000px !important;
    padding-bottom: 140px;
    margin-bottom: -48px !important;
  }

  .card-list.stick-top,
  [class^="col-"].stick-top .card-list {
    outline-width: 24px;
  }

  .card-list.h-auto.pill-check h3 {
    font-size: 6rem !important;
    line-height: 7.2rem !important;
  }

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

  .video-overlay h3 {
    font-size: 8rem;
    line-height: 9rem;
    margin: 0 0 140px;
  }

  .btn-play-video-text {
    font-size: 8rem;
  }

  .btn-play-video {
    width: 168px;
    height: 168px;
  }

  .video-overlay {
    padding: 140px;
  }

  .card-list.card-square {
    padding: 64px;
  }

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

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

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

  .card-list.h-auto.has-image.image-size-medium .image img {
    width: 114px;
  }

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

  .people .collapsible .section-label {
    margin: 48px 0 36px;
  }

  .related-products-slider a {
    padding: 64px;
  }

  .related-products-slider h3 {
    font-size: 5.4rem;
    line-height: 5.8rem;
  }

  .related-products-slider .slider-nav {
    top: -136px;
  }

  .related-products-slider .slider-nav button:before {
    background-size: 32px;
  }

  .card-square:not(.numbered).large-icon .icon {
    width: 124px;
    height: 124px;
  }

  .checkmarked:before {
    background-size: 48px;
  }

  .header .locales {
    padding: 32px;
    min-width: 360px;
    border-radius: 16px;
  }

  .header .locale-dropdown {
    margin-right: 12px;
  }

  .locale-btn {
    gap: 20px;
  }

  .locale-icon.locale-globe img {
    width: 40px;
  }

  .locale-close img {
    width: 32px;
  }

  .locale-icon.locale-caret img {
    width: 28px;
  }

  .header .locale-dropdown a {
    font-size: 3.2rem;
    padding: 8px 0;
  }

  .locales-label {
    font-size: 2.2rem;
    margin: 16px 0;
  }

  .locale-lang {
    margin: 0 0 0 10px;
  }

  .banner-inner {
    padding: 100px 140px;
  }

  .banner-content h2 {
    font-size: 4.8rem;
    line-height: 5.6rem;
    margin: 0 0 48px;
  }

  .banner-logo {
    margin: 0 0 48px;
  }

  .banner-logo img {
    width: 250px;
  }

  .banner-content .pi-pullup-container {
    margin: 48px 0 0;
  }
}
