@charset "UTF-8";
/*
	HTML5 Reset :: style.css
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:
#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/*
=====---- BOOTSTRAP OVERIDES
*/
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-large,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 375px) {
  .container-sm, .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .container-large, .container-lg, .container-md, .container-sm, .container {
    max-width: 100%;
  }
}
@media (min-width: 1680px) {
  .container-xl, .container-large, .container-lg, .container-md, .container-sm, .container {
    max-width: 100%;
  }
}
@media (min-width: 1920px) {
  .container-xxl, .container-xl, .container-large, .container-lg, .container-md, .container-sm, .container {
    max-width: 100%;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 375px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-large: 1280px;
  --bs-breakpoint-xl: 1680px;
  --bs-breakpoint-xxl: 1920px;
  --bs-breakpoint-xlarge: 2056px;
}

.row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-xs,
.gx-xs {
  --bs-gutter-x: 32px;
}

.g-xs,
.gy-xs {
  --bs-gutter-y: 32px;
}

.g-sm,
.gx-sm {
  --bs-gutter-x: 32px;
}

.g-sm,
.gy-sm {
  --bs-gutter-y: 32px;
}

.g-md,
.gx-md {
  --bs-gutter-x: 32px;
}

.g-md,
.gy-md {
  --bs-gutter-y: 32px;
}

.g-lg,
.gx-lg {
  --bs-gutter-x: 32px;
}

.g-lg,
.gy-lg {
  --bs-gutter-y: 32px;
}

.g-xl,
.gx-xl {
  --bs-gutter-x: 32px;
}

.g-xl,
.gy-xl {
  --bs-gutter-y: 32px;
}

@media (min-width: 375px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-xs,
  .gx-sm-xs {
    --bs-gutter-x: 32px;
  }
  .g-sm-xs,
  .gy-sm-xs {
    --bs-gutter-y: 32px;
  }
  .g-sm-sm,
  .gx-sm-sm {
    --bs-gutter-x: 32px;
  }
  .g-sm-sm,
  .gy-sm-sm {
    --bs-gutter-y: 32px;
  }
  .g-sm-md,
  .gx-sm-md {
    --bs-gutter-x: 32px;
  }
  .g-sm-md,
  .gy-sm-md {
    --bs-gutter-y: 32px;
  }
  .g-sm-lg,
  .gx-sm-lg {
    --bs-gutter-x: 32px;
  }
  .g-sm-lg,
  .gy-sm-lg {
    --bs-gutter-y: 32px;
  }
  .g-sm-xl,
  .gx-sm-xl {
    --bs-gutter-x: 32px;
  }
  .g-sm-xl,
  .gy-sm-xl {
    --bs-gutter-y: 32px;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-xs,
  .gx-md-xs {
    --bs-gutter-x: 32px;
  }
  .g-md-xs,
  .gy-md-xs {
    --bs-gutter-y: 32px;
  }
  .g-md-sm,
  .gx-md-sm {
    --bs-gutter-x: 32px;
  }
  .g-md-sm,
  .gy-md-sm {
    --bs-gutter-y: 32px;
  }
  .g-md-md,
  .gx-md-md {
    --bs-gutter-x: 32px;
  }
  .g-md-md,
  .gy-md-md {
    --bs-gutter-y: 32px;
  }
  .g-md-lg,
  .gx-md-lg {
    --bs-gutter-x: 32px;
  }
  .g-md-lg,
  .gy-md-lg {
    --bs-gutter-y: 32px;
  }
  .g-md-xl,
  .gx-md-xl {
    --bs-gutter-x: 32px;
  }
  .g-md-xl,
  .gy-md-xl {
    --bs-gutter-y: 32px;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-xs,
  .gx-lg-xs {
    --bs-gutter-x: 32px;
  }
  .g-lg-xs,
  .gy-lg-xs {
    --bs-gutter-y: 32px;
  }
  .g-lg-sm,
  .gx-lg-sm {
    --bs-gutter-x: 32px;
  }
  .g-lg-sm,
  .gy-lg-sm {
    --bs-gutter-y: 32px;
  }
  .g-lg-md,
  .gx-lg-md {
    --bs-gutter-x: 32px;
  }
  .g-lg-md,
  .gy-lg-md {
    --bs-gutter-y: 32px;
  }
  .g-lg-lg,
  .gx-lg-lg {
    --bs-gutter-x: 32px;
  }
  .g-lg-lg,
  .gy-lg-lg {
    --bs-gutter-y: 32px;
  }
  .g-lg-xl,
  .gx-lg-xl {
    --bs-gutter-x: 32px;
  }
  .g-lg-xl,
  .gy-lg-xl {
    --bs-gutter-y: 32px;
  }
}
@media (min-width: 1280px) {
  .col-large {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-large-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-large-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-large-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-large-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-large-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-large-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-large-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-large-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-large-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-large-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-large-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-large-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-large-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-large-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-large-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-large-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-large-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-large-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-large-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-large-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-large-0 {
    margin-left: 0;
  }
  .offset-large-1 {
    margin-left: 8.33333333%;
  }
  .offset-large-2 {
    margin-left: 16.66666667%;
  }
  .offset-large-3 {
    margin-left: 25%;
  }
  .offset-large-4 {
    margin-left: 33.33333333%;
  }
  .offset-large-5 {
    margin-left: 41.66666667%;
  }
  .offset-large-6 {
    margin-left: 50%;
  }
  .offset-large-7 {
    margin-left: 58.33333333%;
  }
  .offset-large-8 {
    margin-left: 66.66666667%;
  }
  .offset-large-9 {
    margin-left: 75%;
  }
  .offset-large-10 {
    margin-left: 83.33333333%;
  }
  .offset-large-11 {
    margin-left: 91.66666667%;
  }
  .g-large-xs,
  .gx-large-xs {
    --bs-gutter-x: 32px;
  }
  .g-large-xs,
  .gy-large-xs {
    --bs-gutter-y: 32px;
  }
  .g-large-sm,
  .gx-large-sm {
    --bs-gutter-x: 32px;
  }
  .g-large-sm,
  .gy-large-sm {
    --bs-gutter-y: 32px;
  }
  .g-large-md,
  .gx-large-md {
    --bs-gutter-x: 32px;
  }
  .g-large-md,
  .gy-large-md {
    --bs-gutter-y: 32px;
  }
  .g-large-lg,
  .gx-large-lg {
    --bs-gutter-x: 32px;
  }
  .g-large-lg,
  .gy-large-lg {
    --bs-gutter-y: 32px;
  }
  .g-large-xl,
  .gx-large-xl {
    --bs-gutter-x: 32px;
  }
  .g-large-xl,
  .gy-large-xl {
    --bs-gutter-y: 32px;
  }
}
@media (min-width: 1680px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-xs,
  .gx-xl-xs {
    --bs-gutter-x: 32px;
  }
  .g-xl-xs,
  .gy-xl-xs {
    --bs-gutter-y: 32px;
  }
  .g-xl-sm,
  .gx-xl-sm {
    --bs-gutter-x: 32px;
  }
  .g-xl-sm,
  .gy-xl-sm {
    --bs-gutter-y: 32px;
  }
  .g-xl-md,
  .gx-xl-md {
    --bs-gutter-x: 32px;
  }
  .g-xl-md,
  .gy-xl-md {
    --bs-gutter-y: 32px;
  }
  .g-xl-lg,
  .gx-xl-lg {
    --bs-gutter-x: 32px;
  }
  .g-xl-lg,
  .gy-xl-lg {
    --bs-gutter-y: 32px;
  }
  .g-xl-xl,
  .gx-xl-xl {
    --bs-gutter-x: 32px;
  }
  .g-xl-xl,
  .gy-xl-xl {
    --bs-gutter-y: 32px;
  }
}
@media (min-width: 1920px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-xs,
  .gx-xxl-xs {
    --bs-gutter-x: 32px;
  }
  .g-xxl-xs,
  .gy-xxl-xs {
    --bs-gutter-y: 32px;
  }
  .g-xxl-sm,
  .gx-xxl-sm {
    --bs-gutter-x: 32px;
  }
  .g-xxl-sm,
  .gy-xxl-sm {
    --bs-gutter-y: 32px;
  }
  .g-xxl-md,
  .gx-xxl-md {
    --bs-gutter-x: 32px;
  }
  .g-xxl-md,
  .gy-xxl-md {
    --bs-gutter-y: 32px;
  }
  .g-xxl-lg,
  .gx-xxl-lg {
    --bs-gutter-x: 32px;
  }
  .g-xxl-lg,
  .gy-xxl-lg {
    --bs-gutter-y: 32px;
  }
  .g-xxl-xl,
  .gx-xxl-xl {
    --bs-gutter-x: 32px;
  }
  .g-xxl-xl,
  .gy-xxl-xl {
    --bs-gutter-y: 32px;
  }
}
@media (min-width: 2056px) {
  .col-xlarge {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-xlarge-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xlarge-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xlarge-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xlarge-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xlarge-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xlarge-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xlarge-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xlarge-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xlarge-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xlarge-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xlarge-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xlarge-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xlarge-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xlarge-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xlarge-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xlarge-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xlarge-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xlarge-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xlarge-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xlarge-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xlarge-0 {
    margin-left: 0;
  }
  .offset-xlarge-1 {
    margin-left: 8.33333333%;
  }
  .offset-xlarge-2 {
    margin-left: 16.66666667%;
  }
  .offset-xlarge-3 {
    margin-left: 25%;
  }
  .offset-xlarge-4 {
    margin-left: 33.33333333%;
  }
  .offset-xlarge-5 {
    margin-left: 41.66666667%;
  }
  .offset-xlarge-6 {
    margin-left: 50%;
  }
  .offset-xlarge-7 {
    margin-left: 58.33333333%;
  }
  .offset-xlarge-8 {
    margin-left: 66.66666667%;
  }
  .offset-xlarge-9 {
    margin-left: 75%;
  }
  .offset-xlarge-10 {
    margin-left: 83.33333333%;
  }
  .offset-xlarge-11 {
    margin-left: 91.66666667%;
  }
  .g-xlarge-xs,
  .gx-xlarge-xs {
    --bs-gutter-x: 32px;
  }
  .g-xlarge-xs,
  .gy-xlarge-xs {
    --bs-gutter-y: 32px;
  }
  .g-xlarge-sm,
  .gx-xlarge-sm {
    --bs-gutter-x: 32px;
  }
  .g-xlarge-sm,
  .gy-xlarge-sm {
    --bs-gutter-y: 32px;
  }
  .g-xlarge-md,
  .gx-xlarge-md {
    --bs-gutter-x: 32px;
  }
  .g-xlarge-md,
  .gy-xlarge-md {
    --bs-gutter-y: 32px;
  }
  .g-xlarge-lg,
  .gx-xlarge-lg {
    --bs-gutter-x: 32px;
  }
  .g-xlarge-lg,
  .gy-xlarge-lg {
    --bs-gutter-y: 32px;
  }
  .g-xlarge-xl,
  .gx-xlarge-xl {
    --bs-gutter-x: 32px;
  }
  .g-xlarge-xl,
  .gy-xlarge-xl {
    --bs-gutter-y: 32px;
  }
}
/* Uncomment to apply the following styles if needed
.row:not(.no-gutters) {
  margin-right: -$grid-gutter-half-width;
  margin-left: -$grid-gutter-half-width;
}
.row:not(.no-gutters) > .col,
.row:not(.no-gutters) > [class*='col-'] {
  padding-right: $grid-gutter-half-width;
  padding-left: $grid-gutter-half-width;
}
*/
@media (min-width: 375px) {
  /* Uncomment to apply the following styles if needed
  .row:not(.no-gutters) {
    margin-right: -$grid-gutter-half-width;
    margin-left: -$grid-gutter-half-width;
  }
  .row:not(.no-gutters) > .col,
  .row:not(.no-gutters) > [class*='col-'] {
    padding-right: $grid-gutter-half-width;
    padding-left: $grid-gutter-half-width;
  }
  */
}
@media (min-width: 768px) {
  /* Uncomment to apply the following styles if needed
  .row:not(.no-gutters) {
    margin-right: -$grid-gutter-half-width;
    margin-left: -$grid-gutter-half-width;
  }
  .row:not(.no-gutters) > .col,
  .row:not(.no-gutters) > [class*='col-'] {
    padding-right: $grid-gutter-half-width;
    padding-left: $grid-gutter-half-width;
  }
  */
}
@media (min-width: 992px) {
  /* Uncomment to apply the following styles if needed
  .row:not(.no-gutters) {
    margin-right: -$grid-gutter-half-width;
    margin-left: -$grid-gutter-half-width;
  }
  .row:not(.no-gutters) > .col,
  .row:not(.no-gutters) > [class*='col-'] {
    padding-right: $grid-gutter-half-width;
    padding-left: $grid-gutter-half-width;
  }
  */
}
@media (min-width: 1680px) {
  /* Uncomment to apply the following styles if needed
  .row:not(.no-gutters) {
    margin-right: -$grid-gutter-half-width;
    margin-left: -$grid-gutter-half-width;
  }
  .row:not(.no-gutters) > .col,
  .row:not(.no-gutters) > [class*='col-'] {
    padding-right: $grid-gutter-half-width;
    padding-left: $grid-gutter-half-width;
  }
  */
}
.container .row {
  min-width: 359px;
}
@media (min-width: 1921px) {
  .container .row {
    max-width: 2056px;
    margin-left: auto;
    margin-right: auto;
  }
}
.container .row .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-large,
.container-xl,
.container-xxl {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-large,
  .container-xl,
  .container-xxl {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 1680px) {
  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-large,
  .container-xl,
  .container-xxl {
    padding-left: 72px;
    padding-right: 72px;
  }
}
@media (min-width: 1920px) {
  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-large,
  .container-xl,
  .container-xxl {
    padding-left: 72px;
    padding-right: 72px;
  }
}

.row {
  margin-left: -8px;
  margin-right: -8px;
}
@media (min-width: 992px) {
  .row {
    margin-left: -16px;
    margin-right: -16px;
  }
}
@media (min-width: 1680px) {
  .row {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 1920px) {
  .row {
    margin-left: -24px;
    margin-right: -24px;
  }
}

.row > .col,
.row > [class*=col-] {
  padding-right: 8px;
  padding-left: 8px;
}
@media (min-width: 992px) {
  .row > .col,
  .row > [class*=col-] {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (min-width: 1680px) {
  .row > .col,
  .row > [class*=col-] {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1920px) {
  .row > .col,
  .row > [class*=col-] {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../fonts/AktivGrotesk_WCorp_Bd.eot");
  src: url("../fonts/AktivGrotesk_WCorp_Bd?#iefix") format("embedded-opentype"), url("../fonts/AktivGrotesk_WCorp_Bd.woff2") format("woff2"), url("../fonts/AktivGrotesk_WCorp_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../fonts/AktivGrotesk_WCorp_Rg.eot");
  src: url("../fonts/AktivGrotesk_WCorp_Rg.eot?#iefix") format("embedded-opentype"), url("../fonts/AktivGrotesk_WCorp_Rg.woff2") format("woff2"), url("../fonts/AktivGrotesk_WCorp_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "CFAstyStd";
  src: url("../fonts/cfastystd-bold-webfont.eot");
  src: url("../fonts/cfastystd-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/cfastystd-bold-webfont.woff2") format("woff2"), url("../fonts/cfastystd-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "CFAstyStd";
  src: url("../fonts/cfastystd-light-webfont.eot");
  src: url("../fonts/cfastystd-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/cfastystd-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
/*
===------ COLORS -------===
*/
/* Main colors*/
.btn {
  font-family: "Aktiv Grotesk";
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  /*span.text {
      margin:0 8px;
      @include media-breakpoint-up(xl) {
          margin:0 12px;
      }
  }*/
  /*span.arrow {
      width:24px;height:24px;
      @include media-breakpoint-up(xl) {
          margin:0 12px;
      }
  }*/
}
@media (min-width: 1680px) {
  .btn {
    font-size: 20px;
    line-height: 28px;
  }
}
.btn a {
  text-decoration: none;
}
.btn span {
  font-weight: 700;
}
.btn.tert {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn.tert:hover {
  -webkit-box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
          box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
  background-color: #002E53;
}
.btn.tert a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn.tert .left {
  margin-right: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .btn.tert .left {
    margin-right: 12px;
    width: 28px;
    height: 28px;
  }
}
.btn.tert .right {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .btn.tert .right {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.btn.tert-rev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn.tert-rev:hover {
  -webkit-box-shadow: 4px 4px 0px #0088C6, -4px -4px 0px #0088C6, -4px 4px 0px #0088C6, 4px -4px 0px #0088C6;
          box-shadow: 4px 4px 0px #0088C6, -4px -4px 0px #0088C6, -4px 4px 0px #0088C6, 4px -4px 0px #0088C6;
  background-color: #0088C6;
}
.btn.tert-rev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn.tert-rev .left {
  margin-right: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .btn.tert-rev .left {
    margin-right: 12px;
    width: 28px;
    height: 28px;
  }
}
.btn.tert-rev .right {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .btn.tert-rev .right {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.btn.prim a {
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 24px;
}
@media (min-width: 1680px) {
  .btn.prim a {
    padding: 16px 32px;
  }
}
.btn.prim a:hover {
  background: #002E53;
}
.btn.prim .left {
  margin-right: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .btn.prim .left {
    margin-right: 12px;
    width: 28px;
    height: 28px;
  }
}
.btn.prim .right {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .btn.prim .right {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.btn.prim-rev a {
  /*color:$AccentPrimary500;*/
  background-color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 24px;
}
@media (min-width: 1680px) {
  .btn.prim-rev a {
    padding: 16px 32px;
  }
}
.btn.prim-rev a:hover {
  /*color:$White;*/
  background-color: #0088C6;
}
.btn.sec a {
  border: 1px solid #004884;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 24px;
}
@media (min-width: 1680px) {
  .btn.sec a {
    padding: 16px 32px;
  }
}
.btn.sec a:hover {
  border-color: #002E53;
  background: #002E53;
}
.btn.sec .left {
  margin-right: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .btn.sec .left {
    margin-right: 12px;
    width: 28px;
    height: 28px;
  }
}
.btn.sec .right {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .btn.sec .right {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.btn.quat {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 1680px) {
  .btn.quat {
    font-size: 24px;
    line-height: 32px;
  }
}
.btn.quat a {
  border: 1px solid #004884;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
  padding: 32px 48px;
}
@media (min-width: 1680px) {
  .btn.quat a {
    padding: 48px 64px;
  }
}
.btn.quat a:hover {
  border-color: #002E53;
  background: #002E53;
}
.btn.white-font a {
  color: #ffffff;
}
.btn.white-font svg path {
  fill: #ffffff;
}
.btn.blue-font a {
  color: #004884;
}
.btn.blue-font svg path {
  fill: #004884;
}
.btn.blue-font:hover a {
  color: #ffffff;
}
.btn.blue-font:hover svg path {
  fill: #ffffff;
}

.main-header {
  position: fixed;
  top: 0;
  z-index: 11;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
  -webkit-box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  padding-top: 64px;
  height: 120px;
  padding-bottom: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1680px) {
  .main-header {
    padding-top: 72px;
  }
}
@media (min-width: 768px) {
  .main-header {
    height: 224px;
    padding-bottom: 32px;
  }
}
@media (min-width: 1280px) {
  .main-header {
    height: 144px;
  }
}
@media (min-width: 1680px) {
  .main-header {
    height: 180px;
    padding-bottom: 48px;
  }
}
.main-header > * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-header > .container > .row {
  position: relative;
}
.main-header > .container > .row > .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .main-header > .container > .row > .col-large-5 {
    margin-top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 768px) {
  .main-header > .container > .row > .col-large-7 {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .main-header > .container > .row > .col-large-7 {
    -webkit-transition: top 0.3s ease-in-out, left 0.3s ease-in-out 0.2s;
    transition: top 0.3s ease-in-out, left 0.3s ease-in-out 0.2s;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    width: auto;
  }
}
.main-header .logo {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 30px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .main-header .logo {
    margin-bottom: 32px;
    margin-top: 4px;
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .main-header .logo {
    margin-bottom: 0;
  }
}
@media (min-width: 1680px) {
  .main-header .logo {
    height: 48px;
    margin-top: 6px;
  }
}
@media (max-width: 767px) {
  .main-header .logo img {
    max-width: none;
  }
}
@media (max-width: 389px) {
  .main-header .logo img,
  .main-header .logo svg,
  .main-header .logo object {
    width: 255px;
    height: auto !important;
  }
}
.main-header .logo h1,
.main-header .logo p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.main-header .logo h1 > div,
.main-header .logo p > div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.main-header .logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.main-header .logo img,
.main-header .logo svg,
.main-header .logo object {
  display: block;
  height: 30px;
}
@media (min-width: 768px) {
  .main-header .logo img,
  .main-header .logo svg,
  .main-header .logo object {
    height: 40px;
  }
}
@media (min-width: 1680px) {
  .main-header .logo img,
  .main-header .logo svg,
  .main-header .logo object {
    height: 48px;
  }
}
.main-header .logo object {
  pointer-events: none;
}
@media (min-width: 768px) {
  .main-header .main-menu {
    width: 100%;
    height: auto !important;
  }
}
@media (min-width: 1280px) {
  .main-header .main-menu {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    border-top: 1px solid #004884;
    background-color: #ffffff;
    background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
    background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
    -webkit-box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.main-header .main-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li.search {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    padding: 24px 16px;
  }
}
.main-header .main-menu > ul > li {
  font-weight: 700;
  /*&.search,
  &.lang {
  	@media (max-width: 767px) {


  	}					
  }*/
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 768px) and (min-width: 1680px) {
  .main-header .main-menu > ul > li {
    font-size: 20px;
    line-height: 28px;
  }
}
.main-header .main-menu > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #004884;
  display: flex;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li > a {
    margin-right: 24px;
    padding: 12px 0;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li > a {
    margin-right: 32px;
    padding: 16px 0;
  }
}
.main-header .main-menu > ul > li > a svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li > a svg {
    width: 28px;
    height: 28px;
  }
}
.main-header .main-menu > ul > li > a svg path {
  fill: #004884;
}
.main-header .main-menu > ul > li > a:hover {
  color: #0088C6;
}
.main-header .main-menu > ul > li > a:hover svg path {
  fill: #0088C6;
}
.main-header .main-menu > ul > li > a.selected {
  color: #001B32;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li > a.selected svg {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.main-header .main-menu > ul > li > a.selected svg path {
  fill: #001B32;
}
.main-header .main-menu > ul > li > a.selected:hover {
  color: #0088C6;
}
.main-header .main-menu > ul > li > a.selected:hover svg path {
  fill: #0088C6;
}
.main-header .main-menu > ul > li.opened > a {
  color: #001B32;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li.opened > a svg {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
.main-header .main-menu > ul > li.opened > a svg path {
  fill: #001B32;
}
.main-header .main-menu > ul > li.opened > a:hover {
  color: #0088C6;
}
.main-header .main-menu > ul > li.opened > a:hover svg path {
  fill: #0088C6;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li.parent.opened .MegaMenu {
    opacity: 1;
    pointer-events: initial;
  }
  .main-header .main-menu > ul > li.parent.opened .MegaMenu > * {
    opacity: 1;
  }
}
.main-header .main-menu > ul > li.parent.opened .MegaMenu.no-fade {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out, opacity 0s;
  transition: all 0.3s ease-in-out, opacity 0s;
}
.main-header .main-menu > ul > li.parent.opened .MegaMenu.no-fade > * {
  opacity: 1;
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li.parent.opened .MegaMenu {
    left: 0;
  }
  .main-header .main-menu > ul > li.parent.opened .MegaMenu .back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .main-header .main-menu > ul > li.parent.opened .MegaMenu .back svg path {
    fill: #004884;
  }
  .main-header .main-menu > ul > li.parent.opened .MegaMenu .back a:hover {
    -webkit-box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
            box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
    background-color: #002E53;
  }
  .main-header .main-menu > ul > li.parent.opened .MegaMenu .back a:hover svg path {
    fill: #ffffff;
  }
}
.main-header .main-menu > ul > li .MegaMenu {
  background-color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
  -webkit-box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-top: 1px solid #004884;
    top: 224px;
  }
  .main-header .main-menu > ul > li .MegaMenu .back {
    display: none;
  }
}
@media (min-width: 1280px) {
  .main-header .main-menu > ul > li .MegaMenu {
    top: 144px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu {
    top: 180px;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu {
    top: 120px;
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > * {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row .dflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1280px) {
  .main-header .main-menu > ul > li .MegaMenu > .row .dflex .info-box {
    width: calc(33.333% + 42.666px);
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row .dflex .info-box {
    width: calc(33.333% + 64px);
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row .dflex .menu-box {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col {
  position: relative;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 768px) and (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul {
    padding-top: 72px;
  }
}
@media (min-width: 768px) and (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul {
    padding-bottom: 72px;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a {
  color: #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a {
    padding: 0;
    margin-bottom: 16px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a {
    margin-bottom: 24px;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a:hover {
  color: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a:hover svg path {
  fill: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a.selected {
  color: #001B32;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a.selected svg path {
  fill: #001B32;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a.selected:hover {
  color: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > a.selected:hover svg path {
  fill: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info {
  display: none;
}
@media (min-width: 1280px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /*width: calc(33.333% + 42.666px);*/
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info {
    /*width: calc(33.333% + 64px);*/
  }
}
@media (min-width: 1280px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .cell {
    padding-right: 32px;
    width: calc(100% - 65px);
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .cell {
    padding-right: 48px;
    width: calc(100% - 97px);
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .cell > .title {
  width: 100%;
  font-family: "CFAstyStd";
  color: #004884;
  font-size: 32px;
  line-height: 40px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .cell > .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .cell > .title {
    font-size: 52px;
    line-height: 64px;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .cell > .text {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
  margin-top: 8px;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .cell > .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .cell > .text {
    margin-top: 12px;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .divider {
  width: 1px;
  background-color: #004884;
}
@media (min-width: 992px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .divider {
    margin: 0 32px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.info > .divider {
    margin: 0 48px;
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent.opened {
    padding-right: 8px;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent.opened {
    padding-right: 16px;
  }
}
@media (min-width: 1280px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent.opened {
    padding-left: 32px;
    padding-right: 0;
    width: calc(33.333% - 21.333px);
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent.opened {
    padding-left: 48px;
    width: calc(33.333% - 32px);
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a {
    padding: 12px 0;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a svg {
  width: 28px;
  height: 28px;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a svg {
    width: 32px;
    height: 32px;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a svg path {
  fill: #004884;
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a svg {
    display: none;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a:hover {
  color: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a:hover svg path {
  fill: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a.selected {
  color: #001B32;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a.selected svg path {
  fill: #001B32;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a.selected:hover {
  color: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.parent > a.selected:hover svg path {
  fill: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest {
    padding-left: 8px;
    /*width: 50%;*/
  }
}
@media (min-width: 992px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest {
    padding-left: 16px;
  }
}
@media (min-width: 1280px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest {
    padding-left: 32px;
    /*width: calc(33.333% - 21.333px);*/
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest {
    padding-left: 48px;
    /*width: calc(33.333% - 32px);*/
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent {
    margin-bottom: 16px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent {
    margin-bottom: 0;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #004884;
  padding: 12px 0;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a svg {
  width: 28px;
  height: 28px;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a svg {
    width: 32px;
    height: 32px;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a svg path {
  fill: #004884;
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a svg {
    display: none;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a:hover {
  color: #0088C6;
  text-decoration: none;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a:hover svg path {
  fill: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a.selected {
  color: #001B32;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a.selected svg path {
  fill: #001B32;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a.selected:hover {
  color: #0088C6;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li.rest li.parent > a.selected:hover svg path {
  fill: #0088C6;
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul {
    padding-bottom: 24px;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li {
    margin-bottom: 8px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li {
    margin-bottom: 8px;
  }
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li:last-child {
  margin-bottom: 0;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li > a {
  color: #004884;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li > a:hover {
  text-decoration: underline;
}
.main-header .main-menu > ul > li .MegaMenu > .row > .col > ul > li > ul li > a.selected {
  color: #001B32;
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li .MegaMenu {
    position: absolute;
    top: 0;
    left: 110%;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .main-header .main-menu > ul > li .MegaMenu .back {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li.search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li.search a {
    margin-right: 24px;
    padding: 0;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li.search a {
    margin-right: 32px;
  }
}
.main-header .main-menu > ul > li.search a svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li.search a svg {
    width: 28px;
    height: 28px;
  }
}
.main-header .main-menu > ul > li.search a svg path {
  fill: #004884;
}
.main-header .main-menu > ul > li.search a:hover svg path {
  fill: #0088C6;
}
.main-header .main-menu > ul > li.lang {
  position: relative;
}
.main-header .main-menu > ul > li.lang:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #004884;
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li.lang {
    width: 66px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li.lang {
    width: 76px;
  }
}
@media (min-width: 768px) {
  .main-header .main-menu > ul > li.lang a {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li.search {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li.lang {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    position: fixed;
    top: 64px;
    right: 54px;
    height: 40px;
    width: 24px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 767px) and (min-width: 1680px) {
  .main-header .main-menu > ul > li.lang {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li.lang:before {
    content: none;
  }
  .main-header .main-menu > ul > li.lang a {
    width: 24px;
    height: 24px;
    margin-top: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .main-header .main-menu > ul > li.lang a svg {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.main-header .main-menu > ul > li.apply a {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #004884;
  border: 1px solid #004884;
  padding: 11px 24px;
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li.apply a {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .main-header .main-menu > ul > li.apply a {
    padding: 15px 32px;
  }
}
.main-header .main-menu > ul > li.apply a:hover {
  color: #ffffff;
  border-color: #002E53;
  background: #002E53;
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li.apply {
    margin-top: 24px;
  }
  .main-header .main-menu > ul > li.apply a {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.05em;
    padding: 12px 0 12px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) and (min-width: 1680px) {
  .main-header .main-menu > ul > li.apply a {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li {
    font-size: 20px;
    line-height: 28px;
    width: 100%;
  }
}
@media (max-width: 767px) and (min-width: 1680px) {
  .main-header .main-menu > ul > li {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .main-header .main-menu > ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0 12px 0;
  }
  .main-header .main-menu > ul > li > a svg {
    width: 28px;
    height: 28px;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .main-header .main-menu.show {
    opacity: 1;
    pointer-events: initial;
  }
  .main-header .main-menu.show > ul > li.search {
    opacity: 0;
    pointer-events: none;
  }
  .main-header .main-menu.show > ul > li.lang {
    opacity: 1;
    pointer-events: initial;
  }
  .main-header .main-menu.show > ul > li .MegaMenu {
    opacity: 1;
    pointer-events: initial;
  }
}
.main-header .menu-toggle {
  display: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 64px;
  right: 16px;
  width: 24px;
  height: 40px;
  border: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .main-header .menu-toggle {
    display: block;
  }
}
.main-header .menu-toggle:focus {
  border: 1px solid #0088C6;
}
.main-header .menu-toggle .menu-icon {
  font-size: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
}
.main-header .menu-toggle .menu-icon:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  height: 2px;
  background-color: #004884;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.main-header .menu-toggle .menu-icon:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background-color: #004884;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.main-header .menu-toggle .menu-icon:hover:before, .main-header .menu-toggle .menu-icon:hover:after {
  background-color: #0088C6;
}
.main-header .menu-toggle.open .menu-icon:before {
  top: 11px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.main-header .menu-toggle.open .menu-icon:after {
  bottom: 11px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.main-header .mobile-search-btn {
  display: none;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  position: fixed;
  top: 64px;
  right: 54px;
  height: 40px;
  width: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .main-header .mobile-search-btn {
    display: block;
    opacity: 1;
    pointer-events: initial;
  }
}
.main-header .mobile-search-btn:focus {
  border: 1px solid #0088C6;
}
.main-header .mobile-search-btn .search-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
}
.main-header .mobile-search-btn .search-icon svg path {
  fill: #004884;
}
.main-header .mobile-search-btn .search-icon:hover svg path {
  fill: #0088C6;
}
.main-header .mobile-search-btn.hide {
  opacity: 0;
  pointer-events: none;
}
.main-header .SearchMegaMenu {
  background-color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
  -webkit-box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
  border-top: 1px solid #004884;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) {
  .main-header .SearchMegaMenu {
    top: 224px;
    height: 293px;
  }
}
@media (min-width: 1280px) {
  .main-header .SearchMegaMenu {
    top: 144px;
  }
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu {
    top: 180px;
    height: 349px;
  }
}
@media (max-width: 767px) {
  .main-header .SearchMegaMenu {
    top: 120px;
    height: 168px;
  }
}
.main-header .SearchMegaMenu > * {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s;
}
.main-header .SearchMegaMenu .row {
  height: 100%;
}
.main-header .SearchMegaMenu .row > .col {
  position: relative;
}
.main-header .SearchMegaMenu .row > .col > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul {
    padding-bottom: 72px;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  width: 100%;
}
@media (min-width: 768px) {
  .main-header .SearchMegaMenu .row > .col > ul > li {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul > li {
    font-size: 40px;
    line-height: 48px;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  /* clears the 'X' from Internet Explorer */
  /* clears the 'X' from Chrome */
}
@media (min-width: 768px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form {
    margin-left: 64px;
    margin-right: 64px;
  }
}
@media (min-width: 1280px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form {
    margin-left: auto;
    margin-right: auto;
    max-width: 864px;
  }
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form {
    max-width: 1200px;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li form label {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  display: none;
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form label {
    font-size: 20px;
    line-height: 28px;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li form .icon {
  width: 32px;
  height: 32px;
  margin-right: 16px;
  pointer-events: none;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .icon svg {
  width: 32px;
  height: 32px;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .icon svg path {
  fill: #BDBDBD;
}
@media (min-width: 768px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form .icon {
    width: 48px;
    height: 48px;
  }
  .main-header .SearchMegaMenu .row > .col > ul > li form .icon svg {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form .icon {
    margin-right: 24px;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li form .field {
  text-align: left;
  color: #004884;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: transparent;
  border: 0;
  width: 100%;
  padding: 4px;
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form .field {
    padding: 8px;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li form .field::-webkit-input-placeholder {
  color: #9E9E9E;
  opacity: 1;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .field:-ms-input-placeholder {
  color: #9E9E9E;
  opacity: 1;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .field::-moz-placeholder {
  color: #9E9E9E;
  opacity: 1;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .field::-ms-input-placeholder {
  color: #9E9E9E;
  opacity: 1;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .field::placeholder {
  color: #9E9E9E;
  opacity: 1;
}
.main-header .SearchMegaMenu .row > .col > ul > li form input.field::-ms-clear,
.main-header .SearchMegaMenu .row > .col > ul > li form input.field::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.main-header .SearchMegaMenu .row > .col > ul > li form input.field::-webkit-search-decoration,
.main-header .SearchMegaMenu .row > .col > ul > li form input.field::-webkit-search-cancel-button,
.main-header .SearchMegaMenu .row > .col > ul > li form input.field::-webkit-search-results-button,
.main-header .SearchMegaMenu .row > .col > ul > li form input.field::-webkit-search-results-decoration {
  display: none;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .button {
  border: 1px solid #004884;
  border-radius: 0;
  background-color: transparent;
  color: #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form .button {
    padding: 16px 32px;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li form .button svg {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form .button svg {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li form .button svg path {
  fill: #004884;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .button:hover, .main-header .SearchMegaMenu .row > .col > ul > li form .button:focus {
  color: #ffffff;
  background-color: #002E53;
  border-color: #002E53;
}
.main-header .SearchMegaMenu .row > .col > ul > li form .button:hover svg path, .main-header .SearchMegaMenu .row > .col > ul > li form .button:focus svg path {
  fill: #ffffff;
}
@media (max-width: 767px) {
  .main-header .SearchMegaMenu .row > .col > ul > li form .button {
    display: none;
  }
}
.main-header .SearchMegaMenu .row > .col > ul > li form input.field:focus + button.button {
  opacity: 1;
}
.main-header .SearchMegaMenu.opened {
  opacity: 1;
  pointer-events: initial;
  display: block;
}
.main-header .SearchMegaMenu.opened > * {
  opacity: 1;
}
.main-header.sticky {
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#FFFFFF));
  background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
  background-color: #ffffff;
  padding-top: 16px;
  padding-bottom: 16px;
  height: 72px;
}
@media (min-width: 768px) {
  .main-header.sticky {
    height: 80px;
  }
}
@media (min-width: 1680px) {
  .main-header.sticky {
    height: 108px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .main-header.sticky > .container > .row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .main-header.sticky > .container > .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .main-header.sticky > .container > .row .col-large-5 {
    margin-top: -110px;
  }
}
@media (min-width: 992px) {
  .main-header.sticky > .container > .row .col-large-5 {
    margin-top: 0;
    display: inherit;
    width: auto;
    padding-right: 0;
  }
}
@media (min-width: 1280px) {
  .main-header.sticky > .container > .row .col-large-5 {
    width: inherit;
    padding-right: inherit;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .main-header.sticky > .container > .row .col-large-7 {
    top: 0;
    left: 200px;
  }
  .main-header.sticky > .container > .row .col-large-7 .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .main-header.sticky > .container > .row .col-large-7 .main-menu > ul > li.search {
    margin-left: 0;
  }
}
@media (min-width: 1280px) {
  .main-header.sticky > .container > .row .col-large-7 {
    width: inherit;
    padding-left: inherit;
  }
}
.main-header.sticky .logo {
  overflow: hidden;
}
.main-header.sticky .logo img,
.main-header.sticky .logo svg,
.main-header.sticky .logo object {
  max-width: none;
}
@media (min-width: 992px) {
  .main-header.sticky .logo {
    width: 160px;
  }
  .main-header.sticky .logo img,
  .main-header.sticky .logo svg,
  .main-header.sticky .logo object {
    height: 40px;
  }
}
@media (min-width: 1680px) {
  .main-header.sticky .logo {
    width: 190px;
  }
  .main-header.sticky .logo img,
  .main-header.sticky .logo svg,
  .main-header.sticky .logo object {
    height: 48px;
  }
}
@media (max-width: 767px) {
  .main-header.sticky .logo {
    width: 120px;
  }
  .main-header.sticky .logo img,
  .main-header.sticky .logo svg,
  .main-header.sticky .logo object {
    height: 30px;
  }
}
@media (max-width: 767px) {
  .main-header.sticky .main-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#FFFFFF));
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
  }
}
.main-header.sticky .main-menu > ul > li.parent .MegaMenu {
  background-color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#FFFFFF));
  background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
}
@media (min-width: 768px) {
  .main-header.sticky .main-menu > ul > li.parent .MegaMenu {
    top: 80px;
  }
}
@media (min-width: 1680px) {
  .main-header.sticky .main-menu > ul > li.parent .MegaMenu {
    top: 108px;
  }
}
@media (max-width: 767px) {
  .main-header.sticky .main-menu > ul > li.search, .main-header.sticky .main-menu > ul > li.lang {
    top: 16px;
  }
}
.main-header.sticky .menu-toggle {
  top: 16px;
}
.main-header.sticky .mobile-search-btn {
  top: 16px;
}
.main-header.sticky .SearchMegaMenu {
  background-color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#FFFFFF));
  background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
}
@media (min-width: 768px) {
  .main-header.sticky .SearchMegaMenu {
    top: 80px;
  }
}
@media (min-width: 1680px) {
  .main-header.sticky .SearchMegaMenu {
    top: 108px;
  }
}
@media (max-width: 767px) {
  .main-header.sticky .SearchMegaMenu {
    top: 72px;
  }
}

.main-footer {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #ffffff;
}
@media (min-width: 1680px) {
  .main-footer {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .main-footer {
    padding-bottom: 72px;
  }
}
.main-footer .logo {
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .main-footer .logo {
    padding-bottom: 72px;
  }
}
.main-footer .logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.main-footer .logo img {
  display: block;
  height: 40px;
}
@media (min-width: 768px) {
  .main-footer .logo img {
    height: 48px;
  }
}
@media (min-width: 1680px) {
  .main-footer .logo img {
    height: 60px;
  }
}
.main-footer .newsletter {
  width: 100%;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .main-footer .newsletter {
    padding-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .main-footer .newsletter {
    padding-bottom: 0;
    max-width: 360px;
  }
}
@media (min-width: 992px) {
  .main-footer .newsletter {
    max-width: 416px;
  }
}
@media (min-width: 1680px) {
  .main-footer .newsletter {
    max-width: 560px;
  }
}
.main-footer .newsletter > .title {
  font-family: "CFAstyStd";
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 32px;
  line-height: 40px;
  color: #004884;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .main-footer .newsletter > .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1680px) {
  .main-footer .newsletter > .title {
    font-size: 52px;
    line-height: 64px;
  }
}
@media (min-width: 1680px) {
  .main-footer .newsletter > .title {
    margin-bottom: 48px;
  }
}
.main-footer .newsletter form .form-row {
  position: relative;
  margin-top: 12px;
}
.main-footer .newsletter form .form-row:after {
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #004884;
}
.main-footer .newsletter form .form-row.focused:after {
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
}
@media (min-width: 1680px) {
  .main-footer .newsletter form .form-row {
    margin-top: 16px;
  }
}
.main-footer .newsletter form .form-row:first-child {
  margin-top: 0;
}
.main-footer .newsletter form .form-row > * {
  width: 100%;
}
.main-footer .newsletter form .form-row label {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #004884;
  width: 100%;
  display: none;
}
@media (min-width: 1680px) {
  .main-footer .newsletter form .form-row label {
    font-size: 14px;
    line-height: 20px;
  }
}
.main-footer .newsletter form .form-row input {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  border-width: 0 0 1px 0;
  border-color: #004884;
  background-color: transparent;
  width: 100%;
  color: #004884;
  padding: 22px 8px;
}
@media (min-width: 1680px) {
  .main-footer .newsletter form .form-row input {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .main-footer .newsletter form .form-row input {
    padding: 30px 12px;
  }
}
.main-footer .newsletter form .form-row input:focus {
  color: #9E9E9E;
}
.main-footer .newsletter form .form-row input::-webkit-input-placeholder { /* Edge */
  color: #004884;
  opacity: 1;
}
.main-footer .newsletter form .form-row input:focus::-webkit-input-placeholder { /* Edge */
  color: #9E9E9E;
}
.main-footer .newsletter form .form-row input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #004884;
  opacity: 1;
}
.main-footer .newsletter form .form-row input:focus:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #9E9E9E;
}
.main-footer .newsletter form .form-row input::-webkit-input-placeholder {
  color: #004884;
  opacity: 1;
}
.main-footer .newsletter form .form-row input::-moz-placeholder {
  color: #004884;
  opacity: 1;
}
.main-footer .newsletter form .form-row input:-ms-input-placeholder {
  color: #004884;
  opacity: 1;
}
.main-footer .newsletter form .form-row input::-ms-input-placeholder {
  color: #004884;
  opacity: 1;
}
.main-footer .newsletter form .form-row input::placeholder {
  color: #004884;
  opacity: 1;
}
.main-footer .newsletter form .form-row input:focus::-webkit-input-placeholder {
  color: #9E9E9E;
}
.main-footer .newsletter form .form-row input:focus::-moz-placeholder {
  color: #9E9E9E;
}
.main-footer .newsletter form .form-row input:focus:-ms-input-placeholder {
  color: #9E9E9E;
}
.main-footer .newsletter form .form-row input:focus::-ms-input-placeholder {
  color: #9E9E9E;
}
.main-footer .newsletter form .form-row input:focus::placeholder {
  color: #9E9E9E;
}
.main-footer .newsletter form .form-row.more {
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .main-footer .newsletter form .form-row.more {
    margin-top: 32px;
  }
}
.main-footer .newsletter form .form-row.more input {
  font-family: "Aktiv Grotesk";
  letter-spacing: 0.02em;
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #ffffff;
  border: 0;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 12px 24px;
}
@media (min-width: 1680px) {
  .main-footer .newsletter form .form-row.more input {
    font-size: 20px;
    line-height: 28px;
    padding: 16px 32px;
  }
}
.main-footer .newsletter form .form-row.more input:hover {
  background: #002E53;
}
.main-footer .newsletter form .indicates-required {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #004884;
  margin-top: 12px;
}
@media (min-width: 1680px) {
  .main-footer .newsletter form .indicates-required {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 1680px) {
  .main-footer .newsletter form .indicates-required {
    margin-top: 16px;
  }
}
.main-footer .footer-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
}
@media (min-width: 1680px) {
  .main-footer .footer-menus {
    font-size: 20px;
    line-height: 28px;
  }
}
.main-footer .footer-menus ul li {
  margin-bottom: 8px;
}
@media (min-width: 1680px) {
  .main-footer .footer-menus ul li {
    margin-bottom: 12px;
  }
}
.main-footer .footer-menus ul li:last-child {
  margin-bottom: 0;
}
.main-footer .footer-menus a {
  color: #004884;
  display: inline-block;
}
.main-footer .footer-menus a:hover {
  text-decoration: underline;
}
.main-footer .footer-menus .menu-left {
  width: 50%;
  padding-right: 8px;
}
@media (min-width: 992px) {
  .main-footer .footer-menus .menu-left {
    padding-right: 16px;
  }
}
@media (min-width: 1680px) {
  .main-footer .footer-menus .menu-left {
    padding-right: 24px;
  }
}
.main-footer .footer-menus .menu-right {
  width: 50%;
  padding-left: 8px;
}
@media (min-width: 992px) {
  .main-footer .footer-menus .menu-right {
    padding-left: 16px;
  }
}
@media (min-width: 1680px) {
  .main-footer .footer-menus .menu-right {
    padding-left: 24px;
  }
}
.main-footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .main-footer .social {
    padding-top: 72px;
  }
}
.main-footer .social a {
  color: #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 16px;
  font-size: 21px;
  line-height: 22px;
}
@media (min-width: 1680px) {
  .main-footer .social a {
    margin-right: 24px;
    font-size: 25px;
    line-height: 26px;
  }
}
.main-footer .social a:last-child {
  margin-right: 0;
}
.main-footer .social a em {
  font-size: inherit;
  line-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.main-footer .social a:hover {
  color: #ffffff;
}
.main-footer .social a:hover em {
  -webkit-box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
          box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
  background-color: #002E53;
}
.main-footer .footer-bottom {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .main-footer .footer-bottom {
    padding-top: 72px;
  }
}
.main-footer .links {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #004884;
  margin-bottom: 32px;
  width: 100%;
}
@media (min-width: 1680px) {
  .main-footer .links {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .main-footer .links {
    width: 50%;
    float: left;
    margin-bottom: 16px;
  }
}
.main-footer .links a {
  color: #004884;
  margin-right: 16px;
}
.main-footer .links a:hover {
  text-decoration: underline;
}
.main-footer .links a:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .main-footer .links {
    padding-right: 8px;
  }
}
@media (min-width: 992px) {
  .main-footer .links {
    padding-right: 16px;
  }
}
@media (min-width: 1680px) {
  .main-footer .links {
    padding-right: 24px;
  }
}
.main-footer .copyright {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #004884;
  margin-top: 32px;
  width: 100%;
}
@media (min-width: 1680px) {
  .main-footer .copyright {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .main-footer .copyright {
    width: 50%;
    float: left;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .main-footer .copyright {
    padding-right: 8px;
  }
}
@media (min-width: 992px) {
  .main-footer .copyright {
    padding-right: 16px;
  }
}
@media (min-width: 1680px) {
  .main-footer .copyright {
    padding-right: 24px;
  }
}
.main-footer .credits {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #004884;
  width: 100%;
}
@media (min-width: 1680px) {
  .main-footer .credits {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .main-footer .credits {
    width: 50%;
    float: left;
  }
}
.main-footer .credits a {
  color: #004884;
}
.main-footer .credits a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .main-footer .credits {
    padding-right: 8px;
  }
}
@media (min-width: 992px) {
  .main-footer .credits {
    padding-right: 16px;
  }
}
@media (min-width: 1680px) {
  .main-footer .credits {
    padding-right: 24px;
  }
}
.main-footer .footer-text {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #004884;
  width: 100%;
}
@media (min-width: 1680px) {
  .main-footer .footer-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .main-footer .footer-text {
    width: 50%;
    float: right;
  }
}
@media (min-width: 768px) {
  .main-footer .footer-text {
    padding-left: 8px;
  }
}
@media (min-width: 992px) {
  .main-footer .footer-text {
    padding-left: 16px;
  }
}
@media (min-width: 1680px) {
  .main-footer .footer-text {
    padding-left: 24px;
  }
}
.main-footer .footer-text p {
  margin-bottom: 16px;
}
@media (min-width: 1680px) {
  .main-footer .footer-text p {
    margin-bottom: 20px;
  }
}
.main-footer .footer-text p:last-child {
  margin-bottom: 0;
}

.HomeHeaderBlock {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  height: 540px;
}
@media (min-width: 992px) {
  .HomeHeaderBlock {
    height: 600px;
  }
}
@media (min-width: 1680px) {
  .HomeHeaderBlock {
    height: 800px;
  }
}
@media (min-width: 2056px) {
  .HomeHeaderBlock {
    height: 900px;
  }
}
.HomeHeaderBlock:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(281.47deg, rgba(0, 0, 0, 0.5) 6.39%, rgba(0, 75, 136, 0.6) 96.64%);
  z-index: 2;
}
.HomeHeaderBlock img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.HomeHeaderBlock .container {
  position: relative;
}
.HomeHeaderBlock .container .row {
  position: relative;
  height: 100%;
}
.HomeHeaderBlock .corners {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .HomeHeaderBlock .corners .col:first-child {
    display: none;
  }
}
.HomeHeaderBlock .corners .corner {
  position: absolute;
  background-image: url("../images/corner.svg");
  width: 64px;
  height: 64px;
}
.HomeHeaderBlock .corners .corner.left {
  left: 24px;
}
@media (min-width: 768px) {
  .HomeHeaderBlock .corners .corner.left {
    left: 8px;
  }
}
@media (min-width: 992px) {
  .HomeHeaderBlock .corners .corner.left {
    left: 16px;
  }
}
@media (min-width: 1680px) {
  .HomeHeaderBlock .corners .corner.left {
    left: 24px;
  }
}
.HomeHeaderBlock .corners .corner.top {
  top: 0;
}
.HomeHeaderBlock .corners .corner.bottom {
  bottom: 0;
}
.HomeHeaderBlock .corners .corner.right {
  right: 24px;
}
@media (min-width: 768px) {
  .HomeHeaderBlock .corners .corner.right {
    right: 8px;
  }
}
@media (min-width: 992px) {
  .HomeHeaderBlock .corners .corner.right {
    right: 16px;
  }
}
@media (min-width: 1680px) {
  .HomeHeaderBlock .corners .corner.right {
    right: 24px;
  }
}
.HomeHeaderBlock .corners .corner.left.top {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.HomeHeaderBlock .corners .corner.right.top {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.HomeHeaderBlock .corners .corner.right.bottom {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.HomeHeaderBlock .corners .corner.left.bottom {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.HomeHeaderBlock .col {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .HomeHeaderBlock .col {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1680px) {
  .HomeHeaderBlock .col {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
@media (min-width: 2056px) {
  .HomeHeaderBlock .col {
    margin-top: 122px;
    margin-bottom: 122px;
  }
}
@media (max-width: 767px) {
  .HomeHeaderBlock .col.header {
    padding-left: 24px;
    padding-right: 24px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 12px;
  }
}
.HomeHeaderBlock .col.header .title {
  font-family: "CFAstyStd";
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #ffffff;
  max-width: 700px;
  font-size: 40px;
  line-height: 48px;
}
@media (min-width: 768px) {
  .HomeHeaderBlock .col.header .title {
    font-size: 52px;
    line-height: 64px;
  }
}
@media (min-width: 992px) {
  .HomeHeaderBlock .col.header .title {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1680px) {
  .HomeHeaderBlock .col.header .title {
    font-size: 72px;
    line-height: 80px;
  }
}
.HomeHeaderBlock .col.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .HomeHeaderBlock .col.info {
    padding-left: 24px;
    padding-right: 24px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 12px;
  }
}
.HomeHeaderBlock .col.info .text {
  width: 100%;
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1680px) {
  .HomeHeaderBlock .col.info .text {
    font-size: 32px;
    line-height: 40px;
  }
}
.HomeHeaderBlock .col.info .more {
  margin-top: 24px;
}
.HomeHeaderBlock.WithVideo {
  overflow: hidden;
  background-color: #000000;
  height: 540px;
}
@media (min-width: 992px) {
  .HomeHeaderBlock.WithVideo {
    height: 600px;
  }
}
@media (min-width: 1680px) {
  .HomeHeaderBlock.WithVideo {
    height: 800px;
  }
}
@media (min-width: 2056px) {
  .HomeHeaderBlock.WithVideo {
    height: 900px;
  }
}
.HomeHeaderBlock.WithVideo .VideoCell {
  position: absolute;
  z-index: 1;
  top: -30%;
  right: -30%;
  bottom: -30%;
  left: -30%;
}
.HomeHeaderBlock.WithVideo .VideoCell iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
}
@media (min-width: 768px) {
  .HomeHeaderBlock.WithVideo .VideoCell iframe {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .HomeHeaderBlock.WithVideo .VideoCell {
    display: none;
  }
}
.HomeHeaderBlock cookie-content {
  color: white;
  padding: 1rem;
  z-index: 99999;
}
.HomeHeaderBlock cookie-content a {
  color: white;
  text-decoration: underline;
}

.WithVideo .custom-pause {
  position: absolute;
  z-index: 4;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  width: 56px;
  height: 56px;
  padding: 0;
  left: 50%;
  margin-left: -28px;
  bottom: 20px;
  display: none;
}
@media (min-width: 768px) {
  .WithVideo .custom-pause {
    margin-left: 0;
    left: 0;
    bottom: 50px;
    display: block;
  }
}
@media (min-width: 992px) {
  .WithVideo .custom-pause {
    left: 10px;
  }
}
.WithVideo .custom-pause .playIcon {
  display: none;
}
.WithVideo .custom-pause .pauseIcon {
  display: block;
}
.WithVideo .custom-pause:hover svg path {
  fill: #0088C6;
}
.WithVideo .custom-pause.playing .playIcon {
  display: none;
}
.WithVideo .custom-pause.playing .pauseIcon {
  display: block;
}
.WithVideo .custom-pause.paused .playIcon {
  display: block;
}
.WithVideo .custom-pause.paused .pauseIcon {
  display: none;
}
.WithVideo.HeaderBlock > .container {
  height: 100%;
}
.WithVideo.HeaderBlock .custom-pause {
  margin-left: 0;
  left: 0;
  display: block;
}
@media (min-width: 768px) {
  .WithVideo.HeaderBlock .custom-pause {
    margin-left: 0;
    left: 0;
    bottom: 50px;
    display: block;
  }
}
@media (min-width: 992px) {
  .WithVideo.HeaderBlock .custom-pause {
    left: 10px;
  }
}

.HeaderBlock {
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
}
.HeaderBlock > .container .row .col {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .HeaderBlock > .container .row .col {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .HeaderBlock > .container .row .col {
    padding-bottom: 72px;
  }
}
.HeaderBlock > .container .row .col .parent {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
@media (min-width: 1680px) {
  .HeaderBlock > .container .row .col .parent {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .HeaderBlock > .container .row .col .parent {
    margin-bottom: 32px;
  }
}
.HeaderBlock > .container .row .col .parent a {
  color: #004884;
}
.HeaderBlock > .container .row .col .parent a:hover {
  color: #0088C6;
}
.HeaderBlock > .container .row .col .parent a:after {
  content: ", ";
}
.HeaderBlock > .container .row .col .parent a:last-child:after {
  content: none;
}
.HeaderBlock > .container .row .col .title {
  color: #000000;
  font-size: 32px;
  line-height: 40px;
}
@media (min-width: 768px) {
  .HeaderBlock > .container .row .col .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1680px) {
  .HeaderBlock > .container .row .col .title {
    font-size: 52px;
    line-height: 64px;
  }
}
.HeaderBlock > .container .row .col .subtitle {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .HeaderBlock > .container .row .col .subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .HeaderBlock > .container .row .col .subtitle {
    margin-top: 32px;
  }
}
.HeaderBlock.WithBgdImage {
  border-bottom: 0;
}
.HeaderBlock.WithBgdImage .BgdImage {
  position: relative;
  overflow: hidden;
  height: 540px;
}
@media (min-width: 992px) {
  .HeaderBlock.WithBgdImage .BgdImage {
    height: 600px;
  }
}
@media (min-width: 1680px) {
  .HeaderBlock.WithBgdImage .BgdImage {
    height: 800px;
  }
}
@media (min-width: 2056px) {
  .HeaderBlock.WithBgdImage .BgdImage {
    height: 900px;
  }
}
.HeaderBlock.WithBgdImage .BgdImage:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(131.06% 75.39% at 0% 0%, #004884 0%, rgba(0, 116, 168, 0.8) 38.71%, rgba(0, 136, 198, 0) 100%);
  z-index: 2;
}
.HeaderBlock.WithBgdImage .BgdImage img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.HeaderBlock.WithBgdImage .credits {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #757575;
}
@media (min-width: 1680px) {
  .HeaderBlock.WithBgdImage .credits {
    font-size: 20px;
    line-height: 28px;
  }
}
.HeaderBlock.WithBgdImage .credits.container {
  position: relative;
}
.HeaderBlock.WithBgdImage .credits.container .row .col {
  padding-top: 10px;
  padding-bottom: 0;
}
.HeaderBlock.WithBgdImage > .container {
  position: absolute;
  top: 0;
  z-index: 3;
}
.HeaderBlock.WithBgdImage > .container .row {
  position: relative;
  height: 100%;
}
.HeaderBlock.WithBgdImage > .container .row .col .parent {
  color: #ffffff;
}
.HeaderBlock.WithBgdImage > .container .row .col .parent a {
  color: #ffffff;
}
.HeaderBlock.WithBgdImage > .container .row .col .parent a:hover {
  color: #002E53;
}
.HeaderBlock.WithBgdImage > .container .row .col .title {
  color: #ffffff;
}
.HeaderBlock.WithBgdImage > .container .row .col .subtitle {
  color: #ffffff;
}
.HeaderBlock.ProgressCarousel {
  border-bottom: 0;
}
.HeaderBlock.ProgressCarousel > .container {
  position: absolute;
  top: 0;
  z-index: 3;
}
.HeaderBlock.ProgressCarousel > .container .row {
  position: relative;
  height: 100%;
}
.HeaderBlock.ProgressCarousel > .container .row .col .parent {
  color: #ffffff;
}
.HeaderBlock.ProgressCarousel > .container .row .col .parent a {
  color: #ffffff;
}
.HeaderBlock.ProgressCarousel > .container .row .col .parent a:hover {
  color: #002E53;
}
.HeaderBlock.ProgressCarousel > .container .row .col .title {
  color: #ffffff;
}
.HeaderBlock.ProgressCarousel > .container .row .col .subtitle {
  color: #ffffff;
}
.HeaderBlock.WithVideo {
  overflow: hidden;
  background-color: #000000;
  border-bottom: 0;
  height: 540px;
}
@media (min-width: 992px) {
  .HeaderBlock.WithVideo {
    height: 600px;
  }
}
@media (min-width: 1680px) {
  .HeaderBlock.WithVideo {
    height: 800px;
  }
}
@media (min-width: 2056px) {
  .HeaderBlock.WithVideo {
    height: 900px;
  }
}
.HeaderBlock.WithVideo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(131.06% 75.39% at 0% 0%, #004884 0%, rgba(0, 116, 168, 0.8) 38.71%, rgba(0, 136, 198, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.HeaderBlock.WithVideo .VideoCell {
  position: absolute;
  z-index: 1;
  top: -30%;
  right: -30%;
  bottom: -30%;
  left: -30%;
}
.HeaderBlock.WithVideo .VideoCell iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
}
@media (min-width: 768px) {
  .HeaderBlock.WithVideo .VideoCell iframe {
    width: 100%;
    height: 100%;
  }
}
.HeaderBlock.WithVideo > .container {
  position: relative;
  z-index: 3;
}
.HeaderBlock.WithVideo > .container .row {
  position: relative;
  height: 100%;
}
.HeaderBlock.WithVideo > .container .row .col .parent {
  color: #ffffff;
}
.HeaderBlock.WithVideo > .container .row .col .parent a {
  color: #ffffff;
}
.HeaderBlock.WithVideo > .container .row .col .parent a:hover {
  color: #002E53;
}
.HeaderBlock.WithVideo > .container .row .col .title {
  color: #ffffff;
}
.HeaderBlock.WithVideo > .container .row .col .subtitle {
  color: #ffffff;
}
.HeaderBlock.WithBgdImage + .AdditionalInfoBlock, .HeaderBlock.WithVideo + .AdditionalInfoBlock {
  margin-top: -64px;
  border-top: 0;
}
.HeaderBlock.WithInlineImage {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .HeaderBlock.WithInlineImage {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .HeaderBlock.WithInlineImage {
    padding-bottom: 72px;
  }
}
.HeaderBlock.WithInlineImage > .container .row .col {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1279px) {
  .HeaderBlock.WithInlineImage > .container .row .col.featured {
    padding-top: 32px;
  }
}
.HeaderBlock.WithInlineImage > .container .row .col .subtitle {
  color: #004884;
}
.HeaderBlock.WithInlineImage > .container .row .col.featured .fluid-width-video-wrapper {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}
.HeaderBlock.WithInlineImage > .container .row .col.featured .fluid-width-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.HeaderBlock.WithInlineImage > .container .row .col.featured div[style*="padding: 56.25% 0 0 0; position: relative;"],
.HeaderBlock.WithInlineImage > .container .row .col.featured div[style*="padding:56.25% 0 0 0;position:relative;"] {
  padding-top: 0 !important;
}
.HeaderBlock.WithInlineImage > .container .row .col.featured div[style*="padding: 56.25% 0 0 0; position: relative;"] > .fluid-width-video-wrapper,
.HeaderBlock.WithInlineImage > .container .row .col.featured div[style*="padding:56.25% 0 0 0;position:relative;"] > .fluid-width-video-wrapper {
  padding-top: 56.25% !important;
}
.HeaderBlock.WithInlineImage > .container .row .col .credits {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #757575;
  padding-top: 10px;
}
@media (min-width: 1680px) {
  .HeaderBlock.WithInlineImage > .container .row .col .credits {
    font-size: 20px;
    line-height: 28px;
  }
}
.HeaderBlock.WithInlineImage .image {
  position: relative;
}
.HeaderBlock.WithInlineImage .image:before {
  content: "";
  padding-top: 56.25%;
  display: block;
}
.HeaderBlock.WithInlineImage .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.HeaderBlock.PeopleImage .featured .image {
  max-width: 400px;
}
.HeaderBlock.PeopleImage .featured .image:before {
  padding-top: 100%;
}
@media (min-width: 992px) {
  .HeaderBlock.PeopleImage .featured .image {
    margin-left: auto;
  }
}
.HeaderBlock.Search {
  border-bottom: 0;
}

.SimpleContent {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #004884;
  background-color: #ffffff;
  position: relative;
  /*&.ImgBackdropLowerLevelDark {
    background:$ImgBackdropLowerLevelDark;  
  }
  &.ImgBackdropPrimaryAccentLight {
      background:$ImgBackdropPrimaryAccentLight;    
  }
  &.ImgBackdropPrimaryAccentMedium {
      background:$ImgBackdropPrimaryAccentMedium
  }
  &.ImgBackdropPrimaryAccentDark {
      background:$ImgBackdropPrimaryAccentDark;    
  }*/
}
.SimpleContent > .cell {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .SimpleContent > .cell {
    padding-bottom: 72px;
  }
}
.SimpleContent > .cell .title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.SimpleContent > .cell .text {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .SimpleContent > .cell .text {
    margin-top: 0;
  }
}
.SimpleContent > .cell .text p + p {
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell .text p + p {
    margin-top: 28px;
  }
}
.SimpleContent > .cell .text a {
  color: #0088C6;
}
.SimpleContent > .cell .text a:hover {
  color: #004884;
}
.SimpleContent > .cell .text ul {
  list-style: disc;
}
.SimpleContent > .cell .text ul li {
  padding-left: 3px;
  margin-left: 23px;
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell .text ul li {
    margin-top: 28px;
  }
}
.SimpleContent > .cell .text ul li a {
  color: #0088C6;
}
.SimpleContent > .cell .text ul li a:hover {
  color: #004884;
}
.SimpleContent > .cell .text ul + p {
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell .text ul + p {
    margin-top: 28px;
  }
}
.SimpleContent > .cell .text ol li {
  padding-left: 3px;
  margin-left: 23px;
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell .text ol li {
    margin-top: 28px;
  }
}
.SimpleContent > .cell .text ol li a {
  color: #0088C6;
}
.SimpleContent > .cell .text ol li a:hover {
  color: #004884;
}
.SimpleContent > .cell .text ol + p {
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell .text ol + p {
    margin-top: 28px;
  }
}
.SimpleContent > .cell .text > ul li:first-child,
.SimpleContent > .cell .text > ol li:first-child {
  margin-top: 0;
}
.SimpleContent > .cell .text p + ul li:first-child,
.SimpleContent > .cell .text p + ol li:first-child {
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .SimpleContent > .cell .text p + ul li:first-child,
  .SimpleContent > .cell .text p + ol li:first-child {
    margin-top: 28px;
  }
}
.SimpleContent > .cell .more {
  margin-top: 16px;
}
.SimpleContent > .cell .sm-icon {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .SimpleContent > .cell .sm-icon {
    margin-top: 24px;
  }
}
.SimpleContent > .cell .sm-icon img {
  height: 100%;
  display: block;
}
.SimpleContent > .BgdImageCell {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  bottom: 0;
}
.SimpleContent > .BgdImageCell img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .SimpleContent > .BgdImageCell {
    top: 0;
  }
  .SimpleContent > .BgdImageCell img {
    -o-object-position: left center;
       object-position: left center;
  }
}
.SimpleContent.WithBgdImage {
  min-height: 70vh;
}
.SimpleContent.Neutral0 {
  background-color: #FFFFFF;
}
.SimpleContent.Neutral100 {
  background-color: #F5F5F5;
}
.SimpleContent.Neutral200 {
  background-color: #EEEEEE;
}
.SimpleContent.Neutral300 {
  background-color: #E0E0E0;
}
.SimpleContent.Neutral400 {
  background-color: #BDBDBD;
}
.SimpleContent.ImgBackdropLowerLevelLight {
  background: linear-gradient(146.13deg, rgba(0, 75, 136, 0.2) 5.46%, rgba(0, 75, 136, 0.2) 5.47%, rgba(0, 157, 220, 0.026) 89.29%);
  background-color: #FFFFFF;
}
.SimpleContent.GradientPrimaryAccentMedium {
  background: linear-gradient(45deg, #EBF6FF 0%, #A1C9DB 100%);
  background-color: #FFFFFF;
}
.SimpleContent.GradientPrimaryAccentLight {
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
  background-color: #FFFFFF;
}
.SimpleContent.GradientPrimaryAccentDark {
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
  background-color: #FFFFFF;
}
.SimpleContent.GradientPrimaryAccentDark > .cell .title,
.SimpleContent.GradientPrimaryAccentDark > .cell .text {
  color: #ffffff;
}
.SimpleContent.GradientPrimaryAccentDark > .cell .text a {
  color: #002E53;
}
.SimpleContent.GradientPrimaryAccentDark > .cell .text a:hover {
  color: #004884;
}
.SimpleContent.GradientPrimaryAccentDark > .cell .more a {
  color: #ffffff;
}
.SimpleContent.GradientPrimaryAccentDark > .cell .more a svg path {
  fill: #ffffff;
}
.SimpleContent.GradientPrimaryAccentDark > .cell .more a:hover {
  -webkit-box-shadow: 4px 4px 0px #0088C6, -4px -4px 0px #0088C6, -4px 4px 0px #0088C6, 4px -4px 0px #0088C6;
          box-shadow: 4px 4px 0px #0088C6, -4px -4px 0px #0088C6, -4px 4px 0px #0088C6, 4px -4px 0px #0088C6;
  background-color: #0088C6;
}
.QuotationBlock {
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .QuotationBlock {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .QuotationBlock {
    padding-bottom: 72px;
  }
}
.QuotationBlock.SimpleContent > .cell {
  padding-top: 0;
}
.QuotationBlock .quotation.container {
  position: relative;
}
.QuotationBlock .quotation.container .row {
  position: relative;
  height: 100%;
}
.QuotationBlock .quotation.container .row .col {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .QuotationBlock .quotation.container .row .col.right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.QuotationBlock .quotation.container .row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
}
@media (min-width: 992px) {
  .QuotationBlock .quotation.container .row:before {
    left: 16px;
    right: 16px;
  }
}
@media (min-width: 1680px) {
  .QuotationBlock .quotation.container .row:before {
    left: 24px;
    right: 24px;
  }
}
.QuotationBlock .quotation .corner {
  background-image: url("../images/corner.svg");
  width: 64px;
  height: 64px;
  position: relative;
  display: block;
}
.QuotationBlock .quotation .corner.right {
  margin-left: auto;
}
.QuotationBlock .quotation .corner.left.top {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.QuotationBlock .quotation .corner.right.bottom {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.QuotationBlock .quotation .motto {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 16px;
}
@media (min-width: 768px) {
  .QuotationBlock .quotation .motto {
    padding: 32px 16px 32px 32px;
  }
}
@media (min-width: 992px) {
  .QuotationBlock .quotation .motto {
    padding: 64px 32px 64px 64px;
  }
}
@media (min-width: 1680px) {
  .QuotationBlock .quotation .motto {
    padding: 72px 24px 72px 72px;
  }
}
.QuotationBlock .quotation .motto .text {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
  padding: 24px 0;
}
@media (min-width: 1680px) {
  .QuotationBlock .quotation .motto .text {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .QuotationBlock .quotation .motto .text {
    padding: 32px 0;
  }
}
.QuotationBlock .quotation .person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  padding: 24px 16px 16px 16px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (min-width: 768px) {
  .QuotationBlock .quotation .person {
    padding: 24px 32px 32px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .QuotationBlock .quotation .person {
    padding: 24px 64px 64px 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 1680px) {
  .QuotationBlock .quotation .person {
    padding: 32px 72px 72px 0;
  }
}
.QuotationBlock .quotation .person:before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  width: 24px;
  height: 1px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .QuotationBlock .quotation .person:before {
    left: 0;
  }
}
.QuotationBlock .quotation .person .photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .QuotationBlock .quotation .person .photo {
    margin-bottom: 12px;
  }
}
@media (min-width: 1680px) {
  .QuotationBlock .quotation .person .photo {
    width: 56px;
    height: 56px;
    margin-right: 16px;
    margin-bottom: 0;
  }
}
.QuotationBlock .quotation .person .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.QuotationBlock .quotation .person .info .title {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .QuotationBlock .quotation .person .info .title {
    font-size: 20px;
    line-height: 28px;
  }
}
.QuotationBlock .quotation .person .info .text {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .QuotationBlock .quotation .person .info .text {
    font-size: 20px;
    line-height: 28px;
  }
}

.BannerBlock {
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .BannerBlock {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .BannerBlock {
    padding-bottom: 72px;
  }
}
.BannerBlock.SimpleContent > .cell {
  padding-top: 0;
}
.BannerBlock .banner.container {
  position: relative;
}
.BannerBlock .banner.container .row {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.BannerBlock .banner.container .row .col {
  position: relative;
  z-index: 3;
}
.BannerBlock .banner.container .row .col.left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 768px) {
  .BannerBlock .banner.container .row .col.left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.BannerBlock .banner.container .row .col.right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .BannerBlock .banner.container .row .col.right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.BannerBlock .banner.container .row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
}
@media (min-width: 992px) {
  .BannerBlock .banner.container .row:before {
    left: 16px;
    right: 16px;
  }
}
@media (min-width: 1680px) {
  .BannerBlock .banner.container .row:before {
    left: 24px;
    right: 24px;
  }
}
.BannerBlock .banner .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 16px 32px 16px;
}
@media (min-width: 768px) {
  .BannerBlock .banner .info {
    padding: 32px 16px 32px 32px;
  }
}
@media (min-width: 992px) {
  .BannerBlock .banner .info {
    padding: 64px 32px 64px 64px;
  }
}
@media (min-width: 1680px) {
  .BannerBlock .banner .info {
    padding: 72px 24px 72px 72px;
  }
}
.BannerBlock .banner .info .title {
  font-family: "CFAstyStd";
  letter-spacing: 0.02em;
  font-weight: 300;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .BannerBlock .banner .info .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1680px) {
  .BannerBlock .banner .info .title {
    font-size: 52px;
    line-height: 64px;
  }
}
.BannerBlock .banner .info .text {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .BannerBlock .banner .info .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .BannerBlock .banner .info .text {
    margin-top: 32px;
  }
}
.BannerBlock .banner .info .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .BannerBlock .banner .info .more {
    margin-top: auto;
  }
}
.BannerBlock .banner .info .more a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.BannerBlock .banner .image {
  position: relative;
  margin: 32px 16px 16px 16px;
  width: calc(100% - 16px - 16px);
}
@media (min-width: 768px) {
  .BannerBlock .banner .image {
    margin: 32px 32px 32px 0;
  }
}
@media (min-width: 992px) {
  .BannerBlock .banner .image {
    margin: 64px 64px 64px 0;
  }
}
@media (min-width: 1680px) {
  .BannerBlock .banner .image {
    margin: 72px 72px 72px 0;
  }
}
.BannerBlock .banner .image:before {
  content: "";
  padding-top: 66%;
  display: block;
}
.BannerBlock .banner .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.NumberedItems {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .NumberedItems {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .NumberedItems {
    padding-bottom: 72px;
  }
}
.NumberedItems.SimpleContent {
  margin-top: -1px;
  border-bottom: 0;
}
.NumberedItems.SimpleContent > .cell {
  padding-top: 0;
}
.NumberedItems.SimpleContent.WithBgdImage {
  min-height: unset;
}
.NumberedItems .list {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .NumberedItems .list .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 767px) {
  .NumberedItems .list .col:last-child .item {
    border-bottom: 1px solid #004884;
  }
}
.NumberedItems .list .item {
  text-align: center;
  width: 100%;
  border-top: 1px solid #004884;
  border-bottom: 1px solid #004884;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .NumberedItems .list .item {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 1680px) {
  .NumberedItems .list .item {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .NumberedItems .list .item {
    border-bottom: 0;
  }
}
.NumberedItems .list .item .number {
  color: #004884;
  font-size: 40px;
  line-height: 48px;
}
@media (min-width: 768px) {
  .NumberedItems .list .item .number {
    font-size: 52px;
    line-height: 64px;
  }
}
@media (min-width: 1680px) {
  .NumberedItems .list .item .number {
    font-size: 64px;
    line-height: 72px;
  }
}
.NumberedItems .list .item .text {
  color: #000000;
  font-size: 20px;
  line-height: 28px;
  margin-top: 24px;
}
@media (min-width: 1680px) {
  .NumberedItems .list .item .text {
    font-size: 24px;
    line-height: 32px;
  }
}
.NumberedItems.WithBgdImage {
  margin-top: 0;
  border-bottom: 1px solid #004884;
}
.NumberedItems.WithBgdImage .list .item {
  border: 0;
}
@media (max-width: 767px) {
  .NumberedItems.WithBgdImage .list .item {
    text-align: left;
  }
}
.NumberedItems.WithBgdImage .list .item .text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .NumberedItems.WithBgdImage .list .item .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .NumberedItems.WithBgdImage .list .col:last-child .item {
    border-bottom: 0;
  }
}

.MainContent {
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
  padding-top: 64px;
  padding-bottom: 40px;
}
@media (min-width: 1680px) {
  .MainContent {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .MainContent {
    padding-bottom: 44px;
  }
}
.MainContent .cell {
  margin: 0 auto;
}
.MainContent .intro {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1680px) {
  .MainContent .intro {
    font-size: 32px;
    line-height: 40px;
  }
}
.MainContent .MainText {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #000000;
}
@media (min-width: 1680px) {
  .MainContent .MainText {
    font-size: 20px;
    line-height: 28px;
  }
}
.MainContent .MainText h2 {
  font-size: 32px;
  line-height: 40px;
}
@media (min-width: 768px) {
  .MainContent .MainText h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1680px) {
  .MainContent .MainText h2 {
    font-size: 52px;
    line-height: 64px;
  }
}
.MainContent .MainText h3 {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .MainContent .MainText h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .MainContent .MainText h3 {
    font-size: 40px;
    line-height: 48px;
  }
}
.MainContent .MainText h4 {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1680px) {
  .MainContent .MainText h4 {
    font-size: 32px;
    line-height: 40px;
  }
}
.MainContent .MainText h5 {
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 1680px) {
  .MainContent .MainText h5 {
    font-size: 24px;
    line-height: 32px;
  }
}
.MainContent .MainText h2, .MainContent .MainText h3, .MainContent .MainText h4, .MainContent .MainText h5, .MainContent .MainText p,
.MainContent .MainText .intro,
.MainContent .MainText .fluid-width-video-wrapper,
.MainContent .MainText iframe,
.MainContent .MainText img,
.MainContent .MainText .more {
  margin-bottom: 24px;
}
@media (min-width: 1680px) {
  .MainContent .MainText h2, .MainContent .MainText h3, .MainContent .MainText h4, .MainContent .MainText h5, .MainContent .MainText p,
  .MainContent .MainText .intro,
  .MainContent .MainText .fluid-width-video-wrapper,
  .MainContent .MainText iframe,
  .MainContent .MainText img,
  .MainContent .MainText .more {
    margin-bottom: 28px;
  }
}
.MainContent .MainText p > a,
.MainContent .MainText div:not(.btn) > a,
.MainContent .MainText p > span > a {
  color: #0063B4;
  text-decoration: underline;
}
.MainContent .MainText p > a:hover,
.MainContent .MainText div:not(.btn) > a:hover,
.MainContent .MainText p > span > a:hover {
  color: #0063B4;
  text-decoration: none;
}
.MainContent .MainText div[style*="padding: 56.25% 0 0 0; position: relative;"],
.MainContent .MainText div[style*="padding:56.25% 0 0 0;position:relative;"] {
  padding-top: 0 !important;
}
.MainContent .MainText div[style*="padding: 56.25% 0 0 0; position: relative;"] > .fluid-width-video-wrapper,
.MainContent .MainText div[style*="padding:56.25% 0 0 0;position:relative;"] > .fluid-width-video-wrapper {
  padding-top: 56.25% !important;
}
.MainContent .MainText ul {
  list-style: disc;
}
.MainContent .MainText ul li {
  padding-left: 3px;
  margin-left: 23px;
  margin-bottom: 24px;
}
@media (min-width: 1680px) {
  .MainContent .MainText ul li {
    margin-bottom: 28px;
  }
}
.MainContent .MainText ul li a {
  color: #0063B4;
  text-decoration: underline;
}
.MainContent .MainText ul li a:hover {
  color: #0063B4;
  text-decoration: none;
}
.MainContent .MainText ol li {
  padding-left: 3px;
  margin-left: 23px;
  margin-bottom: 24px;
}
@media (min-width: 1680px) {
  .MainContent .MainText ol li {
    margin-bottom: 28px;
  }
}
.MainContent .MainText ol li a {
  color: #0063B4;
  text-decoration: underline;
}
.MainContent .MainText ol li a:hover {
  color: #0063B4;
  text-decoration: none;
}

.TimelineBlock {
  width: 100%;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
}
.TimelineBlock > .cell {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .TimelineBlock > .cell {
    padding-top: 72px;
  }
}
.TimelineBlock > .cell .title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .TimelineBlock > .cell .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.TimelineBlock > .cell .text {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .TimelineBlock > .cell .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .TimelineBlock > .cell .text {
    margin-top: 0;
  }
}
.TimelineBlock > .cell .more {
  margin-top: 16px;
}
.TimelineBlock .timeline {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline {
    padding-top: 72px;
  }
}
@media (min-width: 768px) {
  .TimelineBlock .timeline .list {
    margin-left: auto;
    margin-right: auto;
  }
}
.TimelineBlock .timeline .list .item {
  position: relative;
  padding-bottom: 64px;
  border-left: 1px solid #004884;
  padding-left: 32px;
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item {
    padding-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .TimelineBlock .timeline .list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item {
    padding-left: 40px;
  }
}
.TimelineBlock .timeline .list .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #004884;
}
.TimelineBlock .timeline .list .item .year {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 8px;
  color: #004884;
  border: 1px solid #004884;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item .year {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .TimelineBlock .timeline .list .item .year {
    position: absolute;
  }
}
.TimelineBlock .timeline .list .item .image {
  margin-top: 16px; /*width:128px;*/
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .TimelineBlock .timeline .list .item .image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 200px;
    margin-top: 42px;
  }
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item .image {
    margin-top: 46px;
  }
}
.TimelineBlock .timeline .list .item .image:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.TimelineBlock .timeline .list .item .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.TimelineBlock .timeline .list .item .info {
  width: 100%;
}
@media (min-width: 768px) {
  .TimelineBlock .timeline .list .item .info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% - 200px);
    margin-top: 26px;
  }
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item .info {
    margin-top: 30px;
  }
}
.TimelineBlock .timeline .list .item .title {
  margin-top: 16px;
  width: 100%;
  color: #000000;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 768px) {
  .TimelineBlock .timeline .list .item .title {
    width: 100%;
    padding-right: 64px;
  }
}
@media (min-width: 1280px) {
  .TimelineBlock .timeline .list .item .title {
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item .title {
    padding-right: 72px;
  }
}
.TimelineBlock .timeline .list .item .text {
  margin-top: 16px;
  width: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .TimelineBlock .timeline .list .item .text {
    width: 100%;
    padding-right: 64px;
  }
}
@media (min-width: 1280px) {
  .TimelineBlock .timeline .list .item .text {
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .TimelineBlock .timeline .list .item .text {
    padding-right: 72px;
  }
}
.TimelineBlock .timeline .list .item:last-child {
  border-left: 0;
}
.TimelineBlock .swiper {
  width: 100%;
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .TimelineBlock .swiper {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .TimelineBlock .swiper {
    padding-bottom: 72px;
  }
}
.TimelineBlock .swiper .swiper-wrapper {
  cursor: move;
}
.TimelineBlock .swiper .swiper-slide {
  position: relative;
  width: 90%;
}
@media (min-width: 768px) {
  .TimelineBlock .swiper .swiper-slide {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .TimelineBlock .swiper .swiper-slide {
    width: 31%;
  }
}
@media (min-width: 1920px) {
  .TimelineBlock .swiper .swiper-slide {
    width: 30%;
  }
}
@media (min-width: 2056px) {
  .TimelineBlock .swiper .swiper-slide {
    width: 24%;
  }
}
.TimelineBlock .swiper .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background-color: #004884;
  right: -16px;
}
@media (min-width: 992px) {
  .TimelineBlock .swiper .swiper-slide:before {
    right: -32px;
  }
}
@media (min-width: 1680px) {
  .TimelineBlock .swiper .swiper-slide:before {
    right: -48px;
  }
}
.TimelineBlock .swiper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 1px;
  background-color: #004884;
}
.TimelineBlock .swiper .swiper-slide:last-child:before {
  right: 0;
}
.TimelineBlock .swiper .swiper-slide .year {
  margin-top: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 8px;
  color: #004884;
  border: 1px solid #004884;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .TimelineBlock .swiper .swiper-slide .year {
    font-size: 14px;
    line-height: 20px;
  }
}
.TimelineBlock .swiper .swiper-slide .image {
  margin-top: 16px;
  max-width: 128px;
  position: relative;
}
.TimelineBlock .swiper .swiper-slide .image:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.TimelineBlock .swiper .swiper-slide .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.TimelineBlock .swiper .swiper-slide .title {
  margin-top: 12px;
  width: 100%;
  color: #000000;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1680px) {
  .TimelineBlock .swiper .swiper-slide .title {
    font-size: 32px;
    line-height: 40px;
  }
}

.ParallaxImageBlock {
  position: relative;
  height: 100vh;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 767px) {
  .ParallaxImageBlock {
    height: 40vh;
  }
}
.ParallaxImageBlock:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #004884;
}
.ParallaxImageBlock .BgdImageCell {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1366px) {
  .ParallaxImageBlock .BgdImageCell {
    background-attachment: initial;
  }
}
.ParallaxImageBlock .BgdImageCell img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.LogosItems {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .LogosItems {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .LogosItems {
    padding-bottom: 72px;
  }
}
.LogosItems.SimpleContent > .cell {
  padding-top: 0;
}
.LogosItems .list {
  position: relative;
  z-index: 3;
}
.LogosItems .list > .row {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.LogosItems .list .item {
  text-align: center;
  width: 100%;
}
.LogosItems .list .item img {
  height: 88px;
}
@media (min-width: 768px) {
  .LogosItems .list .item {
    padding-top: 24px;
  }
}
@media (min-width: 1680px) {
  .LogosItems .list .item {
    padding-top: 32px;
  }
  .LogosItems .list .item img {
    height: 128px;
  }
}
@media (max-width: 767px) {
  .LogosItems .list .item {
    border-bottom: 1px solid #004884;
    padding: 16px 0;
  }
}
.LogosItems .list .item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 768px) {
  .LogosItems .list .col:nth-child(1) .item, .LogosItems .list .col:nth-child(2) .item, .LogosItems .list .col:nth-child(3) .item, .LogosItems .list .col:nth-child(4) .item {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .LogosItems .list .col:first-child .item {
    padding-top: 0px;
  }
  .LogosItems .list .col:last-child .item {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.AttachedItems {
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .AttachedItems {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .AttachedItems {
    padding-bottom: 72px;
  }
}
.AttachedItems .header,
.AttachedItems .cell {
  margin: 0 auto;
}
.AttachedItems .header .title {
  color: #000000;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (min-width: 1680px) {
  .AttachedItems .header .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .AttachedItems .header .title {
    margin-bottom: 32px;
  }
}
.AttachedItems .list {
  border: 1px solid #004884;
  padding: 8px;
}
.AttachedItems .list .item {
  padding: 8px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.AttachedItems .list .item .title {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  padding-right: 8px;
}
@media (min-width: 1680px) {
  .AttachedItems .list .item .title {
    font-size: 20px;
    line-height: 28px;
  }
}

.InitiativesBlock {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .InitiativesBlock {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .InitiativesBlock {
    padding-bottom: 72px;
  }
}
.InitiativesBlock.SimpleContent > .cell {
  padding-top: 0;
}
.InitiativesBlock.CardsListBlock .list .card .text {
  color: #ffffff;
}
@media (min-width: 768px) {
  .InitiativesBlock .list .left {
    padding-right: 24px;
  }
}
@media (min-width: 992px) {
  .InitiativesBlock .list .left {
    padding-right: 48px;
  }
}
@media (min-width: 1680px) {
  .InitiativesBlock .list .left {
    padding-right: 48px;
  }
}

.AdditionalInfoBlock {
  position: relative;
  border-top: 1px solid #ffffff;
  margin-top: -1px;
}
.AdditionalInfoBlock:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 0;
}
.AdditionalInfoBlock .container .row {
  position: relative;
  z-index: 1;
  padding: 0 16px 0 16px;
}
@media (min-width: 768px) {
  .AdditionalInfoBlock .container .row {
    padding: 32px 32px 0 32px;
  }
}
@media (min-width: 992px) {
  .AdditionalInfoBlock .container .row {
    padding: 48px 48px 0 48px;
  }
}
@media (min-width: 1680px) {
  .AdditionalInfoBlock .container .row {
    padding: 64px 64px 0 64px;
  }
}
.AdditionalInfoBlock .container .row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
}
@media (min-width: 992px) {
  .AdditionalInfoBlock .container .row:before {
    left: 16px;
    right: 16px;
  }
}
@media (min-width: 1680px) {
  .AdditionalInfoBlock .container .row:before {
    left: 24px;
    right: 24px;
  }
}
.AdditionalInfoBlock .container .row .col {
  z-index: 1;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .AdditionalInfoBlock .container .row .col {
    padding-top: 0;
    padding-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .AdditionalInfoBlock .container .row .col {
    padding-bottom: 48px;
  }
}
@media (min-width: 1680px) {
  .AdditionalInfoBlock .container .row .col {
    padding-bottom: 64px;
  }
}
.AdditionalInfoBlock .container .row .col .title {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .AdditionalInfoBlock .container .row .col .title {
    font-size: 20px;
    line-height: 28px;
  }
}
.AdditionalInfoBlock .container .row .col .info {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .AdditionalInfoBlock .container .row .col .info {
    font-size: 20px;
    line-height: 28px;
  }
}
.AdditionalInfoBlock .container .row .col .info a {
  color: #ffffff;
}
.AdditionalInfoBlock .container .row .col .info a:hover {
  text-decoration: underline;
}

.TeamBlock {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .TeamBlock {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .TeamBlock {
    padding-bottom: 72px;
  }
}
.TeamBlock.SimpleContent > .cell {
  padding-top: 0;
}
.TeamBlock .list .accordion-item {
  border-top: 1px solid #004884;
}
.TeamBlock .list .accordion-item:first-child {
  border-top: 0;
}
.TeamBlock .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  padding: 16px 0;
}
@media (min-width: 1680px) {
  .TeamBlock .list .item {
    padding: 24px 0;
  }
}
.TeamBlock .list .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 80px - 24px - 16px);
  padding-right: 16px;
}
@media (min-width: 992px) {
  .TeamBlock .list .item .info {
    width: calc(100% - 80px - 24px - 32px);
    padding-right: 32px;
  }
}
@media (min-width: 1680px) {
  .TeamBlock .list .item .info {
    width: calc(100% - 92px - 28px - 48px);
    padding-right: 48px;
  }
}
.TeamBlock .list .item .info .title {
  font-size: 20px;
  line-height: 28px;
  color: #001B32;
  width: 100%;
}
@media (min-width: 1680px) {
  .TeamBlock .list .item .info .title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  .TeamBlock .list .item .info .title {
    width: 50%;
  }
}
.TeamBlock .list .item .info .position {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #004884;
  width: 100%;
}
@media (min-width: 1680px) {
  .TeamBlock .list .item .info .position {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .TeamBlock .list .item .info .position {
    width: 50%;
    padding-left: 16px;
  }
}
@media (min-width: 992px) {
  .TeamBlock .list .item .info .position {
    padding-left: 32px;
  }
}
@media (min-width: 1680px) {
  .TeamBlock .list .item .info .position {
    padding-left: 48px;
  }
}
@media (max-width: 767px) {
  .TeamBlock .list .item .info .position {
    margin-top: 8px;
  }
}
.TeamBlock .list .item .image {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
  height: 80px;
}
@media (min-width: 1680px) {
  .TeamBlock .list .item .image {
    width: 92px;
    height: 92px;
  }
}
.TeamBlock .list .item .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.TeamBlock .list .item .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  min-height: 80px;
}
@media (min-width: 992px) {
  .TeamBlock .list .item .arrow {
    margin-left: 32px;
  }
}
@media (min-width: 1680px) {
  .TeamBlock .list .item .arrow {
    width: 28px;
    height: 28px;
    margin-left: 48px;
    min-height: 92px;
  }
}
.TeamBlock .list .item .arrow .more {
  font-size: 0;
}
.TeamBlock .list .item .arrow svg {
  margin: 0;
}
.TeamBlock .list .item:hover .arrow .blue-font a {
  color: #ffffff;
}
.TeamBlock .list .item:hover .arrow .blue-font svg path {
  fill: #ffffff;
}
.TeamBlock .list .item:hover .arrow .tert {
  -webkit-box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
          box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
  background-color: #002E53;
}
.TeamBlock .list .item.opened .arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.TeamBlock .list .item-info {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #000000;
  color: #001B32;
  width: 100%;
  padding-bottom: 16px;
}
@media (min-width: 1680px) {
  .TeamBlock .list .item-info {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1280px) {
  .TeamBlock .list .item-info {
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .TeamBlock .list .item-info {
    padding-bottom: 24px;
  }
}
.TeamBlock .list .item-info a {
  color: #0088C6;
}
.TeamBlock .list .item-info a:hover {
  color: #004884;
}
.TeamBlock.WithLinks .list .item {
  cursor: text;
  border-top: 1px solid #004884;
}
.TeamBlock.WithLinks .list .item:first-child {
  border-top: 0;
}
.TeamBlock.WithLinks .list .item .info {
  width: calc(100% - 80px - 24px - 16px);
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .TeamBlock.WithLinks .list .item .info {
    width: calc(100% - 80px - 220px - 32px);
    margin-bottom: 0;
  }
}
@media (min-width: 1680px) {
  .TeamBlock.WithLinks .list .item .info {
    width: calc(100% - 92px - 220px - 48px);
  }
}
.TeamBlock.WithLinks .list .item .arrow {
  cursor: pointer;
}
.TeamBlock.WithLinks .list .item.opened .arrow svg {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.QuickLinksBlock {
  background-color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid #004884;
  padding: 16px 0;
}
@media (min-width: 1680px) {
  .QuickLinksBlock {
    padding: 24px 0;
  }
}
.QuickLinksBlock .col .swiper {
  pointer-events: none;
  margin-left: auto;
  margin-right: auto;
}
.QuickLinksBlock .col .swiper .swiper-wrapper {
  pointer-events: initial;
}
@media (min-width: 992px) {
  .QuickLinksBlock .col .swiper .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.QuickLinksBlock .col .swiper .swiper-slide {
  width: auto !important;
}
.QuickLinksBlock .button {
  position: relative;
  margin: 0 6px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid transparent;
  border-radius: 32px;
  background-color: transparent;
  padding: 12px 16px;
}
@media (min-width: 1680px) {
  .QuickLinksBlock .button {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .QuickLinksBlock .button {
    padding: 16px 24px;
  }
}
.QuickLinksBlock .button span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  min-width: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.QuickLinksBlock .button:hover {
  border-color: #004884;
}
.QuickLinksBlock .button.selected {
  /*font-weight:700;*/
  color: #ffffff;
  background-color: #004884;
  /*&:before {
      content:"";position:absolute;top:0;bottom:0;left:-14px;right:-14px;background-color:$AccentPrimary500;border-radius:32px;z-index:0;
      @include media-breakpoint-up(xl) {
          left:-18px;right:-18px;
      }
  }*/
}

.HtmlBlock {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .HtmlBlock {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .HtmlBlock {
    padding-bottom: 72px;
  }
}
.HtmlBlock.SimpleContent > .cell {
  padding-top: 0;
}

.ErrorBlock {
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
  text-align: center;
  border-bottom: 1px solid #004884;
  padding: 128px 0;
}
.ErrorBlock .col {
  margin-left: auto;
  margin-right: auto;
}
.ErrorBlock .title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #004884;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .ErrorBlock .title {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1680px) {
  .ErrorBlock .title {
    font-size: 72px;
    line-height: 80px;
  }
}
.ErrorBlock .text {
  font-size: 20px;
  line-height: 28px;
  color: #001B32;
  margin-bottom: 32px;
}
@media (min-width: 1680px) {
  .ErrorBlock .text {
    font-size: 24px;
    line-height: 32px;
  }
}
.ProgressCarousel {
  width: 100%;
  overflow: hidden;
}
.ProgressCarousel .swiper {
  width: 100%;
  position: relative;
  height: 540px;
}
@media (min-width: 992px) {
  .ProgressCarousel .swiper {
    height: 600px;
  }
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper {
    height: 800px;
  }
}
@media (min-width: 2056px) {
  .ProgressCarousel .swiper {
    height: 900px;
  }
}
.ProgressCarousel .swiper .swiper-slide {
  position: relative;
}
.ProgressCarousel .swiper .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(22.66%, rgba(0, 136, 198, 0)), color-stop(77.27%, rgba(0, 116, 168, 0.8)), to(#004884));
  background: linear-gradient(270deg, rgba(0, 136, 198, 0) 22.66%, rgba(0, 116, 168, 0.8) 77.27%, #004884 100%);
}
.ProgressCarousel .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.ProgressCarousel .swiper .swiper-slide .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}
.ProgressCarousel .swiper .swiper-slide .left.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ProgressCarousel .swiper .swiper-slide .left .row {
  width: calc(100% + 8px + 8px);
}
@media (min-width: 992px) {
  .ProgressCarousel .swiper .swiper-slide .left .row {
    width: calc(100% + 16px + 16px);
  }
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .swiper-slide .left .row {
    width: calc(100% + 24px + 24px);
  }
}
.ProgressCarousel .swiper .swiper-slide .left .info {
  margin-bottom: 140px;
  width: 100%;
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .swiper-slide .left .info {
    margin-bottom: 160px;
  }
}
@media (min-width: 2056px) {
  .ProgressCarousel .swiper .swiper-slide .left .info {
    max-width: 2056px;
  }
}
.ProgressCarousel .swiper .swiper-slide .left .info .title {
  color: #ffffff;
  width: 100%;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .swiper-slide .left .info .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .swiper-slide .left .info .title {
    margin-bottom: 32px;
  }
}
.ProgressCarousel .swiper .navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ProgressCarousel .swiper .navigation.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ProgressCarousel .swiper .navigation .row {
  height: 100%;
  width: calc(100% + 8px + 8px);
}
@media (min-width: 992px) {
  .ProgressCarousel .swiper .navigation .row {
    width: calc(100% + 16px + 16px);
  }
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .navigation .row {
    width: calc(100% + 24px + 24px);
  }
}
.ProgressCarousel .swiper .navigation .row .col {
  position: relative;
  z-index: 1;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ProgressCarousel .swiper .navigation .row .actions {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 1;
  padding-bottom: 64px;
  pointer-events: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 36px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .navigation .row .actions {
    padding-top: 44px;
    padding-bottom: 72px;
  }
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-scrollbar {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 1;
  margin-bottom: 12px;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.48);
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #ffffff;
  border-radius: 0;
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-pagination {
  width: 50%;
  left: auto;
  bottom: auto;
  z-index: 1;
  position: relative;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-pagination span {
  font-size: 16px;
  line-height: 24px;
  width: 24px;
  color: #ffffff;
  height: 24px;
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .navigation .row .actions .swiper-pagination span {
    height: 28px;
  }
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-pagination span.swiper-pagination-current {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-pagination span.swiper-pagination-total {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-pagination:before {
  content: "";
  height: 1px;
  background-color: #ffffff;
  width: 48px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 8px;
}
.ProgressCarousel .swiper .navigation .row .actions .swipper-buttons {
  width: 50%;
  left: auto;
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-prev,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-next,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-play,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-pause {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .navigation .row .actions .swiper-btn-prev,
  .ProgressCarousel .swiper .navigation .row .actions .swiper-btn-next,
  .ProgressCarousel .swiper .navigation .row .actions .swiper-btn-play,
  .ProgressCarousel .swiper .navigation .row .actions .swiper-btn-pause {
    height: 28px;
    width: 28px;
  }
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-prev span,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-next span,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-play span,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-pause span {
  display: none;
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-prev svg,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-next svg,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-play svg,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-pause svg {
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .ProgressCarousel .swiper .navigation .row .actions .swiper-btn-prev svg,
  .ProgressCarousel .swiper .navigation .row .actions .swiper-btn-next svg,
  .ProgressCarousel .swiper .navigation .row .actions .swiper-btn-play svg,
  .ProgressCarousel .swiper .navigation .row .actions .swiper-btn-pause svg {
    height: 28px;
    width: 28px;
  }
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-prev.swiper-button-disabled,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-next.swiper-button-disabled,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-play.swiper-button-disabled,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-pause.swiper-button-disabled {
  pointer-events: none;
  cursor: text;
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-prev.swiper-button-disabled svg path,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-next.swiper-button-disabled svg path,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-play.swiper-button-disabled svg path,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-pause.swiper-button-disabled svg path {
  fill: #BDBDBD;
}
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-prev.hidden,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-next.hidden,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-play.hidden,
.ProgressCarousel .swiper .navigation .row .actions .swiper-btn-pause.hidden {
  display: none;
}

.TabbedCarousel {
  height: 80vh;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 540px;
}
.TabbedCarousel img.mobile {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
}
.TabbedCarousel .mobile img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media (min-width: 992px) {
  .TabbedCarousel {
    min-height: 600px;
  }
  .TabbedCarousel img.mobile {
    display: none;
  }
}
@media (min-width: 1680px) {
  .TabbedCarousel {
    min-height: 800px;
  }
}
@media (min-width: 2056px) {
  .TabbedCarousel {
    min-height: 900px;
  }
}
.TabbedCarousel > header {
  position: absolute;
  z-index: 4;
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .TabbedCarousel > header {
    padding-top: 72px;
  }
}
.TabbedCarousel > header .title {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 1680px) {
  .TabbedCarousel > header .title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .TabbedCarousel > header .title.hidden {
    display: none;
  }
}
.TabbedCarousel > header .back {
  display: none;
  margin-top: 3px;
}
@media (max-width: 991px) {
  .TabbedCarousel > header .back.show {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.TabbedCarousel:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(281.47deg, rgba(0, 0, 0, 0.5) 6.39%, rgba(0, 75, 136, 0.6) 96.64%);
  z-index: 2;
}
.TabbedCarousel .tabs {
  position: relative;
  z-index: 3;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80vh;
  min-height: 540px;
}
@media (min-width: 992px) {
  .TabbedCarousel .tabs {
    min-height: 600px;
  }
}
@media (min-width: 1680px) {
  .TabbedCarousel .tabs {
    min-height: 800px;
  }
}
@media (min-width: 2056px) {
  .TabbedCarousel .tabs {
    min-height: 900px;
  }
}
.TabbedCarousel .tabs li h3 {
  display: block;
}
.TabbedCarousel .tabs li a {
  display: block;
  cursor: pointer;
  position: relative;
  font-family: "CFAstyStd";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: #ffffff;
  margin: 8px 0;
}
@media (min-width: 500px) {
  .TabbedCarousel .tabs li a {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 768px) {
  .TabbedCarousel .tabs li a {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 992px) {
  .TabbedCarousel .tabs li a {
    font-size: 44px;
    line-height: 56px;
  }
  .TabbedCarousel .tabs li a svg {
    display: none;
  }
  .TabbedCarousel .tabs li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background-color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
@media (min-width: 1280px) {
  .TabbedCarousel .tabs li a {
    font-size: 52px;
    line-height: 64px;
  }
}
@media (min-width: 1680px) {
  .TabbedCarousel .tabs li a {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1680px) {
  .TabbedCarousel .tabs li a {
    margin: 12px 0;
  }
}
.TabbedCarousel .tabs li a.inactive {
  color: rgba(255, 255, 255, 0.48);
}
@media (min-width: 992px) {
  .TabbedCarousel .tabs li a.inactive:after {
    right: 100%;
  }
}
.TabbedCarousel .tabs li a:hover {
  color: #ffffff;
}
.TabbedCarousel .tabs li a span {
  font-weight: 700;
}
@media (max-width: 991px) {
  .TabbedCarousel .tabs {
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .TabbedCarousel .tabs li a {
    border-bottom: 1px solid #ffffff;
    margin: 0;
    padding: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .TabbedCarousel .tabs li a svg {
    width: 40px;
    height: 40px;
  }
  .TabbedCarousel .tabs li a svg path {
    fill: #ffffff;
  }
  .TabbedCarousel .tabs li a.inactive {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
  }
  .TabbedCarousel .tabs li:last-child a {
    border: 0;
  }
  .TabbedCarousel .tabs.hidden {
    left: -110%;
  }
}
.TabbedCarousel .tab-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.TabbedCarousel .tab-content img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.TabbedCarousel .tab-content > .container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}
.TabbedCarousel .tab-content > .container .row {
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.TabbedCarousel .tab-content > .container .row .col {
  z-index: 2;
}
.TabbedCarousel .tab-content > .container .info {
  width: 100%;
  position: relative;
  top: 34%;
}
@media (min-width: 768px) {
  .TabbedCarousel .tab-content > .container .info {
    top: 36%;
  }
}
@media (min-width: 992px) {
  .TabbedCarousel .tab-content > .container .info {
    padding-left: 32px;
    top: 45%;
  }
}
.TabbedCarousel .tab-content > .container .info .title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}
@media (min-width: 500px) {
  .TabbedCarousel .tab-content > .container .info .title {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 768px) {
  .TabbedCarousel .tab-content > .container .info .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 992px) {
  .TabbedCarousel .tab-content > .container .info .title {
    font-size: 44px;
    line-height: 56px;
    display: none;
  }
}
@media (min-width: 1280px) {
  .TabbedCarousel .tab-content > .container .info .title {
    font-size: 52px;
    line-height: 64px;
  }
}
@media (min-width: 1680px) {
  .TabbedCarousel .tab-content > .container .info .title {
    font-size: 64px;
    line-height: 72px;
  }
}
.TabbedCarousel .tab-content > .container .info .text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media (min-width: 1680px) {
  .TabbedCarousel .tab-content > .container .info .text {
    font-size: 20px;
    line-height: 28px;
  }
}
.TabbedCarousel .tab-content > .container .info .more {
  margin-top: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.TabbedCarousel .tab-content.inactive img {
  opacity: 0;
}
.TabbedCarousel .tab-content.inactive > .container {
  opacity: 0;
}
@media (max-width: 991px) {
  .TabbedCarousel .tab-content img {
    opacity: 0;
  }
  .TabbedCarousel .tab-content > .container .row .col {
    position: relative;
    left: 110%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .TabbedCarousel .tab-content.show img {
    opacity: 1;
  }
  .TabbedCarousel .tab-content.show > .container .row .col {
    left: 0;
  }
}

.SimpleCarousel_9_16 {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
}
.SimpleCarousel_9_16 > .cell {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 > .cell {
    padding-top: 72px;
  }
}
.SimpleCarousel_9_16 > .cell .title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 > .cell .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.SimpleCarousel_9_16 > .cell .text {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 > .cell .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .SimpleCarousel_9_16 > .cell .text {
    margin-top: 0;
  }
}
.SimpleCarousel_9_16 > .cell .more {
  margin-top: 16px;
}
.SimpleCarousel_9_16 .swiper {
  width: calc(100% + 100px + 100px);
  margin-left: -100px;
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 .swiper {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 .swiper {
    padding-bottom: 72px;
  }
}
.SimpleCarousel_9_16 .swiper .swiper-slide {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.SimpleCarousel_9_16 .swiper .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 177.777%;
}
.SimpleCarousel_9_16 .swiper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.72)), color-stop(83.59%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 83.59%);
  z-index: 2;
}
.SimpleCarousel_9_16 .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.SimpleCarousel_9_16 .swiper .swiper-slide .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.SimpleCarousel_9_16 .swiper .swiper-slide .info a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 16px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .SimpleCarousel_9_16 .swiper .swiper-slide .info a {
    padding: 24px;
  }
}
.SimpleCarousel_9_16 .swiper .swiper-slide .info a:focus .title {
  text-decoration: underline;
}
.SimpleCarousel_9_16 .swiper .swiper-slide .info .title {
  width: 100%;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 .swiper .swiper-slide .info .title {
    font-size: 32px;
    line-height: 40px;
  }
}
.SimpleCarousel_9_16 .swiper .swiper-slide .info .title:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .SimpleCarousel_9_16 .swiper .navigation {
    display: none;
  }
}
.SimpleCarousel_9_16 .swiper .navigation .actions {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 1;
  pointer-events: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 32px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 .swiper .navigation .actions {
    padding-top: 48px;
  }
}
.SimpleCarousel_9_16 .swiper .navigation .actions .swipper-buttons {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-prev,
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-prev,
  .SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-next {
    height: 28px;
    width: 28px;
  }
}
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-prev span,
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-next span {
  display: none;
}
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-prev svg,
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-next svg {
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-prev svg,
  .SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-next svg {
    height: 28px;
    width: 28px;
  }
}
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-prev.swiper-button-disabled,
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-next.swiper-button-disabled {
  pointer-events: none;
  cursor: text;
}
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-prev.swiper-button-disabled svg path,
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-next.swiper-button-disabled svg path {
  fill: #BDBDBD;
}
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-prev.hidden,
.SimpleCarousel_9_16 .swiper .navigation .actions .swiper-btn-next.hidden {
  display: none;
}
.SimpleCarousel_9_16 .button {
  margin-bottom: 64px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_9_16 .button {
    margin-bottom: 72px;
  }
}
.SimpleCarousel_9_16 .button .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.SimpleCarousel_9_16 .button .more a {
  width: 100%;
  text-align: center;
}

.SimpleCarousel_4_5 {
  width: 100%;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
  border-bottom: 1px solid #004884;
}
.SimpleCarousel_4_5 > .cell {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 > .cell {
    padding-top: 72px;
  }
}
.SimpleCarousel_4_5 > .cell .title {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 > .cell .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.SimpleCarousel_4_5 > .cell .text {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 > .cell .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .SimpleCarousel_4_5 > .cell .text {
    margin-top: 0;
  }
}
.SimpleCarousel_4_5 > .cell .more {
  margin-top: 16px;
}
.SimpleCarousel_4_5 .swiper {
  width: calc(100% + 150px + 150px);
  margin-left: -150px;
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .SimpleCarousel_4_5 .swiper {
    width: calc(100% + 300px + 300px);
    margin-left: -300px;
  }
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 .swiper {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 .swiper {
    padding-bottom: 72px;
  }
}
.SimpleCarousel_4_5 .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.SimpleCarousel_4_5 .swiper .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 125%;
}
.SimpleCarousel_4_5 .swiper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.72)), color-stop(83.59%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 83.59%);
  z-index: 2;
}
.SimpleCarousel_4_5 .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info a:not(.cat) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 16px;
}
@media (min-width: 992px) {
  .SimpleCarousel_4_5 .swiper .swiper-slide .info a:not(.cat) {
    padding: 24px;
  }
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info a:not(.cat):focus .title {
  text-decoration: underline;
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info .title,
.SimpleCarousel_4_5 .swiper .swiper-slide .info .text {
  color: #ffffff;
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info .title:hover {
  text-decoration: underline;
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info .title {
  width: 100%;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .SimpleCarousel_4_5 .swiper .swiper-slide .info .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 .swiper .swiper-slide .info .title {
    font-size: 40px;
    line-height: 48px;
  }
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info .text {
  width: 100%;
  margin-top: 24px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 .swiper .swiper-slide .info .text {
    font-size: 20px;
    line-height: 28px;
  }
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info .cat {
  padding: 8px 12px;
  background-color: #ffffff;
  position: absolute;
  z-index: 4;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
  top: 16px;
  left: 16px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 .swiper .swiper-slide .info .cat {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .SimpleCarousel_4_5 .swiper .swiper-slide .info .cat {
    top: 24px;
    left: 24px;
  }
}
.SimpleCarousel_4_5 .swiper .swiper-slide .info .cat:hover {
  color: #ffffff;
  background-color: #0088C6;
}
@media (max-width: 767px) {
  .SimpleCarousel_4_5 .swiper .navigation {
    display: none;
  }
}
.SimpleCarousel_4_5 .swiper .navigation .actions {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 1;
  pointer-events: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 32px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 .swiper .navigation .actions {
    padding-top: 48px;
  }
}
.SimpleCarousel_4_5 .swiper .navigation .actions .swipper-buttons {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-prev,
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-prev,
  .SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-next {
    height: 28px;
    width: 28px;
  }
}
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-prev span,
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-next span {
  display: none;
}
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-prev svg,
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-next svg {
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-prev svg,
  .SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-next svg {
    height: 28px;
    width: 28px;
  }
}
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-prev.swiper-button-disabled,
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-next.swiper-button-disabled {
  pointer-events: none;
  cursor: text;
}
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-prev.swiper-button-disabled svg path,
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-next.swiper-button-disabled svg path {
  fill: #BDBDBD;
}
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-prev.hidden,
.SimpleCarousel_4_5 .swiper .navigation .actions .swiper-btn-next.hidden {
  display: none;
}

.HalfSimpleCarousel_4_5 {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
}
.HalfSimpleCarousel_4_5 > .cell .title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 > .cell .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.HalfSimpleCarousel_4_5 > .cell .text {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 > .cell .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .HalfSimpleCarousel_4_5 > .cell .text {
    margin-top: auto;
  }
}
.HalfSimpleCarousel_4_5 > .cell .more {
  margin-top: 16px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.HalfSimpleCarousel_4_5 .info {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .info {
    padding-top: 72px;
  }
}
@media (min-width: 768px) {
  .HalfSimpleCarousel_4_5 .info {
    padding-bottom: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) and (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .info {
    padding-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .HalfSimpleCarousel_4_5 .info {
    padding-right: 16px;
    border-right: 1px solid #004884;
  }
}
@media (min-width: 992px) {
  .HalfSimpleCarousel_4_5 .info {
    padding-right: 32px;
  }
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .info {
    padding-right: 48px;
  }
}
@media (min-width: 768px) {
  .HalfSimpleCarousel_4_5 .col-md-8 {
    padding-left: 16px;
  }
}
@media (min-width: 992px) {
  .HalfSimpleCarousel_4_5 .col-md-8 {
    padding-left: 32px;
  }
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .col-md-8 {
    padding-left: 48px;
  }
}
.HalfSimpleCarousel_4_5 .swiper {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .HalfSimpleCarousel_4_5 .swiper {
    overflow: hidden;
  }
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .swiper {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .swiper {
    padding-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .HalfSimpleCarousel_4_5 .swiper {
    position: relative;
  }
  .HalfSimpleCarousel_4_5 .swiper:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  }
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 125%;
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.72)), color-stop(83.59%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 83.59%);
  z-index: 2;
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info a:not(.cat) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 16px;
}
@media (min-width: 992px) {
  .HalfSimpleCarousel_4_5 .swiper .swiper-slide .info a:not(.cat) {
    padding: 24px;
  }
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info a:not(.cat):focus .title {
  text-decoration: underline;
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .title,
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .text {
  color: #ffffff;
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .title:hover {
  text-decoration: underline;
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .title {
  width: 100%;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .title {
    font-size: 40px;
    line-height: 48px;
  }
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .text {
  width: 100%;
  margin-top: 24px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .text {
    font-size: 20px;
    line-height: 28px;
  }
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .cat {
  padding: 8px 12px;
  background-color: #ffffff;
  position: absolute;
  z-index: 4;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
  top: 16px;
  left: 16px;
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .cat {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .cat {
    top: 24px;
    left: 24px;
  }
}
.HalfSimpleCarousel_4_5 .swiper .swiper-slide .info .cat:hover {
  color: #ffffff;
  background-color: #0088C6;
}
@media (max-width: 767px) {
  .HalfSimpleCarousel_4_5 .navigation {
    display: none;
  }
}
.HalfSimpleCarousel_4_5 .navigation .actions {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 1;
  pointer-events: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 64px;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swipper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-prev,
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-prev,
  .HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next {
    height: 28px;
    width: 28px;
  }
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-prev span,
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next span {
  display: none;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-prev svg,
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next svg {
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-prev svg,
  .HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next svg {
    height: 28px;
    width: 28px;
  }
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-prev.swiper-button-disabled,
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next.swiper-button-disabled {
  pointer-events: none;
  cursor: text;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-prev.swiper-button-disabled svg path,
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next.swiper-button-disabled svg path {
  fill: #BDBDBD;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-prev.hidden,
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next.hidden {
  display: none;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-btn-next {
  margin-left: 12px;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-pagination {
  width: auto;
  left: auto;
  bottom: auto;
  z-index: 1;
  position: relative;
  margin-left: 12px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-pagination span {
  font-size: 16px;
  line-height: 24px;
  width: 24px;
  color: #004884;
  height: 24px;
}
@media (min-width: 1680px) {
  .HalfSimpleCarousel_4_5 .navigation .actions .swiper-pagination span {
    height: 28px;
  }
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-pagination span.swiper-pagination-current {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-pagination span.swiper-pagination-total {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.HalfSimpleCarousel_4_5 .navigation .actions .swiper-pagination:before {
  content: "";
  height: 1px;
  background-color: #004884;
  width: 48px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 8px;
}

.GalleryCarousel {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
}
.GalleryCarousel.Nav .swiper {
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .GalleryCarousel.Nav .swiper {
    padding-bottom: 72px;
  }
}
.GalleryCarousel.NoNav .swiper {
  padding-top: 64px;
  padding-bottom: 32px;
}
@media (min-width: 1680px) {
  .GalleryCarousel.NoNav .swiper {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .GalleryCarousel.NoNav .swiper {
    padding-bottom: 24px;
  }
}
.GalleryCarousel.NoNav .navigation {
  display: none;
}
@media (min-width: 768px) {
  .GalleryCarousel.NoNavSlides3 .swiper {
    padding-bottom: 32px;
  }
}
@media (min-width: 768px) and (min-width: 1680px) {
  .GalleryCarousel.NoNavSlides3 .swiper {
    padding-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .GalleryCarousel.NoNavSlides3 .navigation {
    display: none;
  }
}
.GalleryCarousel > .cell {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .GalleryCarousel > .cell {
    padding-top: 72px;
  }
}
.GalleryCarousel > .cell .title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .GalleryCarousel > .cell .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.GalleryCarousel > .cell .text {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .GalleryCarousel > .cell .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .GalleryCarousel > .cell .text {
    margin-top: 0;
  }
}
.GalleryCarousel > .cell .more {
  margin-top: 16px;
}
.GalleryCarousel .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .GalleryCarousel .swiper {
    padding-top: 72px;
  }
}
.GalleryCarousel .swiper .swiper-slide {
  position: relative; /*overflow:hidden;*/
  cursor: pointer;
  margin-bottom: 32px !important;
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .GalleryCarousel .swiper .swiper-slide {
    margin-bottom: 32px !important;
  }
}
@media (min-width: 1680px) {
  .GalleryCarousel .swiper .swiper-slide {
    margin-bottom: 48px !important;
    height: calc((100% - 48px) / 2) !important;
  }
}
.GalleryCarousel .swiper .swiper-slide .image {
  position: relative;
  overflow: hidden;
  display: block;
}
.GalleryCarousel .swiper .swiper-slide .image:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.GalleryCarousel .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.GalleryCarousel .swiper .swiper-slide img:focus {
  border: 2px solid #0063B4;
}
.GalleryCarousel .swiper .swiper-slide .caption {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #757575;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .GalleryCarousel .swiper .swiper-slide .caption {
    font-size: 20px;
    line-height: 28px;
  }
}
.GalleryCarousel .swiper .swiper-slide .caption .credits {
  color: #757575;
}
.GalleryCarousel .swiper .swiper-slide:hover .caption {
  text-decoration: none;
  cursor: text;
}
.GalleryCarousel .swiper .navigation .actions {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 1;
  pointer-events: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.GalleryCarousel .swiper .navigation .actions .swipper-buttons {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.GalleryCarousel .swiper .navigation .actions .swiper-btn-prev,
.GalleryCarousel .swiper .navigation .actions .swiper-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .GalleryCarousel .swiper .navigation .actions .swiper-btn-prev,
  .GalleryCarousel .swiper .navigation .actions .swiper-btn-next {
    height: 28px;
    width: 28px;
  }
}
.GalleryCarousel .swiper .navigation .actions .swiper-btn-prev span,
.GalleryCarousel .swiper .navigation .actions .swiper-btn-next span {
  display: none;
}
.GalleryCarousel .swiper .navigation .actions .swiper-btn-prev svg,
.GalleryCarousel .swiper .navigation .actions .swiper-btn-next svg {
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .GalleryCarousel .swiper .navigation .actions .swiper-btn-prev svg,
  .GalleryCarousel .swiper .navigation .actions .swiper-btn-next svg {
    height: 28px;
    width: 28px;
  }
}
.GalleryCarousel .swiper .navigation .actions .swiper-btn-prev.swiper-button-disabled,
.GalleryCarousel .swiper .navigation .actions .swiper-btn-next.swiper-button-disabled {
  pointer-events: none;
  cursor: text;
}
.GalleryCarousel .swiper .navigation .actions .swiper-btn-prev.swiper-button-disabled svg path,
.GalleryCarousel .swiper .navigation .actions .swiper-btn-next.swiper-button-disabled svg path {
  fill: #BDBDBD;
}
.GalleryCarousel .swiper .navigation .actions .swiper-btn-prev.hidden,
.GalleryCarousel .swiper .navigation .actions .swiper-btn-next.hidden {
  display: none;
}

.TimelineCarousel {
  width: 100%;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
}
.TimelineCarousel > .cell {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .TimelineCarousel > .cell {
    padding-top: 72px;
  }
}
.TimelineCarousel > .cell .title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .TimelineCarousel > .cell .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.TimelineCarousel > .cell .text {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .TimelineCarousel > .cell .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .TimelineCarousel > .cell .text {
    margin-top: 0;
  }
}
.TimelineCarousel > .cell .more {
  margin-top: 16px;
}
.TimelineCarousel .swiper {
  width: 100%;
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper {
    padding-bottom: 72px;
  }
}
.TimelineCarousel .swiper .swiper-wrapper {
  cursor: move;
}
.TimelineCarousel .swiper .swiper-slide {
  position: relative;
  width: 90%;
}
@media (min-width: 768px) {
  .TimelineCarousel .swiper .swiper-slide {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .TimelineCarousel .swiper .swiper-slide {
    width: 31%;
  }
}
@media (min-width: 1920px) {
  .TimelineCarousel .swiper .swiper-slide {
    width: 30%;
  }
}
@media (min-width: 2056px) {
  .TimelineCarousel .swiper .swiper-slide {
    width: 24%;
  }
}
.TimelineCarousel .swiper .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background-color: #004884;
  right: -16px;
}
@media (min-width: 992px) {
  .TimelineCarousel .swiper .swiper-slide:before {
    right: -32px;
  }
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper .swiper-slide:before {
    right: -48px;
  }
}
.TimelineCarousel .swiper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 1px;
  background-color: #004884;
}
.TimelineCarousel .swiper .swiper-slide:last-child:before {
  content: none;
}
.TimelineCarousel .swiper .swiper-slide .year {
  margin-top: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 8px;
  color: #004884;
  border: 1px solid #004884;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper .swiper-slide .year {
    font-size: 14px;
    line-height: 20px;
  }
}
.TimelineCarousel .swiper .swiper-slide .image {
  margin-top: 16px;
  width: 128px;
  position: relative;
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper .swiper-slide .image {
    width: 200px;
  }
}
.TimelineCarousel .swiper .swiper-slide .image:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.TimelineCarousel .swiper .swiper-slide .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.TimelineCarousel .swiper .swiper-slide .title {
  margin-top: 12px;
  width: 100%;
  color: #000000;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper .swiper-slide .title {
    font-size: 32px;
    line-height: 40px;
  }
}
.TimelineCarousel .swiper .navigation .actions {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 1;
  pointer-events: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 32px;
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper .navigation .actions {
    padding-top: 48px;
  }
}
.TimelineCarousel .swiper .navigation .actions .swipper-buttons {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.TimelineCarousel .swiper .navigation .actions .swiper-btn-prev,
.TimelineCarousel .swiper .navigation .actions .swiper-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper .navigation .actions .swiper-btn-prev,
  .TimelineCarousel .swiper .navigation .actions .swiper-btn-next {
    height: 28px;
    width: 28px;
  }
}
.TimelineCarousel .swiper .navigation .actions .swiper-btn-prev span,
.TimelineCarousel .swiper .navigation .actions .swiper-btn-next span {
  display: none;
}
.TimelineCarousel .swiper .navigation .actions .swiper-btn-prev svg,
.TimelineCarousel .swiper .navigation .actions .swiper-btn-next svg {
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .TimelineCarousel .swiper .navigation .actions .swiper-btn-prev svg,
  .TimelineCarousel .swiper .navigation .actions .swiper-btn-next svg {
    height: 28px;
    width: 28px;
  }
}
.TimelineCarousel .swiper .navigation .actions .swiper-btn-prev.swiper-button-disabled,
.TimelineCarousel .swiper .navigation .actions .swiper-btn-next.swiper-button-disabled {
  pointer-events: none;
  cursor: text;
}
.TimelineCarousel .swiper .navigation .actions .swiper-btn-prev.swiper-button-disabled svg path,
.TimelineCarousel .swiper .navigation .actions .swiper-btn-next.swiper-button-disabled svg path {
  fill: #BDBDBD;
}
.TimelineCarousel .swiper .navigation .actions .swiper-btn-prev.hidden,
.TimelineCarousel .swiper .navigation .actions .swiper-btn-next.hidden {
  display: none;
}

.MediaCoverageCarousel {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #004884;
}
.MediaCoverageCarousel > .cell {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .MediaCoverageCarousel > .cell {
    padding-top: 72px;
  }
}
.MediaCoverageCarousel > .cell .title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 1680px) {
  .MediaCoverageCarousel > .cell .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.MediaCoverageCarousel > .cell .text {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .MediaCoverageCarousel > .cell .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .MediaCoverageCarousel > .cell .text {
    margin-top: 0;
  }
}
.MediaCoverageCarousel > .cell .more {
  margin-top: 16px;
}
.MediaCoverageCarousel .swiper {
  width: calc(100% + 150px + 150px);
  margin-left: -150px;
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 992px) {
  .MediaCoverageCarousel .swiper {
    width: calc(100% + 200px + 200px);
    margin-left: -200px;
  }
}
@media (min-width: 1680px) {
  .MediaCoverageCarousel .swiper {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .MediaCoverageCarousel .swiper {
    padding-bottom: 72px;
  }
}
.MediaCoverageCarousel .swiper .link {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: initial;
  z-index: 2;
  top: 64px;
  bottom: 64px;
}
@media (min-width: 1680px) {
  .MediaCoverageCarousel .swiper .link {
    top: 72px;
    bottom: 72px;
  }
}
.MediaCoverageCarousel .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.MediaCoverageCarousel .swiper .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 125%;
}
.MediaCoverageCarousel .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.ParallaxVerticalCarousel {
  background-color: #ffffff;
  position: relative;
  border-top: 1px solid #ffffff;
  margin-top: -1px;
}
.ParallaxVerticalCarousel .BackgroundsCell {
  position: sticky;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 72px;
  height: calc(100vh - 72px);
  max-width: calc(100% - 16px - 16px);
}
@media (min-width: 768px) {
  .ParallaxVerticalCarousel .BackgroundsCell {
    top: 80px;
    height: calc(100vh - 80px);
  }
}
@media (min-width: 992px) {
  .ParallaxVerticalCarousel .BackgroundsCell {
    max-width: calc(100% - 64px - 64px);
  }
}
@media (min-width: 1680px) {
  .ParallaxVerticalCarousel .BackgroundsCell {
    top: 108px;
    height: calc(100vh - 108px);
    max-width: calc(100% - 72px - 72px);
  }
}
@media (min-width: 1921px) {
  .ParallaxVerticalCarousel .BackgroundsCell {
    max-width: calc(100% - 72px - 72px - 24px - 24px);
  }
}
@media (min-width: 2056px) {
  .ParallaxVerticalCarousel .BackgroundsCell {
    max-width: calc(100% - 72px - 72px - 24px - 24px);
  }
}
@media (min-width: 2200px) {
  .ParallaxVerticalCarousel .BackgroundsCell {
    max-width: 2008px;
  }
}
.ParallaxVerticalCarousel .BackgroundsCell:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, right top, left top, color-stop(22.66%, rgba(0, 136, 198, 0)), color-stop(77.27%, rgba(0, 116, 168, 0.8)), to(#004884));
  background: linear-gradient(270deg, rgba(0, 136, 198, 0) 22.66%, rgba(0, 116, 168, 0.8) 77.27%, #004884 100%);
}
.ParallaxVerticalCarousel .BackgroundsCell .BgdCell {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.ParallaxVerticalCarousel .BackgroundsCell .BgdCell img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.ParallaxVerticalCarousel .BackgroundsCell .BgdCell.show {
  opacity: 1;
}
.ParallaxVerticalCarousel .BackgroundsCell .BgdCell:first-child {
  opacity: 1 !important;
}
.ParallaxVerticalCarousel.visible .BackgroundsCell.FullWidth {
  max-width: 100%;
}
.ParallaxVerticalCarousel .SectionsTexts {
  position: relative;
  margin-top: calc(-100vh + 72px);
}
@media (min-width: 768px) {
  .ParallaxVerticalCarousel .SectionsTexts {
    margin-top: calc(-100vh + 80px);
  }
}
@media (min-width: 1680px) {
  .ParallaxVerticalCarousel .SectionsTexts {
    margin-top: calc(-100vh + 108px);
  }
}
.ParallaxVerticalCarousel .SectionsTexts .TextCell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  width: 100%;
  height: calc(100vh - 72px);
}
@media (min-width: 768px) {
  .ParallaxVerticalCarousel .SectionsTexts .TextCell {
    height: calc(100vh - 80px);
  }
}
@media (min-width: 992px) {
  .ParallaxVerticalCarousel .SectionsTexts .TextCell {
    padding: 64px;
  }
}
@media (min-width: 1280px) {
  .ParallaxVerticalCarousel .SectionsTexts .TextCell {
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .ParallaxVerticalCarousel .SectionsTexts .TextCell {
    height: calc(100vh - 108px);
    padding: 72px;
  }
}
.ParallaxVerticalCarousel .SectionsTexts .TextCell .text {
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .ParallaxVerticalCarousel .SectionsTexts .TextCell .text {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .ParallaxVerticalCarousel .SectionsTexts .TextCell .text {
    font-size: 40px;
    line-height: 48px;
  }
}

.filters {
  background-color: #ffffff;
  overflow: hidden;
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .filters {
    padding-top: 72px;
  }
}
@media (min-width: 992px) {
  .filters .col .swiper .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
}
.filters .col .swiper .swiper-slide {
  width: auto !important;
}
.filters .col .swiper .swiper-slide:first-child {
  margin-left: -6px;
}
@media (min-width: 992px) {
  .filters .col .swiper .swiper-slide {
    margin-bottom: 6px;
  }
}
.filters .button {
  position: relative;
  margin: 0 6px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #004884;
  border: 1px solid transparent;
  border-radius: 32px;
  background-color: transparent;
  padding: 12px 16px;
}
@media (min-width: 1680px) {
  .filters .button {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .filters .button {
    padding: 16px 24px;
  }
}
.filters .button span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.filters .button:hover, .filters .button:focus {
  border-color: #004884;
}
.filters .button.selected {
  /*font-weight:700;*/
  color: #ffffff;
  background-color: #004884;
  /*&:before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: -14px;
      right: -14px;
      background-color: $AccentPrimary500;
      border-radius: 32px;
      z-index: 0;

      @include media-breakpoint-up(xl) {
          left: -18px;
          right: -18px;
      }
  }*/
}
.pagination {
  font-weight: 700;
  text-align: center;
  color: #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 32px;
  margin-bottom: 32px;
  /*span {
      font-weight:700;border-radius:32px;border:1px solid $AccentPrimary500;margin:0 6px;color:$White;background-color:$AccentPrimary500;
      display:flex;justify-content:center;align-items:center;
      width:48px;padding:12px 0;
      @include media-breakpoint-up(xl) {
          width:60px;padding:16px 0;
      }
  }*/
}
@media (min-width: 1680px) {
  .pagination {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .pagination {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}
.pagination a {
  font-weight: 700;
  border-radius: 32px;
  border: 1px solid transparent;
  color: #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 42px;
  padding: 8px 0;
  margin: 0 1px;
  display: none;
  /*&.disabled {
      color:$Neutral400;pointer-events:none;
      display:none;
      svg {
          path {
              fill:$Neutral400;
          }
      }
  }*/
}
@media (min-width: 768px) {
  .pagination a {
    width: 48px;
    padding: 12px 0;
    margin: 0 6px;
  }
}
@media (min-width: 1680px) {
  .pagination a {
    width: 60px;
    padding: 16px 0;
  }
}
.pagination a svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .pagination a svg {
    width: 28px;
    height: 28px;
  }
}
.pagination a svg path {
  fill: #004884;
}
.pagination a:hover {
  color: #004884;
  border: 1px solid #004884;
}
.pagination a.selected {
  border: 1px solid #004884;
  color: #ffffff;
  background-color: #004884;
}
.pagination a.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination a.dots-after {
  position: relative;
  margin-right: 18px;
}
@media (min-width: 768px) {
  .pagination a.dots-after {
    margin-right: 60px;
  }
}
@media (min-width: 1680px) {
  .pagination a.dots-after {
    margin-right: 72px;
  }
}
.pagination a.dots-after:after {
  content: "...";
  pointer-events: none;
  position: absolute;
  width: 14px;
  padding: 12px 0;
  left: 44px;
}
@media (min-width: 768px) {
  .pagination a.dots-after:after {
    width: 48px;
    padding: 12px 0;
    left: 56px;
  }
}
@media (min-width: 1680px) {
  .pagination a.dots-after:after {
    width: 60px;
    padding: 16px 0;
    left: 68px;
  }
}
.pagination a.dots-before {
  position: relative;
  margin-left: 18px;
}
@media (min-width: 768px) {
  .pagination a.dots-before {
    margin-left: 60px;
  }
}
@media (min-width: 1680px) {
  .pagination a.dots-before {
    margin-left: 72px;
  }
}
.pagination a.dots-before:before {
  content: "...";
  pointer-events: none;
  position: absolute;
  width: 14px;
  padding: 12px 0;
  right: 44px;
}
@media (min-width: 768px) {
  .pagination a.dots-before:before {
    width: 48px;
    padding: 12px 0;
    right: 56px;
  }
}
@media (min-width: 1680px) {
  .pagination a.dots-before:before {
    width: 60px;
    padding: 16px 0;
    right: 68px;
  }
}

.CardsListBlock {
  padding-top: 64px;
  padding-bottom: 32px;
}
@media (min-width: 1680px) {
  .CardsListBlock {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock {
    padding-bottom: 24px;
  }
}
.CardsListBlock.SimpleContent > .cell {
  padding-top: 0;
}
.CardsListBlock .list {
  position: relative;
  z-index: 3;
}
@media (min-width: 992px) {
  .CardsListBlock .list > .row > .col-md-6:nth-child(odd) {
    padding-right: 32px;
  }
  .CardsListBlock .list > .row > .col-md-6:nth-child(even) {
    padding-left: 32px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock .list > .row > .col-md-6:nth-child(odd) {
    padding-right: 36px;
  }
  .CardsListBlock .list > .row > .col-md-6:nth-child(even) {
    padding-left: 36px;
  }
}
.CardsListBlock .list .card {
  width: 100%;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .CardsListBlock .list .card {
    padding-bottom: 24px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock .list .card {
    padding-bottom: 32px;
    margin-bottom: 48px;
  }
}
.CardsListBlock .list .card.noimg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #004884;
  top: -16px;
}
@media (min-width: 768px) {
  .CardsListBlock .list .card.noimg:before {
    top: -24px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock .list .card.noimg:before {
    top: -32px;
  }
}
.CardsListBlock .list .card .image {
  position: relative;
}
.CardsListBlock .list .card .image:before {
  content: "";
  padding-top: 56.25%;
  display: block;
}
.CardsListBlock .list .card .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.CardsListBlock .list .card .image a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.CardsListBlock .list .card .logo,
.CardsListBlock .list .card .suptitle,
.CardsListBlock .list .card .title,
.CardsListBlock .list .card .text,
.CardsListBlock .list .card .more {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .CardsListBlock .list .card .logo,
  .CardsListBlock .list .card .suptitle,
  .CardsListBlock .list .card .title,
  .CardsListBlock .list .card .text,
  .CardsListBlock .list .card .more {
    margin-top: 24px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock .list .card .logo,
  .CardsListBlock .list .card .suptitle,
  .CardsListBlock .list .card .title,
  .CardsListBlock .list .card .text,
  .CardsListBlock .list .card .more {
    margin-top: 32px;
  }
}
.CardsListBlock .list .card .logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.CardsListBlock .list .card .logo img {
  height: 64px;
  display: block;
}
.CardsListBlock .list .card .suptitle {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
}
@media (min-width: 1680px) {
  .CardsListBlock .list .card .suptitle {
    font-size: 20px;
    line-height: 28px;
  }
}
.CardsListBlock .list .card .title {
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}
@media (min-width: 1680px) {
  .CardsListBlock .list .card .title {
    font-size: 32px;
    line-height: 40px;
  }
}
.CardsListBlock .list .card .title a {
  color: #000000;
  display: block;
}
.CardsListBlock .list .card .title a:hover {
  text-decoration: underline;
}
.CardsListBlock .list .card .text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #000000;
}
@media (min-width: 1680px) {
  .CardsListBlock .list .card .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .CardsListBlock.NewsListHome .list > .row > .col-md-6:nth-child(odd), .CardsListBlock.NewsList .list > .row > .col-md-6:nth-child(odd) {
    padding-right: 16px;
  }
  .CardsListBlock.NewsListHome .list > .row > .col-md-6:nth-child(even), .CardsListBlock.NewsList .list > .row > .col-md-6:nth-child(even) {
    padding-left: 16px;
  }
}
@media (min-width: 992px) {
  .CardsListBlock.NewsListHome .list > .row > .col-md-6:nth-child(odd), .CardsListBlock.NewsList .list > .row > .col-md-6:nth-child(odd) {
    padding-right: 32px;
  }
  .CardsListBlock.NewsListHome .list > .row > .col-md-6:nth-child(even), .CardsListBlock.NewsList .list > .row > .col-md-6:nth-child(even) {
    padding-left: 32px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock.NewsListHome .list > .row > .col-md-6:nth-child(odd), .CardsListBlock.NewsList .list > .row > .col-md-6:nth-child(odd) {
    padding-right: 36px;
  }
  .CardsListBlock.NewsListHome .list > .row > .col-md-6:nth-child(even), .CardsListBlock.NewsList .list > .row > .col-md-6:nth-child(even) {
    padding-left: 36px;
  }
}
.CardsListBlock.StoriesList {
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  .CardsListBlock.StoriesList {
    padding-bottom: 32px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock.StoriesList {
    padding-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .CardsListBlock.StoriesList .list > .row > .col-md-6:nth-child(odd) {
    padding-right: 8px;
  }
  .CardsListBlock.StoriesList .list > .row > .col-md-6:nth-child(even) {
    padding-left: 8px;
  }
}
@media (min-width: 992px) {
  .CardsListBlock.StoriesList .list > .row > .col-md-6:nth-child(odd) {
    padding-right: 16px;
  }
  .CardsListBlock.StoriesList .list > .row > .col-md-6:nth-child(even) {
    padding-left: 16px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock.StoriesList .list > .row > .col-md-6:nth-child(odd) {
    padding-right: 24px;
  }
  .CardsListBlock.StoriesList .list > .row > .col-md-6:nth-child(even) {
    padding-left: 24px;
  }
}
.CardsListBlock.StoriesList .list > .row .card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .CardsListBlock.StoriesList .list > .row .card {
    margin-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .CardsListBlock.StoriesList .list > .row .card {
    margin-bottom: 32px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock.StoriesList .list > .row .card {
    margin-bottom: 48px;
  }
}
.CardsListBlock.StoriesList .list > .row .card:before {
  content: "";
  display: block;
  padding-top: 112.849%;
}
@media (min-width: 768px) {
  .CardsListBlock.StoriesList .list > .row .card:before {
    padding-top: 150%;
  }
}
@media (min-width: 992px) {
  .CardsListBlock.StoriesList .list > .row .card:before {
    padding-top: 177.777%;
  }
}
.CardsListBlock.StoriesList .list > .row .card:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.72)), color-stop(83.59%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 83.59%);
  z-index: 2;
}
.CardsListBlock.StoriesList .list > .row .card.noimg:before {
  position: relative;
  top: 0;
}
.CardsListBlock.StoriesList .list > .row .card img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.CardsListBlock.StoriesList .list > .row .card .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.CardsListBlock.StoriesList .list > .row .card .info a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 16px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .CardsListBlock.StoriesList .list > .row .card .info a {
    padding: 24px;
  }
}
.CardsListBlock.StoriesList .list > .row .card .info a:focus .title {
  text-decoration: underline;
}
.CardsListBlock.StoriesList .list > .row .card .info .title {
  width: 100%;
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1680px) {
  .CardsListBlock.StoriesList .list > .row .card .info .title {
    font-size: 32px;
    line-height: 40px;
  }
}
.CardsListBlock.StoriesList .list > .row .card .info .title:hover {
  text-decoration: underline;
}
.CardsListBlock.StoriesList .pagination {
  margin-top: 48px;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .CardsListBlock.StoriesList .pagination {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock.StoriesList .pagination {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}
.CardsListBlock .button {
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (min-width: 1680px) {
  .CardsListBlock .button {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}
.CardsListBlock .button .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.CardsListBlock .button .more a {
  width: 100%;
  text-align: center;
}
.CardsListBlock.Horizontal {
  padding-top: 0;
  padding-bottom: 0;
}
.CardsListBlock.Horizontal > .cell {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .CardsListBlock.Horizontal > .cell {
    padding-top: 72px;
  }
}
.CardsListBlock.Horizontal .list .card {
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 0;
  border-bottom: 1px solid #004884;
}
@media (min-width: 1680px) {
  .CardsListBlock.Horizontal .list .card {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock.Horizontal .list .card {
    padding-bottom: 72px;
  }
}
.CardsListBlock.Horizontal .list .card.GradientPrimaryAccentDark {
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
  background-color: #FFFFFF;
}
.CardsListBlock.Horizontal .list .card.GradientPrimaryAccentDark .text {
  color: #ffffff;
}
.CardsListBlock.Horizontal .list .card.GradientPrimaryAccentDark .more a {
  color: #ffffff;
}
.CardsListBlock.Horizontal .list .card.GradientPrimaryAccentDark .more a svg path {
  fill: #ffffff;
}
.CardsListBlock.Horizontal .list .card.GradientPrimaryAccentDark .more a:hover {
  -webkit-box-shadow: 4px 4px 0px #0088C6, -4px -4px 0px #0088C6, -4px 4px 0px #0088C6, 4px -4px 0px #0088C6;
          box-shadow: 4px 4px 0px #0088C6, -4px -4px 0px #0088C6, -4px 4px 0px #0088C6, 4px -4px 0px #0088C6;
  background-color: #0088C6;
}
@media (min-width: 768px) {
  .CardsListBlock.Horizontal .list .card > .row > .left {
    padding-right: 16px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock.Horizontal .list .card > .row > .left {
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .CardsListBlock.Horizontal .list .card > .row > .right {
    padding-left: 16px;
  }
}
@media (min-width: 1680px) {
  .CardsListBlock.Horizontal .list .card > .row > .right {
    padding-left: 24px;
  }
}
@media (max-width: 767px) {
  .CardsListBlock.Horizontal .list .card > .row > .right {
    margin-top: 32px;
  }
}
.CardsListBlock.Horizontal .list .card:last-child {
  border-bottom: 0;
}
.CardsListBlock.Horizontal .button {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .CardsListBlock.Horizontal .button {
    padding-bottom: 72px;
  }
}
.CardsListBlock.Horizontal .pagination {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .CardsListBlock.Horizontal .pagination {
    padding-bottom: 72px;
  }
}

.GrantsBgd .main-wrapper:before {
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
}
.GrantsBgd .HeaderBlock {
  border-bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
}
.GrantsBgd .SearchGrants {
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
}
.GrantsBgd .NoResults {
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
}
.GrantsBgd .TableGrants {
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
}
.GrantsBgd .main-footer {
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#EDF4FA));
  background: linear-gradient(90deg, #FFFFFF 0%, #EDF4FA 100%);
}

.SearchGrants .SearchFilters {
  padding: 32px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters {
    padding: 48px;
  }
}
.SearchGrants .SearchFilters .searchfield {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchfield {
    margin-bottom: 48px;
  }
}
.SearchGrants .SearchFilters .searchfield label {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  display: none;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchfield label {
    font-size: 20px;
    line-height: 28px;
  }
}
.SearchGrants .SearchFilters .searchfield .icon {
  width: 32px;
  height: 32px;
  margin-right: 16px;
  pointer-events: none;
}
.SearchGrants .SearchFilters .searchfield .icon svg {
  width: 32px;
  height: 32px;
}
.SearchGrants .SearchFilters .searchfield .icon svg path {
  fill: #BDBDBD;
}
@media (min-width: 768px) {
  .SearchGrants .SearchFilters .searchfield .icon {
    width: 48px;
    height: 48px;
  }
  .SearchGrants .SearchFilters .searchfield .icon svg {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchfield .icon {
    margin-right: 24px;
  }
}
.SearchGrants .SearchFilters .searchfield .field {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  text-align: left;
  color: #004884;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: transparent;
  border: 0;
  width: 100%;
  padding: 4px;
}
@media (min-width: 768px) {
  .SearchGrants .SearchFilters .searchfield .field {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchfield .field {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchfield .field {
    padding: 8px;
  }
}
.SearchGrants .SearchFilters .searchfield .field::-webkit-input-placeholder {
  color: #9E9E9E;
}
.SearchGrants .SearchFilters .searchfield .field:-ms-input-placeholder {
  color: #9E9E9E;
}
.SearchGrants .SearchFilters .searchfield .field::-moz-placeholder {
  color: #9E9E9E;
}
.SearchGrants .SearchFilters .searchfield .field::-ms-input-placeholder {
  color: #9E9E9E;
}
.SearchGrants .SearchFilters .searchfield .field::placeholder {
  color: #9E9E9E;
}
.SearchGrants .SearchFilters .searchfield .button {
  border: 1px solid #004884;
  border-radius: 0;
  background-color: transparent;
  color: #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchfield .button {
    padding: 16px 32px;
  }
}
.SearchGrants .SearchFilters .searchfield .button svg {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchfield .button svg {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.SearchGrants .SearchFilters .searchfield .button svg path {
  fill: #004884;
}
.SearchGrants .SearchFilters .searchfield .button:hover {
  color: #ffffff;
  background-color: #002E53;
  border-color: #002E53;
}
.SearchGrants .SearchFilters .searchfield .button:hover svg path {
  fill: #ffffff;
}
@media (max-width: 767px) {
  .SearchGrants .SearchFilters .searchfield .button {
    display: none;
  }
}
.SearchGrants .SearchFilters .separator {
  color: #BDBDBD;
  min-height: 1px;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .separator {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .separator {
    margin-bottom: 48px;
  }
}
.SearchGrants .SearchFilters .separator:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #E0E0E0;
  z-index: 1;
}
.SearchGrants .SearchFilters .separator span {
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  padding-right: 16px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .separator span {
    margin-bottom: 48px;
    padding-right: 32px;
  }
}
.SearchGrants .SearchFilters .searchoptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.SearchGrants .SearchFilters .searchoptions .multiselect {
  width: 50%;
}
@media (min-width: 768px) {
  .SearchGrants .SearchFilters .searchoptions .multiselect {
    width: 25%;
  }
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox {
  position: relative;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #9E9E9E;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label svg {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label svg {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label svg path {
  fill: #9E9E9E;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label:hover {
  color: #004884;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label:hover svg path {
  fill: #004884;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label.opened {
  color: #004884;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label.opened svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .label.opened svg path {
  fill: #004884;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #004884;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
  padding: 12px 16px;
  left: -16px;
  width: 200px;
  max-height: 400px;
  overflow-y: auto;
  top: 48px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes {
    padding: 16px 24px;
    left: -24px;
    width: 260px;
    top: 64px;
  }
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label {
  color: #004884;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  padding: 8px 0px 8px 0px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label {
    padding: 12px 0px 12px 0px;
  }
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label .checkmark {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #004884;
  top: 8px;
  left: 0;
  height: 24px;
  width: 24px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label .checkmark {
    top: 12px;
    left: 0;
    height: 28px;
    width: 28px;
  }
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label:hover input ~ .checkmark {
  border: 2px solid #004884;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label input:checked ~ .checkmark {
  background-color: #004884;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label input:checked ~ .checkmark:after {
  display: block;
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes {
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #004884 #ffffff; /* scroll thumb and track */
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes::-webkit-scrollbar {
  width: 8px; /* width of the entire scrollbar */
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes::-webkit-scrollbar-track {
  background: #ffffff; /* color of the tracking area */
}
.SearchGrants .SearchFilters .searchoptions .multiselect .selectBox .checkboxes::-webkit-scrollbar-thumb {
  background-color: #004884; /* color of the scroll thumb */
}
.SearchGrants .SearchFilters .searchoptions .featured {
  width: 50%;
}
@media (min-width: 768px) {
  .SearchGrants .SearchFilters .searchoptions .featured {
    width: 25%;
  }
}
.SearchGrants .SearchFilters .searchoptions .featured .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #9E9E9E;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .featured .button {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .featured .button {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.SearchGrants .SearchFilters .searchoptions .featured .button svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
@media (min-width: 1680px) {
  .SearchGrants .SearchFilters .searchoptions .featured .button svg {
    margin-right: 12px;
  }
}
.SearchGrants .SearchFilters .searchoptions .featured .button svg path {
  fill: #9E9E9E;
}
.SearchGrants .SearchFilters .searchoptions .featured .button:hover {
  color: #004884;
}
.SearchGrants .SearchFilters .searchoptions .featured .button:hover svg path {
  fill: #004884;
}
.SearchGrants .SearchFilters .searchoptions .featured .button.opened {
  color: #004884;
  font-weight: 700;
}
.SearchGrants .SearchFilters .searchoptions .featured .button.opened svg path {
  fill: #004884;
}
.SearchGrants .FiltersSelected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #004884;
  position: relative;
  padding: 16px 32px;
  min-height: 56px;
}
@media (min-width: 1680px) {
  .SearchGrants .FiltersSelected {
    min-height: 76px;
    padding: 24px 48px;
  }
}
.SearchGrants .FiltersSelected .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: 0;
  padding: 0;
  color: #ffffff;
  font-weight: 700;
  background-color: #004884;
  font-size: 16px;
  line-height: 24px;
  margin-right: 16px;
}
@media (min-width: 1680px) {
  .SearchGrants .FiltersSelected .button {
    font-size: 20px;
    line-height: 28px;
    margin-right: 32px;
  }
}
.SearchGrants .FiltersSelected .button svg {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .SearchGrants .FiltersSelected .button svg {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.SearchGrants .FiltersSelected .button svg path {
  fill: #ffffff;
}
.SearchGrants .FiltersSelected .button:hover {
  -webkit-box-shadow: 4px 4px 0px #0088C6, -4px -4px 0px #0088C6, -4px 4px 0px #0088C6, 4px -4px 0px #0088C6;
          box-shadow: 4px 4px 0px #0088C6, -4px -4px 0px #0088C6, -4px 4px 0px #0088C6, 4px -4px 0px #0088C6;
  background-color: #0088C6;
}
.SearchGrants .FiltersSelected .button.clear {
  margin-right: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 32px;
}
@media (min-width: 1680px) {
  .SearchGrants .FiltersSelected .button.clear {
    right: 48px;
  }
}

.TableGrants {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
}
@media (min-width: 1680px) {
  .TableGrants {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .TableGrants {
    padding-bottom: 72px;
  }
}
.TableGrants.SimpleContent > .cell {
  padding-top: 0;
}
.TableGrants .col-1 {
  width: 100%;
}
@media (min-width: 1280px) {
  .TableGrants .col-1 {
    padding-right: 16px;
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .TableGrants .col-1 {
    padding-right: 32px;
  }
}
.TableGrants .col-2 {
  padding-right: 16px;
  width: calc((100% - 60px - 16px) / 2);
}
@media (min-width: 768px) {
  .TableGrants .col-2 {
    width: calc((100% - 90px - 16px) / 2);
  }
}
@media (min-width: 1280px) {
  .TableGrants .col-2 {
    width: calc((50% - 90px - 16px) / 2);
  }
}
@media (min-width: 1680px) {
  .TableGrants .col-2 {
    padding-right: 32px;
    width: calc((50% - 120px - 32px) / 2);
  }
}
.TableGrants .col-3 {
  padding-right: 16px;
  width: 76px;
}
@media (min-width: 768px) {
  .TableGrants .col-3 {
    width: 106px;
  }
}
@media (min-width: 1680px) {
  .TableGrants .col-3 {
    padding-right: 32px;
    width: 152px;
  }
}
.TableGrants .col-4 {
  width: calc((100% - 60px - 16px) / 2);
}
@media (min-width: 768px) {
  .TableGrants .col-4 {
    width: calc((100% - 90px - 16px) / 2);
  }
}
@media (min-width: 1280px) {
  .TableGrants .col-4 {
    width: calc((50% - 90px - 16px) / 2);
  }
}
@media (min-width: 1680px) {
  .TableGrants .col-4 {
    width: calc((50% - 120px - 32px) / 2);
  }
}
.TableGrants .TableHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #757575;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 1680px) {
  .TableGrants .TableHead {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1680px) {
  .TableGrants .TableHead {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.TableGrants .TableHead .col-1 {
  display: none;
}
@media (min-width: 1280px) {
  .TableGrants .TableHead .col-1 {
    display: block;
  }
}
.TableGrants .TableHead .col-1:hover span,
.TableGrants .TableHead .col-2:hover span,
.TableGrants .TableHead .col-3:hover span,
.TableGrants .TableHead .col-4:hover span {
  color: #004884;
}
.TableGrants .TableHead .col-1:hover span svg path,
.TableGrants .TableHead .col-2:hover span svg path,
.TableGrants .TableHead .col-3:hover span svg path,
.TableGrants .TableHead .col-4:hover span svg path {
  fill: #004884;
}
.TableGrants .TableHead .desc,
.TableGrants .TableHead .asc {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.TableGrants .TableHead .desc svg path,
.TableGrants .TableHead .asc svg path {
  fill: #757575;
}
.TableGrants .TableHead .asc svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.TableGrants .TableRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #004884;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .TableGrants .TableRow {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 1680px) {
  .TableGrants .TableRow {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.TableGrants .TableRow:last-child {
  border-bottom: 0;
}
.TableGrants .TableRow .col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 28px;
  color: #001B32;
}
@media (min-width: 1680px) {
  .TableGrants .TableRow .col-1 {
    font-size: 24px;
    line-height: 32px;
  }
}
.TableGrants .TableRow .col-2,
.TableGrants .TableRow .col-3,
.TableGrants .TableRow .col-4 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
  font-weight: 700;
  padding-top: 8px;
}
@media (min-width: 1680px) {
  .TableGrants .TableRow .col-2,
  .TableGrants .TableRow .col-3,
  .TableGrants .TableRow .col-4 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .TableGrants .TableRow .col-2,
  .TableGrants .TableRow .col-3,
  .TableGrants .TableRow .col-4 {
    padding-top: 16px;
  }
}
@media (min-width: 1280px) {
  .TableGrants .TableRow .col-2,
  .TableGrants .TableRow .col-3,
  .TableGrants .TableRow .col-4 {
    padding-top: 0;
  }
}
.TableGrants .TableRow .col-1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  color: #001B32;
}
.TableGrants .TableRow .col-1 a:hover {
  text-decoration: underline;
}
.TableGrants .TableRow .featured {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-image: url("../images/star-fill-icon.svg");
  background-position: left top;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  background-size: 28px 28px;
}
@media (min-width: 1680px) {
  .TableGrants .TableRow .featured {
    width: 32px;
    height: 32px;
    margin-right: 16px;
    background-size: 32px 32px;
  }
}
.TableGrants .pagination {
  padding-top: 64px;
  margin: 0;
}
@media (min-width: 1680px) {
  .TableGrants .pagination {
    padding-top: 72px;
  }
}
.TableGrants .button {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .TableGrants .button {
    padding-top: 72px;
  }
}
.TableGrants .button .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.TableGrants .button .more a {
  width: 100%;
  text-align: center;
}

.NoResults {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
}
@media (min-width: 1680px) {
  .NoResults {
    padding-top: 72px;
  }
}
@media (min-width: 1680px) {
  .NoResults {
    padding-bottom: 72px;
  }
}
.NoResults .icon {
  background-image: url("../images/no-results-icon.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 64px;
  height: 64px;
  background-size: 64px 64px;
}
@media (min-width: 1680px) {
  .NoResults .icon {
    width: 72px;
    height: 72px;
    background-size: 72px 72px;
  }
}
.NoResults .message {
  font-size: 20px;
  line-height: 28px;
  color: #001B32;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 32px;
}
@media (min-width: 1680px) {
  .NoResults .message {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 1680px) {
  .NoResults .message {
    margin-top: 48px;
  }
}

.SearchBlock {
  background-color: #ffffff;
  padding-bottom: 64px;
}
@media (min-width: 1680px) {
  .SearchBlock {
    padding-bottom: 72px;
  }
}
.SearchBlock .row {
  height: 100%;
}
.SearchBlock .row > .col {
  position: relative;
}
.SearchBlock .row > .col form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.16);
  padding: 32px;
  /* clears the 'X' from Internet Explorer */
  /* clears the 'X' from Chrome */
}
@media (min-width: 1680px) {
  .SearchBlock .row > .col form {
    padding: 48px;
  }
}
.SearchBlock .row > .col form label {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  display: none;
}
@media (min-width: 1680px) {
  .SearchBlock .row > .col form label {
    font-size: 20px;
    line-height: 28px;
  }
}
.SearchBlock .row > .col form .icon {
  width: 32px;
  height: 32px;
  margin-right: 16px;
  pointer-events: none;
}
.SearchBlock .row > .col form .icon svg {
  width: 32px;
  height: 32px;
}
.SearchBlock .row > .col form .icon svg path {
  fill: #BDBDBD;
}
@media (min-width: 768px) {
  .SearchBlock .row > .col form .icon {
    width: 48px;
    height: 48px;
  }
  .SearchBlock .row > .col form .icon svg {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1680px) {
  .SearchBlock .row > .col form .icon {
    margin-right: 24px;
  }
}
.SearchBlock .row > .col form .field {
  text-align: left;
  color: #004884;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: transparent;
  border: 0;
  width: 100%;
  font-size: 24px;
  line-height: 32px;
  padding: 4px;
}
@media (min-width: 768px) {
  .SearchBlock .row > .col form .field {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .SearchBlock .row > .col form .field {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1680px) {
  .SearchBlock .row > .col form .field {
    padding: 8px;
  }
}
.SearchBlock .row > .col form .field::-webkit-input-placeholder {
  color: #004884;
  opacity: 1;
}
.SearchBlock .row > .col form .field:-ms-input-placeholder {
  color: #004884;
  opacity: 1;
}
.SearchBlock .row > .col form .field::-moz-placeholder {
  color: #004884;
  opacity: 1;
}
.SearchBlock .row > .col form .field::-ms-input-placeholder {
  color: #004884;
  opacity: 1;
}
.SearchBlock .row > .col form .field::placeholder {
  color: #004884;
  opacity: 1;
}
.SearchBlock .row > .col form input.field::-ms-clear,
.SearchBlock .row > .col form input.field::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.SearchBlock .row > .col form input.field::-webkit-search-decoration,
.SearchBlock .row > .col form input.field::-webkit-search-cancel-button,
.SearchBlock .row > .col form input.field::-webkit-search-results-button,
.SearchBlock .row > .col form input.field::-webkit-search-results-decoration {
  display: none;
}
.SearchBlock .row > .col form .button {
  border: 1px solid #004884;
  border-radius: 0;
  background-color: transparent;
  color: #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
}
@media (min-width: 1680px) {
  .SearchBlock .row > .col form .button {
    padding: 16px 32px;
  }
}
.SearchBlock .row > .col form .button svg {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .SearchBlock .row > .col form .button svg {
    margin-left: 12px;
    width: 28px;
    height: 28px;
  }
}
.SearchBlock .row > .col form .button svg path {
  fill: #004884;
}
.SearchBlock .row > .col form .button:hover, .SearchBlock .row > .col form .button:focus {
  color: #ffffff;
  background-color: #002E53;
  border-color: #002E53;
}
.SearchBlock .row > .col form .button:hover svg path, .SearchBlock .row > .col form .button:focus svg path {
  fill: #ffffff;
}
@media (max-width: 767px) {
  .SearchBlock .row > .col form .button {
    display: none;
  }
}
.SearchBlock .row > .col form input.field:focus + button.button {
  opacity: 1;
}
.SearchBlock + .NoResults {
  padding-top: 0;
}

.SearchResults {
  background-color: #ffffff;
  border-bottom: 1px solid #004884;
  overflow: hidden;
}
.SearchResults .filters {
  overflow: visible;
  padding-top: 0;
}
@media (min-width: 1920px) {
  .SearchResults .filters .col {
    padding: 0;
  }
}
.SearchResults .filters .col .button.external span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.SearchResults .filters .col .button.external span svg {
  margin-right: 5px;
}
.SearchResults .filters .col .button.external span svg path {
  stroke: #004884;
}
.SearchResults .filters .col .button.external.selected span svg path {
  stroke: #ffffff;
}
.SearchResults .filters .col .button.external:focus svg path {
  stroke: #004884;
}
.SearchResults .SearchResultsList {
  padding-top: 64px;
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList {
    padding-top: 72px;
  }
}
.SearchResults .SearchResultsList .item {
  margin: 0 0 32px 0;
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList .item {
    margin: 0 0 48px 0;
  }
}
.SearchResults .SearchResultsList .item .info {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .SearchResults .SearchResultsList .item .info {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList .item .info {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .SearchResults .SearchResultsList .item .info {
    padding-right: 0;
  }
}
.SearchResults .SearchResultsList .item .info .parent {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList .item .info .parent {
    font-size: 20px;
    line-height: 28px;
  }
}
.SearchResults .SearchResultsList .item .info .parent a {
  color: #004884;
}
.SearchResults .SearchResultsList .item .info .parent:hover {
  text-decoration: underline;
}
.SearchResults .SearchResultsList .item .info .parent .parent-simple-title {
  display: inline-block;
}
.SearchResults .SearchResultsList .item .info .parent .parent-simple-title svg {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 2px;
  margin-left: 10px;
}
.SearchResults .SearchResultsList .item .info .parent .parent-simple-title svg path {
  stroke: #004884;
}
.SearchResults .SearchResultsList .item .info .parent .parent-simple-title:hover {
  text-decoration: underline;
}
.SearchResults .SearchResultsList .item .info span.date {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #004884;
  margin-left: 5px;
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList .item .info span.date {
    font-size: 20px;
    line-height: 28px;
  }
}
.SearchResults .SearchResultsList .item .info span.date:before {
  content: "•";
  margin-right: 10px;
}
.SearchResults .SearchResultsList .item .info .title {
  font-size: 24px;
  line-height: 32px;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList .item .info .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 768px) {
  .SearchResults .SearchResultsList .item .info .title {
    margin-top: 24px;
  }
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList .item .info .title {
    margin-top: 32px;
  }
}
.SearchResults .SearchResultsList .item .info .title a {
  color: #000000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.SearchResults .SearchResultsList .item .info .title a:hover {
  text-decoration: underline;
}
.SearchResults .SearchResultsList .item .info p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-top: 16px;
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList .item .info p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .SearchResults .SearchResultsList .item .info p {
    margin-top: 24px;
  }
}
@media (min-width: 1680px) {
  .SearchResults .SearchResultsList .item .info p {
    margin-top: 32px;
  }
}
.SearchResults .SearchResultsList .item .image {
  display: none;
}
@media (min-width: 768px) {
  .SearchResults .SearchResultsList .item .image {
    display: block;
    padding-right: 0;
  }
}
.SearchResults .SearchResultsList .item .image figure {
  position: relative;
}
.SearchResults .SearchResultsList .item .image figure:before {
  content: "";
  padding-top: 66%;
  display: block;
}
.SearchResults .SearchResultsList .item .image figure a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.SearchResults .SearchResultsList .item .image figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.SearchResults .pagination {
  padding-bottom: 64px;
  margin: 32px 0 0 0;
}
@media (min-width: 1680px) {
  .SearchResults .pagination {
    padding-bottom: 72px;
  }
}
@media (min-width: 1680px) {
  .SearchResults .pagination {
    margin: 24px 0 0 0;
  }
}

body {
  font-family: "Aktiv Grotesk";
  letter-spacing: 0.05em;
  min-width: 375px;
  color: #000000;
  background-color: #CCC;
  padding-top: 120px;
}
@media (min-width: 768px) {
  body {
    padding-top: 224px;
  }
}
@media (min-width: 1280px) {
  body {
    padding-top: 144px;
  }
}
@media (min-width: 1680px) {
  body {
    padding-top: 180px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

/*html.lg-on {
    body {
        pointer-events:none;    
    }
    .lg-container {
        .lg-outer {
            pointer-events:initial;
        }
    }
}*/
.skip-to-main-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: #004884;
  color: #ffffff;
  opacity: 0;
}
.skip-to-main-content-link:focus {
  left: 0;
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  left: -1px;
  top: -1px;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.mobileImg {
  display: block;
}
@media (min-width: 768px) {
  .mobileImg {
    display: none;
  }
}

.desktopImg {
  display: none;
}
@media (min-width: 768px) {
  .desktopImg {
    display: block;
  }
}

.main-wrapper {
  position: relative;
}
.main-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background-color: #ffffff;
  height: 120px;
  top: -120px;
}
@media (min-width: 768px) {
  .main-wrapper:before {
    height: 224px;
    top: -224px;
  }
}
@media (min-width: 1280px) {
  .main-wrapper:before {
    height: 144px;
    top: -144px;
  }
}
@media (min-width: 1680px) {
  .main-wrapper:before {
    height: 180px;
    top: -180px;
  }
}

.CFAsty {
  letter-spacing: 0.02em;
}

button, input, textarea {
  font-family: "Aktiv Grotesk";
  outline: none;
  font-size: 100%;
}

a {
  text-decoration: none;
}

.lg-backdrop {
  background: -webkit-gradient(linear, left top, right top, from(#004C84), color-stop(9.81%, #004C84), color-stop(50.62%, #006CA8), color-stop(90%, #0088C6), to(#0088C6));
  background: linear-gradient(90deg, #004C84 0%, #004C84 9.81%, #006CA8 50.62%, #0088C6 90%, #0088C6 100%);
}

.lg-toolbar .lg-icon.lg-close {
  background-image: url("../images/close-delete-icon.svg");
  background-position: center;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  top: 16px;
  right: 16px;
  position: absolute;
}
@media (min-width: 992px) {
  .lg-toolbar .lg-icon.lg-close {
    top: 64px;
    right: 64px;
  }
}
@media (min-width: 1680px) {
  .lg-toolbar .lg-icon.lg-close {
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
    top: 72px;
    right: 72px;
  }
}
.lg-toolbar .lg-icon.lg-close:after {
  content: none;
}
.lg-toolbar .lg-icon.lg-close:hover, .lg-toolbar .lg-icon.lg-close:focus {
  -webkit-box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
          box-shadow: 4px 4px 0px #002E53, -4px -4px 0px #002E53, -4px 4px 0px #002E53, 4px -4px 0px #002E53;
  background-color: #002E53;
}

.lg-prev,
.lg-next {
  border-radius: 50%;
  background-position: center;
  background-color: transparent;
  width: 64px;
  height: 64px;
  padding: 8px;
  background-size: 48px 48px;
  top: 50%;
  margin-top: -32px;
}
@media (min-width: 1680px) {
  .lg-prev,
  .lg-next {
    width: 80px;
    height: 80px;
    padding: 12px;
    background-size: 56px 56px;
    margin-top: -40px;
  }
}
.lg-prev:hover, .lg-prev:focus,
.lg-next:hover,
.lg-next:focus {
  background-color: #002E53;
}

.lg-prev {
  background-image: url("../images/chevron-left-icon.svg");
  left: 16px;
}
@media (min-width: 992px) {
  .lg-prev {
    left: 64px;
  }
}
@media (min-width: 1680px) {
  .lg-prev {
    left: 72px;
  }
}
.lg-prev:after {
  content: none;
}

.lg-next {
  background-image: url("../images/chevron-right-icon.svg");
  right: 16px;
}
@media (min-width: 992px) {
  .lg-next {
    right: 64px;
  }
}
@media (min-width: 1680px) {
  .lg-next {
    right: 72px;
  }
}
.lg-next:before {
  content: none;
}

.HtmlBlock .custom-title {
  margin-bottom: 32px;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-title {
    margin-bottom: 48px;
  }
}
.HtmlBlock .custom-title > .number {
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 768px) {
  .HtmlBlock .custom-title > .number {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-title > .number {
    font-size: 40px;
    line-height: 48px;
  }
}
.HtmlBlock .custom-title > .text {
  display: block;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-top: 4px;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-title > .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-title > .text {
    margin-top: 8px;
  }
}
.HtmlBlock .custom-chart-list {
  padding-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list {
    padding-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .HtmlBlock .custom-chart-list {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.HtmlBlock .custom-chart-list .custom-chart {
  border: 1px solid #004884;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  width: 50%;
  padding: 12px;
}
@media (min-width: 768px) {
  .HtmlBlock .custom-chart-list .custom-chart {
    width: 25%;
  }
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart {
    padding: 16px;
  }
}
.HtmlBlock .custom-chart-list .custom-chart > .circle {
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart > .circle {
    width: 24px;
    height: 24px;
  }
}
.HtmlBlock .custom-chart-list .custom-chart > .title {
  width: 100%;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-top: 4px;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart > .title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart > .title {
    margin-top: 8px;
  }
}
.HtmlBlock .custom-chart-list .custom-chart > .number {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #000000;
  font-weight: 700;
  margin-top: 4px;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart > .number {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart > .number {
    margin-top: 8px;
  }
}
.HtmlBlock .custom-chart-list .custom-chart:nth-child(1) {
  padding-bottom: 86px;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart:nth-child(1) {
    padding-bottom: 140px;
  }
}
.HtmlBlock .custom-chart-list .custom-chart:nth-child(1) .circle {
  background: -webkit-gradient(linear, left top, right top, from(#163142), to(#496476));
  background: linear-gradient(90deg, #163142 0%, #496476 100%);
}
.HtmlBlock .custom-chart-list .custom-chart:nth-child(2) {
  padding-bottom: 66px;
  border-left: 0;
}
@media (min-width: 768px) {
  .HtmlBlock .custom-chart-list .custom-chart:nth-child(2) {
    border-right: 0;
  }
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart:nth-child(2) {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .HtmlBlock .custom-chart-list .custom-chart:nth-child(2) {
    border-bottom: 0;
  }
}
.HtmlBlock .custom-chart-list .custom-chart:nth-child(2) .circle {
  background: -webkit-gradient(linear, left top, right top, from(#546E7D), to(#7A92A1));
  background: linear-gradient(90deg, #546E7D 0%, #7A92A1 100%);
}
.HtmlBlock .custom-chart-list .custom-chart:nth-child(3) {
  padding-bottom: 90px;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart:nth-child(3) {
    padding-bottom: 122px;
  }
}
@media (max-width: 767px) {
  .HtmlBlock .custom-chart-list .custom-chart:nth-child(3) {
    border-top: 0;
  }
}
.HtmlBlock .custom-chart-list .custom-chart:nth-child(3) .circle {
  background: -webkit-gradient(linear, left top, right top, from(#588BAC), to(#6FA4C7));
  background: linear-gradient(90deg, #588BAC 0%, #6FA4C7 100%);
}
.HtmlBlock .custom-chart-list .custom-chart:nth-child(4) {
  border-left: 0;
  padding-bottom: 54px;
}
@media (min-width: 1680px) {
  .HtmlBlock .custom-chart-list .custom-chart:nth-child(4) {
    padding-bottom: 86px;
  }
}
@media (max-width: 767px) {
  .HtmlBlock .custom-chart-list .custom-chart:nth-child(4) {
    margin-top: -22px;
  }
}
.HtmlBlock .custom-chart-list .custom-chart:nth-child(4) .circle {
  background: -webkit-gradient(linear, left top, right top, from(#1F78B4), to(#67B5EA));
  background: linear-gradient(90deg, #1F78B4 0%, #67B5EA 100%);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(255, 255, 255);
  z-index: 9999;
  display: block;
}
#preloader .loader {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -30px 0 0 -30px;
  text-align: center;
}
#preloader .loader .loader-img {
  background: url("/Content/img/loading.GIF");
  width: 60px;
  height: 60px;
  display: block;
}

/* Search Loader*/
.windows8 {
  position: absolute;
  width: 52px;
  height: 52px;
  margin: auto;
}

.windows9 {
  position: relative;
  width: 52px;
  height: 52px;
  margin: auto;
}

.windows8 .wBall, windows9 .wBall {
  position: absolute;
  width: 49px;
  height: 49px;
  opacity: 0;
  transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  animation: orbit 6.96s infinite;
  -o-animation: orbit 6.96s infinite;
  -ms-animation: orbit 6.96s infinite;
  -webkit-animation: orbit 6.96s infinite;
  -moz-animation: orbit 6.96s infinite;
}

.windows8 .wBall .wInnerBall, .windows9 .wBall .wInnerBall {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgb(0, 0, 0);
  left: 0px;
  top: 0px;
  border-radius: 6px;
}

.windows8 #wBall_1, .windows9 #wBall_1 {
  animation-delay: 1.52s;
  -o-animation-delay: 1.52s;
  -ms-animation-delay: 1.52s;
  -webkit-animation-delay: 1.52s;
  -moz-animation-delay: 1.52s;
}

.windows8 #wBall_2, .windows9 #wBall_2 {
  animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
}

.windows8 #wBall_3, .windows9 #wBall_3 {
  animation-delay: 0.61s;
  -o-animation-delay: 0.61s;
  -ms-animation-delay: 0.61s;
  -webkit-animation-delay: 0.61s;
  -moz-animation-delay: 0.61s;
}

.windows8 #wBall_4, .windows9 #wBall_4 {
  animation-delay: 0.91s;
  -o-animation-delay: 0.91s;
  -ms-animation-delay: 0.91s;
  -webkit-animation-delay: 0.91s;
  -moz-animation-delay: 0.91s;
}

.windows8 #wBall_5, .windows9 #wBall_5 {
  animation-delay: 1.22s;
  -o-animation-delay: 1.22s;
  -ms-animation-delay: 1.22s;
  -webkit-animation-delay: 1.22s;
  -moz-animation-delay: 1.22s;
}

@keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    origin: 0%;
  }
  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    origin: 7%;
  }
  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    origin: 30%;
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    origin: 39%;
  }
  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    origin: 70%;
  }
  76% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
  }
}
@-webkit-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
  }
  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 0%;
  }
  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    -webkit-origin: 7%;
  }
  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 30%;
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 39%;
  }
  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 70%;
  }
  76% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }
}
.cookie-table {
  width: 100%;
  margin-bottom: 3rem;
}

.cookie-table td {
  padding: 1rem;
}

.cookie-table th {
  border-bottom: 1px solid #CCCCCC;
  padding: 1rem;
  text-align: left;
}