
/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}

/* Expanded CSS Variables */

.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);

  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);

  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));

  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));

  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));

  /* Absolute distance from center, only positive */
  --distance: calc((var(--char-offset) * var(--char-offset)) / var(--char-center));

  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));

  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.splitting.cells img {
  width: 100%;
  display: block;
}

@supports (display: grid) {
  .splitting.cells {
    position: relative;
    overflow: hidden;
    background-size: cover;
    visibility: hidden;
  }

  .splitting .cell-grid {
    background: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: repeat(var(--row-total), 1fr) / repeat(var(--col-total), 1fr);
  }

  .splitting .cell {
    background: inherit;
    position: relative;
    overflow: hidden;
  }

  .splitting .cell-inner {
    background: inherit;
    position: absolute;
    visibility: visible;
    /* Size to fit the whole container size */
    width: calc(100% * var(--col-total));
    height: calc(100% * var(--row-total));
    /* Position properly */
    left: calc(-100% * var(--col-index));
    top: calc(-100% * var(--row-index));
  }

  /* Helper variables for advanced effects */
  .splitting .cell {
    --center-x: calc((var(--col-total) - 1) / 2);
    --center-y: calc((var(--row-total) - 1) / 2);

    /* Offset from center, positive & negative */
    --offset-x: calc(var(--col-index) - var(--center-x));
    --offset-y: calc(var(--row-index) - var(--center-y));

    /* Absolute distance from center, only positive */
    --distance-x: calc((var(--offset-x) * var(--offset-x)) / var(--center-x));

    /* Absolute distance from center, only positive */
    --distance-y: calc((var(--offset-y) * var(--offset-y)) / var(--center-y));
  }
}


html {
  box-sizing: border-box
}

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

@-ms-viewport {
  width: device-width
}

html {
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0
}

p {
  margin-top: 0;
  margin-bottom: 0
}

abbr[title],
abbr[data-original-title] {
  cursor: help
}

address {
  font-style: normal;
  line-height: inherit;
  margin: 0
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0
}

dd {
  margin-bottom: 0;
  margin-left: 0
}

blockquote {
  margin: 0 0 1rem
}

img {
  vertical-align: middle
}

[role=button] {
  cursor: pointer
}

figure,
figcaption {
  padding: 0;
  margin: 0
}

a,
area,
button,
[role=button],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation
}

table {
  border-collapse: collapse
}

caption {
  text-align: left;
  caption-side: bottom
}

th {
  text-align: left
}

label {
  display: inline-block
}

button:focus {
  outline: 0
}

input,
button,
select,
textarea {
  line-height: inherit
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox
}

textarea {
  resize: vertical
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0
}

textarea:focus,
input:focus {
  outline: none
}

input[type=search] {
  -webkit-appearance: none
}

output {
  display: inline-block
}

[hidden] {
  display: none !important
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4px;
  padding-left: 4px;
  max-width: calc(100% - 24px)
}

@media(min-width: 576px) {
  .container {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .container {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .container {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .container {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .container {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 576px) {
  .container {
    max-width: calc(100% - 24px)
  }
}

@media(min-width: 768px) {
  .container {
    max-width: calc(100% - 24px)
  }
}

@media(min-width: 1024px) {
  .container {
    max-width: calc(100% - 60px)
  }
}

@media(min-width: 1440px) {
  .container {
    max-width: calc(100% - 60px)
  }
}

@media(min-width: 1920px) {
  .container {
    max-width: calc(100% - 60px)
  }
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4px;
  padding-left: 4px;
  max-width: calc(100% - 24px)
}

@media(min-width: 576px) {
  .container-fluid {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .container-fluid {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .container-fluid {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .container-fluid {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .container-fluid {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 576px) {
  .container-fluid {
    max-width: calc(100% - 24px)
  }
}

@media(min-width: 768px) {
  .container-fluid {
    max-width: calc(100% - 24px)
  }
}

@media(min-width: 1024px) {
  .container-fluid {
    max-width: calc(100% - 60px)
  }
}

@media(min-width: 1440px) {
  .container-fluid {
    max-width: calc(100% - 60px)
  }
}

@media(min-width: 1920px) {
  .container-fluid {
    max-width: calc(100% - 60px)
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -4px;
  margin-left: -4px;
  min-width: 100%
}

@media(min-width: 576px) {
  .row {
    margin-right: -4px;
    margin-left: -4px
  }
}

@media(min-width: 768px) {
  .row {
    margin-right: -4px;
    margin-left: -4px
  }
}

@media(min-width: 1024px) {
  .row {
    margin-right: -10px;
    margin-left: -10px
  }
}

@media(min-width: 1440px) {
  .row {
    margin-right: -10px;
    margin-left: -10px
  }
}

@media(min-width: 1920px) {
  .row {
    margin-right: -10px;
    margin-left: -10px
  }
}

.container {
  position: relative
}

.col-1 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-2 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-3 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-4 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-5 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-6 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-7 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-8 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-9 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-10 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-11 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-12 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col,
.col-auto {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {

  .col,
  .col-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {

  .col,
  .col-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {

  .col,
  .col-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {

  .col,
  .col-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {

  .col,
  .col-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%
}

.order-first {
  order: -1
}

.order-last {
  order: 13
}

.order-0 {
  order: 0
}

.order-1 {
  order: 1
}

.order-2 {
  order: 2
}

.order-3 {
  order: 3
}

.order-4 {
  order: 4
}

.order-5 {
  order: 5
}

.order-6 {
  order: 6
}

.order-7 {
  order: 7
}

.order-8 {
  order: 8
}

.order-9 {
  order: 9
}

.order-10 {
  order: 10
}

.order-11 {
  order: 11
}

.order-12 {
  order: 12
}

.offset-1 {
  margin-left: 8.3333333333%
}

.offset-2 {
  margin-left: 16.6666666667%
}

.offset-3 {
  margin-left: 25%
}

.offset-4 {
  margin-left: 33.3333333333%
}

.offset-5 {
  margin-left: 41.6666666667%
}

.offset-6 {
  margin-left: 50%
}

.offset-7 {
  margin-left: 58.3333333333%
}

.offset-8 {
  margin-left: 66.6666666667%
}

.offset-9 {
  margin-left: 75%
}

.offset-10 {
  margin-left: 83.3333333333%
}

.offset-11 {
  margin-left: 91.6666666667%
}

.col-xs-1 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-2 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-3 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-4 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-5 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-6 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-7 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-8 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-9 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-10 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-11 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs-12 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xs-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xs-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xs-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xs-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xs-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xs,
.col-xs-auto {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {

  .col-xs,
  .col-xs-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {

  .col-xs,
  .col-xs-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {

  .col-xs,
  .col-xs-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {

  .col-xs,
  .col-xs-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {

  .col-xs,
  .col-xs-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 576px) {
  .col-xs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }

  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
  }

  .col-xs-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
  }

  .col-xs-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
  }

  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-xs-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
  }

  .col-xs-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
  }

  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-xs-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
  }

  .col-xs-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
  }

  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .col-xs-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
  }

  .col-xs-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
  }

  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .order-xs-first {
    order: -1
  }

  .order-xs-last {
    order: 13
  }

  .order-xs-0 {
    order: 0
  }

  .order-xs-1 {
    order: 1
  }

  .order-xs-2 {
    order: 2
  }

  .order-xs-3 {
    order: 3
  }

  .order-xs-4 {
    order: 4
  }

  .order-xs-5 {
    order: 5
  }

  .order-xs-6 {
    order: 6
  }

  .order-xs-7 {
    order: 7
  }

  .order-xs-8 {
    order: 8
  }

  .order-xs-9 {
    order: 9
  }

  .order-xs-10 {
    order: 10
  }

  .order-xs-11 {
    order: 11
  }

  .order-xs-12 {
    order: 12
  }

  .offset-xs-0 {
    margin-left: 0
  }

  .offset-xs-1 {
    margin-left: 8.3333333333%
  }

  .offset-xs-2 {
    margin-left: 16.6666666667%
  }

  .offset-xs-3 {
    margin-left: 25%
  }

  .offset-xs-4 {
    margin-left: 33.3333333333%
  }

  .offset-xs-5 {
    margin-left: 41.6666666667%
  }

  .offset-xs-6 {
    margin-left: 50%
  }

  .offset-xs-7 {
    margin-left: 58.3333333333%
  }

  .offset-xs-8 {
    margin-left: 66.6666666667%
  }

  .offset-xs-9 {
    margin-left: 75%
  }

  .offset-xs-10 {
    margin-left: 83.3333333333%
  }

  .offset-xs-11 {
    margin-left: 91.6666666667%
  }
}

.col-sm-1 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-2 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-3 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-4 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-5 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-6 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-7 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-8 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-9 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-10 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-11 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm-12 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-sm-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-sm-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-sm-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-sm-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-sm-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-sm,
.col-sm-auto {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {

  .col-sm,
  .col-sm-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {

  .col-sm,
  .col-sm-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {

  .col-sm,
  .col-sm-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {

  .col-sm,
  .col-sm-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {

  .col-sm,
  .col-sm-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 768px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .order-sm-first {
    order: -1
  }

  .order-sm-last {
    order: 13
  }

  .order-sm-0 {
    order: 0
  }

  .order-sm-1 {
    order: 1
  }

  .order-sm-2 {
    order: 2
  }

  .order-sm-3 {
    order: 3
  }

  .order-sm-4 {
    order: 4
  }

  .order-sm-5 {
    order: 5
  }

  .order-sm-6 {
    order: 6
  }

  .order-sm-7 {
    order: 7
  }

  .order-sm-8 {
    order: 8
  }

  .order-sm-9 {
    order: 9
  }

  .order-sm-10 {
    order: 10
  }

  .order-sm-11 {
    order: 11
  }

  .order-sm-12 {
    order: 12
  }

  .offset-sm-0 {
    margin-left: 0
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%
  }

  .offset-sm-3 {
    margin-left: 25%
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%
  }

  .offset-sm-6 {
    margin-left: 50%
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%
  }

  .offset-sm-9 {
    margin-left: 75%
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%
  }
}

.col-md-1 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-2 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-3 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-5 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-6 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-7 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-8 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-9 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-10 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-11 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-md-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-md-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-md-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-md-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-md-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-md,
.col-md-auto {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {

  .col-md,
  .col-md-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {

  .col-md,
  .col-md-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {

  .col-md,
  .col-md-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {

  .col-md,
  .col-md-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {

  .col-md,
  .col-md-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1024px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .order-md-first {
    order: -1
  }

  .order-md-last {
    order: 13
  }

  .order-md-0 {
    order: 0
  }

  .order-md-1 {
    order: 1
  }

  .order-md-2 {
    order: 2
  }

  .order-md-3 {
    order: 3
  }

  .order-md-4 {
    order: 4
  }

  .order-md-5 {
    order: 5
  }

  .order-md-6 {
    order: 6
  }

  .order-md-7 {
    order: 7
  }

  .order-md-8 {
    order: 8
  }

  .order-md-9 {
    order: 9
  }

  .order-md-10 {
    order: 10
  }

  .order-md-11 {
    order: 11
  }

  .order-md-12 {
    order: 12
  }

  .offset-md-0 {
    margin-left: 0
  }

  .offset-md-1 {
    margin-left: 8.3333333333%
  }

  .offset-md-2 {
    margin-left: 16.6666666667%
  }

  .offset-md-3 {
    margin-left: 25%
  }

  .offset-md-4 {
    margin-left: 33.3333333333%
  }

  .offset-md-5 {
    margin-left: 41.6666666667%
  }

  .offset-md-6 {
    margin-left: 50%
  }

  .offset-md-7 {
    margin-left: 58.3333333333%
  }

  .offset-md-8 {
    margin-left: 66.6666666667%
  }

  .offset-md-9 {
    margin-left: 75%
  }

  .offset-md-10 {
    margin-left: 83.3333333333%
  }

  .offset-md-11 {
    margin-left: 91.6666666667%
  }
}

.col-lg-1 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-2 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-3 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-4 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-5 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-6 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-7 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-8 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-9 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-10 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-11 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg-12 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-lg-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-lg-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-lg-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-lg-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-lg,
.col-lg-auto {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {

  .col-lg,
  .col-lg-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {

  .col-lg,
  .col-lg-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {

  .col-lg,
  .col-lg-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {

  .col-lg,
  .col-lg-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {

  .col-lg,
  .col-lg-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .order-lg-first {
    order: -1
  }

  .order-lg-last {
    order: 13
  }

  .order-lg-0 {
    order: 0
  }

  .order-lg-1 {
    order: 1
  }

  .order-lg-2 {
    order: 2
  }

  .order-lg-3 {
    order: 3
  }

  .order-lg-4 {
    order: 4
  }

  .order-lg-5 {
    order: 5
  }

  .order-lg-6 {
    order: 6
  }

  .order-lg-7 {
    order: 7
  }

  .order-lg-8 {
    order: 8
  }

  .order-lg-9 {
    order: 9
  }

  .order-lg-10 {
    order: 10
  }

  .order-lg-11 {
    order: 11
  }

  .order-lg-12 {
    order: 12
  }

  .offset-lg-0 {
    margin-left: 0
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%
  }

  .offset-lg-3 {
    margin-left: 25%
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%
  }

  .offset-lg-6 {
    margin-left: 50%
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%
  }

  .offset-lg-9 {
    margin-left: 75%
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%
  }
}

.col-xl-1 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-1 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-1 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-2 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-2 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-2 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-3 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-3 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-3 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-4 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-4 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-4 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-5 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-5 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-5 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-6 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-6 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-6 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-7 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-7 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-7 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-8 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-8 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-8 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-9 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-9 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-9 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-10 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-10 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-10 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-11 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-11 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-11 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl-12 {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {
  .col-xl-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {
  .col-xl-12 {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {
  .col-xl-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {
  .col-xl-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl-12 {
    padding-right: 10px;
    padding-left: 10px
  }
}

.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px
}

@media(min-width: 576px) {

  .col-xl,
  .col-xl-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 768px) {

  .col-xl,
  .col-xl-auto {
    padding-right: 4px;
    padding-left: 4px
  }
}

@media(min-width: 1024px) {

  .col-xl,
  .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1440px) {

  .col-xl,
  .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {

  .col-xl,
  .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px
  }
}

@media(min-width: 1920px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .order-xl-first {
    order: -1
  }

  .order-xl-last {
    order: 13
  }

  .order-xl-0 {
    order: 0
  }

  .order-xl-1 {
    order: 1
  }

  .order-xl-2 {
    order: 2
  }

  .order-xl-3 {
    order: 3
  }

  .order-xl-4 {
    order: 4
  }

  .order-xl-5 {
    order: 5
  }

  .order-xl-6 {
    order: 6
  }

  .order-xl-7 {
    order: 7
  }

  .order-xl-8 {
    order: 8
  }

  .order-xl-9 {
    order: 9
  }

  .order-xl-10 {
    order: 10
  }

  .order-xl-11 {
    order: 11
  }

  .order-xl-12 {
    order: 12
  }

  .offset-xl-0 {
    margin-left: 0
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%
  }

  .offset-xl-3 {
    margin-left: 25%
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%
  }

  .offset-xl-6 {
    margin-left: 50%
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%
  }

  .offset-xl-9 {
    margin-left: 75%
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%
  }
}

@media(min-width: 1024px)and (max-width: 1919.98px) {
  .o-md-1 {
    order: 1
  }

  .o-md-2 {
    order: 2
  }

  .o-md-3 {
    order: 3
  }

  .o-md-4 {
    order: 4
  }

  .o-md-5 {
    order: 5
  }

  .o-md-6 {
    order: 6
  }

  .o-md-7 {
    order: 7
  }

  .o-md-8 {
    order: 8
  }

  .o-md-9 {
    order: 9
  }

  .o-md-10 {
    order: 10
  }

  .o-md-11 {
    order: 11
  }

  .o-md-12 {
    order: 12
  }

  .o-md-13 {
    order: 13
  }

  .o-md-14 {
    order: 14
  }

  .o-md-15 {
    order: 15
  }

  .o-md-16 {
    order: 16
  }

  .o-md-17 {
    order: 17
  }

  .o-md-18 {
    order: 18
  }

  .o-md-19 {
    order: 19
  }

  .o-md-20 {
    order: 20
  }
}

@media(min-width: 768px)and (max-width: 1439.98px) {
  .o-sm-1 {
    order: 1
  }

  .o-sm-2 {
    order: 2
  }

  .o-sm-3 {
    order: 3
  }

  .o-sm-4 {
    order: 4
  }

  .o-sm-5 {
    order: 5
  }

  .o-sm-6 {
    order: 6
  }

  .o-sm-7 {
    order: 7
  }

  .o-sm-8 {
    order: 8
  }

  .o-sm-9 {
    order: 9
  }

  .o-sm-10 {
    order: 10
  }

  .o-sm-11 {
    order: 11
  }

  .o-sm-12 {
    order: 12
  }

  .o-sm-13 {
    order: 13
  }

  .o-sm-14 {
    order: 14
  }

  .o-sm-15 {
    order: 15
  }

  .o-sm-16 {
    order: 16
  }

  .o-sm-17 {
    order: 17
  }

  .o-sm-18 {
    order: 18
  }

  .o-sm-19 {
    order: 19
  }

  .o-sm-20 {
    order: 20
  }
}

@media(max-width: 1023.98px) {
  .o-1 {
    order: 1
  }

  .o-2 {
    order: 2
  }

  .o-3 {
    order: 3
  }

  .o-4 {
    order: 4
  }

  .o-5 {
    order: 5
  }

  .o-6 {
    order: 6
  }

  .o-7 {
    order: 7
  }

  .o-8 {
    order: 8
  }

  .o-9 {
    order: 9
  }

  .o-10 {
    order: 10
  }

  .o-11 {
    order: 11
  }

  .o-12 {
    order: 12
  }

  .o-13 {
    order: 13
  }

  .o-14 {
    order: 14
  }

  .o-15 {
    order: 15
  }

  .o-16 {
    order: 16
  }

  .o-17 {
    order: 17
  }

  .o-18 {
    order: 18
  }

  .o-19 {
    order: 19
  }

  .o-20 {
    order: 20
  }
}

@media(max-width: 575.98px) {
  .hidden-xxs-down {
    display: none !important
  }
}

.hidden-xxs-up {
  display: none !important
}

@media(max-width: 767.98px) {
  .hidden-xs-down {
    display: none !important
  }
}

@media(min-width: 576px) {
  .hidden-xs-up {
    display: none !important
  }
}

@media(max-width: 1023.98px) {
  .hidden-sm-down {
    display: none !important
  }
}

@media(min-width: 768px) {
  .hidden-sm-up {
    display: none !important
  }
}

@media(max-width: 1439.98px) {
  .hidden-md-down {
    display: none !important
  }
}

@media(min-width: 1024px) {
  .hidden-md-up {
    display: none !important
  }
}

@media(max-width: 1919.98px) {
  .hidden-lg-down {
    display: none !important
  }
}

@media(min-width: 1440px) {
  .hidden-lg-up {
    display: none !important
  }
}

.hidden-xl-down {
  display: none !important
}

@media(min-width: 1920px) {
  .hidden-xl-up {
    display: none !important
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

html {
  line-height: 1.2;
  -webkit-text-size-adjust: 100%
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px;
  border-radius: 3px
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: #999;
  box-shadow: none;
  border-radius: 3px
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background-color: #cdcdcd
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background-color: #e8e8e8;
  border-radius: 3px
}

html::-webkit-scrollbar-track:hover,
body::-webkit-scrollbar-track:hover {
  background-color: rgba(0, 0, 0, 0)
}

.wrapper {
  background: #fff;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  left: 0;
  right: 0;
  min-height: 100vh;
  box-shadow: 0 0 30px rgba(0, 0, 0, .05);
  overflow: hidden;
  transition: transform .6s cubic-bezier(0, 0.97, 0.43, 1)
}

.main {
  margin-top: 109px
}

@media(max-width: 1023.98px) {
  .main {
    margin-top: 89px
  }
}

.main__wrapper {
  position: relative;
  z-index: 1;
  background: #fff;
  min-height: 100vh;
  padding-bottom: max(128px, min(160px, 8.3333333333vw))
}

.main__wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 9px 22px 5px rgba(0, 0, 0, .15)
}

.laminam-landing .main__wrapper:after {
  display: none
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0
}

[data-module] {
  opacity: 0;
  transition: opacity .3s ease-in-out .1s
}

[data-module]._loaded {
  opacity: 1
}

.row._ai-end {
  align-items: flex-end
}

.row._ai-center {
  align-items: center
}

svg {
  display: block
}

.splitting .word {
  white-space: nowrap
}

.char-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden
}

.screen-reader-response {
  display: none
}

.lightbox,
.modal {
  position: fixed;
  z-index: 999;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  transition: top .8s cubic-bezier(0, 0.97, 0.43, 1);
  opacity: 1;
  background: #fff
}

.lightbox._content,
.lightbox._video,
.modal._content,
.modal._video {
  top: 0
}

.lightbox._loaded {
  top: 0
}

.modal {
  background: rgba(0, 0, 0, 0)
}

.modal .modal__bg {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0, 0.97, 0.43, 1);
  pointer-events: none
}

.modal._video {
  background: #fff
}

.modal .modal__bg.active {
  pointer-events: all;
  opacity: .4
}

.zoom {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

[data-gallery] {
  cursor: pointer
}

.border {
  width: 0;
  height: 1px;
  background: #003b5c
}

body._resizing * {
  transition: none !important
}

body._resizing *:before,
body._resizing *:after {
  transition: none !important
}

body._hidden-cursor [data-zoom-button] .card__wrapper,
body._hidden-cursor [data-zoom-button] .media img {
  cursor: none !important;
  cursor: -moz-not-allowed;
  cursor: -webkit-not-allowed
}

body.borders-off .border {
  width: 100%
}

body.fadein-off .motion._fade {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0px);
  opacity: 1;
  visibility: inherit;
  transition: none
}

.gallery,
.frames,
.carousel,
.highlights {
  overflow: hidden
}

.cover__claim-wrap,
.cover__cta {
  display: none
}

.grecaptcha-badge {
  visibility: hidden
}

._display-1 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(200px, 10.4166666667vw));
  line-height: 120%;
  letter-spacing: -6px
}

@media(min-width: 768px) {
  ._display-1 {
    line-height: 100%
  }
}

._display-2 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(128px, 6.6666666667vw));
  line-height: 100%;
  letter-spacing: -3.84px
}

._display-3 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(96px, 5vw));
  line-height: 110%;
  letter-spacing: -1.92px
}

@media(min-width: 768px) {
  ._display-3 {
    line-height: 100%
  }
}

.search__panel-inputs input[type=text]::placeholder,
.search__panel-inputs input[type=text],
._display-4 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(28px, min(64px, 3.3333333333vw));
  line-height: 110%;
  letter-spacing: -1.28px
}

@media(min-width: 768px) {

  .search__panel-inputs input[type=text]::placeholder,
  .search__panel-inputs input[type=text],
  ._display-4 {
    line-height: 100%
  }
}

._display-5 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(32px, min(40px, 2.0833333333vw));
  line-height: 120%;
  letter-spacing: -0.8px
}

._display-6 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(24px, min(40px, 2.0833333333vw));
  line-height: 120%
}

.subnav__item._no-btn .subnav__child .subnav__child-item>*,
.subnav__item._no-btn .subnav__child .subnav__child-item,
.subnav__media,
.subnav__btn,
._display-7 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(20px, min(32px, 1.6666666667vw));
  line-height: 120%;
  letter-spacing: -0.64px
}

._display-8 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(18px, min(24px, 1.25vw));
  line-height: 120%;
  letter-spacing: -0.48px
}

._display-9 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(24px, 1.25vw));
  line-height: 120%;
  letter-spacing: -0.48px
}

._body-1,
body,
html {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(16px, min(16px, .8333333333vw));
  line-height: 150%
}

._body-2 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 150%
}

.subnav__media .text,
._body-3 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 150%
}

._label-1 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(20px, 1.0416666667vw));
  line-height: 120%;
  letter-spacing: -0.4px
}

._label-2 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(16px, min(18px, .9375vw));
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.36px
}

._label-3 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 500;
  font-size: max(16px, min(18px, .9375vw));
  line-height: 120%
}

.subnav__child .subnav__child-item>*,
.nav__item,
.nav__btn,
.header--landing__primary .btn,
.header--landing__secondary .btn,
._label-4 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 120%;
  letter-spacing: -0.32px
}

.form__control input::placeholder,
.form__control select::placeholder,
.form__control textarea::placeholder,
.form__control input,
.form__control select,
.form__control textarea,
.form__group label,
.footer__inputs input[type=text],
.footer__inputs input[type=email],
.header__lang-mobile span,
._label-5 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.14px
}

.form__control._checkbox .wpcf7-list-item>label>span,
.form__control span .wpcf7-not-valid-tip,
._label-6 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 120%
}

._cta-1 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(20px, 1.0416666667vw));
  line-height: 100%;
  letter-spacing: -0.4px
}

._cta-2 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 500;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 100%;
  letter-spacing: -0.16px
}

._cta-3 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 100%;
  letter-spacing: -0.32px
}

body,
html {
  color: #242424;
  line-height: 1.5
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  padding: 0;
  margin: 0
}

@media(max-width: 1023.98px) {

  h1,
  h2 {
    overflow-wrap: break-word
  }
}

._upper {
  text-transform: uppercase
}

._dot {
  list-style: none;
  position: relative;
  padding: 0 0 0 .6em;
  margin: 0 0 .5em 8px
}

._dot::before {
  position: absolute;
  content: "•";
  color: #003b5c;
  top: 0;
  left: -0.5rem;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.15;
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1)
}

@media(hover: hover) {
  ._dot:hover::before {
    left: -0.2rem
  }
}

._dot:focus-visible::before {
  left: -0.2rem
}

._dot span {
  margin-right: 12px
}

.ru-lang {
  font-family: "Noto Sans"
}

.ru-lang ._display-6,
.ru-lang ._display-9,
.ru-lang ._body-1,
.ru-lang ._body-2,
.ru-lang ._body-3,
.ru-lang ._label-1,
.ru-lang ._label-2,
.ru-lang ._label-4,
.ru-lang ._label-5,
.ru-lang ._label-6,
.ru-lang ._cta-1,
.ru-lang ._cta-3 {
  font-family: "Noto Sans"
}

.ru-lang ._display-1,
.ru-lang ._display-2,
.ru-lang ._display-3,
.ru-lang ._display-4,
.ru-lang ._display-5,
.ru-lang ._display-7,
.ru-lang ._display-8,
.ru-lang ._label-3,
.ru-lang ._cta-2 {
  font-family: "Playfair Display", serif
}

.ru-lang .nav__item,
.ru-lang .nav__btn {
  font-family: "Noto Sans"
}

.ru-lang .tag {
  font-family: "Playfair Display", serif
}

.ru-lang .form__group label,
.ru-lang .form__group input,
.ru-lang .form__group textarea,
.ru-lang .form__group select {
  font-family: "Noto Sans"
}

.ru-lang .form__group label::placeholder,
.ru-lang .form__group input::placeholder,
.ru-lang .form__group textarea::placeholder,
.ru-lang .form__group select::placeholder {
  font-family: "Noto Sans"
}

.ru-lang .form__control._checkbox .wpcf7-list-item>label>span,
.ru-lang .form__control span .wpcf7-not-valid-tip,
.ru-lang ._label-6,
.ru-lang .uacf7_repeater_add {
  font-family: "Noto Sans"
}

@media only screen and (max-width: 1280px) {

  .ru-lang .nav__item,
  .ru-lang .nav__btn {
    font-family: "Playfair Display", serif !important
  }
}

html.lenis {
  height: auto
}

.lenis.lenis-smooth {
  scroll-behavior: auto
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain
}

.lenis.lenis-stopped {
  overflow: hidden
}

.lenis.lenis-scrolling iframe {
  pointer-events: none
}

[data-speed] {
  will-change: transform
}

.header {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 109px;
  padding: 0 40px;
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: row;
  transition: height .6s cubic-bezier(0, 0.97, 0.43, 1), background .6s cubic-bezier(0, 0.97, 0.43, 1)
}

@media only screen and (max-width: 1280px) {
  .header {
    padding: 0 24px;
    height: 89px
  }
}

.header__logo {
  display: block;
  flex: 0 0 18%
}

@media only screen and (max-width: 1280px) {
  .header__logo {
    flex: 0 0 50%
  }
}

.header__logo a {
  display: block
}

.header__logo svg {
  width: 180px;
  height: 29px
}

@media(max-width: 1023.98px) {
  .header__logo svg {
    width: 128px;
    height: 21px
  }
}

.header__primary {
  flex: 0 0 64%;
  display: flex;
  justify-content: center
}

@media only screen and (max-width: 1280px) {
  .header__primary {
    flex: auto;
    position: fixed;
    z-index: 4;
    display: block;
    top: 89px;
    left: 0;
    width: 100%;
    height: calc(100vh - 89px);
    overflow-y: auto;
    background: #fff;
    transition: all .6s cubic-bezier(0, 0.97, 0.43, 1);
    opacity: 0;
    pointer-events: none
  }

  .header__primary::-webkit-scrollbar {
    width: 6px;
    border-radius: 3px
  }

  .header__primary::-webkit-scrollbar-thumb {
    background-color: #999;
    box-shadow: none;
    border-radius: 3px
  }

  .header__primary::-webkit-scrollbar-thumb:hover {
    background-color: #cdcdcd
  }

  .header__primary::-webkit-scrollbar-track {
    background-color: #e8e8e8;
    border-radius: 3px
  }

  .header__primary::-webkit-scrollbar-track:hover {
    background-color: rgba(0, 0, 0, 0)
  }
}

.header__secondary {
  flex: 0 0 18%;
  display: flex;
  justify-content: flex-end
}

@media only screen and (max-width: 1280px) {
  .header__secondary {
    flex: 0 0 50%
  }
}

.header__service,
.header__lang {
  display: flex;
  align-items: center;
  flex-direction: row
}

.header__lang {
  margin-left: max(32px, min(48px, 2.5vw));
  text-transform: uppercase
}

.header__lang svg {
  width: 16px;
  height: 16px;
  margin-left: 4px
}

@media only screen and (max-width: 1280px) {
  .header__lang {
    display: none
  }
}

.header__toggler {
  display: none;
  margin-left: 32px
}

@media only screen and (max-width: 1280px) {
  .header__toggler {
    display: block
  }
}

.header__toggler span {
  width: 24px;
  height: 1px;
  background-color: #003b5c;
  display: block;
  margin: 4px auto;
  transition: all .3s cubic-bezier(0, 0.97, 0.43, 1)
}

.header__toggler.active span {
  margin: 4px auto
}

.header__toggler.active span:nth-child(1) {
  transform: translateY(3px) rotate(45deg)
}

.header__toggler.active span:nth-child(2) {
  transform: translateY(-2px) rotate(-45deg)
}

.header__lang-mobile {
  padding: 0 24px;
  display: none;
  position: relative;
  margin: 96px 0 128px 0
}

@media only screen and (max-width: 1280px) {
  .header__lang-mobile {
    display: flex;
    justify-content: center
  }
}

@media(max-width: 767.98px) {
  .header__lang-mobile {
    justify-content: flex-start
  }
}

.header__lang-mobile:after {
  content: "";
  position: absolute;
  top: -48px;
  left: 16px;
  width: calc(100% - 32px);
  height: 1px;
  background: #e8e8e8
}

.header__lang-mobile svg {
  width: 16px;
  height: 16px;
  margin-left: 4px
}

.header.active .header__primary {
  top: 89px;
  opacity: 1;
  pointer-events: all
}

.header--landing {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 109px;
  padding: 0 40px;
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  transition: height .6s cubic-bezier(0, 0.97, 0.43, 1), background .6s cubic-bezier(0, 0.97, 0.43, 1)
}

@media only screen and (max-width: 1280px) {
  .header--landing {
    padding: 0 24px;
    height: 89px
  }
}

.header--landing__primary .btn,
.header--landing__secondary .btn {
  position: relative
}

@media(max-width: 1023.98px) {

  .header--landing__primary .btn._roll,
  .header--landing__secondary .btn._roll {
    border: 1px solid #e8e8e8;
    padding: 5px;
    border-radius: 100%;
    text-indent: -999px;
    width: 40px;
    height: 40px;
    overflow: hidden
  }
}

.header--landing__primary .btn._roll svg,
.header--landing__secondary .btn._roll svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px
}

.header--landing .nav__item {
  padding-left: 0;
  padding-right: 0
}

.header--landing__primary {
  justify-content: flex-start
}

.header--landing__primary .btn svg {
  right: -40px
}

@media(max-width: 1023.98px) {
  .header--landing__primary .btn svg {
    right: 6px
  }
}

.header--landing__logo {
  text-align: center
}

.header--landing__logo a {
  display: inline-block
}

@media(max-width: 1023.98px) {
  .header--landing__logo a svg {
    width: 140px
  }
}

.header--landing__secondary {
  justify-content: flex-end
}

.header--landing__secondary .btn svg {
  left: -40px
}

@media(max-width: 1023.98px) {
  .header--landing__secondary .btn svg {
    left: 6px
  }
}

body._header-light .main {
  margin-top: 0
}

body._header-light .header {
  background: rgba(0, 0, 0, 0)
}

@media only screen and (max-width: 1280px) {
  body._header-light .header {
    transition: none
  }
}

body._header-light .header .header__logo svg {
  color: #fff;
  transition: .6s cubic-bezier(0, 0.97, 0.43, 1) color
}

body._header-light .header .nav__item a,
body._header-light .header .nav__item button {
  color: #fff;
  transition: .6s cubic-bezier(0, 0.97, 0.43, 1) color
}

body._header-light .header .nav__item a:after,
body._header-light .header .nav__item button:after {
  background: #fff;
  transition: .6s cubic-bezier(0, 0.97, 0.43, 1) background
}

@media only screen and (max-width: 1280px) {

  body._header-light .header .nav__item a,
  body._header-light .header .nav__item button {
    color: #003b5c
  }

  body._header-light .header .nav__item a:after,
  body._header-light .header .nav__item button:after {
    background: #003b5c
  }
}

body._header-light .header .header__service .search__btn,
body._header-light .header .header__service .header__lang {
  color: #fff;
  transition: .6s cubic-bezier(0, 0.97, 0.43, 1) color
}

body._header-light .header .header__toggler span {
  background: #fff
}

@media only screen and (max-width: 1280px) {
  body._header-light .header .search__panel {
    transition: none
  }
}

@media only screen and (max-width: 1280px) {
  body._header-light .header .header__primary {
    transition: none
  }
}

@media(hover: hover) {
  body._header-light .header:hover {
    background: #fff
  }

  body._header-light .header:hover .header__logo svg {
    color: #003b5c
  }

  body._header-light .header:hover .nav__item a,
  body._header-light .header:hover .nav__item button {
    color: #003b5c
  }

  body._header-light .header:hover .nav__item a:after,
  body._header-light .header:hover .nav__item button:after {
    background: #003b5c
  }

  body._header-light .header:hover .header__service .search__btn,
  body._header-light .header:hover .header__service .header__lang {
    color: #003b5c
  }

  body._header-light .header:hover .header__toggler span {
    background: #003b5c
  }
}

body._header-light .header:focus-visible {
  background: #fff
}

body._header-light .header:focus-visible .header__logo svg {
  color: #003b5c
}

body._header-light .header:focus-visible .nav__item a,
body._header-light .header:focus-visible .nav__item button {
  color: #003b5c
}

body._header-light .header:focus-visible .nav__item a:after,
body._header-light .header:focus-visible .nav__item button:after {
  background: #003b5c
}

body._header-light .header:focus-visible .header__service .search__btn,
body._header-light .header:focus-visible .header__service .header__lang {
  color: #003b5c
}

body._header-light .header:focus-visible .header__toggler span {
  background: #003b5c
}

body._header-light._main-nav .header,
body._header-light._search-active .header {
  background: #fff
}

body._header-light._main-nav .header .header__logo svg,
body._header-light._search-active .header .header__logo svg {
  color: #003b5c
}

body._header-light._main-nav .header .nav__item a,
body._header-light._main-nav .header .nav__item button,
body._header-light._search-active .header .nav__item a,
body._header-light._search-active .header .nav__item button {
  color: #003b5c
}

body._header-light._main-nav .header .nav__item a:after,
body._header-light._main-nav .header .nav__item button:after,
body._header-light._search-active .header .nav__item a:after,
body._header-light._search-active .header .nav__item button:after {
  background: #003b5c
}

body._header-light._main-nav .header .search__btn,
body._header-light._main-nav .header .header__lang,
body._header-light._search-active .header .search__btn,
body._header-light._search-active .header .header__lang {
  color: #003b5c
}

body._header-light._main-nav .header .search__btn:after,
body._header-light._main-nav .header .header__lang:after,
body._header-light._search-active .header .search__btn:after,
body._header-light._search-active .header .header__lang:after {
  background: #003b5c
}

body._header-light._main-nav .header .header__toggler span,
body._header-light._search-active .header .header__toggler span {
  background: #003b5c
}

body._header-light._main-nav .header .search__btn svg,
body._header-light._search-active .header .search__btn svg {
  color: #003b5c
}

body._scrolled .header {
  height: 70px
}

@media only screen and (max-width: 1280px) {
  body._scrolled .header {
    height: 60px
  }
}

@media only screen and (max-width: 1280px) {
  body._scrolled .header.active .header__primary {
    top: 60px;
    height: calc(100vh - 60px)
  }
}

body._scrolled .subnav,
body._scrolled .search__panel {
  top: 70px
}

@media only screen and (max-width: 1280px) {

  body._scrolled .subnav,
  body._scrolled .search__panel {
    top: 60px
  }
}

@media only screen and (max-width: 1280px) {

  body._scrolled .subnav,
  body._scrolled .subnav__wrapper {
    height: calc(100vh - 60px)
  }
}

body._scrolled._header-light .header {
  background: #fff
}

body._scrolled._header-light .header .header__logo svg {
  color: #003b5c
}

body._scrolled._header-light .header .nav__item a,
body._scrolled._header-light .header .nav__item button {
  color: #003b5c
}

body._scrolled._header-light .header .nav__item a:after,
body._scrolled._header-light .header .nav__item button:after {
  background: #003b5c
}

body._scrolled._header-light .header .search__btn,
body._scrolled._header-light .header .header__lang {
  color: #003b5c
}

body._scrolled._header-light .header .search__btn:after,
body._scrolled._header-light .header .header__lang:after {
  background: #003b5c
}

body._scrolled._header-light .header .header__toggler span {
  background: #003b5c
}

.nav__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative
}

.nav__item,
.nav__btn {
  color: #003b5c
}

.nav__item {
  padding-left: max(16px, min(32px, 1.6666666667vw));
  padding-right: max(16px, min(32px, 1.6666666667vw))
}

.nav__item a {
  color: #003b5c
}

.nav__current {
  position: absolute;
  height: 100%;
  top: 0;
  z-index: -1;
  transition: all .5s ease 0s;
  border-radius: 8px;
  display: none
}

.ru-lang .nav__item,
.ru-lang .nav__btn {
  font-family: "Noto Sans"
}

@media only screen and (max-width: 1280px) {
  .nav__wrapper {
    flex-direction: column;
    padding: 72px 16px 0 16px
  }

  .nav__item,
  .nav__btn {
    font-family: "sangbleu_empireregular" !important;
    font-weight: 400 !important;
    font-size: 40px !important;
    line-height: 120% !important;
    letter-spacing: -0.8px !important;
    padding: 0 !important;
    color: #003b5c !important
  }

  .nav__item>*,
  .nav__btn>* {
    color: #003b5c
  }

  .nav__item {
    margin-top: 32px
  }

  .nav__item:first-child {
    margin-top: 0
  }

  .nav__item.active {
    overflow: hidden
  }

  .nav__item.active .subnav {
    transform: translateX(0)
  }
}

.subnav {
  background: #fff;
  position: fixed;
  top: 109px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  border-top: 1px solid #e8e8e8;
  transform: translateY(-20px);
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1)
}

.subnav__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100%
}

.subnav__item {
  position: relative;
  z-index: 1;
  flex: 0 0 25%;
  max-width: 25%;
  padding: max(32px, min(64px, 3.3333333333vw))
}

.subnav__item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  display: block;
  background: #e8e8e8
}

.subnav__item:last-child:after {
  display: none
}

.subnav__item svg {
  width: 24px;
  height: 24px;
  margin-left: 8px
}

.subnav__btn {
  color: #003b5c
}

@media only screen and (max-width: 1280px) {
  .subnav__btn {
    pointer-events: none;
    cursor: none
  }
}

@media only screen and (max-width: 1280px) {
  .subnav__btn {
    pointer-events: all
  }
}

.subnav__media .eyelet {
  display: flex;
  align-items: center
}

.subnav__back {
  display: none;
  text-align: center;
  font-family: "sangbleu_empireregular";
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  height: 48px;
  padding: 16px;
  align-items: center;
  justify-content: center
}

.subnav__back svg {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 20px;
  height: 20px
}

@media only screen and (max-width: 1280px) {
  .subnav__back {
    display: flex;
    width: 100vw
  }
}

.nav__item.active .subnav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all
}

.subnav__item._no-btn .subnav__child {
  column-count: auto;
  margin: 0
}

.subnav__item._no-btn .subnav__child .subnav__child-item {
  max-width: none
}

.subnav__item._no-btn .subnav__child .subnav__child-item:first-child {
  margin-top: 0
}

.subnav__item._no-btn .subnav__child .subnav__child-item>* {
  display: flex;
  align-items: center
}

.subnav__child .subnav__child-wrapper {
  margin-top: 16px
}

.subnav__child .subnav__child-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 16px
}

.subnav__child .subnav__child-list._column {
  flex-direction: column
}

.subnav__child .subnav__child-item {
  color: #003b5c;
  margin-top: 16px;
  flex: 0 0 calc(50% - 16px);
  max-width: calc(50% - 16px)
}

@media only screen and (max-width: 1280px) {
  .subnav__child .subnav__child-item {
    line-height: .8
  }
}

.subnav__child .subnav__child-item>* {
  color: #003b5c
}

@media only screen and (max-width: 1280px) {
  .subnav {
    position: fixed;
    z-index: 1;
    top: 89px;
    border-top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 89px);
    overflow: hidden;
    background: #fff;
    display: block;
    transform: translateX(100%);
    transition: all .4s cubic-bezier(0, 0.97, 0.43, 1)
  }

  .subnav__wrapper {
    width: 100%;
    height: calc(100vh - 89px - 48px);
    display: block;
    padding: 48px 16px 128px 16px;
    overflow: auto;
    background: #fff
  }

  .subnav__item,
  .subnav__btn {
    font-family: "sangbleu_empireregular" !important;
    font-weight: 400 !important;
    font-size: 40px !important;
    line-height: 120% !important;
    letter-spacing: -0.8px !important;
    padding: 0 !important;
    color: #003b5c !important
  }

  .subnav__item>*,
  .subnav__btn>* {
    color: #003b5c
  }

  .subnav__item {
    max-width: none;
    margin-top: 16px;
    z-index: 2
  }

  .subnav__item:first-child {
    margin-top: 0
  }

  .subnav__item:after {
    display: none
  }

  .subnav._media .subnav__wrapper {
    display: flex;
    flex-direction: row;
    gap: 0 8px
  }

  .subnav._media .subnav__item {
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
    margin-top: 0
  }

  .subnav._media .subnav__item:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 48px
  }

  .subnav._media .subnav__item:last-child {
    flex: 0 0 100%;
    max-width: 100%
  }

  .subnav._media .content {
    display: flex;
    flex-direction: column
  }

  .subnav._media .content .eyelet {
    order: 2;
    margin-top: 16px
  }

  .subnav._media .content .media {
    order: 1;
    margin-top: 0
  }

  .subnav._media .content .text {
    display: none
  }

  .subnav__item:not(._no-btn) {
    position: relative;
    z-index: 1
  }

  .subnav__item:not(._no-btn) .subnav__child {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    transform: translateX(100%);
    transition: all .4s cubic-bezier(0, 0.97, 0.43, 1)
  }

  .subnav__item:not(._no-btn) .subnav__child-wrapper {
    margin-top: 0;
    width: 100%;
    height: calc(100vh - 89px - 48px);
    padding: 16px 16px 48px 16px;
    overflow: auto
  }

  .subnav__item:not(._no-btn) .subnav__child-item>* {
    font-style: normal;
    font-display: swap;
    font-family: "Work Sans";
    font-weight: 400;
    margin-top: 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%
  }

  .subnav__item:not(._no-btn).active {
    z-index: 2
  }

  .subnav__item:not(._no-btn).active .subnav__child {
    transform: translateX(0)
  }
}

@media only screen and (max-width: 1280px) {
  .subnav__item._no-btn {
    display: block;
    position: relative;
    z-index: 1
  }

  .subnav__item._no-btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e8e8e8
  }

  .subnav__item._no-btn .subnav__child {
    display: block;
    padding-top: 96px;
    padding-bottom: 96px
  }

  .subnav__item._no-btn .subnav__child-item {
    margin-top: 32px
  }

  .subnav__item._no-btn .subnav__child-item:first-child {
    margin-top: 0
  }

  .subnav__item._no-btn .subnav__child-item>* {
    display: block;
    font-family: "sangbleu_empireregular" !important;
    font-weight: 400 !important;
    font-size: 32px !important;
    line-height: 120% !important;
    letter-spacing: -0.64px !important;
    padding: 0 !important;
    color: #003b5c !important
  }
}

.ru-lang .subnav__back {
  font-family: "Noto Sans"
}

.ru-lang .subnav__child-item>* {
  font-family: "Noto Sans"
}

.ru-lang .subnav__child .subnav__child-item>* {
  font-family: "Noto Sans"
}

.ru-lang .subnav__btn,
.ru-lang .subnav__item._no-btn .subnav__child .subnav__child-item>* {
  font-family: "Playfair Display", serif
}

.ru-lang .header__service .search__btn,
.ru-lang .header__service .search__close,
.ru-lang .header__service .header__toggler,
.ru-lang .header__service .header__lang {
  font-family: "Noto Sans"
}

@media only screen and (max-width: 1280px) {
  .ru-lang .subnav__item:not(._no-btn) .subnav__child-item>* {
    font-family: "Noto Sans"
  }

  .ru-lang .subnav__item._no-btn .subnav__child-item>* {
    font-family: "Playfair Display", serif !important
  }
}

.section {
  position: relative;
  padding-top: max(110px, min(06px, 13.3333333333vw))
}

.section:first-child {
  padding-top: 0
}





.section__title._hero-full .row+.row {
  margin-top: 32px
}

@media(max-width: 1023.98px) {
  .section__title._hero-full .row+.row {
    margin-top: 0
  }
}

.section.__dark {
  background-color: #003b5c
}

.section.__dark:not(.hero) {
  margin-top: max(156px, min(192px, 10vw));
  padding-top: max(156px, min(192px, 10vw));
  padding-bottom: max(156px, min(192px, 10vw))
}

.section.hero.__dark+.section {
  padding-top: 0
}

@media(max-width: 1023.98px) {
  .section.hero.__dark+.section {
    padding-top: max(156px, min(192px, 10vw))
  }
}

.section__title+.section__wrapper {
  padding-top: max(32px, min(64px, 3.3333333333vw))
}

.header+section {
  padding-top: 0
}

.search__btn {
  display: flex;
  align-items: center;
  flex-direction: row
}

.search__btn svg {
  width: 20px;
  height: 20px;
  margin-right: 8px
}

@media only screen and (max-width: 1280px) {
  .search__btn span {
    display: none
  }
}

.search__panel {
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1);
  height: 336px;
  background: #fff;
  position: fixed;
  top: 109px;
  left: 0;
  display: flex;
  width: 100%;
  border-top: 1px solid #e8e8e8;
  align-items: center;
  justify-content: center
}

@media only screen and (max-width: 1280px) {
  .search__panel {
    top: 89px;
    padding: 0 24px
  }
}

.search__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px
}

.search__panel-inputs {
  position: relative;
  width: 80%
}

@media only screen and (max-width: 1280px) {
  .search__panel-inputs {
    width: 100%
  }
}

.search__panel-inputs:after {
  content: "";
  background: #003b5c;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px
}

@media(max-width: 1023.98px) {
  .search__panel-inputs:after {
    bottom: -18px
  }
}

.search__panel-inputs input[type=text] {
  color: #003b5c;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 10px 40px 0 0
}

.search__panel-inputs input[type=text]::placeholder {
  color: #003b5c;
  padding: 10px 70px 0 0
}

.search__panel-inputs .btn {
  position: absolute;
  border-radius: 30px;
  width: 56px;
  height: 56px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003b5c;
  border: 1px solid #e8e8e8
}

.search__panel-inputs .btn svg {
  width: 24px;
  height: 24px
}

.search.active .search__panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all
}

.footer {
  position: relative;
  z-index: 0;
  background: #003b5c;
  color: #fff;
  min-height: 546px;
  display: flex;
  justify-content: space-between;
  flex-direction: column
}

.footer:after {
  content: "";
  background: #003b5c;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20vh
}

.footer .row>div:last-child {
  margin-top: max(32px, min(48px, 2.5vw))
}

@media(min-width: 768px) {
  .footer .row>div:last-child {
    margin-top: 0
  }
}

.footer__wrapper {
  padding: 64px 0
}

.footer .nl {
  margin-top: max(32px, min(48px, 2.5vw))
}

@media(max-width: 767.98px) {
  .footer__main {
    margin-bottom: 64px
  }
}

.footer__main .content {
  display: flex;
  flex-direction: column
}

.footer__main .content .text {
  order: 1
}

@media(max-width: 767.98px) {
  .footer__main .content .text {
    order: 2
  }

  .footer__main .content .text:first-child {
    margin-top: 32px
  }
}

.footer__main .content .cta {
  order: 2
}

@media(max-width: 767.98px) {
  .footer__main .content .cta {
    order: 1;
    margin-top: 0
  }
}

.footer__main .content .cta svg {
  width: 200px;
  height: 32.222px;
  max-width: 100%
}

.footer__bottom {
  padding: 20px 0
}

.footer__copy {
  order: 2;
  margin-top: 48px
}

@media(min-width: 768px) {
  .footer__copy {
    order: 1;
    margin-top: 0
  }
}

.footer__copy .text div:last-child {
  margin-top: 8px
}

.footer__dem {
  order: 1
}

@media(min-width: 768px) {
  .footer__dem {
    order: 2
  }
}

.footer__dem .text p {
  margin: 0
}

.footer__inputs {
  position: relative;
  z-index: 1;
  margin-top: 12px
}

.footer__inputs input[type=text],
.footer__inputs input[type=email] {
  color: #fff;
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 14px 50px 14px 14px;
  background: rgba(0, 0, 0, 0);
  width: 100%
}

.footer__inputs input[type=text]::placeholder,
.footer__inputs input[type=email]::placeholder {
  color: #fff
}

.footer__inputs .wpcf7-response-output {
  display: none
}

.footer__inputs .wpcf7-not-valid-tip {
  display: block;
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 10px
}

.footer__inputs .btn {
  position: absolute;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003b5c
}

.footer__inputs .btn svg {
  width: 22px;
  height: 22px
}

.footer__credits {
  text-align: center;
  order: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end
}

@media(min-width: 768px) {
  .footer__credits {
    text-align: right
  }
}

.footer__credits .btn svg {
  width: 84px;
  height: 16px;
  display: inline-block;
  max-width: 100%
}

.footer--landing {
  background: #f6f6f6;
  min-height: auto;
  transform: none !important
}

.footer--landing::after {
  display: none
}

.footer--landing .footer__wrapper {
  padding: 40px 0
}

.footer--landing .content._center {
  color: #999
}

@media(max-width: 1023.98px) {
  .footer--landing .cta {
    align-content: center;
    margin-bottom: max(32px, min(64px, 3.3333333333vw))
  }
}

.footer--landing .cta svg {
  width: 180px;
  height: 30px;
  color: #003b5c
}

.footer--landing .text {
  color: #999
}

@media(max-width: 1023.98px) {
  .footer--landing .text {
    text-align: left
  }
}

.footer--landing .social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  column-gap: 12px
}

@media(max-width: 1023.98px) {
  .footer--landing .social {
    justify-content: center
  }
}

.footer--landing .social li svg {
  width: 32px;
  height: 32px;
  color: #fff
}

[link-to],
button,
a {
  cursor: pointer;
  color: #003b5c
}

[link-to],
[link-to]:hover,
[link-to]:active,
[link-to]:focus,
[link-to]:visited,
button,
button:hover,
button:active,
button:focus,
button:visited,
a,
a:hover,
a:active,
a:focus,
a:visited {
  text-decoration: none
}

button {
  background: rgba(0, 0, 0, 0);
  padding: 0;
  border: none;
  outline: 0;
  -webkit-appearance: none;
  text-decoration: none
}

button:focus,
button:active {
  outline: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: none
}

.btn {
  text-decoration: none
}

.btn._roll .char {
  overflow: hidden;
  color: rgba(0, 0, 0, 0)
}

.btn._roll .char:before,
.btn._roll .char:after {
  visibility: visible;
  color: #003b5c;
  transition: all .6s cubic-bezier(0.9, 0, 0.2, 1);
  transition-delay: calc(.2s + .02s*(var(--char-index)))
}

.btn._roll .char:before {
  color: #003b5c;
  transition-delay: calc(.02s*(var(--char-index)));
  opacity: 0;
  transform: translateY(-100%)
}

@media(hover: hover) {
  .btn._roll:hover .char:before {
    transition-delay: calc(.2s + .02s*(var(--char-index)));
    transform: translateY(0%);
    opacity: 1
  }

  .btn._roll:hover .char:after {
    transition-delay: calc(.02s*(var(--char-index)));
    transform: translateY(100%);
    opacity: 0
  }
}

.btn._roll:focus-visible .char:before {
  transition-delay: calc(.2s + .02s*(var(--char-index)));
  transform: translateY(0%);
  opacity: 1
}

.btn._roll:focus-visible .char:after {
  transition-delay: calc(.02s*(var(--char-index)));
  transform: translateY(100%);
  opacity: 0
}

.btn._roll svg {
  width: 16px;
  height: 16px;
  display: inline-block
}

.btn._light .char:before,
.btn._light .char:after {
  color: #fff
}

.btn._light._line:after,
.btn._light._line-alt:after {
  background: #fff
}

.btn._line,
.btn._line-alt {
  position: relative;
  display: inline-block
}

.btn._line:after,
.btn._line-alt:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 6px;
  left: 0;
  background: #003b5c;
  transition: all .4s cubic-bezier(0.9, 0, 0.2, 1);
  transform-origin: center
}

@media(hover: hover) {

  .btn._line:hover:after,
  .btn._line-alt:hover:after {
    width: 0;
    left: 50%
  }
}

.btn._line:focus-visible:after,
.btn._line-alt:focus-visible:after {
  width: 0;
  left: 50%
}

.btn._line-alt:after {
  bottom: 2px;
  width: 0;
  left: 50%
}

@media(hover: hover) {
  .btn._line-alt:hover:after {
    width: 100%;
    left: 0
  }
}

.btn._line-alt:focus-visible:after {
  width: 100%;
  left: 0
}

.btn._rounded {
  background: #fff;
  width: 56px;
  height: 56px;
  color: #003b5c;
  border-radius: 30px;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1);
  cursor: pointer
}

@media(max-width: 1023.98px) {
  .btn._rounded {
    width: 48px;
    height: 48px
  }
}

.btn._rounded svg {
  width: 24px;
  height: 24px;
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1)
}

@media(hover: hover) {
  .btn._rounded:hover {
    color: #fff;
    background: #003b5c;
    border: 1px solid #003b5c
  }
}

.btn._rounded:focus-visible {
  color: #fff;
  background: #003b5c;
  border: 1px solid #003b5c
}

.btn._border,
.btn._border-full {
  position: relative;
  border: 1px solid #003b5c;
  padding: 12px 60px 12px 16px;
  border-radius: 60px;
  display: inline-block;
  min-width: 260px
}

.btn._border .ico,
.btn._border-full .ico {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #fff;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  transition: .4s cubic-bezier(0, 0.97, 0.43, 1) all;
  transform-origin: center
}

.btn._border .ico svg,
.btn._border-full .ico svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  color: #fff;
  transition: .4s cubic-bezier(0, 0.97, 0.43, 1) all;
  transform-origin: center
}

.btn._border .ico:after,
.btn._border-full .ico:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #003b5c;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: .4s cubic-bezier(0, 0.97, 0.43, 1) all;
  transform-origin: center
}

@media(hover: hover) {

  .btn._border:hover .ico,
  .btn._border-full:hover .ico {
    width: 32px;
    height: 32px;
    right: 4px
  }

  .btn._border:hover .ico svg,
  .btn._border-full:hover .ico svg {
    width: 20px;
    height: 20px
  }

  .btn._border:hover .ico:after,
  .btn._border-full:hover .ico:after {
    width: 30px;
    height: 30px
  }
}

.btn._border:focus-visible .ico,
.btn._border-full:focus-visible .ico {
  width: 32px;
  height: 32px;
  right: 4px
}

.btn._border:focus-visible .ico svg,
.btn._border-full:focus-visible .ico svg {
  width: 20px;
  height: 20px
}

.btn._border:focus-visible .ico:after,
.btn._border-full:focus-visible .ico:after {
  width: 30px;
  height: 30px
}

.btn._border-full {
  background: #003b5c;
  color: #fff
}

.btn._border-full .ico svg {
  color: #003b5c
}

.btn._border-full .ico:after {
  background: #fff
}

[data-magnet-btn] {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 60px;
  z-index: 2
}

[data-magnet-btn] .cta__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 60px;
  overflow: clip;
  overflow-clip-margin: 1px;
  min-width: 260px
}

[data-magnet-btn] .cta__item>a,
[data-magnet-btn] .cta__item>button,
[data-magnet-btn] .cta__item>div {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background-color: #fff;
  padding: 12px 60px 12px 16px;
  text-decoration: none;
  text-align: left;
  cursor: pointer
}

[data-magnet-btn] .btn__text {
  position: relative;
  z-index: 1;
  transition: all .25s
}

[data-magnet-btn] .btn__hover {
  position: absolute;
  display: block;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background-color: #003b5c;
  transform: translate(-50%, -50%);
  transition: width .5s cubic-bezier(0.25, 1, 0.25, 1), height .5s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 0
}

[data-magnet-btn] .btn__outline {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 60px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: #003b5c;
  z-index: 2
}

[data-magnet-btn] .ico {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #fff;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  transition: .4s cubic-bezier(0, 0.97, 0.43, 1) all;
  transform-origin: center
}

[data-magnet-btn] .ico svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  color: #fff;
  transition: .4s cubic-bezier(0, 0.97, 0.43, 1) all;
  transform-origin: center
}

[data-magnet-btn] .ico:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #003b5c;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: .4s cubic-bezier(0, 0.97, 0.43, 1) all;
  transform-origin: center
}

[data-magnet-btn] .btn {
  display: block;
  pointer-events: all
}

[data-magnet-btn] .btn._light {
  background-color: red
}

[data-magnet-btn] .btn._light .btn__outline {
  border-color: #fff
}

[data-magnet-btn] .btn:hover .btn__text,
[data-magnet-btn] .btn:focus .btn__text,
[data-magnet-btn] .btn:active .btn__text {
  color: #fff
}

[data-magnet-btn] .btn:hover .ico,
[data-magnet-btn] .btn:focus .ico,
[data-magnet-btn] .btn:active .ico {
  width: 32px;
  height: 32px;
  right: 4px
}

[data-magnet-btn] .btn:hover .ico svg,
[data-magnet-btn] .btn:focus .ico svg,
[data-magnet-btn] .btn:active .ico svg {
  width: 20px;
  height: 20px;
  color: #003b5c
}

[data-magnet-btn] .btn:hover .ico:after,
[data-magnet-btn] .btn:focus .ico:after,
[data-magnet-btn] .btn:active .ico:after {
  width: 30px;
  height: 30px;
  background: #fff
}

[data-magnet-btn] .btn:focus .btn__text {
  color: #003b5c
}

[data-magnet-btn] .btn:focus .ico svg {
  color: #fff
}

[data-magnet-btn] .btn:focus .ico:after {
  background: #003b5c
}

[data-magnet-btn] .cta__item._hover .btn:focus .btn__text {
  color: #fff
}

[data-magnet-btn] .cta__item._hover .btn:focus .ico svg {
  color: #003b5c
}

[data-magnet-btn] .cta__item._hover .btn:focus .ico:after {
  background: #fff
}

[data-magnet-btn]._full .cta__item>a,
[data-magnet-btn]._full .cta__item>button,
[data-magnet-btn]._full .cta__item>div {
  background-color: #003b5c
}

[data-magnet-btn]._full .btn__text {
  color: #fff
}

[data-magnet-btn]._full .btn__outline {
  border-color: #003b5c
}

[data-magnet-btn]._full .btn__hover {
  background-color: #fff
}

[data-magnet-btn]._full .ico {
  color: #fff
}

[data-magnet-btn]._full .ico svg {
  color: #fff
}

[data-magnet-btn]._full .ico:after {
  background: #fff
}

[data-magnet-btn]._full .btn:hover .btn__text,
[data-magnet-btn]._full .btn:active .btn__text {
  color: #003b5c
}

[data-magnet-btn]._full .btn:hover .ico svg,
[data-magnet-btn]._full .btn:active .ico svg {
  color: #fff
}

[data-magnet-btn]._full .btn:hover .ico:after,
[data-magnet-btn]._full .btn:active .ico:after {
  background: #003b5c
}

[data-magnet-btn]._full .btn:focus .btn__text {
  color: #fff
}

[data-magnet-btn]._full .btn:focus .ico svg {
  color: #003b5c
}

[data-magnet-btn]._full .btn:focus .ico:after {
  background: #fff
}

[data-magnet-btn]._full .cta__item._hover .btn:focus .btn__text {
  color: #003b5c
}

[data-magnet-btn]._full .cta__item._hover .btn:focus .ico svg {
  color: #fff
}

[data-magnet-btn]._full .cta__item._hover .btn:focus .ico:after {
  background: #003b5c
}

[data-magnet-btn]._transparent .cta__item .btn {
  background: rgba(0, 0, 0, 0)
}

[data-magnet-btn]._transparent .btn__outline {
  border-color: #fff
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

@media(max-width: 1023.98px) {
  .cta {
    flex-direction: column
  }
}

._label-4 .btn._line:after,
._label-4 .btn._line-alt:after,
._label-4.btn._line:after,
._label-4.btn._line-alt:after {
  bottom: 0
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-200px, -200px)
}

#cursor._attract-hover {
  transition-property: opacity, width, height;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(0, 0.97, 0.43, 1);
  opacity: 0;
  width: 42px;
  height: 42px
}

#cursor._expand-hover .cursor-circle {
  backdrop-filter: blur(3px)
}

#cursor._expand-hover .cursor__expand {
  opacity: 1
}

#cursor._link-hover .cursor-circle {
  backdrop-filter: blur(3px)
}

#cursor._link-hover .cursor__link {
  opacity: 1
}

#cursor .cursor__expand,
#cursor .cursor__link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition-property: opacity;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(0, 0.97, 0.43, 1)
}

#cursor .cursor__expand svg,
#cursor .cursor__link svg {
  color: #fff;
  width: 24px;
  height: 24px;
  text-align: center;
  margin-bottom: 4px
}

#cursor .cursor__expand span,
#cursor .cursor__link span {
  font-size: 14px;
  text-transform: uppercase
}

.cursor-inner {
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all .1s .1s
}

._visible .cursor-inner {
  transform: scale(1)
}

.cursor-circle {
  background: rgba(0, 0, 0, .3019607843);
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%
}

body.mobile #cursor {
  display: none !important
}

.media {
  position: relative
}

.media img,
.media video,
.media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  will-change: transform
}

.media:before {
  content: "";
  display: block
}

.media:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #f6f6f6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1
}

.media img,
.media video {
  opacity: 0;
  transition: .2s cubic-bezier(0, 0.97, 0.43, 1) opacity
}

.media img._media-loaded,
.media video._media-loaded {
  opacity: 1
}

.media._1-1:before {
  padding-bottom: 100%
}

.media._1-2:before {
  padding-bottom: 200%
}

.media._2-1:before {
  padding-bottom: 50%
}

.media._3-2:before {
  padding-bottom: 66.6666666667%
}

.media._3-4:before {
  padding-bottom: 133.3333333333%
}

.media._16-9:before {
  padding-bottom: 56.25%
}

.media._h100 {
  height: 100%
}

.media._h100:before {
  height: 100%
}

.motion {
  position: relative;
  overflow: hidden;
  transition: .8s;
  will-change: transform
}

.motion._fade {
  opacity: 0;
  transform: translateY(30px)
}

.motion._scale {
  opacity: 0;
  transform: scale(1.3)
}

._outboard-lft {
  position: relative;
  width: calc(100% + 40px);
  left: -40px
}

@media(max-width: 1023.98px) {
  ._outboard-lft {
    width: calc(100% + 16px);
    left: -16px
  }
}

._outboard-lft figcaption {
  margin-left: 40px
}

@media(max-width: 1023.98px) {
  ._outboard-lft figcaption {
    margin-left: 16px
  }
}

._outboard-rgt {
  position: relative;
  width: calc(100% + 40px);
  left: 0
}

@media(max-width: 1023.98px) {
  ._outboard-rgt {
    width: calc(100% + 16px);
    left: 0
  }
}

._outboard-rgt figcaption {
  margin-right: 40px
}

@media(max-width: 1023.98px) {
  ._outboard-rgt figcaption {
    margin-right: 16px
  }
}

.content {
  color: #242424
}

.content a {
  color: #242424
}

.content a:after {
  background: #242424
}

.content>* {
  margin-top: 32px;
  color: #242424
}

.content>*:first-child {
  margin-top: 0
}

.content._mtop-12>* {
  margin-top: max(128px, min(160px, 8.3333333333vw))
}

.content._mtop-11>* {
  margin-top: max(96px, min(128px, 6.6666666667vw))
}

.content._mtop-10>* {
  margin-top: max(80px, min(96px, 5vw))
}

.content._mtop-9>* {
  margin-top: max(40px, min(80px, 4.1666666667vw))
}

.content._mtop-8>* {
  margin-top: max(32px, min(64px, 3.3333333333vw))
}

.content._mtop-7>* {
  margin-top: max(32px, min(48px, 2.5vw))
}

.content._mtop-6>* {
  margin-top: 40px
}

.content._mtop-5>* {
  margin-top: 32px
}

.content._mtop-4>* {
  margin-top: 24px
}

.content._mtop-3>* {
  margin-top: 16px
}

.content._mtop-2>* {
  margin-top: 12px
}

.content._mtop-1>* {
  margin-top: 8px
}

.content._mtop-0>* {
  margin-top: 4px
}

.content._mtop-12>*:first-child,
.content._mtop-11>*:first-child,
.content._mtop-10>*:first-child,
.content._mtop-9>*:first-child,
.content._mtop-8>*:first-child,
.content._mtop-7>*:first-child,
.content._mtop-6>*:first-child,
.content._mtop-5>*:first-child,
.content._mtop-4>*:first-child,
.content._mtop-3>*:first-child,
.content._mtop-2>*:first-child,
.content._mtop-1>*:first-child,
.content._mtop-0>*:first-child {
  margin-top: 0
}

.content._light {
  color: #fff
}

.content._light>* {
  color: #fff
}

.content._light a {
  color: #fff
}

.content._light a:after {
  background: #fff
}

.content._right {
  text-align: right
}

.content._center {
  text-align: center
}

.text>* {
  margin-top: 32px
}

.text>*:first-child {
  margin-top: 0
}

.text .btn._line:after,
.text .btn._line-alt:after {
  bottom: 2px
}

._display-1 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(200px, 10.4166666667vw));
  line-height: 120%;
  letter-spacing: -6px
}

@media(min-width: 768px) {
  ._display-1 {
    line-height: 100%
  }
}

._display-2 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(128px, 6.6666666667vw));
  line-height: 100%;
  letter-spacing: -3.84px
}

._display-3 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(96px, 5vw));
  line-height: 110%;
  letter-spacing: -1.92px
}

@media(min-width: 768px) {
  ._display-3 {
    line-height: 100%
  }
}

._display-4,
.search__panel-inputs input[type=text],
.search__panel-inputs input[type=text]::placeholder {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(28px, min(64px, 3.3333333333vw));
  line-height: 110%;
  letter-spacing: -1.28px
}

@media(min-width: 768px) {

  ._display-4,
  .search__panel-inputs input[type=text],
  .search__panel-inputs input[type=text]::placeholder {
    line-height: 100%
  }
}

._display-5 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(32px, min(40px, 2.0833333333vw));
  line-height: 120%;
  letter-spacing: -0.8px
}

._display-6 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(24px, min(40px, 2.0833333333vw));
  line-height: 120%
}

._display-7,
.subnav__btn,
.subnav__media,
.subnav__item._no-btn .subnav__child .subnav__child-item,
.subnav__item._no-btn .subnav__child .subnav__child-item>* {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(20px, min(32px, 1.6666666667vw));
  line-height: 120%;
  letter-spacing: -0.64px
}

._display-8 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(18px, min(24px, 1.25vw));
  line-height: 120%;
  letter-spacing: -0.48px
}

._display-9 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(24px, 1.25vw));
  line-height: 120%;
  letter-spacing: -0.48px
}

body,
html,
._body-1 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(16px, min(16px, .8333333333vw));
  line-height: 150%
}

._body-2 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 150%
}

._body-3,
.subnav__media .text {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 150%
}

._label-1 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(20px, 1.0416666667vw));
  line-height: 120%;
  letter-spacing: -0.4px
}

._label-2 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(16px, min(18px, .9375vw));
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.36px
}

._label-3 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 500;
  font-size: max(16px, min(18px, .9375vw));
  line-height: 120%
}

._label-4,
.header--landing__primary .btn,
.header--landing__secondary .btn,
.nav__item,
.nav__btn,
.subnav__child .subnav__child-item>* {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 120%;
  letter-spacing: -0.32px
}

.form__control input::placeholder,
.form__control select::placeholder,
.form__control textarea::placeholder,
.form__control input,
.form__control select,
.form__control textarea,
.form__group label,
._label-5,
.header__lang-mobile span,
.footer__inputs input[type=text],
.footer__inputs input[type=email] {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.14px
}

.form__control._checkbox .wpcf7-list-item>label>span,
.form__control span .wpcf7-not-valid-tip,
._label-6 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 120%
}

._cta-1 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(20px, 1.0416666667vw));
  line-height: 100%;
  letter-spacing: -0.4px
}

._cta-2 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 500;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 100%;
  letter-spacing: -0.16px
}

._cta-3 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 100%;
  letter-spacing: -0.32px
}

.panel {
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  width: 795px;
  height: 100vh;
  background: #fff;
  box-shadow: 0px 9px 22px 5px rgba(0, 0, 0, .15);
  margin-top: 0;
  transform: translateX(110%);
  transition: .4s all cubic-bezier(0, 0.97, 0.43, 1);
  overflow-y: auto;
  pointer-events: none
}

.panel::-webkit-scrollbar {
  width: 6px;
  border-radius: 3px
}

.panel::-webkit-scrollbar-thumb {
  background-color: #999;
  box-shadow: none;
  border-radius: 3px
}

.panel::-webkit-scrollbar-thumb:hover {
  background-color: #cdcdcd
}

.panel::-webkit-scrollbar-track {
  background-color: #e8e8e8;
  border-radius: 3px
}

.panel::-webkit-scrollbar-track:hover {
  background-color: rgba(0, 0, 0, 0)
}

.panel.active {
  transform: translateX(0%);
  pointer-events: all
}

@media(max-width: 767.98px) {
  .panel {
    width: 100vw
  }

  .panel .panel__wrapper {
    padding: 32px 16px
  }
}

.panel__wrapper {
  padding-top: max(32px, min(64px, 3.3333333333vw));
  padding-bottom: max(32px, min(64px, 3.3333333333vw));
  padding-left: 32px;
  padding-right: 32px
}

.panel__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px
}

.panel__title svg {
  width: 32px;
  height: 32px;
  cursor: pointer
}

.panel__content {
  margin-top: 24px
}

.panel__content svg {
  width: 24px;
  height: 24px
}

.panel__content ul li {
  margin-top: 24px
}

.panel__content ul li:first-child {
  margin-top: 0
}

.panel__content .panel__language-item {
  display: flex;
  align-items: center
}

.panel__content .panel__language-item span {
  padding: 0 12px
}

.panel__content .panel__language-item .panel__language-arrow {
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1)
}

.panel__content .panel__language-item img {
  width: 24px
}

.panel__content .panel__language-item:hover .panel__language-arrow {
  margin-left: 12px
}

._display-1 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(200px, 10.4166666667vw));
  line-height: 120%;
  letter-spacing: -6px
}

@media(min-width: 768px) {
  ._display-1 {
    line-height: 100%
  }
}

._display-2 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(128px, 6.6666666667vw));
  line-height: 100%;
  letter-spacing: -3.84px
}

._display-3 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(40px, min(96px, 5vw));
  line-height: 110%;
  letter-spacing: -1.92px
}

@media(min-width: 768px) {
  ._display-3 {
    line-height: 100%
  }
}

._display-4,
.search__panel-inputs input[type=text],
.search__panel-inputs input[type=text]::placeholder {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(28px, min(64px, 3.3333333333vw));
  line-height: 110%;
  letter-spacing: -1.28px
}

@media(min-width: 768px) {

  ._display-4,
  .search__panel-inputs input[type=text],
  .search__panel-inputs input[type=text]::placeholder {
    line-height: 100%
  }
}

._display-5 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(32px, min(40px, 2.0833333333vw));
  line-height: 120%;
  letter-spacing: -0.8px
}

._display-6 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(24px, min(40px, 2.0833333333vw));
  line-height: 120%
}

._display-7,
.subnav__btn,
.subnav__media,
.subnav__item._no-btn .subnav__child .subnav__child-item,
.subnav__item._no-btn .subnav__child .subnav__child-item>* {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(20px, min(32px, 1.6666666667vw));
  line-height: 120%;
  letter-spacing: -0.64px
}

._display-8 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 400;
  font-size: max(18px, min(24px, 1.25vw));
  line-height: 120%;
  letter-spacing: -0.48px
}

._display-9 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(24px, 1.25vw));
  line-height: 120%;
  letter-spacing: -0.48px
}

body,
html,
._body-1 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(16px, min(16px, .8333333333vw));
  line-height: 150%
}

._body-2 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 150%
}

._body-3,
.subnav__media .text {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 150%
}

._label-1 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(20px, 1.0416666667vw));
  line-height: 120%;
  letter-spacing: -0.4px
}

._label-2 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(16px, min(18px, .9375vw));
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.36px
}

._label-3 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 500;
  font-size: max(16px, min(18px, .9375vw));
  line-height: 120%
}

._label-4,
.header--landing__primary .btn,
.header--landing__secondary .btn,
.nav__item,
.nav__btn,
.subnav__child .subnav__child-item>* {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 120%;
  letter-spacing: -0.32px
}

.form__control input::placeholder,
.form__control select::placeholder,
.form__control textarea::placeholder,
.form__control input,
.form__control select,
.form__control textarea,
.form__group label,
._label-5,
.header__lang-mobile span,
.footer__inputs input[type=text],
.footer__inputs input[type=email] {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.14px
}

.form__control._checkbox .wpcf7-list-item>label>span,
.form__control span .wpcf7-not-valid-tip,
._label-6 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 120%
}

._cta-1 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(18px, min(20px, 1.0416666667vw));
  line-height: 100%;
  letter-spacing: -0.4px
}

._cta-2 {
  font-style: normal;
  font-display: swap;
  font-family: "sangbleu_empireregular";
  font-weight: 500;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 100%;
  letter-spacing: -0.16px
}

._cta-3 {
  font-style: normal;
  font-display: swap;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: max(14px, min(16px, .8333333333vw));
  line-height: 100%;
  letter-spacing: -0.32px
}

.form {
  width: 100%
}

.form__group {
  margin-top: max(32px, min(48px, 2.5vw))
}

.form__group label {
  padding: 5px 0 !important
}

.form__row._2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 8px
}

@media(max-width: 1023.98px) {
  .form__row._2col {
    grid-template-columns: 1fr
  }
}

.form__row._3col {
  display: grid;
  grid-template-columns: 1fr 1fr 2.1fr;
  column-gap: 16px;
  row-gap: 8px
}

@media(max-width: 1023.98px) {
  .form__row._3col {
    grid-template-columns: 1fr
  }
}

.form__row._inline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px
}

.form__control input,
.form__control select,
.form__control textarea {
  color: #003b5c;
  width: 100%;
  padding: 16px 8px;
  border-radius: 4px;
  border: 1px solid #003b5c;
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1);
  background: #fff
}

.form__control input::placeholder,
.form__control select::placeholder,
.form__control textarea::placeholder {
  color: #6a6969
}

.form__control input:focus,
.form__control select:focus,
.form__control textarea:focus {
  border: 1px solid #999
}

.form__control input:disabled,
.form__control select:disabled,
.form__control textarea:disabled {
  opacity: .2;
  pointer-events: none
}

.form__control span {
  display: block
}

.form__control span input.wpcf7-not-valid,
.form__control span select.wpcf7-not-valid {
  border-color: #9d0000
}

.form__control span .wpcf7-not-valid-tip {
  display: block;
  color: #9d0000;
  margin-top: 4px;
  padding: 0 8px
}

.form__control label+span {
  margin-top: 4px
}

.form__control select[multiple]:focus option:checked {
  background: #003b5c linear-gradient(0deg, #003B5C 0%, #003B5C 100%)
}

.form__control svg {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 32px;
  height: 32px;
  color: #003b5c
}

.form__control._checkbox {
  padding: 16px 0
}

.form__control._checkbox .wpcf7-list-item>label {
  padding: 5px 0 !important;
  display: grid;
  grid-template-columns: 16px 1fr;
  column-gap: 16px;
  row-gap: 8px;
  align-items: start
}

.form__control._checkbox .wpcf7-list-item>label input {
  padding: 0
}

.form__control._checkbox .wpcf7-list-item>label a {
  text-decoration: underline
}

.form__control._checkbox input {
  border: 1px solid #151617;
  border-radius: 0
}

.form__control._checkbox input[type=checkbox] {
  width: 16px !important;
  height: 16px;
  color: #003b5c;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  padding: 0;
  margin: 0;
  transition: background 300ms;
  cursor: pointer;
  position: relative;
  background: #fff;
  border: 1px solid #003b5c;
  border-radius: 4px
}

.form__control._checkbox input[type=checkbox]:before {
  content: "";
  color: rgba(0, 0, 0, 0);
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  background-size: contain;
  transition: all .2s cubic-bezier(0, 0.97, 0.43, 1)
}

.form__control._checkbox input[type=checkbox]:checked {
  background-color: currentcolor
}

.form__control._checkbox input[type=checkbox]:after {
  content: "✓";
  box-shadow: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .2s cubic-bezier(0, 0.97, 0.43, 1);
  line-height: 1
}

.form__control._checkbox input[type=checkbox]:checked:before {
  background: #003b5c;
  box-shadow: inset 0 0 0 2px #003b5c
}

.form__control._checkbox input[type=checkbox]:checked:after {
  opacity: 1
}

.form__control._checkbox._light {
  padding-top: 0
}

.form__control._checkbox._light label>span {
  color: #fff
}

.form__control._checkbox._light input[type=checkbox] {
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0)
}

.form__control._checkbox._light input[type=checkbox]:checked {
  background-color: #fff
}

.form__control._checkbox._light input[type=checkbox]:after {
  color: #003b5c
}

.form__control._checkbox._light input[type=checkbox]:checked:before {
  background: rgba(0, 0, 0, 0);
  box-shadow: none;
  border: none
}

.form__control._radio label {
  padding: 0
}

.form__control._radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: auto
}

.form__control._radio input[type=radio]+span {
  cursor: pointer
}

.form__control._radio input[type=radio]+span:before {
  content: "";
  border-radius: 100%;
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  top: 6px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #003b5c
}

.form__control._radio input[type=radio]:checked+span:before {
  background-color: #003b5c
}

.form__control._radio input[type=radio]:focus+span:before {
  outline: none;
  border-color: #003b5c
}

.form__control._radio input[type=radio]:disabled+span:before {
  opacity: .2
}

.form__control._radio input[type=radio]+span:empty:before {
  margin-right: 0
}

.form__control._upload input[type=file] {
  padding: 5px
}

.form__control._upload input[type=file]::file-selector-button {
  margin-right: 12px;
  border: none;
  background: #003b5c;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
  border-radius: 60px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border: 1px solid #003b5c
}

.form__control._upload input[type=file]::file-selector-button:hover {
  border: 1px solid #003b5c;
  color: #003b5c;
  background: #fff
}

.form__control._minus {
  position: relative
}

.form__control._minus span {
  padding-right: 50px
}

.form__control._minus svg {
  position: absolute;
  bottom: 10px;
  right: 0;
  cursor: pointer;
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1)
}

.form__control._minus svg:hover {
  opacity: .8
}

.form__alert {
  position: relative;
  z-index: 1;
  padding: 24px 48px 24px 24px;
  color: #fff;
  background: #003b5c;
  border-radius: 16px
}

.form__alert._valid {
  background: #00875e
}

.form__alert._valid * {
  color: #fff
}

.form__alert._error {
  background: #9d0000
}

.form__alert._error * {
  color: #fff
}

.form__alert._warning {
  background: #cb9200
}

.form__alert._warning * {
  color: #fff
}

.form__alert .ico {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  color: #fff;
  cursor: pointer
}

.form__alert .ico svg {
  width: 24px;
  height: 24px
}

.form .form__row+.cta {
  margin-top: 24px
}

.form .wpcf7-form-control span.wpcf7-list-item {
  margin-top: 16px
}

.form .wpcf7-form-control span.wpcf7-list-item:first-child {
  margin-top: 0
}

.uacf7_repeater_sub_field {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start
}

.uacf7_repeater_sub_field svg {
  width: 36px;
  height: 36px;
  margin-bottom: 10px
}

.uacf7_repeater_sub_field .form__control._minus span {
  padding-right: 10px
}

.uacf7_repeater_sub_field .form__row {
  display: block;
  flex: 0 0 50%
}

.uacf7_repeater_button_wraper {
  margin-top: 16px;
  display: block
}

.uacf7_repeater_button_wraper button {
  text-decoration: underline;
  font-size: 14px
}

.uacf7_repeater_sub_field+.uacf7_repeater_sub_field {
  margin-top: 12px
}

.section.__dark form .form__group:first-child {
  margin-top: 0
}

.chosen-container {
  color: #003b5c;
  width: 100%;
  padding: 0px;
  border-radius: 4px;
  border: 1px solid #003b5c;
  transition: all .4s cubic-bezier(0, 0.97, 0.43, 1);
  background: #fff;
  text-align: left
}

.chosen-container * {
  box-sizing: border-box
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: calc(100% - 10px);
  border: 1px solid #003b5c;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  clip: rect(0, 0, 0, 0);
  clip-path: inset(100% 100%)
}

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  clip-path: none
}

.chosen-container a {
  cursor: pointer
}

.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999
}

.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top
}

.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 50px;
  border-radius: 5px;
  background-color: #fff;
  background-clip: padding-box;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 50px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: right;
  background-color: rgba(0, 0, 0, 0)
}

.chosen-container-single .chosen-default {
  color: #999
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap
}

.chosen-container-single .chosen-search input[type=text] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0
}

.chosen-container-single .chosen-drop {
  margin-top: -4px;
  margin-left: -1px;
  border-radius: 0;
  background-clip: padding-box
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(100% 100%)
}

.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline
}

.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
  color: #333;
  line-height: 13px;
  cursor: default
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 0px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 0 #fff inset;
  background-image: none
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: rgba(0, 0, 0, 0)
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, .3)
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #222 !important
}

.chosen-disabled {
  opacity: .5 !important;
  cursor: default
}

.chosen-disabled .chosen-single {
  cursor: default
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default
}

.chosen-rtl {
  text-align: right
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px
}

.chosen-rtl .chosen-choices li {
  float: right
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none
}

.chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  direction: rtl
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 144dpi),
only screen and (min-resolution: 1.5dppx) {

  .chosen-rtl .chosen-search input[type=text],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type=text],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important
  }
}

.alert {
  position: fixed;
  z-index: 1;
  bottom: 12px;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s cubic-bezier(0, 0.97, 0.43, 1)
}

@media(max-width: 1023.98px) {
  .alert {
    bottom: 0
  }
}

.alert.active {
  opacity: 1;
  pointer-events: all;
  bottom: 24px
}

@media(max-width: 1023.98px) {
  .alert.active {
    bottom: 12px
  }
}

.alert__wrapper {
  background: #003b5c;
  padding: 24px;
  border-radius: 8px
}

@media(max-width: 1023.98px) {
  .alert__wrapper {
    padding: 12px
  }
}

@media(max-width: 767.98px) {
  .alert__wrapper {
    margin-left: 50px
  }
}

.alert__wrapper .content {
  padding-right: 24px
}

@media(max-width: 1023.98px) {
  .alert__wrapper .content {
    padding-right: 12px
  }
}

.alert__close {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  color: #fff;
  cursor: pointer
}

@media(max-width: 1023.98px) {
  .alert__close {
    top: 12px;
    right: 12px
  }
}

.alert__close svg {
  width: 24px;
  height: 24px
}

.scroll-blocker {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(0, 0.97, 0.43, 1)
}

.scroll-blocker._light {
  background: #fff
}

.scroll-blocker._dark {
  background: #000
}

body._main-nav {
  overflow: hidden
}

body._main-nav .scroll-blocker[data-scroll-blocker] {
  opacity: .4;
  pointer-events: all
}

@media only screen and (max-width: 1280px) {
  body._main-nav .scroll-blocker[data-scroll-blocker] {
    display: none
  }
}

body._filters-panel {
  overflow: hidden
}

body._filters-panel .scroll-blocker[data-filters-panel-btn] {
  opacity: .4;
  pointer-events: all
}

body._contact-panel .scroll-blocker[data-panel-btn=contact] {
  z-index: 3;
  opacity: .4;
  pointer-events: all
}

body._language-panel .scroll-blocker[data-panel-btn=language] {
  z-index: 3;
  opacity: .4;
  pointer-events: all
}

body._jobs-panel .scroll-blocker[data-panel-btn=jobs] {
  z-index: 3;
  opacity: .4;
  pointer-events: all
}

body._zoom .scroll-blocker[data-scroll-blocker] {
  opacity: 1;
  pointer-events: all;
  z-index: 3;
  transition: opacity .7s cubic-bezier(0, 0.97, 0.43, 1)
}

body._search-active {
  overflow: hidden
}

body._search-active .scroll-blocker[data-scroll-blocker] {
  z-index: 2;
  opacity: .4;
  pointer-events: all
}

@media only screen and (max-width: 1280px) {
  body._search-active .scroll-blocker[data-scroll-blocker] {
    display: none
  }
}

.styleguide {
  margin: 50px 0
}

.styleguide-wrapper {
  margin: 50px 0
}

.styleguide-cat {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 50px
}

.styleguide-cat:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 2px;
  width: 100%;
  background: #000
}

.styleguide-cat .h5 {
  text-transform: uppercase
}

.styleguide-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 50px
}

@media(max-width: 1439.98px) {
  .styleguide-row {
    margin-bottom: 40px
  }
}

.styleguide-details {
  flex: 0 0 20%;
  max-width: 20%;
  font-size: pxrem(16)
}

@media(max-width: 1439.98px) {
  .styleguide-details {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px
  }
}

.styleguide-details .h6 {
  color: #003b5c;
  margin-bottom: 20px
}

.styleguide-details ul li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px
}

.styleguide-details ul strong,
.styleguide-details ul span {
  flex: 0 0 50%;
  max-width: 50%
}

.styleguide-example {
  flex: 0 0 80%;
  max-width: 80%
}

@media(max-width: 1439.98px) {
  .styleguide-example {
    flex: 0 0 100%;
    max-width: 100%
  }
}

.styleguide-colors {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap
}

.styleguide-colors .styleguide-colors-i {
  flex: 0 0 25%;
  max-width: 25%
}

@media(max-width: 1023.98px) {
  .styleguide-colors .styleguide-colors-i {
    flex: 0 0 50%;
    max-width: 50%
  }
}

@media(max-width: 767.98px) {
  .styleguide-colors .styleguide-colors-i {
    flex: 0 0 100%;
    max-width: 100%
  }
}

.styleguide-colors .styleguide-colors-box {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative
}

@media(max-width: 1023.98px) {
  .styleguide-colors .styleguide-colors-box {
    padding-top: 50%
  }
}

.styleguide-colors p {
  position: absolute;
  display: inline-block;
  bottom: 10px;
  right: 10px;
  color: #fff
}

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