﻿/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}
/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}
/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}
/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}
/**
 * Reset margins and paddings for all headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  padding: 0;
  margin: 0;
}
ul,
ol {
  padding-left: 1em;
  margin: 0 0 0.5em;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}
/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}
/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * Add the correct display in IE.
 */
main {
  display: block;
}
/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}
/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
  max-width: 100%;
}
/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}
/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}
/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}
/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}
/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}
/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}
/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}
/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
dialog:not([open]) {
  display: none;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}
/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}
/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}
/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 769px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1000px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1250px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before,
.container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 769px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1024px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1280px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
body {
  margin: 0;
  overflow-x: hidden;
}
.layout-full-width {
  margin: 0 16px;
  max-width: 100%;
}
@media all and (min-width: 769px) {
  .layout-full-width {
    margin: 0 auto;
    max-width: 1900px;
  }
}
.bg-blue {
  background: #11256f;
  color: #ffffff;
}
.bg-blue p,
.bg-blue li {
  color: #f0f0f0;
  font-weight: 300;
}
.block-reverse {
  background-color: #000000;
  color: #ffffff;
  padding: 3rem 0;
}
.block-reverse p,
.block-reverse li {
  font-weight: 300;
}
.block-reverse__text {
  width: fit-content;
  margin: 0 auto;
}
.clean-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
h1 {
  font-size: 3.5em;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 22px;
}
h2 {
  font-size: 2em;
}
@media all and (min-width: 769px) {
  h2 {
    font-size: 2.5em;
  }
}
h3 {
  font-size: 1.5em;
  letter-spacing: 0.5px;
  line-height: 24px;
  font-weight: 400;
}
@media all and (min-width: 769px) {
  h3 {
    font-weight: 500;
    letter-spacing: 0;
    line-height: 48px;
    font-size: 2em;
  }
}
h4 {
  letter-spacing: 0.5px;
  font-size: 1.5em;
}
h2,
h3,
h4 {
  font-family: "Oswald", sans-serif;
  margin-bottom: 22px;
  font-weight: 400;
  text-transform: uppercase;
}
@media all and (min-width: 769px) {
  h2,
  h3,
  h4 {
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 32px;
  }
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  text-decoration: none;
}
a {
  color: inherit;
}
p,
li {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.54px;
  line-height: 32px;
  font-size: 1.12em;
  font-weight: 300;
}
@media all and (min-width: 769px) {
  p,
  li {
    font-size: 1.25em;
    letter-spacing: 0.6px;
    line-height: 32px;
  }
}
li {
  margin-bottom: 32px;
}
a:focus {
  border: 5px dashed #eca344;
}
.text-center {
  text-align: center;
}
.title-w-accent {
  position: relative;
}
.title-w-accent::before {
  background-color: currentColor;
  content: "";
  display: inline-block;
  height: 32px;
  left: -20px;
  position: absolute;
  top: 0;
  width: 12px;
}
@media all and (min-width: 769px) {
  .title-w-accent::before {
    height: 40px;
    left: -40px;
    top: 6px;
    width: 20px;
  }
}
.float-r {
  float: right;
}
.float-l {
  float: left;
}
.header {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 16px;
}
@media all and (min-width: 769px) {
  .header {
    left: 20px;
  }
}
@media all and (min-width: 1024px) {
  .header {
    left: 32px;
  }
}
.header_logo {
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
}
@media all and (min-width: 769px) {
  .header_logo {
    font-size: 1.5em;
  }
}
.hero {
  align-items: flex-end;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 450px;
  position: relative;
  justify-content: center;
  padding: 0 16px;
}
@media all and (min-width: 769px) {
  .hero {
    padding: 0;
    height: 600px;
  }
}
.hero:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.99) 52.73%, #000000 100%);
  bottom: 0;
  content: "";
  display: block;
  height: 310px;
  left: 0;
  position: absolute;
  width: 100%;
}
.hero_content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  max-width: 1087px;
  position: relative;
}
@media all and (min-width: 769px) {
  .hero_content {
    margin-bottom: 40px;
    flex-direction: row;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.hero_intro {
  font-family: "Inter", sans-serif;
  font-size: 1.5em;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 32px;
  max-width: 531px;
  text-transform: none;
  margin-top: 48px;
}
@media all and (min-width: 769px) {
  .hero_intro {
    margin-top: 0;
    font-size: 2.5em;
    line-height: 48px;
  }
}
.hero_bottom {
  padding: 16px 16px 36px 16px;
}
@media all and (min-width: 769px) {
  .hero_bottom {
    margin-bottom: 0;
    padding: 120px 20px 50px 20px;
    text-align: center;
  }
}
.hero_bottom p {
  font-size: 1.25em;
  margin-bottom: 20px;
  margin-top: 0;
}
@media all and (min-width: 769px) {
  .hero_bottom p {
    margin-bottom: 80px;
    font-size: 1.5em;
  }
}
.hero_logo-list {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: inline-grid;
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
  gap: 2rem 0;
}
@media all and (min-width: 769px) {
  .hero_logo-list {
    gap: 6rem 0;
  }
}
.hero_logo-list li {
  margin: 0;
}
.logo {
  max-width: 300px;
  min-width: 300px;
  flex: 1;
}
.logo h1,
.logo h2 {
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  font-size: 4em;
  letter-spacing: 2px;
}
@media all and (min-width: 769px) {
  .logo h1,
  .logo h2 {
    letter-spacing: 3px;
    font-size: 6.5em;
  }
}
.logo p {
  font-family: "Oswald", sans-serif;
  font-size: 1.12em;
  letter-spacing: 0.8px;
  line-height: 26px;
  text-transform: uppercase;
  margin: 0;
}
@media all and (min-width: 769px) {
  .logo p {
    margin: 0 40px 0 9px;
    font-size: 1.37em;
    letter-spacing: 2px;
  }
}
.image-block {
  display: flex;
  margin: 48px 0 48px 0;
  flex-direction: column;
}
@media all and (min-width: 1024px) {
  .image-block {
    flex-direction: row;
    margin: 170px 0;
  }
}
.block-reverse .image-block {
  padding: 60px 0 16px;
  justify-content: center;
  margin-bottom: 0;
}
@media all and (min-width: 1024px) {
  .block-reverse .image-block {
    padding: 80px 0 132px;
  }
}
.bg-blue .image-block {
  margin: 0;
}
@media all and (min-width: 1024px) {
  .image-block--reverse {
    flex-direction: row-reverse;
  }
}
.image-block--violet {
  color: #2c1433;
}
.image-block--olive {
  color: #354302;
}
@media all and (min-width: 1440px) {
  .image-block_image {
    max-width: 770px;
    min-width: 770px;
  }
}
.image-block_image img {
  width: 100%;
  height: auto;
  box-shadow: 4px 4px 16px 2px rgba(0, 0, 0, 0.1);
}
.block-reverse .image-block_image {
  margin: 0 70px;
}
@media all and (min-width: 1024px) {
  .block-reverse .image-block_image {
    max-width: 423px;
    min-width: 423px;
  }
}
.bg-blue .image-block_image {
  height: 179px;
  max-width: none;
  min-width: 100%;
}
@media all and (min-width: 1024px) {
  .bg-blue .image-block_image {
    height: auto;
    max-width: none;
    min-width: 0;
    flex: 1;
  }
}
@media all and (min-width: 1500px) {
  .bg-blue .image-block_image {
    max-width: 50%;
    min-width: 50%;
  }
}
.image-block_text {
  margin-top: 20px;
  margin-left: 20px;
}
@media all and (min-width: 769px) {
  .image-block_text {
    margin-left: 60px;
  }
}
@media all and (min-width: 1024px) {
  .image-block_text {
    margin-top: 0;
    min-width: 529px;
    width: 529px;
    margin-left: 145px;
    margin-right: 16px;
  }
}
.bg-blue .image-block_text {
  padding: 10px 0;
  margin-left: 16px;
  margin-right: 16px;
}
@media all and (min-width: 1024px) {
  .bg-blue .image-block_text {
    padding: 80px 0;
    flex: 1;
    min-width: 0;
    max-width: 529px;
    margin-left: 56px !important;
  }
}
@media all and (min-width: 1024px) {
  .image-block--reverse .image-block_text {
    margin-left: 56px;
    margin-right: 145px;
  }
}
@media all and (min-width: 1440px) {
  .image-block--reverse .image-block_text {
    margin-left: auto;
  }
}
.block-reverse .image-block_text {
  margin-top: 50px;
  margin-left: 16px;
  margin-right: 16px;
}
@media all and (min-width: 1024px) {
  .block-reverse .image-block_text {
    width: 624px;
  }
}
.image-block_image--background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.btn {
  border: 2px solid #c2d776;
  color: #ffffff;
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 8px;
  padding: 11px 31px;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
  font-family: "Inter", sans-serif;
}
.btn:hover,
.btn:focus {
  background: #c2d7762d;
}
.image-bg {
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 70px;
  position: relative;
  text-align: center;
}
@media all and (min-width: 769px) {
  .image-bg {
    padding-bottom: 90px;
    padding-top: 220px;
  }
}
.image-bg:after,
.image-bg:before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.image-bg:after {
  background: linear-gradient(180deg, #11256f 0%, #11256f 25.59%, rgba(17, 37, 111, 0) 100%);
  height: 190px;
}
@media all and (min-width: 769px) {
  .image-bg:after {
    height: 100px;
  }
}
.image-bg:before {
  background-color: #11256f;
  opacity: 0.53;
}
.image-bg_content {
  display: inline-flex;
  flex-direction: column;
  flex: 1;
  max-width: 1087px;
  padding: 0 16px;
  position: relative;
  text-align: left;
}
@media all and (min-width: 769px) {
  .image-bg_content {
    flex-direction: row;
    gap: 16px;
  }
}
.image-bg_content h4 {
  font-size: 1.25em;
}
@media all and (min-width: 769px) {
  .image-bg_content h4 {
    font-size: 1.5em;
  }
}
.image-bg_content div {
  flex: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media all and (min-width: 769px) {
  .image-bg_content div {
    margin-bottom: 0;
  }
}
.image-bg_content div:last-child {
  margin-bottom: 0;
  margin-left: auto;
  max-width: 544px;
}
.footer {
  background-color: #11256f;
}
.footer_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
  align-items: center;
}
@media all and (min-width: 769px) {
  .footer_container {
    padding: 0;
    flex-direction: row;
    margin: 0 30px;
  }
}
@media all and (min-width: 1500px) {
  .footer_container {
    margin: 0 auto;
    max-width: 1440px;
  }
}
.footer_container p,
.footer_container a {
  color: #ffffff;
  margin: 0;
  font-size: 1em;
  font-weight: 300;
  text-decoration: none;
  padding: 7px 0px;
}
@media all and (min-width: 769px) {
  .footer_container p,
  .footer_container a {
    padding: 30px 0;
  }
}
.footer_container a:hover {
  text-decoration: underline;
}
.text-block {
  margin: 32px 16px;
  display: grid;
  place-items: center;
}
.text-block__text {
  max-width: 624px;
}