body {
  margin: 0;
  padding: 0;
  /*TODO: check why*/
  overflow-x: hidden;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  /*TODO: check why*/
  overflow-x: hidden;
}

/* Sections
	 ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

a {
  text-decoration: none;
}

/* Fonts */
.button {
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.125rem;
  box-sizing: border-box;
  background: gray;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 10px;
  -webkit-transition: color 0.2s ease-out, background-color 0.4s ease-out, border-color 0.4s ease-out;
  transition: color 0.2s ease-out, background-color 0.4s ease-out, border-color 0.4s ease-out;
}
@media screen and (max-width: 767px) {
  .button {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .button {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
}
.button + .button {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .button + .button {
    margin-left: auto;
    margin-right: auto;
  }
}

.button-fixed {
  padding: 0.875rem 0;
  width: 50%;
  max-width: 163px;
}
@media screen and (min-width: 768px) {
  .button-fixed {
    max-width: 159px;
  }
}

.button--orange {
  background: #ff5928;
  color: white;
}
.button--orange:hover, .button--orange:focus {
  background-color: #ff8f0f;
}

[class*=button--outline] {
  padding-top: 0.6875rem;
  padding-bottom: 0.6875rem;
}
@media screen and (min-width: 768px) {
  [class*=button--outline] {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }
}

.button--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.button--outline:hover, .button--outline:focus {
  background-color: #ff8f0f;
  border-color: #ff8f0f;
}

.button--outline-orange {
  border: 1px solid #ff5928;
  color: #ff5928;
  background: transparent;
}
.button--outline-orange:hover, .button--outline-orange:focus {
  color: #fff;
  background-color: #ff8f0f;
  border-color: #ff8f0f;
}

#main-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
  background: #fff;
  box-shadow: 0px 5px 15px 0px rgba(37, 54, 117, 0.1019607843);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  /*max-width: 1440px;*/
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 23px 30px 0;
    align-items: flex-start;
  }
}
.header .logo {
  width: 154px;
}
@media screen and (min-width: 1024px) {
  .header .logo {
    /*margin-top: 8px;*/
    width: 250px;
    margin-top: -2px;
  }
}
.header .button {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .header__hmbg {
    display: none;
  }
}

.navigation {
  display: none;
}
.navigation .menu-bold,
.navigation .menu-bold > * {
  font-weight: bold !important;
}
@media screen and (min-width: 1024px) {
  .navigation {
    display: block;
    flex-grow: 2;
  }
  .navigation__items {
    display: flex;
    /*justify-content: space-between;
    		align-items: flex-start;
    */
    justify-content: center;
    align-items: stretch;
    list-style: none;
    padding: 0 25px;
    margin: 14px 0 0;
  }
  .navigation__item {
    margin-right: 2em;
  }
  .navigation__item:last-child {
    margin-right: 0;
  }
  .navigation__link {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    color: #161718;
    display: block;
    padding-bottom: 35px;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  .navigation__link.expdb {
    position: relative;
    padding-right: 14px;
  }
  .navigation__link.expdb::before {
    position: absolute;
    right: 0;
    top: 2px;
    content: "";
    display: block;
    border: solid #161718;
    border-width: 0 2px 2px 0;
    padding: 3px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .navigation__pane {
    display: none;
    position: absolute;
    z-index: 25;
  }
  .navigation__pane .dark--grad,
  .navigation__pane .sub-menu {
    background: #0b1243;
    background: linear-gradient(90deg, #101b60 0%, #111e6d 100%);
  }
  .navigation__pane .sub-menu {
    padding: 2.5rem;
  }
  .navigation__pane .main-solution,
  .navigation__pane .link {
    display: block;
  }
  .navigation__pane .main-solution a,
  .navigation__pane .link a {
    font-family: "Jost", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.125rem;
    padding: 0.5rem 0;
    color: #e0eeff;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
  }
  .navigation__pane .main-solution a:hover, .navigation__pane .main-solution a:focus,
  .navigation__pane .link a:hover,
  .navigation__pane .link a:focus {
    color: #ff8f0f;
  }
  .navigation__pane .main-solution a {
    font-size: 1.375rem;
  }
  .navigation__item:hover .navigation__link {
    color: #ff5928;
    border-bottom-color: #ff5928;
  }
  .navigation__item:hover .navigation__link.expdb::before {
    top: 6px;
    border-color: #ff5928;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  .navigation__item:hover .navigation__pane {
    display: flex;
  }
  .navigation .wide--pane {
    /*width: 810px;*/
    width: 965px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    z-index: 25;
  }
  .navigation .wide--pane .dark--grad {
    background: #0b1243;
    background: linear-gradient(90deg, #101b60 0%, #111e6d 100%);
  }
  .navigation .wide--pane__double, .navigation .wide--pane__single {
    padding: 2.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .navigation .wide--pane__double {
    width: 63%;
    display: flex;
    flex-wrap: wrap;
  }
  .navigation .wide--pane__double .main-solution {
    flex: 1 0 100%;
  }
  .navigation .wide--pane__single {
    width: 37%;
    /*
    background: url($images_path + "aimie_right.svg") 141px 43px no-repeat,
    	radial-gradient(100% 107.5% at 100% 95.47%, rgba(14, 28, 119, 0.99) 0%, rgba(16, 26, 90, 0.99) 100%);
    background-size: 323px auto, auto !important;
    */
    background: radial-gradient(100% 107.5% at 100% 95.47%, rgba(14, 28, 119, 0.99) 0%, rgba(16, 26, 90, 0.99) 100%);
  }
  .navigation .wide--pane__single.aimie {
    position: relative;
  }
  .navigation .wide--pane__single.aimie::before {
    content: "";
    position: absolute;
    z-index: 1;
    background: url(https://www.sidetrade.com/wp-content/uploads/2024/06/aimie-menu.png) no-repeat;
    display: block;
    width: 112px;
    height: 158px;
    background-position: left top;
    top: 167px;
    left: 182px;
  }
  .navigation .wide--pane__single h3 {
    font-size: 2.625rem;
    font-weight: 600;
    line-height: 2.1875rem;
    color: #e0eeff;
  }
  .navigation .wide--pane__single p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #fff;
    margin: 1.25rem 0;
  }
  .navigation .wide--pane__single .button {
    margin-bottom: 0.875rem;
  }
  .navigation .wide--pane__list {
    width: 50%;
    padding: 0;
    list-style: none;
  }
  .navigation .wide--pane__list + .wide--pane__list {
    padding-left: 2.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .navigation #lang-trg {
    /*width: 10px;*/
    width: 32px;
    line-height: 20px;
    margin-left: 0px;
    position: relative;
  }
  .navigation #lang-trg::after {
    position: absolute;
    right: 0;
    top: 5px;
    content: "";
    display: block;
    border: solid #0b1243;
    border-width: 0 2px 2px 0;
    padding: 2px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .navigation #lang-trg:hover::after {
    border-color: #ff5928;
  }
  .navigation #lang-trg.open::after {
    top: 7px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  .navigation .language__item {
    display: inline-block;
    margin-top: -3px;
    padding: 3px 7px 3px 9px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 3px 15px rgba(37, 54, 117, 0.1);
    height: 1.35em;
  }
  .navigation .language__item .curr {
    display: block;
  }
  .navigation .language__item .curr > * {
    display: inline-block;
    vertical-align: top;
  }
  .navigation .language__item .text {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    font-size: 0.875rem;
    line-height: 20px;
    color: #0b1243;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: block;
  }
  .navigation .language__list--desk {
    display: none;
    padding: 0;
    list-style: none;
  }
  .navigation .language__list--desk.shown {
    display: block;
  }
  .navigation .language__list--desk .text:hover {
    color: #ff5928;
  }
}
@media screen and (min-width: 1200px) {
  .navigation__items {
    padding-right: 50px;
    padding-left: 50px;
  }
  .navigation__link.expdb {
    padding-right: 18px;
  }
  .navigation .wide--pane {
    width: 965px;
  }
}
@media screen and (min-width: 1280px) {
  .navigation .wide--pane {
    width: 1010px;
  }
}

#mob-cont {
  position: absolute;
  left: 0;
  z-index: 19;
  display: block;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  top: -500%;
  transition: all 0.25s ease-in-out;
  font-size: 0.875rem;
  color: #fff;
}
#mob-cont.shown {
  top: 70px;
}
@media screen and (min-width: 768px) {
  #mob-cont.shown {
    top: 74px;
  }
}
#mob-cont ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#mob-cont ul li {
  line-height: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}
#mob-cont a {
  text-decoration: none;
}
#mob-cont .navigation__items {
  font-family: "Jost", sans-serif;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  #mob-cont .navigation__items {
    display: flex;
    flex-wrap: wrap;
  }
  #mob-cont .navigation__items .navigation__item {
    width: 50%;
    box-sizing: border-box;
  }
  #mob-cont .navigation__items .navigation__item:nth-child(even) {
    padding-left: 20px;
  }
  #mob-cont .navigation__items .navigation__item .expdb {
    padding-right: 30px;
  }
}
#mob-cont .navigation__items .link a {
  font-size: 0.8125rem;
  color: #e3f2ff;
  padding-left: 10px;
}
#mob-cont .navigation__items .sub-menu {
  display: none;
}
#mob-cont .navigation__items .sub-menu.shown {
  display: block;
  border-top: 1px solid rgba(200, 200, 200, 0.25);
  background: rgba(200, 200, 200, 0.1);
  backdrop-filter: blur(3px);
}
#mob-cont .navigation__link {
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
#mob-cont .expdb {
  position: relative;
  padding-right: 20px;
}
#mob-cont .expdb::before {
  position: absolute;
  right: 0;
  top: 5px;
  content: "";
  display: block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 3px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transform: rotate(-45deg);
}
#mob-cont .expdb.open::before {
  transform: rotate(45deg);
}
#mob-cont .language__item {
  font-weight: 500;
  display: block;
  padding: 20px 0;
}
#mob-cont .language__item .curr {
  color: #ff5928;
}
#mob-cont .language__item a {
  color: #fff;
}
#mob-cont .copy-social__icons {
  padding-top: 10px;
  padding-bottom: 10px;
}
#mob-cont .copy-social__icons li {
  padding: 0;
  display: inline-block;
  margin-right: 35px;
}
@media screen and (min-width: 1024px) {
  #mob-cont {
    display: none !important;
  }
}

#mob-cont .navigation__items .link a {
  font-size: 0.8125rem;
  color: #e3f2ff;
  padding-left: 10px;
}

@media screen and (min-width: 1024px) {
  .fr_FR .navigation .wide--pane__single.aimie::before {
    top: 140px;
  }
  .de_DE .navigation .wide--pane__single.aimie::before {
    left: 222px;
  }
}
.footer {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.footer__container {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding: 0 0.875rem;
    max-width: 1170px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__container {
    display: block;
  }
}
.footer__nav {
  display: flex;
  flex: 2 1 70%;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .footer__nav {
    display: block;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav {
    gap: 2em;
  }
}
@media screen and (max-width: 599px) {
  .footer .menu-list {
    padding-bottom: 45px;
  }
}
.footer .menu-list__head {
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .footer .menu-list__head {
    margin-bottom: 14px;
  }
}
.footer .menu-list__items {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
@media screen and (max-width: 599px) {
  .footer .menu-list__items li {
    margin-bottom: 10px;
  }
}
.footer .menu-list__items a {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.875;
  color: #e0eeff;
  display: inline-block;
  text-decoration: none;
}
.footer .menu-list__items a:hover, .footer .menu-list__items a:focus {
  text-decoration: underline;
}
.footer .copy-social {
  flex: 1 1 30%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer .copy-social {
    display: block;
    padding-top: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer .copy-social {
    padding-top: 0;
  }
}
.footer .copy-social__logo {
  display: block;
  height: 38px;
  margin-bottom: 15px;
  float: right;
}
@media screen and (max-width: 767px) {
  .footer .copy-social__logo {
    float: none;
    margin: 0 auto 30px;
  }
}
.footer .copy-social__icons {
  clear: both;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer .copy-social__icons {
    padding-bottom: 15px;
  }
}
.footer .copy-social__icons li {
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .footer .copy-social__icons li {
    margin: 0 17px;
  }
}
.footer .copy-social__copy {
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.875;
  text-align: right;
  color: #fff;
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .footer .copy-social__copy {
    text-align: center;
  }
}

.video-bg {
  background: url("/wp-content/themes/Archive/assets/images/blue-background.svg"), linear-gradient(to right, rgb(18, 38, 107) 0%, rgb(28, 64, 155) 26%, rgb(16, 33, 95) 61%, rgb(12, 24, 79) 100%);
  background-size: cover;
  background-position: 50% 0%;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.video-bg .container {
  position: relative;
  z-index: 4;
}
.video-bg .container.mode-1-panel {
  display: flex;
  flex-basis: 50%;
  gap: 30px;
}
.video-bg .container.mode-1-panel .demo-hero-header {
  flex: 0 1 50%;
}
.video-bg .container.mode-1-panel .demo-hero-header .hero-demo__title,
.video-bg .container.mode-1-panel .demo-hero-header .hero-demo__subtitle {
  text-align: left;
}

.video-bg-item {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.video-bg-item::-webkit-media-controls {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .video-numbers {
    min-height: 100vh;
  }
}
.video-numbers .numbers__header {
  font-family: Jost;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .video-numbers .numbers__header {
    font-size: 42px;
    line-height: 42px;
  }
}
.video-numbers .numbers_paragraph {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 28px;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .video-numbers .numbers_paragraph {
    font-size: 18px;
    line-height: 32px;
  }
}
.video-numbers__header {
  margin-top: 50px;
}
.video-numbers__footer {
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .video-numbers__header, .video-numbers__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    align-items: flex-start;
    gap: 50px;
  }
  .video-numbers__header.center, .video-numbers__footer.center {
    display: block;
  }
}
.video-numbers__header.full-width {
  grid-template-columns: 1fr;
}
.video-numbers__header--homepage {
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .video-numbers__header--homepage {
    text-align: center;
  }
}
.video-numbers__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: #fff;
  flex-direction: column;
  align-items: center;
  padding: 50px 22px;
}
@media screen and (min-width: 1024px) {
  .video-numbers__wrapper {
    min-height: 100%;
  }
}
.video-numbers__wrapper--homepage {
  justify-content: space-around;
  height: 100vh;
}
.video-numbers__element, .video-numbers__elementSecondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  width: 100vw;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .video-numbers__element, .video-numbers__elementSecondary {
    width: 50vw;
    opacity: 0.3;
  }
}
@media screen and (min-width: 1024px) {
  .video-numbers__element:first-child, .video-numbers__elementSecondary:first-child {
    margin-left: 25vw;
  }
}
.video-numbers__element__value, .video-numbers__elementSecondary__value {
  font-family: "Jost";
  font-weight: 700;
  font-size: 55px;
  line-height: 80px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .video-numbers__element__value, .video-numbers__elementSecondary__value {
    font-size: 144px;
    line-height: 144px;
  }
  .video-bg.smaller .video-numbers__element__value, .video-bg.smaller .video-numbers__elementSecondary__value {
    font-size: 80px;
    line-height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .video-bg.smaller .video-numbers__element__value, .video-bg.smaller .video-numbers__elementSecondary__value {
    font-size: 100px;
    line-height: 100px;
  }
}
.video-numbers__element__value.with-image, .video-numbers__elementSecondary__value.with-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-numbers__element__value.with-image > div, .video-numbers__elementSecondary__value.with-image > div {
  display: flex;
}
.video-numbers__element__value.with-image > div,
.video-numbers__element__value.with-image img, .video-numbers__elementSecondary__value.with-image > div,
.video-numbers__elementSecondary__value.with-image img {
  max-height: 55px;
  max-width: 55px;
  width: 55px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .video-numbers__element__value.with-image > div,
  .video-numbers__element__value.with-image img, .video-numbers__elementSecondary__value.with-image > div,
  .video-numbers__elementSecondary__value.with-image img {
    max-height: 120px;
    max-width: 120px;
    width: 120px;
  }
  .video-bg.smaller .video-numbers__element__value.with-image > div,
  .video-bg.smaller .video-numbers__element__value.with-image img, .video-bg.smaller .video-numbers__elementSecondary__value.with-image > div,
  .video-bg.smaller .video-numbers__elementSecondary__value.with-image img {
    max-height: 68px;
    max-width: 68px;
    width: 68px;
  }
}
@media screen and (min-width: 1200px) {
  .video-bg.smaller .video-numbers__element__value.with-image > div,
  .video-bg.smaller .video-numbers__element__value.with-image img, .video-bg.smaller .video-numbers__elementSecondary__value.with-image > div,
  .video-bg.smaller .video-numbers__elementSecondary__value.with-image img {
    max-height: 82px;
    max-width: 82px;
    width: 82px;
  }
}
.video-numbers__element__description, .video-numbers__elementSecondary__description {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .video-numbers__element__description, .video-numbers__elementSecondary__description {
    font-size: 30px;
    line-height: 42px;
  }
}
.video-numbers__content {
  flex-wrap: nowrap !important;
  display: flex;
  align-self: flex-start;
  min-height: 300px;
  align-items: center;
}

.active {
  opacity: 1;
}

.numbers__subheader {
  font-family: Jost;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 32px;
  color: #aac9ee;
}
@media screen and (min-width: 1024px) {
  .numbers__subheader {
    font-size: 30px;
    line-height: 42px;
  }
}

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