@charset "UTF-8";

/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
body {
    margin: 0;
    padding: 0;
}

dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

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

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

[hidden] {
    display: none;
}

body {
    font-size: 1em;
    line-height: 1.35;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /*
  Focus-visible styling:

  This will hide the focus indicator if the element receives focus via the mouse,
  but it will still show up on keyboard focus.
*/
}

body a {
    text-decoration: none;
}

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

body b,
body strong {
    font-weight: bold;
}

body blockquote {
    margin: 0;
}

body dfn {
    font-style: italic;
}

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

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

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

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

body q {
    quotes: none;
}

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

body small {
    font-size: 85%;
}

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

body sup {
    top: -0.5em;
}

body sub {
    bottom: -0.25em;
}

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

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

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

body figure {
    margin: 0;
}

body form {
    margin: 0;
}

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

body label {
    cursor: pointer;
}

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

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

body button,
body input {
    line-height: normal;
}

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

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

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

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

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

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

body input,
body textarea,
body select {
    outline: none;
}

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

body td {
    vertical-align: top;
}

body ::-moz-selection {
    background-color: #0040ff;
    color: #fff;
}

body ::selection {
    background-color: #0040ff;
    color: #fff;
}

body .js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
/* Globally available project specific mixins, functions and variables */
/*
 * This is a globally available SCSS project file.
 * It contains project specific utilities (variables, mixins, functions) that don't! output CSS by default.
 * We use it to be imported in a webpack loader to avoid having to import these in each separate file.
 *
 * This file is used next to "seng-scss" which is imported globally as well and contain the default mixins/vars/functions
 */
/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
.container-fluid {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (min-width: 1440px) {
    .container-fluid {
        padding-right: 80px;
        padding-left: 80px;
    }
}

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

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

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

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

@media only screen and (min-width: 1740px) {

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col,
    .col-auto,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm,
    .col-sm-auto,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md,
    .col-md-auto,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg,
    .col-lg-auto,
    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl,
    .col-xl-auto,
    .col-xxl-1,
    .col-xxl-2,
    .col-xxl-3,
    .col-xxl-4,
    .col-xxl-5,
    .col-xxl-6,
    .col-xxl-7,
    .col-xxl-8,
    .col-xxl-9,
    .col-xxl-10,
    .col-xxl-11,
    .col-xxl-12,
    .col-xxl,
    .col-xxl-auto,
    .col-xxxl-1,
    .col-xxxl-2,
    .col-xxxl-3,
    .col-xxxl-4,
    .col-xxxl-5,
    .col-xxxl-6,
    .col-xxxl-7,
    .col-xxxl-8,
    .col-xxxl-9,
    .col-xxxl-10,
    .col-xxxl-11,
    .col-xxxl-12,
    .col-xxxl,
    .col-xxxl-auto {
        padding-right: 12px;
        padding-left: 12px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 360px) {
    .col-sm {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 768px) {
    .col-md {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1024px) {
    .col-lg {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1440px) {
    .col-xl {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1740px) {
    .col-xxl {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xxl-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1921px) {
    .col-xxxl {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xxxl-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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


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

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

.centered {
    text-align: center;
}

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

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

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

.no-margin {
    margin-bottom: 0;
}

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

.abs-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fit-contain {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
    font-family: 'object-fit: contain;';
}

.fit-cover {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
    font-family: 'object-fit: cover;';
}

.hidden-lg {
    display: block;
    visibility: visible;
}

@media only screen and (min-width: 1024px) {
    .hidden-lg {
        display: none;
        visibility: hidden;
    }
}

.visible-lg {
    display: none;
    visibility: hidden;
}

@media only screen and (min-width: 1024px) {
    .visible-lg {
        display: block;
        visibility: visible;
    }
}

/* @font-face {
    font-family: "manrope";
    src: url("../../../assets/font/manrope-thin.woff2") format("woff2"), url("../../../assets/font/manrope-thin.woff") format("woff"), url("../../../assets/font/manrope-thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "manrope";
    src: url("../../../assets/font/manrope-light.woff2") format("woff2"), url("../../../assets/font/manrope-light.woff") format("woff"), url("../../../assets/font/manrope-light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "manrope";
    src: url("../../../assets/font/manrope-regular.woff2") format("woff2"), url("../../../assets/font/manrope-regular.woff") format("woff"), url("../../../assets/font/manrope-regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "manrope";
    src: url("../../../assets/font/manrope-medium.woff2") format("woff2"), url("../../../assets/font/manrope-medium.woff") format("woff"), url("../../../assets/font/manrope-medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "manrope";
    src: url("../../../assets/font/manrope-semibold.woff2") format("woff2"), url("../../../assets/font/manrope-semibold.woff") format("woff"), url("../../../assets/font/manrope-semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "manrope";
    src: url("../../../assets/font/manrope-bold.woff2") format("woff2"), url("../../../assets/font/manrope-bold.woff") format("woff"), url("../../../assets/font/manrope-bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "manrope", Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 500;
    color: #000;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

[class*='heading-'].bold {
    font-weight: bold;
}

[class*='heading-'].semi-bold {
    font-weight: 600;
}

[class*='heading-'].medium {
    font-weight: 500;
}

.heading-01 {
    font-size: 64px;
    line-height: 1.25;
    letter-spacing: -1px;
}

.heading-02 {
    font-size: 48px;
    line-height: 1.33;
    letter-spacing: -0.75px;
}

.heading-03 {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.heading-04 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.heading-05 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.5px;
}

[class*='body-'].bold {
    font-weight: bold;
}

[class*='body-'].semi-bold {
    font-weight: 600;
}

.body-large {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.78;
}

.body-x-large {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.78;
}

.body-regular {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.body-regular.bold {
    font-weight: 700;
}

.body-small {
    font-size: 14px;
    line-height: 1.71;
}

.body-x-small {
    font-size: 11px;
    line-height: 1.45;
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    border: 0;
    width: 100%;
}

@media only screen and (max-width: 1439.98px) {
    .heading-01 {
        font-size: 56px;
    }
}

@media only screen and (max-width: 1023.98px) {
    .heading-01 {
        font-size: 32px;
        line-height: 1.25;
    }

    .heading-02 {
        font-size: 32px;
        line-height: 1.25;
    }

    .heading-03 {
        font-size: 28px;
        line-height: 1.42;
    }

    .heading-04 {
        font-size: 22px;
        line-height: 1.45;
    }

    .heading-05 {
        line-height: 1.45;
    }

    .body-large {
        font-size: 16px;
        line-height: 1.7;
    }

    .body-x-large {
		font-size: 14px;
		line-height: 1.7;
	}

    .body-regular {
        font-size: 14px;
        line-height: 1.71;
    }
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: "manrope", Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

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

.active-focus a.focus-visible,
.active-focus button.focus-visible {
    outline: 1px solid #0040ff;
}

/* stylelint-disable */
button,
textarea,
input,
select,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* stylelint-enable */
.icon {
    overflow: hidden;
}

.main {
    width: 100%;
    overflow: hidden;
}

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

.container {
    width: 100%;
    padding: 0 24px;
}

.wrap {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.margin-top-16 {
    margin-top: 96px;
}

.margin-top-8 {
    margin-top: 64px;
}

.margin-top-4 {
    margin-top: 40px;
}

.margin-bottom-16 {
    margin-bottom: 96px;
}

.margin-bottom-8 {
    margin-bottom: 64px;
}

.margin-bottom-4 {
    margin-bottom: 40px;
}

.padding-top-24 {
    padding-top: 120px;
}

.padding-top-15 {
    padding-top: 48px;
}

.padding-top-16 {
    padding-top: 96px;
}

.padding-top-12 {
    padding-top: 48px;
}

.padding-top-8 {
    padding-top: 64px;
}

.padding-top-6 {
    padding-top: 60px;
}

.padding-top-4 {
    padding-top: 40px;
}

.padding-bottom-16 {
    padding-bottom: 96px;
}

.padding-bottom-12 {
    padding-bottom: 48px;
}

.padding-bottom-8 {
    padding-bottom: 64px;
}

.padding-bottom-4 {
    padding-bottom: 40px;
}

.padding-bottom-2 {
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .container {
        padding-right: 80px;
        padding-left: 80px;
    }

    .margin-top-16 {
        margin-top: 160px;
    }

    .margin-top-8 {
        margin-top: 80px;
    }

    .margin-bottom-16 {
        margin-bottom: 160px;
    }

    .margin-bottom-8 {
        margin-bottom: 80px;
    }

    .padding-top-24 {
        padding-top: 240px;
    }

    .padding-top-16 {
        padding-top: 160px;
    }
    .padding-top-16 {
        //padding-top: 140px;
    }

    .padding-top-12 {
        padding-top: 120px;
    }

    .padding-top-8 {
        padding-top: 80px;
    }

    .padding-top-6 {
        padding-top: 60px;
    }

    .padding-bottom-16 {
        padding-bottom: 160px;
    }

    .padding-bottom-12 {
        padding-bottom: 120px;
    }

    .padding-bottom-8 {
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 1740px) {
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media only screen and (min-width: 1921px) {
    .wrap {
        max-width: 1740px;
    }
}

/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
button,
input[type='button'],
input[type='submit'] {
    font-family: "manrope", Arial, Helvetica Neue, Helvetica, sans-serif;
    background: none;
    border: 0;
    cursor: pointer;
    outline: none;
    padding: 0;
}

a,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.btn {
    background-color: #000;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    padding: 17px 22px 14px;
    border-radius: 24px;
    border: 2px solid #000;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

.btn:hover {
    background-color: #404040;
    border-color: #404040;
}

.btn--white {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.btn--white:hover {
    border-color: #d8d8d8;
    background-color: #d8d8d8;
}

.btn--blue {
    background-color: #0040ff;
    color: #fff;
    border-color: #0040ff;
}

.btn--blue:hover {
    background-color: #323ed1;
    border-color: #323ed1;
}

.btn--grey {
    background-color: #f0f0f0;
    color: #000;
    border-color: #f0f0f0;
}

.btn--grey:hover {
    background-color: #d8d8d8;
    border-color: #d8d8d8;
}

.btn--transparent {
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.5);
    color: #000;
}

.btn--transparent:hover {
    border-color: #000;
    background-color: transparent;
}

.btn--transparent-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn--transparent-white:hover {
    border-color: #fff;
    background-color: transparent;
}

.btn--transparent-blue {
    background-color: transparent;
    border: 2px solid rgba(0, 64, 255, 0.5);
    color: #0040ff;
}

.btn--transparent-blue:hover {
    border-color: #0040ff;
    background-color: transparent;
}

.btn--disabled {
    background-color: #d8d8d8;
    color: rgba(0, 0, 0, 0.5);
    border-color: #d8d8d8;
    pointer-events: none;
}

.btn--arrow {
    position: relative;
    padding-right: 48px;
}

.btn--arrow::after {
    font-family: 'svgicons';
    content: '\E00A';
    position: absolute;
    top: 16px;
    right: 20px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.btn--arrow-right {
    position: relative;
    padding-right: 48px;
}

.btn--arrow-right::after {
    font-family: 'svgicons';
    content: '\E00A';
    position: absolute;
    top: 16px;
    right: 20px;
}

.btn-tag {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 400;
    border-radius: 14px;
    position: relative;
    background: rgba(0, 0, 0, 0.06);
    margin-right: 10px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 36px 3px 16px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn-tag::before,
.btn-tag::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 11px;
    height: 10px;
    width: 1px;
    display: block;
    background: #000;
    border-radius: 2px;
}

.btn-tag::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-tag::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn-tag:last-of-type {
    margin-right: 0;
}

.btn-tag:hover {
    background: rgba(0, 0, 0, 0.1);
}

.btn-tab {
    background-color: #f0f0f0;
    color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    padding: 12px 20px 10px;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn-tab:last-of-type {
    margin-right: 0;
}

.btn-tab:hover {
    background-color: #d8d8d8;
    border-color: #d8d8d8;
}

.btn-tab.is-active,
.btn-tab--active {
    background-color: #0040ff;
    border-color: #0040ff;
    color: #fff;
}

.btn-tab.is-active:hover,
.btn-tab--active:hover {
    color: #fff;
    background-color: #0040ff;
    border-color: #0040ff;
}

.dropdown-group {
    display: inline-block;
    position: relative;
}

.dropdown-group__btn {
    position: relative;
    padding: 4px 44px 4px 24px;
    background-color: #fff;
    border-radius: 24px;
    display: inline-block;
}

.loaded .dropdown-group__btn {
    -webkit-transition: 0.6s ease 0.4s;
    transition: 0.6s ease 0.4s;
}

.dropdown-group__btn .icon {
    position: absolute;
    top: 13px;
    right: 20px;
    font-size: 8px;
    overflow: hidden;
}

.loaded .dropdown-group__btn .icon {
    -webkit-transition: 0.15s ease;
    transition: 0.15s ease;
}

.dropdown-group--transparent .dropdown-group__btn {
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.loaded .dropdown-group--transparent .dropdown-group__btn {
    -webkit-transition: border-color 0.15s ease, border-radius 0.15s ease 0.4s;
    transition: border-color 0.15s ease, border-radius 0.15s ease 0.4s;
}

.loaded .dropdown-group--transparent .dropdown-group__btn--open {
    -webkit-transition: 0.15s ease 0s;
    transition: 0.15s ease 0s;
}

.dropdown-group__btn--open {
    border-radius: 16px 16px 0 0;
    background-color: #fafafa;
}

.dropdown-group__btn--open .icon {
    top: 12px;
    right: 20px;
    position: absolute;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.loaded .dropdown-group__btn--open {
    -webkit-transition: 0.15s ease 0s;
    transition: 0.15s ease 0s;
}

.dropdown-group__btn-text {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 700;
    text-align: left;
}

.dropdown-group__list {
    background-color: #fff;
    border-radius: 0 0 16px 16px;
    display: none;
    position: absolute;
    left: 0;
    top: 32px;
    overflow: hidden;
    padding: 4px 0;
    width: 100%;
    z-index: 1;
    border-top: 0;
}

.dropdown-group__list-item {
    display: block;
}

.dropdown-group__list-button {
    font-size: 14px;
    font-weight: 400;
    color: #727272;
    line-height: 1.71;
    padding: 4px 44px 4px 24px;
    width: 100%;
    display: block;
}

.dropdown-group__list-button:hover {
    color: #000;
    background-color: rgba(235, 235, 235, 0.5);
}

.dropdown-group__list-button--selected {
    display: none;
}

.is-ie-11 .btn {
    line-height: 1.3;
    padding: 16px 26px 12px;
}

.is-ie-11 .btn-tag {
    padding: 6px 36px 3px 16px;
    line-height: 22px;
}

.is-ie-11 .dropdown-group__list-button {
    line-height: 1.71;
}

.is-ie-11 .dropdown-group__btn-text {
    line-height: 24px;
}

.is-ie-11 .btn-tab {
    line-height: 1.1;
    padding: 12px 20px 8px;
}

@media only screen and (min-width: 768px) {
    .btn {
        padding: 17px 26px 14px;
    }

    .btn-tab {
        font-size: 16px;
        padding: 12px 20px 10px;
    }

    .is-ie-11 .btn-tab {
        padding: 12px 20px 7px;
    }
}

input,
textarea,
select {
    font-family: "manrope", Arial, Helvetica Neue, Helvetica, sans-serif;
    background: #fff;
    border-radius: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000;
    width: 100%;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 1000px #fff;
    box-shadow: inset 0 0 0 1000px #fff;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: #727272;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    color: #727272;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: #727272;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
    color: #727272;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #727272;
}

input::-ms-clear,
textarea::-ms-clear,
select::-ms-clear {
    display: none;
}

.loaded input,
.loaded textarea,
.loaded select {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.form__row {
    position: relative;
    width: 100%;
    margin-bottom: 48px;
}

.form__group {
    position: relative;
    width: 100%;
}

.form__label {
    width: calc(100% - 40px);
    font-size: 16px;
    font-weight: 400;
    color: #727272;
    line-height: 24px;
    padding: 4px 0;
    letter-spacing: 0.3px;
    position: absolute;
    top: 14px;
    left: 20px;
    background-color: #fff;
    z-index: 1;
    display: block;
    -webkit-transition: font-size 0.3s ease, top 0.3s ease;
    transition: font-size 0.3s ease, top 0.3s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.form__label--relative {
    width: auto;
    top: -8px;
    left: 16px;
    padding: 4px;
    font-size: 11px;
    line-height: 9px;
}

.form__input {
    width: 100%;
    height: 56px;
    color: #000;
    padding: 16px 20px;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 16px;
}

.form__input--upload {
    padding-left: 16px;
}

.form__input--upload::-webkit-file-upload-button {
    visibility: hidden;
    width: 0;
    max-width: 0;
    padding: 3px 0 0;
    border: 0;
}

.loaded .form__input {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.form__input:hover {
    border-color: #0040ff;
}

.form__input:active,
.form__input.focus-visible {
    border-color: #0040ff;
}

.form__input:active~label,
.form__input.focus-visible~label {
    color: #0040ff;
}

.form__input:invalid {
    background-color: transparent;
}

.form__upload-button {
    position: absolute;
    top: 7px;
    right: 7px;
    padding: 11px 16px 8px;
    background-color: #f0f0f0;
    border-radius: 10px;
    color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.font-ico-calendar {
    position: absolute;
    right: 20px;
    top: 17px;
    z-index: 1;
    font-size: 22px;
    color: rgba(0, 0, 0, 0.5);
}

.form__input--textarea {
    height: 56px;
    resize: none;
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}

.form__input--textarea:active,
.form__input--textarea.focus-visible,
.form__input--textarea.form__input--filled {
    height: 320px;
    overflow-y: auto;
}

.form__input--textarea:active~.form__max-characters,
.form__input--textarea.focus-visible~.form__max-characters,
.form__input--textarea.form__input--filled~.form__max-characters {
    opacity: 1;
}

.form__input--textarea~.form__error-message {
    padding-top: 14px;
}

.form__max-characters {
    width: calc(100% - 20px);
    font-size: 10px;
    font-weight: 400;
    color: #727272;
    line-height: 16px;
    margin-top: -25px;
    padding-bottom: 8px;
    position: relative;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    display: block;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 1;
}

.form__input--error {
    border-color: #e9001d;
}

.form__input--error~label {
    color: #e9001d;
}

.form__input--error~.form__error-message {
    display: block;
}

.form__checkbox-row,
.form__radio-row {
    position: relative;
}

.form__checkbox-row input,
.form__radio-row input {
    position: absolute;
    top: 2px;
    left: 0;
    opacity: 0;
    height: 20px;
    width: 20px;
    z-index: 2;
    cursor: pointer;
}

.form__checkbox-row {
    margin-bottom: 18px;
}

.form__checkbox-row input:checked~.form__label-checkbox::after {
    opacity: 1;
}

.form__checkbox-row input:disabled {
    cursor: default;
}

.form__checkbox-row input:disabled~.form__label-checkbox {
    color: #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.form__checkbox-row input:disabled~.form__label-checkbox::before {
    opacity: 0.5;
}

.form__checkbox-row input:disabled~.form__label-checkbox:hover::before {
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form__label-checkbox {
    position: relative;
    font-size: 16px;
    color: #727272;
    line-height: 24px;
    letter-spacing: 0.3px;
    padding-left: 36px;
    display: inline-block;
}

.form__label-checkbox a {
    font-weight: 700;
    color: #000;
}

.form__label-checkbox a:hover {
    text-decoration: underline;
}

.form__label-checkbox::before,
.form__label-checkbox::after {
    content: '';
    position: absolute;
}

.loaded .form__label-checkbox::before,
.loaded .form__label-checkbox::after {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.form__label-checkbox::before {
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: #f5f5f5;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form__label-checkbox::after {
    top: 4px;
    left: 2px;
    width: 16px;
    height: 16px;
    opacity: 0;
    background: url("../../../assets/img/checkbox.svg") center center no-repeat;
    background-size: 16px 16px;
    display: block;
}

.form__label-checkbox:hover::before {
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.form__radio-row {
    margin-bottom: 18px;
}

.form__radio-row input:checked~.form__label-radio::after {
    opacity: 1;
}

.form__radio-row input:disabled {
    cursor: default;
}

.form__radio-row input:disabled~.form__label-radio {
    color: #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.form__radio-row input:disabled~.form__label-radio::before {
    opacity: 0.5;
}

.form__radio-row input:disabled~.form__label-radio:hover::before {
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form__radio-row--inline {
    min-width: 100px;
    padding-right: 16px;
    margin-bottom: 0;
    display: inline-block;
}

.form__label-radio {
    position: relative;
    font-size: 16px;
    color: #727272;
    line-height: 24px;
    letter-spacing: 0.3px;
    padding-left: 36px;
    display: inline-block;
}

.form__label-radio::before,
.form__label-radio::after {
    content: '';
    position: absolute;
}

.loaded .form__label-radio::before,
.loaded .form__label-radio::after {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.form__label-radio::before {
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f5f5f5;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form__label-radio::after {
    left: 5px;
    top: 7px;
    width: 10px;
    height: 10px;
    opacity: 0;
    border-radius: 50%;
    background-color: #000;
    display: block;
}

.form__label-radio:hover::before {
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.form__counter {
    position: absolute;
    right: 0;
    bottom: -25px;
    color: rgba(0, 0, 0, 0.5);
}

.form__group--filled .form__label,
.form__group--focused .form__label {
    top: 0;
    font-size: 10px;
    line-height: 16px;
}

.form__group--filled .form__input--text {
    border-color: #000;
}

.form__group--filled .form__input--textarea {
    height: 208px;
    overflow-y: auto;
    border-color: #000;
}

.form__group--filled .form__input--textarea~.form__max-characters {
    opacity: 1;
}

.form__group--filled .selectric {
    color: #000;
}

.form__group--error .form__input {
    border-color: #323ed1;
}

.form__group--error .form__input:hover {
    border-color: #323ed1;
}

.form__group--error .form__label {
    color: #323ed1;
}

.form__group--error .form__error-message {
    display: block;
}

.form__group--disabled .form__label {
    color: #000;
    opacity: 0.2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.form__group--disabled .form__input {
    border-color: #d8d8d8;
}

.form__group--disabled .form__input:hover {
    border-color: #d8d8d8;
}

.form__error-message {
    font-size: 14px;
    font-weight: 400;
    color: #e9001d;
    line-height: 24px;
    padding-top: 5px;
    padding-left: 19px;
    display: none;
}

.rte li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 30px;
}

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

.rte ul li {
    margin-bottom: 30px;
}

.rte ul li::before {
    content: '';
    position: absolute;
    top: 13px;
    left: -25px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
}

.rte ul ul {
    padding-left: 56px;
    padding-top: 30px;
}

.rte ul ul li {
    margin-bottom: 30px;
}

.rte ul ul li::before {
    content: '';
    position: absolute;
    top: 14px;
    left: -28px;
    width: 8px;
    height: 2px;
    background-color: #000;
}

.rte ol {
    padding-left: 28px;
    counter-reset: ol-list;
    margin-bottom: 40px;
}

.rte ol li {
    margin-bottom: 30px;
}

.rte ol li::before {
    counter-increment: ol-list;
    content: counter(ol-list) ".";
    position: absolute;
    color: #727272;
    top: 0;
    left: -28px;
}

@media print {
    body {
        background: #fff;
        color: #000;
        margin: 0;
        padding: 0;
        text-align: left;
    }

    a:link,
    a:visited {
        background: #fff;
        color: #000;
        text-decoration: underline;
    }

    a:not([href='javascript:;']):after {
        content: "["attr(href) "]";
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        background: none;
        color: #000;
    }
}





/*
 * This is a globally available SCSS project file.
 * It contains project specific utilities (variables, mixins, functions) that don't! output CSS by default.
 * We use it to be imported in a webpack loader to avoid having to import these in each separate file.
 *
 * This file is used next to "seng-scss" which is imported globally as well and contain the default mixins/vars/functions
 */
/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
.sticky-navigation {
	position: fixed;
	/* top: 72px; */
	top:0;
	left: 0;
	width: 100vw;
	z-index: 6;
}

.sticky-navigation__header {
	position: relative;
	width: 100%;
	height: 60px;
	background: #fff;
	border-bottom: 1px solid #d8d8d8;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
}

.sticky-navigation__header-label {
	padding-left: 24px;
	color: #727272;
}

.sticky-navigation__header-arrow {
	padding-right: 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.sticky-navigation__header-arrow span {
	font-size: 14px;
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.sticky-navigation__wrapper {
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #fff;
}

.sticky-navigation .items {
	width: 100%;
	padding: 24px;
}

.sticky-navigation__items {
	position: relative;
	color: #727272;
	padding-left: 24px;
}

.sticky-navigation__items::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #d8d8d8;
}

.sticky-navigation__items a {
	position: relative;
	color: inherit;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.sticky-navigation__items a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -24px;
	width: 2px;
	height: 100%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	background-color: transparent;
}

.sticky-navigation__items a:hover {
	color: #161616;
}

.sticky-navigation__items a:hover::before {
	background-color: #727272;
}

.sticky-navigation__items li {
	position: relative;
	margin-bottom: 20px;
}

.sticky-navigation__items li:last-child {
	margin-bottom: 5px;
}

.sticky-navigation__items li.active > a {
	color: #0040ff;
}

.sticky-navigation__items li ul {
	padding-left: 24px;
	margin-top: 20px;
}

.sticky-navigation__items li ul li {
	margin-bottom: 12px;
}

.sticky-navigation__items li ul li:last-child {
	margin-bottom: 5px;
}

.sticky-navigation__items li ul li a::before {
	left: -48px;
}

.sticky-navigation .selected {
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	background-color: #0040ff;
}

@media only screen and (min-width: 768px) {
	.sticky-navigation {
		/* top: 80px; */
		top:0;
	}
	.sticky-navigation__header-label {
		/* padding-left: 80px; */
	}
	.sticky-navigation__header-arrow {
		padding-right: 80px;
	}
}

@media only screen and (min-width: 1024px) {
	.sticky-navigation {
		position: relative;
		width: 100%;
		height: 100%;
		top: 40px;
	}
	.sticky-navigation__header {
		display: none;
	}
	.sticky-navigation__wrapper {
		height: auto;
		display: block;
		padding-top: 120px;
	}
	.sticky-navigation .items {
		padding: 0;
	}
}







/*
 * This is a globally available SCSS project file.
 * It contains project specific utilities (variables, mixins, functions) that don't! output CSS by default.
 * We use it to be imported in a webpack loader to avoid having to import these in each separate file.
 *
 * This file is used next to "seng-scss" which is imported globally as well and contain the default mixins/vars/functions
 */
/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
.c13-table {
	background-color: #fff;
	padding-top: 24px;
	width: auto;
	display: inline-block;
}

.c13-table .combined-heading {
	margin-top: 24px;
	margin-bottom: 5px;
}

.c13-table__section {
	/* this is needed for 5 items */
}

.c13-table__section.wrap {
	max-width: 100%;
}

.c13-table__section .c13-table__section-col {
	background-color: #f5f5f5;
	padding-top: 24px;
	padding-bottom: 24px;
	margin-left: -24px;
	margin-right: -24px;
	width: 100vw;
	overflow-x: scroll;
	white-space: nowrap;
}

.c13-table__section .c13-table__section-col table {
	border-collapse: collapse;
	width: auto;
	border: 0;
	border-spacing: 0;
}

.c13-table__section .c13-table__section-col thead {
	display: none;
}

.c13-table__section .c13-table__section-col td {
	color: rgba(0, 0, 0, 0.5);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: auto;
	width: auto;
	padding-left: 48px;
	padding-right: 48px;
	min-width: 240px;
}

.c13-table__section .c13-table__section-col td div {
	width: auto;
}

.c13-table__section .c13-table__section-col td::before {
	content: attr(data-label);
	color: #000;
	font-weight: 500;
}

.c13-table__section .c13-table__section-col td.combined {
	display: none;
	height: auto;
	background-color: #fff;
	padding-top: 24px;
	margin-bottom: -24px;
	padding-bottom: 16px;
	position: relative;
}

.c13-table__section .c13-table__section-col td.combined::after {
	display: none;
	position: absolute;
	right: 12px;
	bottom: calc(100% + 24px);
	content: '';
	height: calc(100% - 24px);
	width: 1px;
	border: 1px solid #d8d8d8;
}

.c13-table__section .c13-table__section-col td + td {
	margin-top: 16px;
}

.c13-table__section .c13-table__section-col tr {
	display: table-cell;
	width: auto;
	border-right: 1px solid #d8d8d8;
	vertical-align: top;
}

.c13-table__section .c13-table__section-col tr:first-child td {
	padding-left: 24px;
}

.c13-table__section .c13-table__section-col tr.combined-tr {
	border: 0;
}

.c13-table__section .c13-table__section-col tr.combined-tr td.combined {
	margin-top: 16px;
}

.c13-table__section .c13-table__section-col tr.combined-tr td:not(.combined) {
	border-right: 1px solid #d8d8d8;
}

.c13-table__section .c13-table__section-col tr.combined-tr td + td {
	margin-top: 0;
	padding-top: 16px;
}

@media only screen and (min-width: 768px) {
	.c13-table {
		width: 100%;
		display: block;
	}
	.c13-table .mobile-only {
		display: none;
	}
	.c13-table__section-large .c13-table__section-col {
		width: 100%;
	}
	.c13-table__section-large .c13-table__section-col table {
		width: 100%;
	}
	.c13-table__section-large .c13-table__section-col table, .c13-table__section-large .c13-table__section-col td, .c13-table__section-large .c13-table__section-col th {
		border: 1px solid #d8d8d8;
	}
	.c13-table__section-large .c13-table__section-col td, .c13-table__section-large .c13-table__section-col th {
		height: auto;
		padding-left: 16px;
		padding-top: 15px;
		padding-bottom: 13px;
		padding-right: 10px;
		vertical-align: middle;
		text-align: left;
		font-weight: 500;
	}
	.c13-table__section-large .c13-table__section-col th {
		background-color: #f5f5f5;
		color: #000;
		border: 0;
	}
	.c13-table__section-large .c13-table__section-col th, .c13-table__section-large .c13-table__section-col tr > td {
		width: auto;
		max-width: 175px;
	}
	.c13-table__section-large .c13-table__section-col th:nth-child(4), .c13-table__section-large .c13-table__section-col tr > td:nth-child(4) {
		width: 35%;
		max-width: 250px;
	}
	.c13-table__section-large .c13-table__section-col td {
		color: rgba(0, 0, 0, 0.5);
		position: relative;
	}
	.c13-table__section-large .c13-table__section-col td:not(.combined) div {
		width: 100%;
		/* white-space: nowrap; */
		/* overflow: hidden; */
		/* text-overflow: ellipsis; */
		word-break: break-word;
	}
	.c13-table__section-large .c13-table__section-col td:not(.combined) .c13-table__section-tooltip {
		visibility: hidden;
		width: auto;
		background-color: #0040ff;
		color: #fff;
		padding: 10px 16px;
		position: absolute;
		white-space: nowrap;
		left: 50%;
		z-index: 9;
	}
	.c13-table__section-large .c13-table__section-col td:not(.combined):hover .c13-table__section-tooltip {
		visibility: visible;
	}
	.c13-table__section-large .c13-table__section-col td:not(.combined):last-child .c13-table__section-tooltip {
		white-space: normal;
		min-width: 200px;
	}
	.c13-table__section-large .c13-table__section-col td.combined {
		display: table-cell;
		height: auto;
		padding: 16px;
		vertical-align: top;
	}
}

@media only screen and (min-width: 1024px) {
	
	/* 大屏下绝对定位 */
    .sticky-navigation__wrapper.js-wrapper.active {
    	position:fixed;
    	top:0;
		width: calc((100% -160px) / 5);
    	padding-top:20px;
    }
}

@media only screen and (min-width: 1440px) {
	
	/* 大屏下绝对定位 */
    .sticky-navigation__wrapper.js-wrapper.active {
    	position:fixed;
    	top:0;
		width: 335px;
    	padding-top:20px;
    }
}


@media only screen and (max-width: 1024px) {
   .sticky-navigation__header-arrow .font-ico-chevron-right{
   	transform: rotate(90deg);
   }
   
   /* 小屏下顶部固定 */
   #menu_bar.show-menu {
	   height: 280px;
   }
}




.c19-rich-text-with-summary {
    background-color: #fff;
}

.c19-rich-text-with-summary .item:first-child {
    padding-top: 60px;
}

.c19-rich-text-with-summary .item > h2 {
    padding-top: 54px;
}

.c19-rich-text-with-summary .item > h3 {
    padding-top: 24px;
}

.c19-rich-text-with-summary .item .no-subheading {
    padding-bottom: 8px;
}

.c19-rich-text-with-summary .item > div {
    padding-top: 16px;
    padding-bottom: 16px;
}

.c19-rich-text-with-summary .item > div p {
    margin-bottom: 24px;
}

.c19-rich-text-with-summary .item > div p:last-child {
    margin-bottom: 0;
}

.c19-rich-text-with-summary .item > div ol {
    list-style-type: lower-alpha;
    list-style-position: inside;
    margin-bottom: 24px;
}

.c19-rich-text-with-summary .item > div ol li {
    list-style: inherit;
    margin-bottom: 5px;
    line-break: anywhere;
    word-break: break-word;
}

.c19-rich-text-with-summary .color-grey {
    color: #727272;
}

.c19-rich-text-with-summary .color-primary {
    color: #0040ff;
}

@media only screen and (min-width: 1024px) {
    .c19-rich-text-with-summary .item:first-child {
        padding-top: 144px;
    }

    .c19-rich-text-with-summary .item > h2 {
        padding-top: 80px;
    }

    .c19-rich-text-with-summary .c13-table {
        min-width: 570px;
    }
}

.blocks {
    padding: 10px;
    background: rgb(224, 224, 224);
}
