@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Config
# Grid
# Helpers
# Base
# Layout
# Plugins
# Print Styles
# Components
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Config
--------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-size: 1em;
  line-height: 1.35;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

a {
  text-decoration: none;
}

a:focus,
a:hover,
a:active {
  outline: none;
  color: #fff;
}


a.communicate__box-link:focus,
a.communicate__box-link:hover,
a.communicate__box-link:active {
  outline: none;
  color: #014E85;
}


abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 0;
}

dfn {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q::before,
q::after {
  content: '';
}

small {
  font-size: 85%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='search'],
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}

input,
textarea,
select {
  outline: none;
}

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

td {
  vertical-align: top;
}

/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/
.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

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

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

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

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

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

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

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

.order-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

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

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

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

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

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

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media only screen and (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media only screen and (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media only screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 1 auto !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -webkit-flex-grow: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -webkit-flex-grow: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -webkit-flex-shrink: 0 !important;
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -webkit-flex-shrink: 1 !important;
      -ms-flex-negative: 1 !important;
          flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
          align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
          align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
          align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
          align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
          align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
          align-self: stretch !important;
}

@media only screen and (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-sm-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-sm-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-sm-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-sm-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-sm-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}

@media only screen and (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-md-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-md-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-md-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-md-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-md-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-md-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-md-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-md-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}

@media only screen and (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-lg-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-lg-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-lg-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-lg-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-lg-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}

@media only screen and (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-xl-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-xl-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-xl-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-xl-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-xl-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}

/*--------------------------------------------------------------
# Helpers
--------------------------------------------------------------*/
@font-face {
  font-family: 'svgicons';
  src: url("../assets/fonts/svgicons.woff2") format("woff2"), url("../assets/fonts/svgicons.woff") format("woff"), url("../assets/fonts/svgicons.ttf") format("truetype");
}

.font-ico-arrow-right:before, .font-ico-arrow-slider-left:before, .font-ico-arrow-slider-right:before, .font-ico-chevron-down:before, .font-ico-close:before, .font-ico-collaborate:before, .font-ico-communicate:before, .font-ico-create:before, .font-ico-date:before, .font-ico-download-file:before, .font-ico-download:before, .font-ico-email:before, .font-ico-footer:before, .font-ico-linkedin:before, .font-ico-location:before, .font-ico-pdf:before, .font-ico-phone:before, .font-ico-quotes:before, .font-ico-share:before, .font-ico-time:before, .font-ico-triangle:before, .font-ico-twitter:before, .font-ico-youtube:before {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
}

[class*='font-ico'] {
  display: inline-block;
}

.font-ico-arrow-right:before {
  content: "";
}

.font-ico-arrow-slider-left:before {
  content: "";
}

.font-ico-arrow-slider-right:before {
  content: "";
}

.font-ico-chevron-down:before {
  content: "";
}

.font-ico-close:before {
  content: "";
}

.font-ico-collaborate:before {
  content: "";
}

.font-ico-communicate:before {
  content: "";
}

.font-ico-create:before {
  content: "";
}

.font-ico-date:before {
  content: "";
}

.font-ico-download-file:before {
  content: "";
}

.font-ico-download:before {
  content: "";
}

.font-ico-email:before {
  content: "";
}

.font-ico-footer:before {
  content: "";
}

.font-ico-linkedin:before {
  content: "";
}

.font-ico-location:before {
  content: "";
}

.font-ico-pdf:before {
  content: "";
}

.font-ico-phone:before {
  content: "";
}

.font-ico-quotes:before {
  content: "";
}

.font-ico-share:before {
  content: "";
}

.font-ico-time:before {
  content: "";
}

.font-ico-triangle:before {
  content: "";
}

.font-ico-twitter:before {
  content: "";
}

.font-ico-youtube:before {
  content: "";
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

.hide {
  display: none;
}

.show {
  display: block;
}

.clear {
  clear: both;
}

.no-margin {
  margin: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.centered {
  text-align: center;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.has-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.cover-img {
  min-width: 1000%;
  min-height: 1000%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.1);
          transform: translate(-50%, -50%) scale(0.1);
}

.bg-black {
  background-color: #000;
}

.color-black {
  color: #000;
}

.bg-white {
  background-color: #fff;
}

.color-white {
  color: #fff;
}

.bg-gainsboro {
  background-color: #e1e1e1;
}

.color-gainsboro {
  color: #e1e1e1;
}

.bg-venetian-red {
  background-color: #014E85;
}

.color-venetian-red {
  color: #e4001c;
}

.bg-charcoal {
  background-color: #434343;
}

.color-charcoal {
  color: #434343;
}

.bg-purple {
  background-color: #6f2f91;
}

.color-purple {
  color: #6f2f91;
}

.bg-blue {
  background-color: #009cde;
}

.color-blue {
  color: #009cde;
}

.bg-orange {
  background-color: #ff9e19;
}

.color-orange {
  color: #ff9e19;
}

.bg-nobel {
  background-color: #9b9b9b;
}

.color-nobel {
  color: #9b9b9b;
}

.bg-black-pearl {
  background-color: #16181a;
}

.color-black-pearl {
  color: #16181a;
}

.bg-dark-grey {
  background-color: #a4a4a4;
}

.color-dark-grey {
  color: #a4a4a4;
}

.bg-solitude {
  background-color: #e1e4e7;
}

.color-solitude {
  color: #e1e4e7;
}

.bg-light-solitude {
  background-color: #f4f5f7;
}

.color-light-solitude {
  color: #f4f5f7;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
@font-face {
  font-family: 'Diodrum';
  src: url("../assets/fonts/Diodrum-Light.woff") format("woff"), url("../assets/fonts/Diodrum-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Diodrum';
  src: url("../assets/fonts/Diodrum-Regular.woff") format("woff"), url("../assets/fonts/Diodrum-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Diodrum';
  src: url("../assets/fonts/Diodrum-Medium.woff") format("woff"), url("../../assets/fonts/Diodrum-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Diodrum';
  src: url("../assets/fonts/Diodrum-Semibold.woff") format("woff"), url("../assets/fonts/Diodrum-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Diodrum';
  src: url("../assets/fonts/Diodrum-Bold.woff") format("woff"), url("../assets/fonts/Diodrum-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

.rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Diodrum", sans-serif;
  font-weight: normal;
  line-height: 1.35em;
}

.rte h1, .h1 {
  font-size: 70px;
  font-weight: 300;
  line-height: 70px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 991.98px) {
  .rte h1, .h1 {
    font-size: 60px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 767.98px) {
  .rte h1, .h1 {
    font-size: 40px;
    line-height: 40px;
  }
}

.rte h2, .h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 50px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 991.98px) {
  .rte h2, .h2 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767.98px) {
  .rte h2, .h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.rte h3, .h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: -0.4px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767.98px) {
  .rte h3, .h3 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
  }
}

.rte h4, .h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991.98px) {
  .rte h4, .h4 {
    line-height: 34px;
  }
}

@media only screen and (max-width: 767.98px) {
  .rte h4, .h4 {
    font-size: 23px;
    line-height: 30px;
  }
}

.rte h5, .h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991.98px) {
  .rte h5, .h5 {
    line-height: 24px;
  }
}

@media only screen and (max-width: 767.98px) {
  .rte h5, .h5 {
    font-size: 18px;
    line-height: 22px;
  }
}

.rte h6, .h6 {
  font-size: 16px;
}

.rte .intro-text {
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 47px;
  font-weight: 300;
  color: #000;
}

.rte p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
  color: #585858;
}

.rte p a {
  position: relative;
  color: inherit;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

.rte p a::after {
  content: '';
  display: inline-block;
  width: 100%;
  position: absolute;
  height: 1px;
  background-color: #e4001c;
  bottom: 4px;
  left: 0;
}

@media only screen and (min-width: 1025px) {
  .no-touch .rte p a:hover {
    color: #e4001c;
  }
}

.rte blockquote {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 30px 0;
}

.rte ul {
  padding-left: 20px;
}

.rte ol {
  padding-left: 20px;
}

.rte ul li {
  list-style-type: disc;
}

.rte ol li {
  list-style-type: decimal-leading-zero;
}

@media only screen and (max-width: 991.98px) {
  .rte .intro-text {
    margin-bottom: 33px;
  }
  .rte p {
    margin-bottom: 32px;
  }
}

@media only screen and (max-width: 767.98px) {
  .rte .intro-text {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 23px;
  }
  .rte p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 28px;
  }
}

img {
  max-width: 100%;
}

body {
  font-family: "Diodrum", sans-serif;
  font-size: 14px;
}

body.no-scroll {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  position: fixed;
}

.wrap {
  margin: 0 auto;
  max-width: 1248px;
  padding: 0 34px;
  width: 100%;
}

@media only screen and (max-width: 767.98px) {
  .wrap {
    padding: 0 20px;
  }
}

.content-up {
  position: relative;
  margin-top: -150px;
  padding: 0 34px;
  overflow: hidden;
}

@media only screen and (max-width: 991.98px) {
  .content-up {
    margin-top: -110px;
  }
}

@media only screen and (max-width: 767.98px) {
  .content-up {
    margin: 0;
    padding: 0 20px;
  }
}

.content-up__container {
  max-width: 1180px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
a,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

@media only screen and (min-width: 992px) {
  a:focus,
  button:focus {
    outline: 1px dashed rgba(225, 228, 231, 0.2);
  }
}

a {
  display: inline-block;
}

button,
input[type='button'],
input[type='submit'] {
  background: none;
  border: 0;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.btn {
  color: #fff;
  font-size: 16px;
  text-align: center;
  height: 50px;
  line-height: 17px;
  padding: 15px 24px 17px;
  border: 2px solid #fff;
  border-radius: 28px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 500;
}

.btn::after {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  display: inline-block;
  font-size: 8px;
  margin-left: 5px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .btn:hover {
    color: #000;
    background-color: #fff;
  }
}

.btn--nav {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media only screen and (max-width: 991.98px) {
  .btn--nav {
    margin: 32px 30px 0;
    color: #014E85;
    border-color: #014E85;
  }
}

@media only screen and (max-width: 767.98px) {
  .btn--nav {
    margin: 32px 20px 0;
  }
}

.btn--red {
  color: #e4001c;
  border-color: #e4001c;
}

@media only screen and (min-width: 1025px) {
  .no-touch .btn--red:hover {
    background-color: #e4001c;
    color: #fff;
  }
}

.btn--red-bg {
  color: #fff;
  background-color: #e4001c;
  border-color: #e4001c;
}

@media only screen and (min-width: 1025px) {
  .no-touch .btn--red-bg:hover {
    background-color: #fff;
    color: #e4001c;
    border-color: #e4001c;
  }
}

.btn-play {
  position: relative;
  width: 80px;
  height: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-play::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  color: #fff;
  font-size: 26px;
  padding-left: 7px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .btn-play:hover {
    background-color: #fff;
    border-color: #fff;
  }
  .no-touch .btn-play:hover::before {
    color: #000;
  }
}

@media only screen and (max-width: 767.98px) {
  .btn-play {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }
}

.btn-play--collaborate {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0;
  position: absolute;
  bottom: 29px;
  left: 22px;
}

.btn-play--collaborate::before {
  font-size: 20px;
  padding-left: 7px;
}

@media only screen and (max-width: 767.98px) {
  .btn-play--collaborate {
    bottom: 23px;
  }
}

.back-top {
  position: absolute;
  left: 34px;
  top: -40px;
  height: 80px;
  width: 80px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 1025px) {
  .no-touch .back-top:hover {
    background-color: #014E85;
  }
}

@media only screen and (max-width: 767.98px) {
  .back-top {
    left: 20px;
  }
}

.back-top__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn--banner-media {
  margin-top: 44px;
}

@media only screen and (max-width: 767.98px) {
  .btn--banner-media {
    margin-top: 27px;
  }
}

.btn--download {
  background-color: #fff;
  color: #000;
  padding: 8px 18px 10px;
  height: 36px;
  font-size: 14px;
}

.btn--download::before {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  display: inline-block;
  font-size: 10px;
  color: #e4001c;
  margin-right: 5px;
}

.btn--download::after {
  display: none;
}

@media only screen and (min-width: 1025px) {
  .no-touch .btn--download:hover {
    background-color: #e4001c;
    color: #fff;
    border-color: #e4001c;
  }
  .no-touch .btn--download:hover::before {
    color: #fff;
  }
}

@media only screen and (max-width: 767.98px) {
  .btn--download {
    display: block;
    margin-bottom: 4px;
  }
}

.close-btn {
  position: relative;
  height: 12px;
  width: 12px;
}

.close-btn::before, .close-btn::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 2px;
  right: 0;
  background-color: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.close-btn::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
}

.close-btn::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
}

@media only screen and (min-width: 1025px) {
  .no-touch .close-btn:hover::before, .no-touch .close-btn:hover::after {
    background-color: #e4001c;
  }
}

input,
textarea {
  background: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  height: 25px;
  padding: 0 10px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

input::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.link-underline {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  margin-right: 20px;
}

.link-underline::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #000;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.link-underline::after {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
  color: #fff;
  font-size: 14px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .link-underline:hover::before {
    width: 100%;
  }
}

.title-line {
  position: relative;
  font-size: 32px;
  font-weight: 700;
}

.title-line::before {
  content: '';
  display: block;
  position: absolute;
  width: 2000px;
  top: 20px;
  height: 1px;
  background-color: #fff;
  right: 100%;
  margin-right: 18px;
}

@media only screen and (max-width: 991.98px) {
  .title-line::before {
    top: 28px;
    margin-right: 16px;
  }
}

@media only screen and (max-width: 767.98px) {
  .title-line::before {
    display: none;
  }
}

.link-hover {
  position: relative;
}

.link-hover::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  height: 1px;
  background-color: #fff;
}

.link-hover::before {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  position: absolute;
  display: block;
  right: -19px;
  top: 5px;
  color: #fff;
  font-size: 8px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .link-hover:hover::after {
    width: 100%;
  }
}

@media only screen and (max-width: 991.98px) {
  .link-hover::before {
    top: 4px;
  }
}

.link-hover--bottom::before {
  top: 10px;
  font-size: 12px;
  right: -23px;
}

@media only screen and (max-width: 767.98px) {
  .link-hover--bottom::before {
    top: 13px;
    font-size: 7px;
    right: -16px;
  }
}

.link-hover--sitemap {
  color: #000;
}

.link-hover--sitemap::after {
  background-color: #000;
  bottom: 10px;
}

.link-hover--sitemap::before {
  color: #e4001c;
  font-size: 12px;
  right: -23px;
  top: 21px;
}

@media only screen and (max-width: 767.98px) {
  .link-hover--sitemap::before {
    top: 13px;
    font-size: 7px;
    right: -16px;
  }
}

.cta-link {
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media only screen and (min-width: 1025px) {
  .no-touch .cta-link:hover {
    border-bottom: 1px solid #e4001c;
  }
}

.cta-link::before {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  position: absolute;
  display: block;
  right: -19px;
  top: 5px;
  color: #fff;
  font-size: 8px;
}

.video__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

.video__overlay iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 0;
}

.video__close-btn {
  color: #fff;
  position: absolute;
  padding: 20px;
  right: 6px;
  top: 1px;
  z-index: 110;
}

.video__close-btn .icon {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.breadcrumbs {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

@media only screen and (max-width: 767.98px) {
  .breadcrumbs {
    left: 20px;
    bottom: 30px;
  }
}

.breadcrumbs--media {
  position: relative;
  left: 0;
  bottom: 0;
}

.breadcrumbs__item {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-right: 14px;
  margin-right: 14px;
  color: #fff;
}

.breadcrumbs__item::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 11px;
  background: #fff;
  right: 0;
  top: 2px;
}

.breadcrumbs__item:last-child {
  margin-right: 0;
}

.breadcrumbs__item:last-child::after {
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .breadcrumbs__item {
    font-size: 10px;
  }
}

.breadcrumbs__link {
  color: #fff;
  font-weight: 600;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

@media only screen and (min-width: 1025px) {
  .no-touch .breadcrumbs__link:hover {
    opacity: .7;
  }
}

@media only screen and (max-width: 991.98px) {
  .breadcrumbs--grid {
    left: 23px;
    bottom: 34px;
  }
  .breadcrumbs--case {
    left: 24px;
    bottom: 28px;
  }
  .breadcrumbs__item--case {
    font-size: 10px;
    padding-right: 10px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 767.98px) {
  .breadcrumbs--case {
    left: 20px;
    bottom: 24px;
  }
}

.event-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767.98px) {
  .event-box {
    display: block;
  }
}

.event-box--footer {
  width: 33.2%;
}

@media only screen and (max-width: 991.98px) {
  .event-box--footer {
    width: 100%;
  }
}

@media only screen and (max-width: 767.98px) {
  .event-box--footer {
    padding-top: 9px;
  }
}

.event-box--homefoot {
  float: right;
  margin-top: -40px;
  width: 49.2%;
}

@media only screen and (max-width: 991.98px) {
  .event-box--homefoot {
    width: calc(100% - 80px);
  }
}

.event-box__details {
  width: 230px;
  height: 80px;
  background-color: #fff;
  color: #434343;
  padding: 21px 27px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .event-box__details {
    width: 301px;
    padding: 20px 32px;
  }
}

@media only screen and (max-width: 767.98px) {
  .event-box__details {
    width: 100%;
    padding: 21px 32px;
  }
}

.event-box__details--home {
  height: 70px;
  padding: 18px 27px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .event-box__details--home {
    padding: 16px 32px;
  }
}

@media only screen and (max-width: 767.98px) {
  .event-box__details--home {
    height: 80px;
  }
}

@media only screen and (max-width: 374px) {
  .event-box__details--home {
    height: 60px;
    padding: 12px 27px;
  }
}

.event-box__date {
  display: block;
  font-weight: 500;
  line-height: 20px;
}

.event-box__place {
  display: block;
}

.event-box__button {
  width: 100%;
  height: 80px;
  background-color: #fff;
  color: #434343;
  font-size: 16px;
  line-height: 80px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.event-box__button-loan {
  background-color: #014E85;
  color: #fff;
}

.event-box__button::after {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  display: inline-block;
  font-size: 8px;
  margin-left: 5px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .event-box__button:hover {
    background-color: #696969;
  }
}

@media only screen and (max-width: 767.98px) {
  .event-box__button {
    display: block;
    width: 100%;
  }
}

.event-box__button--home {
  height: 70px;
  line-height: 70px;
}

@media only screen and (max-width: 767.98px) {
  .event-box__button--home {
    height: 80px;
    line-height: 80px;
  }
}

@media only screen and (max-width: 375px) {
  .event-box__button--home {
    height: 60px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 991.98px) {
  .event-box__details--homefoot {
    width: 255px;
  }
}

@media only screen and (max-width: 767.98px) {
  .event-box__details--homefoot {
    width: 100%;
  }
  .event-box__button--homefoot {
    width: calc(100% + 80px);
    margin-left: -80px;
  }
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
.slick-slider {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  display: block;
  position: relative;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

.slick-dots {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  font-size: 0;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 200%;
  text-align: right;
}

.slick-dots li {
  display: inline-block;
  margin-right: 23px;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #969696;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 1025px) {
  .no-touch .slick-dots button:hover {
    background-color: #d0021b;
  }
}

.slick-dots .slick-active button {
  background-color: #014E85;
}

@media only screen and (min-width: 768px) and (max-width: 1260px) {
  .slick-dots {
    padding-right: 34px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .slick-dots {
    width: 160%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slick-dots {
    max-width: 1024px;
    width: 122.3%;
  }
}

@media only screen and (max-width: 767.98px) {
  .slick-dots {
    max-width: 767px;
    width: 100%;
  }
}

.press-releases .slick-dots {
  width: 300%;
}

.slick-arrow {
  color: #014E85;
  position: absolute;
  bottom: 0;
  z-index: 2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.slick-arrow .font {
  font-size: 16px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .slick-arrow:hover {
    color: #000;
  }
}

.slick-prev {
  left: 0;
}

.slick-next {
  left: 78px;
}

.slick-disabled {
  color: #d5d5d5;
}

@media only screen and (min-width: 1025px) {
  .no-touch .slick-disabled:hover {
    color: #d5d5d5;
  }
}

.hide-carousel .slick-dots,
.hide-carousel .slick-arrow {
  display: none;
}

.hide-carousel .slider__wrap {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  body {
    background: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  a:link, a:visited {
    background: #fff;
    color: #000;
    text-decoration: underline;
  }
  a:not([href='javascript:;']):after {
    content: "[" attr(href) "]";
  }
  h1, h2, h3, h4, h5, h6 {
    background: none;
    color: #000;
  }
  .temp {
    display: none;
  }
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.is-beta {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
}

.is-beta__container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 90px;
  height: 75px;
  overflow: hidden;
}

.is-beta__label {
  width: 150px;
  margin-top: 2px;
  margin-left: -50px;
  padding: 8px;
  background-color: #c1d72e;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  -webkit-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
}

@media only screen and (min-width: 1025px) {
  .no-touch .is-beta__label:hover {
    background-color: #9eb022;
  }
}

.is-beta__close {
  width: 80px;
  height: 80px;
  background-color: #fff;
}

.is-beta__close span {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 auto;
  background-color: #c1d72e;
  border-radius: 50%;
  -webkit-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
}

.is-beta__close span::before, .is-beta__close span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 16px;
  background-color: #fff;
  border-radius: 2px;
}

.is-beta__close span::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.is-beta__close span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media only screen and (min-width: 1025px) {
  .no-touch .is-beta__close:hover span {
    background-color: #9eb022;
  }
}

@media only screen and (max-width: 767.98px) {
  .is-beta__close {
    width: 40px;
    height: 40px;
  }
}

.is-beta__cta {
  margin-top: 35px;
  padding: 14px 25px;
  background-color: #0061ad;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
}

@media only screen and (min-width: 1025px) {
  .no-touch .is-beta__cta:hover {
    background-color: #00447a;
  }
}

@media only screen and (max-width: 767.98px) {
  .is-beta__cta {
    margin-top: 10px;
    padding: 8px 24px;
    font-size: 14px;
  }
}

.is-beta__content-container {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.is-beta__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 930px;
  width: calc(100% - 40px);
  background-color: #fff;
  border: 2px solid #c1d72e;
}

.is-beta__content-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 2px;
  background-color: #c1d72e;
}

.is-beta__content-body {
  padding: 40px 30px;
}

.is-beta__content-body h4 {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.is-beta__content-body p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
}

@media only screen and (max-width: 767.98px) {
  .is-beta__content-body {
    padding: 20px;
  }
  .is-beta__content-body h4 {
    font-size: 24px;
  }
  .is-beta__content-body p {
    font-size: 16px;
  }
}

.is-beta__content-title {
  margin-right: auto;
  padding-left: 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
}

@media only screen and (max-width: 767.98px) {
  .is-beta__content-title {
    padding-left: 20px;
    font-size: 20px;
  }
}

.is-beta__content-logo {
  max-width: 130px;
  max-height: 35px;
  margin-right: 30px;
  margin-bottom: -10px;
}

@media only screen and (max-width: 767.98px) {
  .is-beta__content-logo {
    max-width: 80px;
    margin-right: 20px;
    margin-bottom: -6px;
  }
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 46px 60px 15px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media (max-width: 1525px) {
  .header {
    padding: 46px 25px 15px;
  }
}

@media (max-width: 1299px) {
  .header {
    padding: 46px 34px 15px;
  }
}

@media only screen and (max-width: 991.98px) {
  .header {
    padding: 43px 34px 31px;
  }
}

@media only screen and (max-width: 767.98px) {
  .header {
    padding: 16px 20px 15px;
  }
}

.header--active {
  background-color: #fff;
  position: fixed;
}

.header--active .nav {
  visibility: visible;
  opacity: 1;
  z-index: 100;
  pointer-events: all;
}

.header--active .header__logo {
  display: none;
}

.header--active .header__logo--show {
  display: block;
}

.header--active .header__logo--active {
  display: block;
}

.header--active .nav__btn {
  height: 40px;
}

.header--active .nav__toggle {
  background-color: transparent;
}

.header--active .nav__toggle::before, .header--active .nav__toggle::after {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  background-color: #000;
  top: 10px;
}

.header--active .nav__toggle::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
}

.header--active .nav__toggle::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
}

.header--active .nav__toggle--sitemap::before, .header--active .nav__toggle--sitemap::after {
  background-color: #e4001c;
}

@media only screen and (max-width: 767.98px) {
  .header--active {
    height: 100vh;
    overflow-y: auto;
  }
}

.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767.98px) {
  .header__container {
    height: 54px;
  }
}

.header__home {
  max-width: 164px;
  z-index: 110;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media only screen and (max-width: 767.98px) {
  .header__home {
    max-width: 146px;
    font-size: 40px;
  }
}

.header__logo {
  width: 164px;
}

.header__logo--show {
  display: none;
}

.header__logo--sitemap {
  display: none;
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
}

@media only screen and (max-width: 991.98px) {
  .nav {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 41px;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 767.98px) {
  .nav {
    top: 85px;
  }
}

.nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (max-width: 1299px) {
  .nav__list {
    max-width: 595px;
  }
}

@media only screen and (max-width: 991.98px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: none;
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.nav__item {
  position: relative;
  margin: 0 21px;
}

@media (max-width: 1550px) {
  .nav__item {
    margin: 0 18px;
  }
}

@media (max-width: 1525px) {
  .nav__item {
    margin: 0 9px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .nav__item {
    margin: 0 12px;
  }
}

@media only screen and (max-width: 991.98px) {
  .nav__item {
    border-bottom: 1px solid #e1e1e1;
    margin: 0;
  }
  .nav__item:first-of-type {
    border-top: 1px solid #e1e1e1;
  }
}

.nav__link {
  color: #fff;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  display: block;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 1025px) {
  .no-touch .nav__link:hover::after {
    width: 100%;
  }
}

@media (max-width: 1554px) {
  .nav__link {
    line-height: 40px;
  }
  .nav__link::after {
    bottom: 0;
  }
}

@media only screen and (max-width: 991.98px) {
  .nav__link {
    color: #000;
    padding: 0 30px;
    line-height: 59px;
  }
}

@media only screen and (max-width: 767.98px) {
  .nav__link {
    line-height: 49px;
    padding: 0 20px;
  }
}

.nav__link--active::after {
  width: 100%;
}

.nav__link--purple::after {
  background-color: #ad87f7;
}

.nav__link--blue::after {
  background-color: #8bdcf9;
}

.nav__link--orange::after {
  background-color: #ff9e19;
}

.nav__link--sitemap {
  color: #000;
}

.nav__link--sitemap::after {
  background-color: #000;
}

.header__icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-right: 15px;
  margin-top: -4px;
}

@media (max-width: 1525px) {
  .header__icons {
    padding-right: 5px;
  }
}

@media only screen and (max-width: 991.98px) {
  .header__icons {
    padding: 32px 32px 0 0;
    margin-left: auto;
    margin-top: 0;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media only screen and (max-width: 767.98px) {
  .header__icons {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding: 28px 6px 3px;
    margin: 0;
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.header__icon {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 11px;
  padding: 0 15px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .header__icon:hover {
    color: #000;
  }
}

@media (max-width: 1525px) {
  .header__icon {
    padding: 0 11px;
  }
}

@media (max-width: 1299px) {
  .header__icon {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 991.98px) {
  .header__icon {
    color: #000;
  }
}

@media only screen and (max-width: 991.98px) and (min-width: 1025px) {
  .no-touch .header__icon:hover {
    color: #e4001c;
  }
}

.header__icon--twitter {
  font-size: 12px;
}

.header__icon--linkedin {
  font-size: 15px;
}

.header__icon--sitemap {
  color: #000;
}

@media only screen and (min-width: 1025px) {
  .no-touch .header__icon--sitemap:hover {
    color: #e4001c;
  }
}

.nav__btn {
  position: relative;
  height: 22px;
  width: 40px;
  z-index: 110;
}

@media only screen and (min-width: 992px) {
  .nav__btn {
    display: none;
  }
}

.nav__toggle {
  display: block;
  position: absolute;
  background-color: #fff;
  height: 2px;
  width: 40px;
  border-radius: 1px;
  left: 0;
  top: 9px;
  z-index: 20;
}

.nav__toggle::before, .nav__toggle::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 2px;
  left: 0;
  border-radius: 1px;
  background-color: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.nav__toggle::after {
  top: -8px;
}

.nav__toggle::before {
  top: 8px;
}

.nav__toggle--sitemap {
  background-color: #e4001c;
}

.nav__toggle--sitemap::before, .nav__toggle--sitemap::after {
  background-color: #e4001c;
}

.footer--home {
  overflow-x: hidden;
  padding-top: 40px;
}

.footer__wrap {
  position: relative;
}

.footer-links {
  padding: 105px 0 59px;
  color: #fff;
}

@media only screen and (max-width: 991.98px) {
  .footer-links {
    padding: 95px 0 55px;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-links {
    padding: 65px 0 40px;
  }
}

.footer-links--homepage {
  padding: 160px 0 27px;
}

@media only screen and (max-width: 991.98px) {
  .footer-links--homepage {
    padding: 84px 0 8px;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-links--homepage {
    padding: 192px 0 20px;
  }
}

.footer-link__wrap {
  max-width: 1340px;
  padding: 0 80px;
}

@media only screen and (max-width: 991.98px) {
  .footer-link__wrap {
    padding: 0 94px;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-link__wrap {
    padding: 0 20px;
  }
}

.footer-links__top,
.footer-links__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-links__top {
  margin-bottom: 72px;
  width: 100%;
}

@media only screen and (max-width: 991.98px) {
  .footer-links__top {
    margin-bottom: 13px;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-links__top {
    margin-bottom: 9px;
  }
}

.footer-links__top--homepage {
  margin-bottom: 9px;
  width: 100%;
}

@media only screen and (max-width: 991.98px) {
  .footer-links__top--homepage {
    margin-bottom: 20px;
    display: block;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-links__top--homepage {
    margin-bottom: 34px;
  }
}

.footer-links__title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 300;
  max-width: 478px;
}

@media only screen and (max-width: 991.98px) {
  .footer-links__title {
    max-width: none;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-links__title {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.001em;
    padding-right: 10px;
    margin-bottom: 32px;
  }
}

.footer-links__inner {
  width: 50%;
}

@media only screen and (max-width: 767.98px) {
  .footer-links__inner {
    width: 100%;
  }
}

.footer-links__inner--homepage {
  padding-top: 55px;
}

@media only screen and (max-width: 991.98px) {
  .footer-links__inner--homepage {
    width: 100%;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-links__inner--homepage {
    padding-top: 0;
  }
}

.footer-links__inner--social {
  position: relative;
}

@media only screen and (max-width: 767.98px) {
  .footer-links__inner--social {
    display: none;
  }
}

.footer-links__social {
  position: absolute;
  width: 380px;
  height: 290px;
  top: -205px;
  right: 0;
  padding: 42px 40px 47px;
  text-align: center;
  -webkit-box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 991.98px) {
  .footer-links__social {
    top: -175px;
  }
}

.footer-pretitle {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.57px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

@media only screen and (max-width: 767.98px) {
  .footer-pretitle {
    margin-bottom: 4px;
  }
}

.footer-pretitle--homepage {
  position: relative;
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-pretitle__icon {
  position: absolute;
  top: -5px;
  left: -46px;
  font-size: 34px;
}

@media only screen and (max-width: 991.98px) {
  .footer-pretitle__icon {
    left: 0;
    top: -45px;
  }
}

.footer-links__list {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 23px;
          column-gap: 23px;
}

@media only screen and (max-width: 991.98px) {
  .footer-links__list {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.footer-links__link {
  position: relative;
  font-weight: 300;
  font-size: 23px;
  line-height: 36px;
}

@media only screen and (max-width: 767.98px) {
  .footer-links__link {
    font-size: 16px;
  }
}

.footer-links__heading {
  font-size: 16px;
  line-height: 80px;
  margin-right: 15px;
  display: inline-block;
}

@media only screen and (max-width: 991.98px) {
  .footer-links__heading {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-links__heading {
    margin-right: 12px;
    margin-bottom: 0;
    line-height: 55px;
  }
}

.footer-links__icons {
  display: inline-block;
}

.footer-links__icon {
  padding-left: 13px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer-links__icon:not(:last-of-type) {
  padding-right: 13px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .footer-links__icon:hover {
    color: #000;
  }
}

.footer-links__icon--twitter {
  font-size: 12px;
}

.footer-links__icon--youtube {
  font-size: 11px;
}

.footer__copyright {
  background-color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 36px 50px 38px 60px;
  line-height: 16px;
}

@media only screen and (max-width: 991.98px) {
  .footer__copyright {
    padding: 38px 34px;
    line-height: 14px;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 19px 20px 25px;
    text-align: center;
    line-height: normal;
  }
}

.footer__rights,
.footer__link {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
}

@media only screen and (max-width: 991.98px) {
  .footer__rights,
  .footer__link {
    font-size: 12px;
  }
}

.footer__link {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media only screen and (min-width: 1025px) {
  .no-touch .footer__link:hover {
    color: #e4001c;
  }
}

.footer__item {
  display: inline-block;
}

.footer__item:not(:last-of-type)::after {
  content: '/';
  padding: 0 3px;
  color: #fff;
}

@media only screen and (max-width: 991.98px) {
  .footer__item:not(:last-of-type)::after {
    padding: 0 2px;
  }
}

@media only screen and (max-width: 991.98px) {
  .footer-links__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer__rights {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__list {
    padding-bottom: 22px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-links__no-event {
    padding-top: 110px;
  }
}

.slider-footer__slide {
  min-height: 215px;
}

.footer-links__twitter {
  color: #000;
  margin-bottom: 26px;
  font-size: 16px;
}

.footer-links__social-text {
  line-height: 20px;
  color: #969696;
}

.footer-links__social-link {
  color: #e4001c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 1025px) {
  .no-touch .footer-links__social-link:hover {
    color: #000;
  }
}

.footer-links__social-date {
  display: block;
  color: #969696;
  font-size: 12px;
  line-height: 20px;
  margin-top: 19px;
}

.basic-block {
  padding: 72px 0 50px;
  max-width: 980px;
  margin: 0 auto;
}

@media only screen and (max-width: 991.98px) {
  .basic-block {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .basic-block {
    padding: 0 0 30px;
  }
}

.basic-block__title {
  max-width: 780px;
  margin: 0 auto;
}

.basic-block__image {
  padding-top: 17px;
}

@media only screen and (max-width: 991.98px) {
  .basic-block__image {
    padding: 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .basic-block__image {
    padding-top: 5px;
  }
}

.intro-block {
  padding-top: 104px;
  border-bottom: 1px solid #e1e1e1;
}

@media only screen and (max-width: 991.98px) {
  .intro-block {
    padding-top: 48px;
  }
}

@media only screen and (max-width: 767.98px) {
  .intro-block {
    padding-top: 24px;
  }
}

.intro-block--universe {
  padding-top: 272px;
}

@media only screen and (max-width: 991.98px) {
  .intro-block--universe {
    padding-top: 136px;
  }
}

@media only screen and (max-width: 767.98px) {
  .intro-block--universe {
    padding-top: 125px;
  }
}

.intro-block--standard {
  border-bottom: 0;
}

.intro-block__container {
  max-width: 776px;
  margin: 0 auto;
  padding-bottom: 59px;
}

@media only screen and (max-width: 991.98px) {
  .intro-block__container {
    max-width: 619px;
    padding-bottom: 26px;
  }
}

@media only screen and (max-width: 767.98px) {
  .intro-block__container {
    padding-bottom: 15px;
  }
}

.intro-block__container--universe {
  padding-bottom: 66px;
}

@media only screen and (max-width: 991.98px) {
  .intro-block__container--universe {
    max-width: none;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767.98px) {
  .intro-block__container--universe {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .intro-block__container--standard {
    padding-bottom: 30px;
  }
}

.banner {
  position: relative;
  color: #fff;
}

.banner__wrap {
  position: relative;
  height: 100%;
  z-index: 1;
}

.banner__image {
  height: 780px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner__image {
    height: 740px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__image {
    height: 950px;
  }
}

.banner__content {
  position: absolute;
  bottom: 353px;
  left: 0;
  width: 45%;
  padding: 0 34px;
  text-align: left;
}

.banner__content-loan {
  left: 25px;
}

@media only screen and (max-width: 991.98px) {
  .banner__content {
    bottom: 313px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__content {
    bottom: 219px;
    padding: 0 20px;
  }
}

.banner__content--approach {
  bottom: 317px;
}

@media only screen and (max-width: 991.98px) {
  .banner__content--approach {
    bottom: 276px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__content--approach {
    bottom: 610px;
    width: 85%;
  }
}

.banner__content--universe {
  bottom: -209px;
}

@media only screen and (max-width: 991.98px) {
  .banner__content--universe {
    bottom: -89px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__content--universe {
    bottom: -95px;
  }
}

.banner__content--standard {
  bottom: 315px;
}

@media only screen and (max-width: 991.98px) {
  .banner__content--standard {
    bottom: 305px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__content--standard {
    bottom: 190px;
  }
}

.banner__title {
  font-weight: 300;
  margin-bottom: 16px;
}

@media only screen and (max-width: 991.98px) {
  .banner__title {
    margin-bottom: 18px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__title {
    margin-bottom: 10px;
  }
}

.banner__title--case {
  max-width: 475px;
  margin: 0 auto 20px;
}

@media only screen and (max-width: 991.98px) {
  .banner__title--case {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__title--case {
    margin-bottom: 15px;
  }
}

.banner__text {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  max-width: 396px;
}

@media only screen and (max-width: 991.98px) {
  .banner__text {
    max-width: 420px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 245px;
  }
}

.banner__universe-image,
.banner__universe-container {
  margin-top: 72px;
}

@media (max-width: 900px) {
  .banner__universe-image,
  .banner__universe-container {
    margin-top: 156px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__universe-image,
  .banner__universe-container {
    margin-top: 60px;
  }
}

@media (max-width: 540px) {
  .banner__universe-image,
  .banner__universe-container {
    margin-top: 146px;
  }
}

.has-video .banner__universe-image {
  display: none;
}

.banner__universe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 50.85%;
}

.has-image .banner__universe-container {
  display: none;
}

.banner__universe-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.banner__icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 25px;
}

@media only screen and (max-width: 991.98px) {
  .banner__icons {
    padding-bottom: 35px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__icons {
    padding-bottom: 20px;
  }
}

.banner__icon {
  margin: 0 30px;
}

@media only screen and (max-width: 767.98px) {
  .banner__icon {
    margin: 0 12px;
    width: 52px;
  }
}

.banner__share {
  position: absolute;
  left: 63px;
  bottom: 50px;
  z-index: 2;
}

@media (max-width: 1400px) {
  .banner__share {
    left: 34px;
    bottom: 170px;
  }
}

@media only screen and (max-width: 991.98px) {
  .banner__share {
    bottom: 148px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__share {
    left: 20px;
    bottom: 34px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner__text--approach {
    max-width: 326px;
  }
  .banner__image--universe {
    height: 520px;
  }
}

.slider {
  position: relative;
}

.slider .slick-list {
  overflow: visible;
}

.slider .slick-slide > div {
  padding-right: 20px;
  line-height: 0;
}

@media only screen and (max-width: 767.98px) {
  .slider .slick-slide > div {
    padding-right: 10px;
  }
}

.slider__wrap {
  padding-bottom: 61px;
}

@media only screen and (max-width: 991.98px) {
  .slider__wrap {
    padding-bottom: 43px;
  }
}

.slider__wrap--footer {
  padding-bottom: 44px;
}

.slider--highlights {
  width: 600px;
}

.slider--highlights .slider__element {
  position: relative;
  overflow: hidden;
  height: 260px;
  background-image: url(/assets/images/content/purple-bg.jpg);
}

@media only screen and (max-width: 767.98px) {
.slider--highlights .slider__element {
  position: relative;
  overflow: hidden;
  height: 305px;
  background-image: url(/assets/images/content/purple-bg.jpg);
}
}

.slider_heading {
    font-size: 28px; 
    line-height: 36px; 
    font-weight: 500; 
    max-width: 625px;
    color: #fff;
    padding: 35px 30px 15px 30px;
}

.slider_text {
    color: #fff;
    font-size: 16px; 
    line-height: 30px; 
    padding: 25px 30px 15px 30px;
}

@media only screen and (min-width: 1024px) and (max-width: 1260px) {
  .slider--highlights {
    width: 49.8%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider--highlights {
    width: 81.8%;
  }
}

@media only screen and (max-width: 767.98px) {
  .slider--highlights {
    width: 96.5%;
  }
}

.slider__overlay {
  display: block;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

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

.slider__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.slider--press-releases {
  max-width: 400px;
}

.slider-footer {
  height: 100%;
}

.slider-footer .slick-dots {
  max-width: 100%;
  width: 100%;
  text-align: center;
  bottom: -7px;
}

.gallery__slider-top .slick-arrow {
  color: #fff;
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (min-width: 1025px) {
  .no-touch .gallery__slider-top .slick-arrow:hover {
    color: #e4001c;
  }
}

.gallery__slider-top .slick-prev {
  left: 30px;
}

.gallery__slider-top .slick-next {
  left: auto;
  right: 30px;
}

@media only screen and (max-width: 991.98px) {
  .gallery__slider-top .slick-arrow {
    display: none !important;
  }
}

.gallery__slider-bottom .slick-current {
  position: relative;
}

.gallery__slider-bottom .slick-current::after {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% - 2px);
  height: 3px;
  background-color: #e4001c;
  left: 1px;
  bottom: 7px;
}

.basic-box {
  padding: 90px 0 230px;
}

@media only screen and (max-width: 991.98px) {
  .basic-box {
    padding: 50px 0 160px;
  }
}

@media only screen and (max-width: 767.98px) {
  .basic-box {
    padding: 30px 0 98px;
  }
}

.basic-box__container {
  position: relative;
  padding-bottom: 90px;
}

@media only screen and (max-width: 991.98px) {
  .basic-box__container {
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 767.98px) {
  .basic-box__container {
    padding-bottom: 79px;
    padding-top: 20px;
  }
}

.basic-box__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 35px 40px 39px;
  width: 100%;
}

@media only screen and (max-width: 991.98px) {
  .basic-box__content {
    padding: 28px;
  }
}

@media only screen and (max-width: 767.98px) {
  .basic-box__content {
    padding: 17px 20px 21px;
  }
}

.basic-box__image {
  width: 100%;
}

.basic-box__title {
  font-size: 30px;
  font-weight: 300;
  line-height: 26px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 991.98px) {
  .basic-box__title {
    font-size: 23px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 767.98px) {
  .basic-box__title {
    font-size: 20px;
    padding-bottom: 8px;
  }
}

.basic-box__text {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

@media only screen and (max-width: 991.98px) {
  .basic-box__text {
    font-size: 16px;
  }
}

.banner-home {
  position: relative;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

@media only screen and (max-width: 767.98px) {
  .banner-home {
    height: 140vh;
  }
}

@media only screen and (max-width: 360px) {
  .banner-home {
    height: 140vh;
  }
}

@media only screen and (max-width: 320px) {
  .banner-home {
    height: 160vh;
  }
}

.banner-home__video {
  position: absolute;
  top: -12%;
  left: -12%;
  right: -12%;
  bottom: -12%;
  width: 124%;
  height: 124%;
}

.banner-home__iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 0;
}

.banner-home__wrap {
  position: relative;
  height: 100%;
}

.banner-home__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 68px);
  -webkit-box-orient: row;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  bottom: calc(24% - 47px);
  left: 34px;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
  .banner-home__container {
    bottom: 76px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner-home__container {
    bottom: 50px;
    width: calc(100% - 68px);
    -webkit-box-orient: column;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner-home__container {
    width: calc(100% - 40px);
    top: 25px;
    left: 20px;
    -webkit-box-orient: column;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 375px) {
  .banner-home__container {
    top: 25px;
  }
}



.banner-home__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 50%;
}

.banner-home__top {
  width: 50%;
  margin-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner-home__top {
    width: 100%;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner-home__top {
    width: 100%;
  }
}

@media only screen and (max-width: 991.98px) {
  .banner-home__bottom {
    display: block;
    padding-top: 80px;
    width: 100%;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner-home__bottom {
    padding-top: 37px;
  }
}

@media only screen and (max-width: 375px) {
  .banner-home__bottom {
    padding-top: 25px;
  }
}

.banner-home__botom-hide {
  display: none;
}

.banner-home__bottom-left,
.banner-home__bottom-right {
  width: 49.2%;
}

@media only screen and (max-width: 991.98px) {
  .banner-home__bottom-left,
  .banner-home__bottom-right {
    width: 100%;
  }
}

.banner-home__title {
  font-size: 32px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 15px;
  max-width: 625px;
}

@media only screen and (max-width: 767.98px) {
  .banner-home__title {
    font-size: 29px;
    line-height: 39px;
  }
}

@media only screen and (max-width: 375px) {
  .banner-home__title {
    font-size: 24px;
    line-height: 30px;
  }
}

.banner-home__text {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  max-width: 450px;
  padding-top: 15px;
}

@media only screen and (max-width: 991.98px) {
  .banner-home__text {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-home__text {
    font-size: 18px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  .banner-home__text {
    font-size: 16px;
    line-height: 22px;
  }
}

.countdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: center;
  padding-top: 12px;
}

@media only screen and (max-width: 991.98px) {
  .countdown {
    padding-top: 0;
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 767.98px) {
  .countdown {
    margin-bottom: 28px;
  }
}

@media only screen and (max-width: 375px) {
  .countdown {
    margin-bottom: 20px;
  }
}

.countdown__item {
  width: 100px;
  position: relative;
  padding-right: 20px;
}

.countdown__item::before {
  content: ':';
  display: inline-block;
  position: absolute;
  color: #fff;
  right: 6px;
  top: 10px;
  font-size: 20px;
}

.countdown__item:last-child::before {
  display: none;
}

.countdown__numbers {
  font-size: 36px;
  line-height: 28px;
  font-weight: 300;
}

@media only screen and (max-width: 375px) {
  .countdown__numbers {
    font-size: 30px;
  }
}

.countdown__long {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
}

.accordions {
  position: relative;
  padding: 30px 0 50px;
}

@media only screen and (max-width: 991.98px) {
  .accordions {
    padding: 11px 0 18px;
  }
}

@media only screen and (max-width: 767.98px) {
  .accordions {
    padding-bottom: 0;
  }
}

.accordions__wrap {
  max-width: 780px;
  margin: 0 auto;
}

.accordions__title {
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.4px;
  margin-bottom: 36px;
  font-weight: 500;
}

@media only screen and (max-width: 991.98px) {
  .accordions__title {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767.98px) {
  .accordions__title {
    font-size: 30px;
    letter-spacing: -0.3px;
    margin-bottom: 31px;
  }
}

.accordions__item {
  border-top: 1px solid #d8d8d8;
}

.accordions__item:last-child {
  border-bottom: 1px solid #d8d8d8;
}

.accordions__head {
  cursor: pointer;
}

.accordions__subtitle {
  display: block;
  position: relative;
  padding: 25px 58px 25px 6px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.accordions__subtitle::before, .accordions__subtitle::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #d0021b;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.accordions__subtitle::before {
  width: 15px;
  height: 2px;
  right: 22px;
}

.accordions__subtitle::after {
  width: 2px;
  height: 15px;
  right: 28px;
}

@media only screen and (max-width: 991.98px) {
  .accordions__subtitle::before {
    right: 17px;
  }
  .accordions__subtitle::after {
    right: 24px;
  }
}

@media only screen and (max-width: 767.98px) {
  .accordions__subtitle {
    padding: 23px 50px 21px 0;
    line-height: 22px;
  }
  .accordions__subtitle::before {
    right: 4px;
  }
  .accordions__subtitle::after {
    right: 10px;
  }
}

.accordions__subtitle--open::after {
  opacity: 0;
}

.accordions__content {
  display: none;
  padding: 37px 30px 63px 41px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .accordions__content {
    padding: 26px 30px 54px 20px;
  }
}

@media only screen and (max-width: 767.98px) {
  .accordions__content {
    padding: 0 0 35px;
  }
}

.accordions__content-text {
  font-size: 18px;
  line-height: 32px;
}

@media only screen and (max-width: 767.98px) {
  .accordions__content-text {
    font-size: 14px;
    line-height: 28px;
  }
}

.about-block {
  padding-top: 50px;
}

@media only screen and (max-width: 991.98px) {
  .about-block {
    padding-top: 40px;
  }
}

@media only screen and (max-width: 767.98px) {
  .about-block {
    padding: 0;
  }
}

.about-block__container {
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid #e1e1e1;
}

@media only screen and (max-width: 767.98px) {
  .about-block__container {
    border-bottom: 0;
    padding-bottom: 30px;
  }
}

.about-block__box {
  padding-left: 40px;
}

.about-block__box:not(:last-of-type) {
  border-right: 1px solid #e1e1e1;
}

@media only screen and (max-width: 991.98px) {
  .about-block__box:not(:first-of-type) {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 767.98px) {
  .about-block__box {
    padding: 22px 0 27px;
    border-right: 0 !important;
    padding-left: 0 !important;
    border-bottom: 1px solid #e1e1e1;
  }
}

.about-block__pretitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 0 18px;
}

.about-block__pretitle::before {
  color: #e4001c;
  padding-right: 8px;
}

.about-block__text {
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.about-block__text span {
  font-weight: 600;
}

.about-block__link {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 16px;
  line-height: 14px;
  padding-top: 5px;
  border-bottom: 1px solid #e4001c;
}

@media only screen and (min-width: 1025px) {
  .no-touch .about-block__link:hover {
    color: #e4001c;
  }
}

@media only screen and (max-width: 991.98px) {
  .about-block__link {
    border-bottom-color: #434343;
  }
}

.communicate {
  position: relative;
  padding-top: 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate {
    padding-top: 0;
  }
}

.communicate__container {
  position: relative;
  height: 1040px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__container {
    height: 1470px;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__container {
    height: 1864px;
  }
}

.communicate__bg {
  position: absolute;
  top: 0;
  left: 34px;
  width: 78.7%;
  height: 100%;
  -webkit-transition: background-image 0.5s ease;
  transition: background-image 0.5s ease;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__bg {
    width: calc(100% - 68px);
    height: 1470px;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__bg {
    width: 100%;
    height: 1790px;
    left: 0;
  }
}

.communicate__content {
  position: relative;
  padding-top: 80px;
  padding-left: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__content {
    padding: 40px 60px 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__content {
    padding: 40px 0 0;
  }
}

.communicate__theme {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 28px;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: 0.03em;
}

.communicate__theme::before {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  display: inline-block;
  color: #fff;
  position: absolute;
  top: 0;
  left: -53px;
  font-size: 33px;
}

@media only screen and (max-width: 991.98px) {
  .communicate__theme::before {
    position: relative;
    display: block;
    left: auto;
    top: auto;
    margin-bottom: 7px;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__theme {
    font-size: 12px;
    margin-bottom: 2px;
    letter-spacing: 0.14em;
  }
  .communicate__theme::before {
    font-size: 32px;
  }
}

.communicate__content-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 81.5%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 77px;
  margin-bottom: 48px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__content-top {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 28px;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__content-top {
    display: block;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 2px;
  }
}

.communicate__title {
  position: relative;
  font-size: 60px;
  line-height: 60px;
  font-weight: 300;
  color: #fff;
}

.communicate__title::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 1px;
  background-color: #fff;
  left: -100px;
  top: 23px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__title::before {
    width: 40px;
    left: -60px;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__title {
    font-size: 40px;
  }
  .communicate__title::before {
    display: none;
  }
}

.communicate__event {
  padding-top: 4px;
}

@media only screen and (max-width: 767.98px) {
  .communicate__event {
    display: none;
  }
}

.communicate__event-date,
.communicate__event-place {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}

.communicate__event-date {
  font-weight: 500;
}

.communicate__boxes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 10px 60px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 60px -10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 991.98px) {
  .communicate__boxes {
    display: block;
  }
}

.communicate__box {
  cursor: pointer;
  width: 33.3333%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.communicate__box:last-of-type .communicate__box-text {
  border-right: 0;
}

@media only screen and (min-width: 1025px) {
  .no-touch .communicate__box:hover {
    -webkit-box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }
  .no-touch .communicate__box:hover .communicate__box-link::before {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .communicate__box:last-of-type .communicate__box-text {
    border-bottom: 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__box {
    width: 100%;
    margin-bottom: 20px;
  }
}

.communicate__box-image {
  height: 300px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__box-image {
    height: 400px;
    width: 280px;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__box-image {
    height: 240px;
  }
}

.communicate__box-text {
  position: relative;
  padding: 33px 55px 85px 39px;
  background-color: #fff;
  min-height: 440px;
  border-right: 1px solid #e1e1e1;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__box-text {
    min-height: 280px;
    border-right: 0;
    width: calc(100% - 280px);
    padding: 23px 30px 66px 29px;
    border-bottom: 1px solid #e1e1e1;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__box-text {
    padding: 13px 20px 85px;
    min-height: 250px;
    border-right: 0;
  }
}

.communicate__box-title {
  font-size: 12px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.communicate__box-title--purple {
  color: #e4001c;
}

.communicate__box-title--blue {
  color: #6A6B6B;
}

.communicate__box-title--orange {
  color: #005C3F;
}

.communicate__box-intro {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  color: #434343;
}

@media only screen and (max-width: 767.98px) {
  .communicate__box-intro {
    font-size: 16px;
    line-height: 24px;
  }
}

.communicate__box-link {
  display: inline-block;
  position: absolute;
  bottom: 44px;
  left: 39px;
  margin-right: 20px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding-bottom: 8px;
  color: #000;
}

.communicate__box-link::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 2px;
  background-color: #000;
  -webkit-transition: width .3s;
  transition: width .3s;
}

.communicate__box-link::after {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  position: absolute;
  display: block;
  right: -16px;
  top: 7px;
  font-size: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .communicate__box-link {
    left: 29px;
    bottom: 30px;
  }
}

@media only screen and (max-width: 767.98px) {
  .communicate__box-link {
    left: 20px;
    font-size: 14px;
    bottom: 40px;
  }
  .communicate__box-link::before {
    bottom: 4px;
    width: 52px;
  }
  .communicate__box-link::after {
    font-size: 7px;
  }
}

.communicate__box-link--purple::before {
  background-color: #e4001c;
}

.communicate__box-link--purple::after {
  color: #014A7F;
}

.communicate__box-link--blue::before {
  background-color: #6A6B6B;
}

.communicate__box-link--blue::after {
  color: #6A6B6B;
}

.communicate__box-link--orange::before {
  background-color: #005C3F;
}

.communicate__box-link--orange::after {
  color: #005C3F;
}

.collaborate {
  padding: 163px 0 143px;
  position: relative;
}

.collaborate .row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -186px;
}

@media only screen and (max-width: 991.98px) {
  .collaborate {
    padding: 143px 60px 98px;
  }
  .collaborate .row-reverse {
    margin-top: -133px;
  }
}

@media only screen and (max-width: 767.98px) {
  .collaborate {
    padding: 85px 0 64px;
  }
  .collaborate .row-reverse {
    margin-top: 22px;
  }
}

.collaborate__pretitle {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

@media only screen and (max-width: 767.98px) {
  .collaborate__pretitle {
    letter-spacing: 0.03em;
  }
}

.collaborate__pretitle-icon {
  position: absolute;
  top: -4px;
  left: -66px;
  font-size: 26px;
}

@media only screen and (max-width: 991.98px) {
  .collaborate__pretitle-icon {
    left: 0;
    top: -37px;
  }
}

.collaborate__title {
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
  position: relative;
}

.collaborate__title::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 1px;
  background-color: #9b9b9b;
  left: -100px;
  top: 23px;
}

@media only screen and (max-width: 991.98px) {
  .collaborate__title::after {
    width: 40px;
    left: -60px;
  }
}

@media only screen and (max-width: 767.98px) {
  .collaborate__title {
    font-size: 40px;
    line-height: 40px;
    padding-right: 5px;
  }
  .collaborate__title::after {
    display: none;
  }
}

.collaborate__box--1 {
  margin-top: 76px;
}

@media only screen and (max-width: 991.98px) {
  .collaborate__box--1 {
    margin-top: 179px;
  }
}

.collaborate__box--2 {
  margin-top: 266px;
}

@media only screen and (max-width: 991.98px) {
  .collaborate__box--2 {
    margin-top: -161px;
  }
}

.collaborate__box--3 {
  margin-top: -186px;
}

@media only screen and (max-width: 991.98px) {
  .collaborate__box--3 {
    margin-top: 21px;
  }
}

.collaborate__box--4 {
  margin-top: -110px;
}

@media only screen and (max-width: 991.98px) {
  .collaborate__box--4 {
    margin-top: -161px;
  }
}

.collaborate__box--5 {
  margin-top: 80px;
}

@media only screen and (max-width: 991.98px) {
  .collaborate__box--5 {
    margin-top: 20px;
  }
}

.collaborate__inner {
  font-size: 0;
  -webkit-box-shadow: 0 10px 50px -15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 50px -15px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767.98px) {
  .collaborate__inner {
    min-width: 280px;
  }
}

.collaborate__container {
  height: auto;
  position: relative;
}

.collaborate__video {
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.collaborate__video--playing {
  opacity: 1;
  visibility: visible;
}

.collaborate__intro {
  padding: 21px 25px 25px;
}

.collaborate__heading {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 6px;
  font-weight: 400;
}

.collaborate__about {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.92px;
  line-height: 18px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767.98px) {
  .collaborate__box:not(:first-of-type) {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .collaborate--2boxes {
    padding-bottom: 193px;
  }
}

.highlights {
  padding: 125px 0 0 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .highlights {
    padding: 76px 0 0 34px;
  }
}

@media only screen and (max-width: 767.98px) {
  .highlights {
    padding: 39px 0 0 20px;
    margin-bottom: 40px;
  }
}

.highlights__title {
  margin-bottom: 35px;
}

@media only screen and (max-width: 767.98px) {
  .highlights__title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 30px;
  }
}

.highlights__wrap {
  overflow: hidden;
  width: 100%;
  padding-left: calc((100% - 1180px) / 2);
}

.highlights__overflow {
  overflow: hidden;
  margin-left: -17px;
}

@media only screen and (max-width: 1260px) {
  .highlights__overflow {
    margin-left: 0;
  }
}

.image-text-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 0 90px;
  border-bottom: 1px solid #e1e1e1;
}

@media only screen and (max-width: 991.98px) {
  .image-text-block {
    padding: 45px 0 140px;
  }
}

@media only screen and (max-width: 767.98px) {
  .image-text-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 52px 0 30px;
  }
}

.image-text-block--inverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (max-width: 767.98px) {
  .image-text-block--inverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.image-text-block__left {
  width: 50%;
  padding-right: 50px;
}

@media only screen and (max-width: 767.98px) {
  .image-text-block__left {
    width: auto;
    padding: 0;
  }
}

.image-text-block__right {
  width: 50%;
  padding-left: 110px;
  padding-bottom: 55px;
}

.image-text-block__right--row {
  padding: 0 22px 0 22px;
}

@media only screen and (max-width: 991.98px) {
  .image-text-block__right {
    padding-left: 10px;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .image-text-block__right {
    width: 100%;
    text-align: center;
    padding: 25px 0 0;
  }
}

.image-text-block__left--inverse {
  padding-left: 50px;
  padding-right: 0;
}

@media only screen and (max-width: 767.98px) {
  .image-text-block__left--inverse {
    padding: 0;
  }
}

.image-text-block__right--inverse {
  padding-right: 85px;
  padding-left: 0;
  padding-bottom: 77px;
}

@media only screen and (max-width: 991.98px) {
  .image-text-block__right--inverse {
    padding-right: 0;
    padding-left: 40px;
    padding-bottom: 55px;
  }
}

@media only screen and (max-width: 767.98px) {
  .image-text-block__right--inverse {
    padding: 27px 16px 0;
  }
}

.icon_sizer{
  width: 100%;
  height: 65px;
  margin-bottom: 25px;
}
.image-text-block__bg {
  position: relative;
  height: 100%;
}

.image-text-block__bg::before {
  content: '';
  position: absolute;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background-color: #014E85;
}

@media only screen and (max-width: 991.98px) {
  .image-text-block__bg::before {
    width: calc(100% - 33px);
    height: calc(100% - 33px);
  }
}

@media only screen and (max-width: 767.98px) {
  .image-text-block__bg::before {
    width: calc(100% - 31px);
    height: calc(100% - 31px);
  }
}

.image-text-block__bg--inverse::before {
  right: 0;
}

.image-text-block__image {
  position: relative;
  z-index: 10;
  padding-top: 60px;
  padding-left: 60px;
}

@media only screen and (max-width: 991.98px) {
  .image-text-block__image {
    padding-top: 33px;
    padding-left: 33px;
  }
}

@media only screen and (max-width: 991.98px) {
  .image-text-block__image {
    padding-top: 31px;
    padding-left: 31px;
  }
}

.image-text-block__image--inverse {
  padding-right: 60px;
  padding-left: 0;
}

@media only screen and (max-width: 991.98px) {
  .image-text-block__image--inverse {
    padding-right: 33px;
  }
}

.image-text-block__icon {
  margin-bottom: 25px;
}

@media only screen and (max-width: 767.98px) {
  .image-text-block__icon {
    margin-bottom: 13px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.image-text-block__title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 300;
  margin-bottom: 18px;
}

@media only screen and (max-width: 991.98px) {
  .image-text-block__title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767.98px) {
  .image-text-block__title {
    font-size: 30px;
    margin-bottom: 11px;
  }
}

.image-text-block__text {
  font-size: 23px;
  line-height: 35px;
  font-weight: 300;
}

@media only screen and (max-width: 991.98px) {
  .image-text-block__text {
    font-size: 16px;
    line-height: 26px;
  }
}

.case-study-grid {
  padding: 81px 0 80px;
  border-bottom: 1px solid #e1e1e1;
}

@media only screen and (max-width: 991.98px) {
  .case-study-grid {
    padding: 60px 0 40px;
  }
}

@media only screen and (max-width: 767.98px) {
  .case-study-grid {
    padding: 22px 0 0;
  }
}

.case-study-grid__inner {
  padding-bottom: 20px;
}

.case-study-grid__inner--gif {
  text-align: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

.case-study-grid__title {
  position: relative;
  font-size: 50px;
  font-weight: 300;
  line-height: 50px;
  max-width: 220px;
  padding: 87px 0 8px;
  margin-left: -5px;
}

@media only screen and (max-width: 991.98px) {
  .case-study-grid__title {
    font-size: 40px;
    max-width: 175px;
    margin-left: 0;
    padding: 61px 0 4px;
  }
}

@media only screen and (max-width: 767.98px) {
  .case-study-grid__title {
    padding: 8px 0 4px;
  }
}

.case-study-grid__line {
  position: absolute;
  width: 80px;
  height: 1px;
  left: -95px;
  top: 106px;
}

@media only screen and (max-width: 991.98px) {
  .case-study-grid__line {
    width: 40px;
    left: -60px;
    top: 82px;
  }
}

@media only screen and (max-width: 767.98px) {
  .case-study-grid__line::after {
    display: none;
  }
}

.case-study-grid__subtitle {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}

@media only screen and (max-width: 767.98px) {
  .case-study-grid__subtitle {
    padding-bottom: 10px;
  }
}

.banner-media {
  position: relative;
}

.banner-media__wrap {
  position: relative;
  height: 100%;
}

.banner-media__image {
  height: 780px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner-media__image {
    height: 740px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner-media__image {
    height: 540px;
  }
}

.banner-media__content {
  position: absolute;
  left: 34px;
  bottom: 100px;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner-media__content {
    bottom: 60px;
  }
}

@media only screen and (max-width: 767.98px) {
  .banner-media__content {
    bottom: 40px;
    left: 20px;
  }
}

.banner-media__subject-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 33px;
}

.banner-media__subject-title::before {
  background-color: rgba(255, 255, 255, 0.3);
  top: 8px;
}

@media only screen and (max-width: 767.98px) {
  .banner-media__subject-title {
    margin-bottom: 10px;
  }
}

.banner-media__title {
  font-size: 60px;
  line-height: 60px;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 14px;
}

@media only screen and (max-width: 767.98px) {
  .banner-media__title {
    max-width: 100%;
    font-size: 40px;
    line-height: 50px;
  }
}

.press-releases {
  padding: 82px 0 100px 34px;
}

@media only screen and (max-width: 767.98px) {
  .press-releases {
    padding: 30px 0 70px 20px;
  }
}

.press-releases__wrap {
  overflow: hidden;
  width: 100%;
  padding-left: calc((100% - 1180px) / 2);
}

.press-releases__overflow {
  overflow: hidden;
  margin-left: -17px;
}

@media only screen and (max-width: 1260px) {
  .press-releases__overflow {
    margin-left: 0;
  }
}

.press-releases__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.press-releases__slide-date {
  display: block;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #9b9b9b;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.press-releases__slide-paragraph {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.press-releases__slide-image {
  width: 80px;
}

.press-releases__slide-text {
  width: calc(100% - 80px);
  padding-left: 20px;
}

.press-releases__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 991.98px) {
  .press-releases__items {
    display: block;
  }
}

.case-study {
  position: relative;
  padding: 82px 0 108px 34px;
  width: 100%;
}

@media only screen and (max-width: 991.98px) {
  .case-study {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .case-study {
    padding: 34px 0 57px 20px;
  }
  .case-study .slick-dots {
    width: 100%;
    padding-right: 10px;
  }
}

.case-study--footer {
  margin-left: 10px;
  padding: 0 !important;
}

.case-study--footer .slick-dots {
  width: 100%;
  padding-right: 20px;
}

.case-study--footer .slick-dots button {
  background-color: rgba(255, 255, 255, 0.3);
}

@media only screen and (min-width: 1025px) {
  .no-touch .case-study--footer .slick-dots button:hover {
    background-color: #fff;
  }
}

.case-study--footer .slick-dots .slick-active button {
  background-color: #fff;
}

.case-study--footer .slick-arrow {
  color: #fff;
}

@media only screen and (min-width: 1025px) {
  .no-touch .case-study--footer .slick-arrow:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}

.case-study--footer .slick-disabled {
  color: rgba(255, 255, 255, 0.3);
}

@media only screen and (min-width: 1025px) {
  .no-touch .case-study--footer .slick-disabled:hover {
    color: rgba(255, 255, 255, 0.3);
  }
}

.case-study--grey-bg {
  background-color: #e1e1e1;
}

.case-study__wrap {
  overflow: hidden;
  padding-left: calc((100% - 1180px) / 2);
}

.case-study__overflow {
  overflow: hidden;
  margin-left: -17px;
}

@media only screen and (max-width: 1260px) {
  .case-study__overflow {
    margin-left: 0;
  }
}

.case-box {
  position: relative;
  height: 420px;
  padding: 40px;
}

@media only screen and (max-width: 767.98px) {
  .case-box {
    height: 370px;
    padding: 20px;
  }
}

.case-box__container {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.case-box__title {
  font-size: 26px;
  line-height: 30px;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 40px;
  color: #fff;
}

@media only screen and (max-width: 991.98px) {
  .case-box__title {
    margin-bottom: 37px;
  }
}

@media only screen and (max-width: 767.98px) {
  .case-box__title {
    font-size: 23px;
    margin-bottom: 36px;
  }
}

.case-study__wrap--footer {
  width: 2000em;
}

.case-study__overflow--footer {
  margin-left: 0;
}

@media only screen and (max-width: 991.98px) {
  .case-box--grid {
    height: 320px;
    padding: 40px 23px;
  }
  .case-box--case {
    padding: 24px;
    height: 330px;
  }
  .case-box__title--case {
    margin-bottom: 31px;
  }
}

@media only screen and (max-width: 767.98px) {
  .case-box--grid {
    padding: 40px 20px;
  }
  .case-box--case {
    margin-bottom: 20px;
    padding: 20px;
    height: 280px;
  }
  .case-box__title--case {
    margin-bottom: 35px;
  }
}

.gallery {
  position: relative;
  padding-top: 73px;
}

@media only screen and (max-width: 767.98px) {
  .gallery {
    padding-top: 55px;
  }
}

.gallery__slider-top {
  height: 660px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .gallery__slider-top {
    height: 392px;
  }
}

@media only screen and (max-width: 767.98px) {
  .gallery__slider-top {
    height: 272px;
  }
}

.gallery__slide-top {
  position: relative;
  height: 660px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .gallery__slide-top {
    height: 392px;
  }
}

@media only screen and (max-width: 767.98px) {
  .gallery__slide-top {
    height: 272px;
  }
}

.gallery__slider-bottom {
  margin-top: 1px;
  margin-left: -1px;
}

.gallery__slide-img {
  cursor: pointer;
  margin: 1px;
  width: calc(100% - 2px);
}

.gallery__butons {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .gallery__butons {
    left: 20px;
    bottom: 20px;
  }
}

@media only screen and (max-width: 767.98px) {
  .gallery__butons {
    left: 10px;
    bottom: 20px;
  }
}

.media-boxes {
  padding-top: 117px;
}

@media only screen and (max-width: 991.98px) {
  .media-boxes {
    padding-top: 55px;
  }
}

.media-boxes__box {
  padding: 44px 40px;
  min-height: 470px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .media-boxes__box {
    min-height: 460px;
    padding: 34px 30px;
  }
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__box {
    min-height: auto;
    padding: 29px 16px 29px 20px;
    margin-bottom: 20px;
  }
}

.media-boxes__box--purple {
  background-color: #efe7fd;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .media-boxes__box--purple {
    min-height: 330px;
    margin-bottom: 20px;
  }
}

.media-boxes__box--blue {
  background-color: #e7f8fe;
}

.media-boxes__box--yellow {
  background-color: #fffbcc;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .media-boxes__company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .media-boxes__left,
  .media-boxes__right {
    width: 50%;
  }
}

.media-boxes__titile {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 41px;
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__titile {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 27px;
  }
}

.media-boxes__intro {
  font-size: 26px;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .media-boxes__intro {
    max-width: 270px;
  }
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__intro {
    font-size: 23pxx;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.media-boxes__pdf-list {
  padding: 29px 0 0 3px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .media-boxes__pdf-list {
    padding: 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__pdf-item {
    margin-bottom: 10px;
  }
}

.media-boxes__pdf {
  position: relative;
  color: #000;
  line-height: 30px;
  font-weight: 600;
  padding-left: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.media-boxes__pdf::before {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  display: inline-block;
  color: #e4001c;
  position: absolute;
  left: 0;
  top: 6px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .media-boxes__pdf:hover {
    color: #e4001c;
  }
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__pdf {
    font-size: 12px;
    line-height: 16px;
  }
  .media-boxes__pdf::before {
    top: 1px;
  }
}

.media-boxes__file-size {
  font-weight: 400;
}

.media-boxes__download-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.media-boxes__download-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.media-boxes__download-left {
  width: 100px;
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__download-left {
    width: 75px;
  }
}

.media-boxes__download-right {
  width: calc(100% - 100px);
  padding-left: 18px;
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__download-right {
    width: calc(100% - 75px);
    padding-left: 13px;
  }
}

.media-boxes__download-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 7px;
}

.media-boxes__download-link {
  position: relative;
  padding-left: 20px;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.media-boxes__download-link::before {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  content: "";
  display: inline-block;
  color: #e4001c;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 10px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .media-boxes__download-link:hover {
    color: #e4001c;
  }
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__download-link {
    font-size: 12px;
  }
}

.media-boxes__contact {
  padding-bottom: 34px;
  margin-bottom: 31px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.media-boxes__contact:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

@media only screen and (max-width: 767.98px) {
  .media-boxes__contact {
    padding-bottom: 24px;
    margin-bottom: 21px;
  }
}

.media-boxes__contact-name,
.media-boxes__contact-position,
.media-boxes__contact-number,
.media-boxes__contact-email {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}

.media-boxes__contact-name {
  font-weight: 600;
}

.media-boxes__contact-number,
.media-boxes__contact-email {
  position: relative;
  padding-left: 20px;
}

.media-boxes__contact-number::before,
.media-boxes__contact-email::before {
  font-family: 'svgicons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  line-height: 1;
  display: inline-block;
  color: #e4001c;
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 11px;
}

.media-boxes__contact-number::before {
  content: "";
}

.media-boxes__contact-email {
  display: inline-block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.media-boxes__contact-email::before {
  content: "";
}

.media-boxes__contact-email::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 1px;
  width: calc(100% - 20px);
  background-color: #e4001c;
  bottom: 0;
  left: 20px;
}

@media only screen and (min-width: 1025px) {
  .no-touch .media-boxes__contact-email:hover {
    color: #e4001c;
  }
}

.cookie-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
  padding: 0 60px;
}

@media (max-width: 1525px) {
  .cookie-banner {
    padding: 0 25px;
  }
}

@media (max-width: 1299px) {
  .cookie-banner {
    padding: 0 34px;
  }
}

@media only screen and (max-width: 991.98px) {
  .cookie-banner {
    height: 70px;
  }
}

@media only screen and (max-width: 767.98px) {
  .cookie-banner {
    height: 90px;
    padding: 0 20px;
  }
}

.cookie-banner__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  padding-right: 20px;
}

@media only screen and (max-width: 991.98px) {
  .cookie-banner__title {
    max-width: 520px;
  }
}

.cookie-banner__link {
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 1025px) {
  .no-touch .cookie-banner__link:hover {
    color: #e4001c;
  }
}

.image-block {
  max-width: 980px;
  margin: 0 auto 80px;
}

@media only screen and (max-width: 991.98px) {
  .image-block {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767.98px) {
  .image-block {
    margin-bottom: 38px;
  }
}

.key-figure {
  max-width: 980px;
  margin: 0 auto 75px;
}

@media only screen and (max-width: 991.98px) {
  .key-figure {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767.98px) {
  .key-figure {
    margin-bottom: 45px;
  }
}

.key-figure__content {
  max-width: 780px;
  margin: 0 auto 38px;
}

@media only screen and (max-width: 767.98px) {
  .key-figure__content {
    margin-bottom: 28px;
  }
}

.key-figure__heading {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
}

@media only screen and (max-width: 767.98px) {
  .key-figure__heading {
    margin-bottom: 18px;
  }
}

.key-figure__icon {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  position: absolute;
  left: 0;
  top: 0;
}

.key-figure__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  padding-left: 55px;
}

.key-figure__theme {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767.98px) {
  .key-figure__theme {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.key-figure__stat {
  width: 280px;
  margin-top: 11px;
  border-top: 3px solid #e4001c;
}

@media only screen and (max-width: 991.98px) {
  .key-figure__stat {
    width: 250px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .key-figure__stat {
    margin-bottom: 38px;
    width: 100%;
  }
}

.key-figure__about {
  max-width: 590px;
  padding-left: 80px;
}

@media only screen and (max-width: 991.98px) {
  .key-figure__about {
    padding-left: 50px;
  }
}

@media only screen and (max-width: 767.98px) {
  .key-figure__about {
    padding: 0;
    max-width: none;
  }
}

.key-figure__detail {
  display: block;
  font-size: 100px;
  font-weight: 300;
  line-height: 80px;
  padding-top: 37px;
}

@media only screen and (max-width: 991.98px) {
  .key-figure__detail {
    font-size: 70px;
    line-height: 60px;
    padding-top: 37px;
  }
}

@media only screen and (max-width: 767.98px) {
  .key-figure__detail {
    padding-top: 31px;
    line-height: 70px;
  }
}

.key-figure__text {
  font-size: 18px;
  font-weight: 400;
  color: #a4a4a4;
  line-height: 32px;
}

@media only screen and (max-width: 767.98px) {
  .key-figure__text {
    font-size: 16px;
    line-height: 28px;
  }
}

.key-figure__quote {
  font-size: 26px;
  line-height: 40px;
  font-weight: 300;
  padding-top: 17px;
}

@media only screen and (max-width: 991.98px) {
  .key-figure__text--stat {
    font-size: 16px;
  }
}

.quote {
  position: relative;
  max-width: 980px;
  margin: 0 auto 80px;
}

@media only screen and (max-width: 991.98px) {
  .quote {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767.98px) {
  .quote {
    margin-bottom: 38px;
  }
}

.quote__container {
  position: absolute;
  right: 0;
  top: 0;
  width: 380px;
  height: 100%;
  opacity: 0.9;
}

.quote__container::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #e4001c;
}

@media only screen and (max-width: 767.98px) {
  .quote__container {
    position: relative;
    width: 100%;
  }
}

.quote__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 35px 40px 45px;
}

@media only screen and (max-width: 767.98px) {
  .quote__inner {
    padding: 35px 0 10px;
  }
}

.quote__content {
  position: relative;
  padding: 55px 0;
}

@media only screen and (max-width: 767.98px) {
  .quote__content {
    padding: 45px 0;
  }
}

.quote__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.quote__icon-top,
.quote__icon-bottom {
  position: absolute;
  font-size: 26px;
  color: #e4001c;
}

.quote__icon-top {
  top: 0;
  left: 0;
}

.quote__icon-bottom {
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.quote__name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.quote__title {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.share-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 780px;
  margin: 0 auto 146px;
  padding: 15px 0;
  border-top: 1px solid #e1e4e7;
  border-bottom: 1px solid #e1e4e7;
}

.share-block__title {
  font-size: 14px;
  font-weight: 500;
}

.interested-articles {
  position: relative;
  background-color: #f4f5f7;
  padding: 66px 0 209px;
}

.interested-articles__title {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
  margin-bottom: 80px;
}

.video-block {
  position: relative;
  padding-bottom: 56.25%;
  max-width: 980px;
  margin: 0 auto 70px;
}

.video-block__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.interested-case {
  padding: 66px 0 185px;
  position: relative;
}

.interested-case::before, .interested-case::after {
  content: '';
  display: block;
  position: absolute;
  width: 20000px;
  top: 0;
  height: 100%;
  background-color: #e1e4e7;
}

.interested-case::before {
  right: 0;
}

.interested-case::after {
  left: 0;
}

@media only screen and (max-width: 991.98px) {
  .interested-case {
    padding: 56px 0 155px;
  }
}

@media only screen and (max-width: 767.98px) {
  .interested-case {
    padding: 33px 0 69px;
  }
}

.interested-case__title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
  margin-bottom: 49px;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 991.98px) {
  .interested-case__title {
    margin-bottom: 44px;
  }
}

@media only screen and (max-width: 767.98px) {
  .interested-case__title {
    letter-spacing: 1px;
    line-height: 18px;
    margin-bottom: 29px;
  }
}

.interested-case__row {
  position: relative;
  z-index: 10;
}

.error {
  position: relative;
  height: 100vh;
}

@media only screen and (max-width: 767.98px) {
  .error {
    text-align: center;
  }
}

.error__home {
  padding: 48px 60px;
}

@media only screen and (max-width: 767.98px) {
  .error__home {
    padding: 40px;
  }
}

.error__logo {
  height: 46px;
}

.error__container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 767.98px) {
  .error__container {
    padding: 0 25px;
  }
}

.error__type {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 20px;
  display: block;
}

@media only screen and (max-width: 767.98px) {
  .error__type {
    margin-bottom: 15px;
  }
}

.error__title {
  font-size: 70px;
  font-weight: 300;
  line-height: 70px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767.98px) {
  .error__title {
    font-size: 40px;
    line-height: 40px;
  }
}

.error__about {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.error__about:last-of-type {
  margin-bottom: 35px;
}

@media only screen and (max-width: 767.98px) {
  .error__about {
    padding: 0 20px;
    line-height: 26px;
  }
  .error__about:last-of-type {
    margin-bottom: 20px;
  }
}

.sitemap {
  padding: 295px 0 340px;
}

@media only screen and (max-width: 991.98px) {
  .sitemap {
    padding: 286px 0 200px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sitemap {
    padding: 160px 0 120px;
  }
}

.sitemap__title {
  font-size: 70px;
  font-weight: 300;
  line-height: 70px;
  text-align: center;
  margin-bottom: 210px;
}

@media only screen and (max-width: 991.98px) {
  .sitemap__title {
    margin-bottom: 220px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sitemap__title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) {
  .sitemap__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.sitemap__inner {
  width: 60%;
}

@media only screen and (max-width: 991.98px) {
  .sitemap__inner {
    width: 48%;
  }
}

@media only screen and (max-width: 767.98px) {
  .sitemap__inner {
    width: 100%;
    margin-bottom: 40px;
  }
}

.sitemap__col {
  width: 40%;
  border-left: 1px solid #e1e1e1;
  padding-left: 90px;
}

@media only screen and (max-width: 991.98px) {
  .sitemap__col {
    width: 52%;
    padding-left: 50px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sitemap__col {
    width: 100%;
    border-left: 0;
    padding-left: 0;
  }
}

.sitemap__heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 16px;
  display: block;
  margin-bottom: 19px;
}

.sitemap__list {
  width: 83%;
  -webkit-column-count: 2;
          column-count: 2;
}

@media (max-width: 1199px) {
  .sitemap__list {
    width: 90%;
  }
}

@media only screen and (max-width: 991.98px) {
  .sitemap__list {
    -webkit-column-count: auto;
            column-count: auto;
  }
}

.sitemap__link {
  font-size: 23px;
  font-weight: 500;
  line-height: 60px;
}

@media only screen and (max-width: 767.98px) {
  .sitemap__link {
    font-size: 16px;
    line-height: 36px;
  }
}

.text-block {
  max-width: 776px;
  margin: 0 auto 60px;
}

/*# sourceMappingURL=style.min.css.map */

/*** Table Styles **/

.table-fill {
  background: white;
  border-radius:3px;
  border-collapse: collapse;
  height: 260px;
  margin: auto;
  max-width: 600px;
  padding:5px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
}
 
th {
  color:#D5DDE5;;
  background:#1b1e24;
  border-bottom:4px solid #9ea7af;
  border-right: 1px solid #343a45;
  font-size:16px;
  font-weight: 100;
  padding:24px;
  text-align:left;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  vertical-align:middle;
}

th:first-child {
  border-top-left-radius:3px;
}
 
th:last-child {
  border-top-right-radius:3px;
  border-right:none;
}
  
tr {
  /** border-top: 1px solid #C1C3D1; **/
  /**border-bottom: 1px solid #C1C3D1;**/
  color:#666B85;
  font-size:16px;
  font-weight:normal;
  text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}
 
tr:hover td {
  background:#4E5066;
  color:#FFFFFF;
  border-top: 1px solid #22262e;
}
 
tr:first-child {
  border-top:none;
}

tr:last-child {
  border-bottom:none;
}
 
tr:nth-child(odd) td {
  background:#EBEBEB;
}
 
tr:nth-child(odd):hover td {
  background:#4E5066;
}

tr:last-child td:first-child {
  border-bottom-left-radius:3px;
}
 
tr:last-child td:last-child {
  border-bottom-right-radius:3px;
}
 
td {
  background:#FFFFFF;
  padding:0px 20px 0px 20px;
  text-align:left;
  vertical-align:middle;
  font-weight:300;
  font-size:16px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  /** border-right: 1px solid #C1C3D1; **/
}

td:last-child {
  border-right: 0px;
}

th.text-left {
  text-align: left;
}

th.text-center {
  text-align: center;
}

th.text-right {
  text-align: right;
}

td.text-left {
  text-align: left;
}

td.text-center {
  text-align: center;
}

td.text-right {
  text-align: right;
}

.cmlist ul {
  list-style: none;
}
.cmlist li {
 position: relative;
 padding-left: 40px;
 list-style-type: none !important;
 font-size: 18px;
 line-height: 32px;
 color: #585858;
}

.cmlist li:before {
 position: absolute;
 top: 5px;
 left: 0;
 content: ' ';
 width: 50px;
 height: 50px;
 background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}



/** Form fill out  **/

.overlay, .form-panel.one:before {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

.form {
  z-index: 15;
  position: relative;
  background: #FFFFFF;
  width: 600px;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow: hidden;
}


@media only screen and (max-width: 991.98px) {
  .form {
    width: 100%;
  }
}

.form-loan {
  position: absolute;
  right: 70px;
  top: 150px;
  width: 50%;
}

@media only screen and (max-width: 991.98px) {
  .form-loan {
    width: 38%;
    right: 10%;
    top: 130px;
  }
}

@media only screen and (max-width: 767.98px) {
  .form-loan {
    width: 80%;
    right: 10%;
    top: 400px;
  }
}


.form-toggle {
  z-index: 10;
  position: absolute;
  top: 60px;
  right: 60px;
  background: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(0, -25%) scale(0);
          transform: translate(0, -25%) scale(0);
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-toggle:before, .form-toggle:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 4px;
  background: #4285F4;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.form-toggle:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.form-toggle:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.form-toggle.visible {
  -webkit-transform: translate(0, -25%) scale(1);
          transform: translate(0, -25%) scale(1);
  opacity: 1;
}
.form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 20px;
}

.form-group-mobile {
    width:47%;
}

@media only screen and (max-width: 767.98px) {
    .form-group-mobile {
        width: 100%;
    }
}

.form-group label {
  display: block;
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.two .form-group label {
  color: #FFFFFF;
}

.form-group select {
  outline: none;
  display: block;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.6);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  transition: 0.3s ease;
  height: 43px;
  text-indent: 14px;
}

.form-group input {
  outline: none;
  display: block;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 20px;
  color: rgba(0, 0, 0, 0.6);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  transition: 0.3s ease;
  height: 43px;
}
.form-group input:focus {
  color: rgba(0, 0, 0, 0.8);
}
.two .form-group input {
  color: #FFFFFF;
}
.two .form-group input:focus {
  color: #FFFFFF;
}
.form-group button {
  outline: none;
  background: #4285F4;
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 12px 20px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  text-transform: uppercase;
  cursor: pointer;
}
.two .form-group button {
  background: #FFFFFF;
  color: #4285F4;
}
.form-group .form-remember {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.form-group .form-remember input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin: 0 10px 0 0;
}
.form-group .form-recovery {
  color: #4285F4;
  font-size: 12px;
  text-decoration: none;
}
.form-panel {
  padding: 60px 60px 60px 60px;
  box-sizing: border-box;
}

@media only screen and (max-width: 767.98px) {
.form-panel{
    padding: 30px 30px 30px 30px;
}
}

.form-panel-loan {
  padding: 30px 30px 30px 30px;
}

.form-panel.one:before {
  content: '';
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.form-panel.one.hidden:before {
  display: block;
  opacity: 1;
  visibility: visible;
}

.form-header {
  margin: 0 0 40px;
}

.form-header-loan {
  margin: 0 0 20px;
}

.form-header h1 {
  padding: 4px 0;
  color: #4285F4;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.two .form-header h1 {
  position: relative;
  z-index: 40;
  color: #FFFFFF;
}

.pen-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 600px;
  margin: 20px auto 100px;
}
.pen-footer a {
  color: #FFFFFF;
  font-size: 12px;
  text-decoration: none;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.pen-footer a .material-icons {
  width: 12px;
  margin: 0 5px;
  vertical-align: middle;
  font-size: 12px;
}

.cp-fab {
  background: #FFFFFF !important;
  color: #4285F4 !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}