@charset "UTF-8";
/*
 * Style
 */
.uk-link {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}
.uk-link:hover, .uk-link-toggle:hover .uk-link, .uk-link-toggle:focus .uk-link {
  color: var(--link-hover-color);
  text-decoration: underline;
}
/* Text-level semantics
 ========================================================================== */
/*
 * 1. Add the correct text decoration in Edge.
 * 2. The shorthand declaration `underline dotted` is not supported in Safari.
 */
abbr[title] {
  /* 1 */
  text-decoration: underline dotted;
  /* 2 */
  -webkit-text-decoration-style: dotted;
}
/*
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b, strong {
  font-weight: bolder;
}
/*
 * 1. Consolas has a better baseline in running text compared to `Courier`
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Style
 */
:not(pre) > code, :not(pre) > kbd, :not(pre) > samp {
  /* 1 */
  font-family: Consolas, monaco, monospace;
  /* 2 */
  font-size: 0.875rem;
  /* 3 */
  color: #ff0d0d;
  white-space: nowrap;
  padding: 2px 6px;
  background: var(--bg-muted);
}
/*
 * Emphasize
 */
em {
  color: var(--base-color);
}
/*
 * Insert
 */
ins {
  background: #ffd;
  color: var(--base-color);
  text-decoration: none;
}
/*
 * Mark
 */
mark {
  background: #ffd;
  color: var(--base-color);
}
/*
 * Quote
 */
q {
  font-style: italic;
}
/*
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
 ========================================================================== */
/*
 * Remove the gap between embedded content and the bottom of their containers.
 */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}
/*
 * 1. Add responsiveness.
 * 2. Auto-scale the height. Only needed if `height` attribute is present.
 * 3. Corrects responsive `max-width` behavior if padding and border are used.
 * 4. Exclude SVGs for IE11 because they don't preserve their aspect ratio.
 */
canvas, img, video {
  /* 1 */
  max-width: 100%;
  /* 2 */
  height: auto;
  /* 3 */
  box-sizing: border-box;
}
/* 4 */
@supports (display: block) {
  svg {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}
/*
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/*
 * 1. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
 * 2. Hide `alt` text for lazy loading images.
 * Note: Selector for background while loading img[data-src*='.jpg'][src*='data:image'] { background: grey; }
 */
img:not([src]) {
  /* 1 */
  min-width: 1px;
  /* 2 */
  visibility: hidden;
}
/*
 * Iframe
 * Remove border in all browsers
 */
iframe {
  border: 0;
}
/* Block elements
 ========================================================================== */
/*
 * Margins
 */
p, ul, ol, dl, pre, address, fieldset, figure {
  margin: 0 0 var(--gap, 20px) 0;
}
/* Add margin if adjacent element */
* + p, * + ul, * + ol, * + dl, * + pre, * + address, * + fieldset, * + figure {
  margin-top: var(--gap, 20px);
}
p:last-child {
  margin-bottom: 0;
}
/* Headings
 ========================================================================== */
/* Add margin if adjacent element */
* + h1, * + .uk-h1, * + h2, * + .uk-h2, * + h3, * + .uk-h3, * + h4, * + .uk-h4, * + h5, * + .uk-h5, * + h6, * + .uk-h6, * + .uk-heading-small, * + .uk-heading-medium, * + .uk-heading-large, * + .uk-heading-xlarge, * + .uk-heading-2xlarge {
  margin-top: var(--gap-xl);
}
@media (max-width: 640px) {
  * + h1, * + .uk-h1, * + h2, * + .uk-h2, * + h3, * + .uk-h3, * + h4, * + .uk-h4, * + h5, * + .uk-h5, * + h6, * + .uk-h6, * + .uk-heading-small, * + .uk-heading-medium, * + .uk-heading-large, * + .uk-heading-xlarge, * + .uk-heading-2xlarge {
    margin-top: var(--gap-md);
  }
}
/* Lists
 ========================================================================== */
ul, ol {
  padding-left: 30px;
}
/*
 * Reset margin for nested lists
 */
ul > li > ul, ul > li > ol, ol > li > ol, ol > li > ul {
  margin: 0;
}
/* Description lists
 ========================================================================== */
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
/* Horizontal rules
 ========================================================================== */
/*
 * 1. Show the overflow in Chrome, Edge and IE.
 * 2. Add the correct text-align in Edge and IE.
 * 3. Style
 */
hr, .uk-hr {
  /* 1 */
  overflow: visible;
  /* 2 */
  text-align: inherit;
  /* 3 */
  margin: 0 0 var(--gap, 20px) 0;
  border: 0;
  border-top: 1px solid var(--base-border-color);
}
/* Add margin if adjacent element */
* + hr, * + .uk-hr {
  margin-top: var(--gap, 20px);
}
/* Address
 ========================================================================== */
address {
  font-style: normal;
}
/* Blockquotes
 ========================================================================== */
blockquote {
  margin: 0 0 var(--gap, 20px) 0;
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  color: #333;
}
/* Add margin if adjacent element */
* + blockquote {
  margin-top: var(--gap, 20px);
}
/*
 * Content
 */
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote footer {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--base-color);
}
blockquote footer::before {
  content: "— ";
}
/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 */
pre {
  font: 0.875rem / 1.5 Consolas, monaco, monospace;
  color: var(--base-color);
  -moz-tab-size: 4;
  tab-size: 4;
  /* 1 */
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--base-border-color);
  border-radius: 3px;
  background: var(--bg-default);
}
pre code {
  font-family: Consolas, monaco, monospace;
}
/* Selection pseudo-element
 ========================================================================== */
::selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}
/* HTML5 elements
 ========================================================================== */
/*
 * 1. Add the correct display in Edge, IE 10+, and Firefox.
 * 2. Add the correct display in IE.
 */
details, main {
  /* 1 */
  /* 2 */
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/*
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Pass media breakpoints to JS
 ========================================================================== */
/*
 * Breakpoints
 */
.uk-breakpoint-s::before {
  content: "640px";
}
.uk-breakpoint-m::before {
  content: "1024px";
}
.uk-breakpoint-l::before {
  content: "1240px";
}
.uk-breakpoint-xl::before {
  content: "1400px";
}
:root {
  --uk-breakpoint-s: 640px;
  --uk-breakpoint-m: 1024px;
  --uk-breakpoint-l: 1240px;
  --uk-breakpoint-xl: 1400px;
}
/* ========================================================================
   Component: Icon
 ========================================================================== */
/*
 * Note: 1. - 7. is required for `button` elements. Needed for Close and Form Icon component.
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Remove border-radius in Chrome.
 * 4. Address `overflow` set to `hidden` in IE.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 7. Remove default `button` padding and background color
 * 8. Style
 * 9. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 10. Let the container fit the height of the icon
 */
.uk-icon {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  border-radius: 0;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background-color: transparent;
  /* 8 */
  display: inline-block;
  /* 9 */
  fill: currentcolor;
  /* 10 */
  line-height: 0;
}
/* Required for `button`. */
button.uk-icon:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.uk-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Set the fill and stroke color of all SVG elements to the current text color
 */
.uk-icon:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
  fill: currentcolor;
}
.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-icon > * {
  transform: translate(0, 0);
}
/* Image modifier
 ========================================================================== */
/*
 * Display images in icon dimensions
 */
.uk-icon-image {
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.uk-icon-link {
  color: #999;
}
.uk-icon-link:hover, .uk-icon-link:focus {
  color: var(--base-color);
  outline: none;
}
/* OnClick + Active */
.uk-icon-link:active, .uk-active > .uk-icon-link {
  color: var(--base-color);
}
/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.uk-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: var(--bg-muted);
  color: #999;
  vertical-align: middle;
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/* Hover + Focus */
.uk-icon-button:hover, .uk-icon-button:focus {
  background-color: var(--bg-muted);
  color: var(--base-color);
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active, .uk-active > .uk-icon-button {
  background-color: var(--bg-muted);
  color: var(--base-color);
}
/* Подключать оформление checkbox и radio */
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers.
 */
.uk-input, .fw-control-input, .uk-select, .fw-control-select, .uk-textarea, .fw-control-textarea, .uk-radio, .uk-checkbox {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  /* 4 */
  font: inherit;
}
/*
 * Show the overflow in Edge.
 */
.uk-input, .fw-control-input {
  overflow: visible;
}
/*
 * Remove the inheritance of text transform in Firefox.
 */
.uk-select, .fw-control-select {
  text-transform: none;
}
/*
 * 1. Change font properties to `inherit` in all browsers
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.uk-select optgroup, .fw-control-select optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.uk-textarea, .fw-control-textarea {
  overflow: auto;
}
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.uk-input[type="search"]::-webkit-search-cancel-button, .fw-control-input[type="search"]::-webkit-search-cancel-button, .uk-input[type="search"]::-webkit-search-decoration, .fw-control-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.uk-input[type="number"]::-webkit-inner-spin-button, .fw-control-input[type="number"]::-webkit-inner-spin-button, .uk-input[type="number"]::-webkit-outer-spin-button, .fw-control-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-input::-moz-placeholder, .fw-control-input::-moz-placeholder, .uk-textarea::-moz-placeholder, .fw-control-textarea::-moz-placeholder {
  opacity: 1;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-radio:not(:disabled), .uk-checkbox:not(:disabled) {
  cursor: pointer;
}
/*
 * Define consistent border, margin, and padding.
 */
.uk-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
/*
 * Remove default style in iOS.
 */
.uk-input, .fw-control-input, .uk-textarea, .fw-control-textarea {
  -webkit-appearance: none;
}
/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.uk-input, .fw-control-input, .uk-select, .fw-control-select, .uk-textarea, .fw-control-textarea {
  max-width: 100%;
  width: 100%;
  display: block;
  border: 1px solid transparent;
  padding: 0 var(--control-px);
  color: var(--dark-color);
  background-color: var(--control-bg);
  border-radius: var(--control-border-radius);
  transition: 0.2s;
}
.uk-input, .fw-control-input, .uk-select:not([multiple]):not([size]), .fw-control-select:not([multiple]):not([size]) {
  padding: 0 var(--control-px);
  line-height: var(--control-line-height);
  vertical-align: middle;
}
.uk-textarea, .fw-control-textarea {
  padding: var(--control-px) var(--control-px) 15px;
  resize: none;
  vertical-align: top;
  height: 100px;
  box-sizing: border-box;
}
.uk-input:not(input), .fw-control-input:not(input), .uk-select:not(select), .fw-control-select:not(select) {
  line-height: calc(var(--control-line-height) + 2*var(--base-border-width)) - 2px;
}
.uk-select[multiple], .fw-control-select[multiple], .uk-select[size], .fw-control-select[size] {
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}
/* Hover */
.uk-input:hover, .fw-control-input:hover, .uk-select:hover, .fw-control-select:hover, .uk-textarea:hover, .fw-control-textarea:hover {
  border-color: var(--dark-color);
}
/* Focus */
.uk-input:focus, .fw-control-input:focus, .uk-select:focus, .fw-control-select:focus, .uk-textarea:focus, .fw-control-textarea:focus {
  outline: none;
  background-color: var(--control-bg);
  border-color: var(--dark-color);
}
/* Disabled */
.uk-input:disabled, .fw-control-input:disabled, .uk-select:disabled, .fw-control-select:disabled, .uk-textarea:disabled, .fw-control-textarea:disabled {
  background-color: var(--bg-muted);
  color: #999;
  border-color: var(--base-border-color);
}
/*
 * Placeholder
 */
.uk-input::-ms-input-placeholder, .fw-control-input::-ms-input-placeholder {
  color: #999 !important;
}
.uk-input::placeholder, .fw-control-input::placeholder {
  color: #999;
}
.uk-textarea::-ms-input-placeholder, .fw-control-textarea::-ms-input-placeholder {
  color: #999 !important;
}
.uk-textarea::placeholder, .fw-control-textarea::placeholder {
  color: #999;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Small
 */
.uk-form-small {
  font-size: 0.875rem;
}
.uk-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}
.uk-form-small:not(select):not(input):not(textarea) {
  line-height: 28px;
}
/*
 * Large
 */
.uk-form-large {
  font-size: 1rem;
}
.uk-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}
.uk-form-large:not(select):not(input):not(textarea) {
  line-height: 53px;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Error
 */
.uk-form-danger, .uk-form-danger:focus {
  color: #ff0d0d;
  border-color: #ff0d0d;
}
/*
 * Success
 */
.uk-form-success, .uk-form-success:focus {
  color: var(--success);
  border-color: var(--success);
}
/*
 * Blank
 */
.uk-form-blank {
  background: none;
  border-color: transparent;
}
.uk-form-blank:focus {
  border-color: var(--base-border-color);
  border-style: dashed;
}
/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-xsmall {
  width: 50px;
}
select.uk-form-width-xsmall {
  width: 75px;
}
.uk-form-width-small {
  width: 130px;
}
.uk-form-width-medium {
  width: 200px;
}
.uk-form-width-large {
  width: 500px;
}
/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Remove default style in IE 10/11
 * 4. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.uk-select:not([multiple]):not([size]), .fw-control-select:not([multiple]):not([size]) {
  /* 1 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 2 */
  padding-right: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22var(--base-color)%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22var(--base-color)%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
/* 3 */
.uk-select:not([multiple]):not([size])::-ms-expand, .fw-control-select:not([multiple]):not([size])::-ms-expand {
  display: none;
}
/* 4 */
.uk-select:not([multiple]):not([size]) option, .fw-control-select:not([multiple]):not([size]) option {
  color: #444;
}
/*
 * Disabled
 */
.uk-select:not([multiple]):not([size]):disabled, .fw-control-select:not([multiple]):not([size]):disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* Datalist
 ========================================================================== */
/*
 * 1. Remove default style in Chrome
 */
.uk-input[list], .fw-control-input[list] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.uk-input[list]:hover, .fw-control-input[list]:hover, .uk-input[list]:focus, .fw-control-input[list]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22var(--base-color)%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* 1 */
.uk-input[list]::-webkit-calendar-picker-indicator, .fw-control-input[list]::-webkit-calendar-picker-indicator {
  display: none;
}
/* Radio and checkbox
 * Note: Does not work in IE11
 ========================================================================== */
/*
 * 1. Style
 * 2. Make box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 * 6. Center icons
 */
/* Legend
 ========================================================================== */
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove padding so people aren't caught out if they zero out fieldsets.
 * 4. Style
 */
.uk-legend {
  /* 1 */
  width: 100%;
  /* 2 */
  color: inherit;
  /* 3 */
  padding: 0;
  /* 4 */
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Custom controls
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 */
.uk-form-custom {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
/*
 * 1. Position and resize the form control to always cover its container
 * 2. Required for Firefox for positioning to the left
 * 3. Required for Webkit to make `height` work
 * 4. Hide controle and show cursor
 * 5. Needed for the cursor
 * 6. Clip height caused by 5. Needed for Webkit only
 */
.uk-form-custom select, .uk-form-custom input[type="file"] {
  /* 1 */
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 2 */
  left: 0;
  /* 3 */
  -webkit-appearance: none;
  /* 4 */
  opacity: 0;
  cursor: pointer;
}
.uk-form-custom input[type="file"] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}
/* Label
 ========================================================================== */
.uk-form-label {
  color: #333;
  font-size: 0.875rem;
}
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
}
/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 1023px) {
  /* Behave like `uk-form-stacked` */
  .uk-form-horizontal .uk-form-label {
    display: block;
    margin-bottom: 5px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .uk-form-horizontal .uk-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }
  .uk-form-horizontal .uk-form-controls {
    margin-left: 215px;
  }
  .uk-form-horizontal .uk-form-controls-text {
    padding-top: 7px;
  }
}
/* Icons
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set width
 * 3. Center icon vertically and horizontally
 * 4. Style
 */
.uk-form-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: calc(var(--control-line-height) + 2*var(--base-border-width));
  /* 3 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 4 */
  color: #999;
}
/*
 * Required for `a`.
 */
.uk-form-icon:hover {
  color: var(--base-color);
}
/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.uk-form-icon:not(a):not(button):not(input) {
  pointer-events: none;
}
/*
 * Input padding
 */
.uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input, .uk-form-icon:not(.uk-form-icon-flip) ~ .fw-control-input {
  padding-left: calc(var(--control-line-height) + 2*var(--base-border-width)) !important;
}
/*
 * Position modifier
 */
.uk-form-icon-flip {
  right: 0;
  left: auto;
}
.uk-form-icon-flip ~ .uk-input, .uk-form-icon-flip ~ .fw-control-input {
  padding-right: calc(var(--control-line-height) + 2*var(--base-border-width)) !important;
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-close {
  color: #999;
  transition: 0.1s ease-in-out;
  transition-property: color, opacity;
}
.uk-close svg {
  width: 16px;
  height: 16px;
}
/* Hover + Focus */
.uk-close:hover, .uk-close:focus {
  color: var(--base-color);
  outline: none;
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
.uk-accordion {
  padding: 0;
  list-style: none;
}
/* Item
 ========================================================================== */
/* Title
 ========================================================================== */
.uk-accordion-title {
  display: block;
  color: var(--accent-color);
  cursor: pointer;
}
/* Hover + Focus */
.uk-accordion-title:hover, .uk-accordion-title:focus {
  color: var(--base-color);
  text-decoration: none;
  outline: none;
}
/* Content
 ========================================================================== */
.uk-accordion-content {
  display: flow-root;
  margin-top: var(--gap, 20px);
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1020;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.25);
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
.uk-modal.modal-primary .uk-modal-body {
  background-color: var(--primary);
}
.uk-modal.modal-primary [class*="uk-modal-close-"] {
  color: #fff;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-modal {
    padding: 50px 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Open
 */
.uk-modal.uk-open {
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-modal-page {
  overflow: hidden;
}
/* Dialog
 ========================================================================== */
/*
 * 1. Create position context for spinner and close button
 * 2. Dimensions
 * 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
 *    `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
 * 4. Style
 * 5. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: calc(100% - 0.01px) !important;
  /* 4 */
  /* 5 */
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s linear;
  transition-property: opacity, transform;
}
/*
 * Open
 */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}
/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.uk-modal-container .uk-modal-dialog {
  width: 1200px;
}
/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.uk-modal-full {
  padding: 0;
  background: none;
}
/* 2 */
.uk-modal-full .uk-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(0);
}
/* Sections
 ========================================================================== */
.uk-modal-body {
  display: flow-root;
  padding: 60px 60px;
  border-radius: var(--border-radius);
  background-color: #fff;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .uk-modal-body {
    padding: 76px 20px 20px;
    border-radius: var(--border-radius-xs);
  }
}
.uk-modal-header {
  display: flow-root;
  padding: 15px 30px;
  background: var(--bg-default);
  border-bottom: 1px solid var(--base-border-color);
}
.uk-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: var(--bg-default);
  border-top: 1px solid var(--base-border-color);
}
/*
 * Remove margin from the last-child
 */
.uk-modal-body > :last-child, .uk-modal-header > :last-child, .uk-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.uk-modal-title {
  font-size: var(--fs-h5);
  line-height: 1.3;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
[class*="uk-modal-close-"] {
  position: absolute;
  z-index: 1010;
  top: 31px;
  right: 30px;
  padding: 5px;
  color: var(--dark-color);
}
@media (max-width: 640px) {
  [class*="uk-modal-close-"] {
    top: 25px;
    right: 15px;
  }
}
/*
 * Remove margin from adjacent element
 */
[class*="uk-modal-close-"]:first-child + * {
  margin-top: 0;
}
/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 * 1. Prevent scrollbar on small devices
 */
.uk-modal-close-outside {
  top: 0;
  /* 1 */
  right: -5px;
  transform: translate(0, -100%);
  color: white;
}
.uk-modal-close-outside:hover {
  color: #fff;
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  /* 1 */
  .uk-modal-close-outside {
    right: 0;
    transform: translate(100%, -100%);
  }
}
/*
 * Full
 */
.uk-modal-close-full {
  top: 0;
  right: 0;
  padding: var(--gap, 20px);
  background: var(--bg-default);
}
@media (max-width: 450px) {
  .uk-modal {
    padding: 0 0;
    background-color: #fff;
  }
  .uk-modal.modal-primary {
    background-color: var(--primary);
  }
  .uk-modal-dialog.uk-margin-auto-vertical {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .uk-modal-body {
    border-radius: 0;
  }
}
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Container
 ========================================================================== */
/*
 * 1. Clip child elements
 */
.uk-slider-container {
  /* 1 */
  overflow: hidden;
}
/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 */
.uk-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
}
/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.uk-slider-items:not(.uk-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}
.uk-slider-items.uk-grid {
  flex-wrap: nowrap;
}
/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 * 2. Create position context
 * 3. Disable horizontal panning gestures in IE11 and Edge
 * 4. Suppress outline on focus
 */
.uk-slider-items > * {
  /* 1 */
  flex: none;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}
/* 4 */
.uk-slider-items > :focus {
  outline: none;
}
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Resolve frame rate issues on devices with lower frame rates by forcing hardware acceleration
 */
.uk-sticky-fixed {
  z-index: 980;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*
 * Faster animations
 */
.uk-sticky[class*="uk-animation-"] {
  animation-duration: 0.2s;
}
.uk-sticky.uk-animation-reverse {
  animation-duration: 0.2s;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1020;
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas {
  right: 0;
  left: auto;
}
/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 */
.uk-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  right: -426px;
  width: 426px;
  box-sizing: border-box;
  padding: var(--gap, 20px) var(--gap, 20px);
  background: var(--bg-muted);
  padding: var(--gap) var(--gap);
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* Tablet landscape and bigger */
@media (min-width: 1025px) {
  .uk-offcanvas-bar {
    right: -440px;
    width: 440px;
  }
}
/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: -426px;
}
/* Tablet landscape and bigger */
@media (min-width: 1025px) {
  .uk-offcanvas-flip .uk-offcanvas-bar {
    right: -440px;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .uk-offcanvas-bar {
    right: -100%;
    width: 100%;
  }
}
/*
 * Open
 */
.uk-open > .uk-offcanvas-bar {
  right: 0;
}
.uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
  left: auto;
  right: 0;
}
/*
 * Slide Animation (Used in slide and push mode)
 */
.uk-offcanvas-bar-animation {
  transition: right 0.3s ease-out;
}
.uk-offcanvas-flip .uk-offcanvas-bar-animation {
  transition-property: right;
}
/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset position
 */
.uk-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  transition: width 0.3s ease-out;
}
.uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: 0;
}
.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: auto;
  right: 0;
}
.uk-open > .uk-offcanvas-reveal {
  width: 426px;
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-open > .uk-offcanvas-reveal {
    width: 440px;
  }
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-offcanvas-close {
  color: var(--dark-color);
}
.uk-offcanvas-close:hover {
  color: var(--gray-color);
}
/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.uk-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}
/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.uk-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(100, 100, 100, 0.35);
  /* 2 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
.uk-offcanvas-overlay.uk-open::before {
  opacity: 1;
}
/* Prevent scrolling
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.uk-offcanvas-page, .uk-offcanvas-container {
  overflow-x: hidden;
}
/* Container
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * 1. Provide a fixed width and prevent shrinking
 */
.uk-offcanvas-container {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  box-sizing: border-box;
  width: 100%;
}
/*
 * Activate slide-out animation
 */
:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
  left: 426px;
}
.uk-offcanvas-flip.uk-offcanvas-container-animation {
  left: -426px;
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  :not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
    left: 440px;
  }
  .uk-offcanvas-flip.uk-offcanvas-container-animation {
    left: -440px;
  }
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * Reset list
 */
.uk-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Items
 ========================================================================== */
/*
 * Hide not active items
 */
.uk-switcher > :not(.uk-active) {
  display: none;
}
/*
 * Remove margin from the last-child
 */
.uk-switcher > * > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-thumbnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -15px;
}
/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.uk-thumbnav > * {
  /* 1 */
  padding-left: 15px;
}
/* Items
 ========================================================================== */
/*
 * Items
 */
.uk-thumbnav > * > * {
  display: inline-block;
  position: relative;
}
.uk-thumbnav > * > *::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-default);
  transition: background-color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-thumbnav > * > :hover, .uk-thumbnav > * > :focus {
  outline: none;
}
.uk-thumbnav > * > :hover::after, .uk-thumbnav > * > :focus::after {
  background-color: transparent;
}
/* Active */
.uk-thumbnav > .uk-active > *::after {
  background-color: transparent;
}
/* Modifier: 'uk-thumbnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-thumbnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -15px;
}
/* 2 */
.uk-thumbnav-vertical > * {
  padding-left: 0;
  padding-top: 15px;
}
/* ========================================================================
   Component: Iconnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-iconnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -10px;
}
/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.uk-iconnav > * {
  /* 1 */
  padding-left: 10px;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-iconnav > * > a {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
}
/* Hover + Focus */
.uk-iconnav > * > a:hover, .uk-iconnav > * > a:focus {
  color: var(--base-color);
  outline: none;
}
/* Active */
.uk-iconnav > .uk-active > a {
  color: var(--base-color);
}
/* Modifier: 'uk-iconnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-iconnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -10px;
}
/* 2 */
.uk-iconnav-vertical > * {
  padding-left: 0;
  padding-top: 10px;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.uk-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
.uk-text-meta a {
  color: #999;
}
.uk-text-meta a:hover {
  color: var(--base-color);
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
.uk-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}
.uk-text-default {
  font-size: 16px;
  line-height: 1.5;
}
/* Weight modifier
 ========================================================================== */
.uk-text-light {
  font-weight: 300;
}
.uk-text-normal {
  font-weight: 400;
}
.uk-text-bold {
  font-weight: 700;
}
.uk-text-lighter {
  font-weight: lighter;
}
.uk-text-bolder {
  font-weight: bolder;
}
/* Style modifier
 ========================================================================== */
.uk-text-italic {
  font-style: italic;
}
/* Transform modifier
 ========================================================================== */
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-uppercase {
  text-transform: uppercase !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #999 !important;
}
.uk-text-emphasis {
  color: #333 !important;
}
.uk-text-primary {
  color: var(--primary) !important;
}
.uk-text-secondary {
  color: var(--secondary) !important;
}
.uk-text-success {
  color: var(--success) !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-text-danger {
  color: #ff0d0d !important;
}
/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
 *    Default color is set to transparent
 * 2. Container fits the text
 * 3. Fallback color for IE11
 */
.uk-text-background {
  /* 1 */
  -webkit-background-clip: text;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: var(--primary) !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: var(--primary);
    color: transparent !important;
  }
}
/* Alignment modifiers
 ========================================================================== */
.uk-text-left {
  text-align: left !important;
}
.uk-text-right {
  text-align: right !important;
}
.uk-text-center {
  text-align: center !important;
}
.uk-text-justify {
  text-align: justify !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-text-left\@s {
    text-align: left !important;
  }
  .uk-text-right\@s {
    text-align: right !important;
  }
  .uk-text-center\@s {
    text-align: center !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-text-left\@m {
    text-align: left !important;
  }
  .uk-text-right\@m {
    text-align: right !important;
  }
  .uk-text-center\@m {
    text-align: center !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-text-left\@l {
    text-align: left !important;
  }
  .uk-text-right\@l {
    text-align: right !important;
  }
  .uk-text-center\@l {
    text-align: center !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1400px) {
  .uk-text-left\@xl {
    text-align: left !important;
  }
  .uk-text-right\@xl {
    text-align: right !important;
  }
  .uk-text-center\@xl {
    text-align: center !important;
  }
}
/*
 * Vertical
 */
.uk-text-top {
  vertical-align: top !important;
}
.uk-text-middle {
  vertical-align: middle !important;
}
.uk-text-bottom {
  vertical-align: bottom !important;
}
.uk-text-baseline {
  vertical-align: baseline !important;
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.uk-text-nowrap {
  white-space: nowrap;
}
/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.uk-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 2 */
th.uk-text-truncate, td.uk-text-truncate {
  max-width: 0;
}
/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 * Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
 */
.uk-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
}
/* 3 */
th.uk-text-break, td.uk-text-break {
  word-break: break-all;
}
/* ========================================================================
   Component: Column
 ========================================================================== */
[class*="uk-column-"] {
  column-gap: 30px;
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  [class*="uk-column-"] {
    column-gap: 40px;
  }
}
/*
 * Fix image 1px line wrapping into the next column in Chrome
 */
[class*="uk-column-"] img {
  transform: translate3d(0, 0, 0);
}
/* Divider
 ========================================================================== */
/*
 * 1. Double the column gap
 */
.uk-column-divider {
  column-rule: 1px solid var(--base-border-color);
  /* 1 */
  column-gap: 60px;
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-column-divider {
    column-gap: 80px;
  }
}
/* Width modifiers
 ========================================================================== */
.uk-column-1-2 {
  column-count: 2;
}
.uk-column-1-3 {
  column-count: 3;
}
.uk-column-1-4 {
  column-count: 4;
}
.uk-column-1-5 {
  column-count: 5;
}
.uk-column-1-6 {
  column-count: 6;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-column-1-2\@s {
    column-count: 2;
  }
  .uk-column-1-3\@s {
    column-count: 3;
  }
  .uk-column-1-4\@s {
    column-count: 4;
  }
  .uk-column-1-5\@s {
    column-count: 5;
  }
  .uk-column-1-6\@s {
    column-count: 6;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-column-1-2\@m {
    column-count: 2;
  }
  .uk-column-1-3\@m {
    column-count: 3;
  }
  .uk-column-1-4\@m {
    column-count: 4;
  }
  .uk-column-1-5\@m {
    column-count: 5;
  }
  .uk-column-1-6\@m {
    column-count: 6;
  }
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-column-1-2\@l {
    column-count: 2;
  }
  .uk-column-1-3\@l {
    column-count: 3;
  }
  .uk-column-1-4\@l {
    column-count: 4;
  }
  .uk-column-1-5\@l {
    column-count: 5;
  }
  .uk-column-1-6\@l {
    column-count: 6;
  }
}
/* Large screen and bigger */
@media (min-width: 1400px) {
  .uk-column-1-2\@xl {
    column-count: 2;
  }
  .uk-column-1-3\@xl {
    column-count: 3;
  }
  .uk-column-1-4\@xl {
    column-count: 4;
  }
  .uk-column-1-5\@xl {
    column-count: 5;
  }
  .uk-column-1-6\@xl {
    column-count: 6;
  }
}
/* Make element span across all columns
 * Does not work in Firefox yet
 ========================================================================== */
.uk-column-span {
  column-span: all;
}
/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*="uk-align"] {
  display: block;
  margin-bottom: 30px;
}
* + [class*="uk-align"] {
  margin-top: 30px;
}
/*
 * Center
 */
.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}
/*
 * Left/Right
 */
.uk-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}
.uk-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-align-left\@l {
    margin-top: 0;
    float: left;
  }
  .uk-align-right\@l {
    margin-top: 0;
    float: right;
  }
  .uk-align-left, .uk-align-left\@s, .uk-align-left\@m, .uk-align-left\@l {
    margin-right: 40px;
  }
  .uk-align-right, .uk-align-right\@s, .uk-align-right\@m, .uk-align-right\@l {
    margin-left: 40px;
  }
}
/* Large screen and bigger */
@media (min-width: 1400px) {
  .uk-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }
  .uk-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}
/* ========================================================================
   Component: SVG
 ========================================================================== */
/*
 * 1. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 2. Set the fill and stroke color of all SVG elements to the current text color
 */
/* 1 */
.uk-svg, .uk-svg:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
  /* 2 */
  fill: currentcolor;
}
.uk-svg:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-svg {
  transform: translate(0, 0);
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.uk-panel {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
}
/*
 * Remove margin from the last-child
 */
.uk-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.uk-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid var(--base-border-color);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.uk-clearfix::before {
  content: "";
  display: table-cell;
}
/* 2 */
.uk-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.uk-float-left {
  float: left;
}
.uk-float-right {
  float: right;
}
/* 1 */
[class*="uk-float-"] {
  max-width: 100%;
}
/* Overfow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 * Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
 */
.uk-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.uk-overflow-auto > :last-child {
  margin-bottom: 0;
}
/* Resize
 ========================================================================== */
.uk-resize {
  resize: both;
}
.uk-resize-vertical {
  resize: vertical;
}
/* Display
 ========================================================================== */
.uk-display-block {
  display: block !important;
}
.uk-display-inline {
  display: inline !important;
}
.uk-display-inline-block {
  display: inline-block !important;
}
/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force hardware acceleration without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*="uk-inline"] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}
.uk-inline-clip {
  /* 6 */
  overflow: hidden;
}
/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.uk-preserve-width, .uk-preserve-width canvas, .uk-preserve-width img, .uk-preserve-width svg, .uk-preserve-width video {
  max-width: none;
}
/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width, .uk-responsive-height {
  box-sizing: border-box;
}
/*
 * 1. Set a maximum width. `important` needed to override `uk-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.uk-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}
/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.uk-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}
/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}
.uk-border-pill {
  border-radius: 500px;
}
.uk-border-rounded {
  border-radius: 5px;
}
/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.uk-inline-clip[class*="uk-border-"] {
  -webkit-transform: translateZ(0);
}
/* Box-shadow
 ========================================================================== */
.uk-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/*
 * Hover
 */
[class*="uk-box-shadow-hover"] {
  transition: box-shadow 0.1s ease-in-out;
}
.uk-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports (filter: blur(0)) {
  .uk-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }
  .uk-box-shadow-bottom::before {
    content: "";
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
  }
  /* 3 */
  .uk-box-shadow-bottom > * {
    position: relative;
  }
}
/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 * 3. Caused by 1.: Edge creates two nested `::first-letter` containers, one for each selector
 *    This doubles the `font-size` exponential when using the `em` unit.
 */
.uk-dropcap::first-letter, .uk-dropcap > p:first-of-type::first-letter {
  /* 1 */
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
  margin-bottom: -2px;
}
/* 2 */
@-moz-document url-prefix() {
  .uk-dropcap::first-letter, .uk-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}
/* 3 */
@supports (-ms-ime-align: auto) {
  .uk-dropcap > p:first-of-type::first-letter {
    font-size: 1em;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.uk-logo {
  font-size: 1.5rem;
  font-family: var(--base-font-family);
  color: var(--base-color);
  /* 1 */
  text-decoration: none;
}
/* Hover + Focus */
.uk-logo:hover, .uk-logo:focus {
  color: var(--base-color);
  outline: none;
  /* 1 */
  text-decoration: none;
}
.uk-logo-inverse {
  display: none;
}
/* Disabled State
 ========================================================================== */
.uk-disabled {
  pointer-events: none;
}
/* Drag State
 ========================================================================== */
/*
 * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
 * 2. Fix dragging over iframes
 */
.uk-drag, .uk-drag * {
  /* 1 */
  cursor: move;
}
/* 2 */
.uk-drag iframe {
  pointer-events: none;
}
/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
/* Blend modes
 ========================================================================== */
.uk-blend-multiply {
  mix-blend-mode: multiply;
}
.uk-blend-screen {
  mix-blend-mode: screen;
}
.uk-blend-overlay {
  mix-blend-mode: overlay;
}
.uk-blend-darken {
  mix-blend-mode: darken;
}
.uk-blend-lighten {
  mix-blend-mode: lighten;
}
.uk-blend-color-dodge {
  mix-blend-mode: color-dodge;
}
.uk-blend-color-burn {
  mix-blend-mode: color-burn;
}
.uk-blend-hard-light {
  mix-blend-mode: hard-light;
}
.uk-blend-soft-light {
  mix-blend-mode: soft-light;
}
.uk-blend-difference {
  mix-blend-mode: difference;
}
.uk-blend-exclusion {
  mix-blend-mode: exclusion;
}
.uk-blend-hue {
  mix-blend-mode: hue;
}
.uk-blend-saturation {
  mix-blend-mode: saturation;
}
.uk-blend-color {
  mix-blend-mode: color;
}
.uk-blend-luminosity {
  mix-blend-mode: luminosity;
}
/* Transform
========================================================================== */
.uk-transform-center {
  transform: translate(-50%, -50%);
}
/* Transform Origin
========================================================================== */
.uk-transform-origin-top-left {
  transform-origin: 0 0;
}
.uk-transform-origin-top-center {
  transform-origin: 50% 0;
}
.uk-transform-origin-top-right {
  transform-origin: 100% 0;
}
.uk-transform-origin-center-left {
  transform-origin: 0 50%;
}
.uk-transform-origin-center-right {
  transform-origin: 100% 50%;
}
.uk-transform-origin-bottom-left {
  transform-origin: 0 100%;
}
.uk-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}
.uk-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: flex;
}
.uk-flex-inline {
  display: inline-flex;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.uk-flex::before, .uk-flex::after, .uk-flex-inline::before, .uk-flex-inline::after {
  display: none;
}
/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.uk-flex-left {
  justify-content: flex-start;
}
.uk-flex-center {
  justify-content: center;
}
.uk-flex-right {
  justify-content: flex-end;
}
.uk-flex-between {
  justify-content: space-between;
}
.uk-flex-around {
  justify-content: space-around;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-left\@s {
    justify-content: flex-start;
  }
  .uk-flex-center\@s {
    justify-content: center;
  }
  .uk-flex-right\@s {
    justify-content: flex-end;
  }
  .uk-flex-between\@s {
    justify-content: space-between;
  }
  .uk-flex-around\@s {
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-flex-left\@m {
    justify-content: flex-start;
  }
  .uk-flex-center\@m {
    justify-content: center;
  }
  .uk-flex-right\@m {
    justify-content: flex-end;
  }
  .uk-flex-between\@m {
    justify-content: space-between;
  }
  .uk-flex-around\@m {
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-flex-left\@l {
    justify-content: flex-start;
  }
  .uk-flex-center\@l {
    justify-content: center;
  }
  .uk-flex-right\@l {
    justify-content: flex-end;
  }
  .uk-flex-between\@l {
    justify-content: space-between;
  }
  .uk-flex-around\@l {
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1400px) {
  .uk-flex-left\@xl {
    justify-content: flex-start;
  }
  .uk-flex-center\@xl {
    justify-content: center;
  }
  .uk-flex-right\@xl {
    justify-content: flex-end;
  }
  .uk-flex-between\@xl {
    justify-content: space-between;
  }
  .uk-flex-around\@xl {
    justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.uk-flex-stretch {
  align-items: stretch;
}
.uk-flex-top {
  align-items: flex-start;
}
.uk-flex-middle {
  align-items: center;
}
.uk-flex-bottom {
  align-items: flex-end;
}
/* Direction
 ========================================================================== */
.uk-flex-row {
  flex-direction: row;
}
.uk-flex-row-reverse {
  flex-direction: row-reverse;
}
.uk-flex-column {
  flex-direction: column;
}
.uk-flex-column-reverse {
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.uk-flex-wrap-stretch {
  align-content: stretch;
}
.uk-flex-wrap-top {
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  align-content: center;
}
.uk-flex-wrap-bottom {
  align-content: flex-end;
}
.uk-flex-wrap-between {
  align-content: space-between;
}
.uk-flex-wrap-around {
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-first {
  order: -1;
}
.uk-flex-last {
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-first\@s {
    order: -1;
  }
  .uk-flex-last\@s {
    order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-flex-first\@m {
    order: -1;
  }
  .uk-flex-last\@m {
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-flex-first\@l {
    order: -1;
  }
  .uk-flex-last\@l {
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1400px) {
  .uk-flex-first\@xl {
    order: -1;
  }
  .uk-flex-last\@xl {
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-none {
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.uk-flex-auto {
  flex: auto;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-1 {
  flex: 1;
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.uk-margin {
  margin-bottom: var(--gap, 20px);
}
* + .uk-margin {
  margin-top: var(--gap, 20px) !important;
}
.uk-margin-top {
  margin-top: var(--gap, 20px) !important;
}
.uk-margin-bottom {
  margin-bottom: var(--gap, 20px) !important;
}
.uk-margin-left {
  margin-left: var(--gap, 20px) !important;
}
.uk-margin-right {
  margin-right: var(--gap, 20px) !important;
}
/* Small
 ========================================================================== */
.uk-margin-small {
  margin-bottom: 10px;
}
* + .uk-margin-small {
  margin-top: 10px !important;
}
.uk-margin-small-top {
  margin-top: 10px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 10px !important;
}
.uk-margin-small-left {
  margin-left: 10px !important;
}
.uk-margin-small-right {
  margin-right: 10px !important;
}
/* Medium
 ========================================================================== */
.uk-margin-medium {
  margin-bottom: 40px;
}
* + .uk-margin-medium {
  margin-top: 40px !important;
}
.uk-margin-medium-top {
  margin-top: 40px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 40px !important;
}
.uk-margin-medium-left {
  margin-left: 40px !important;
}
.uk-margin-medium-right {
  margin-right: 40px !important;
}
/* Large
 ========================================================================== */
.uk-margin-large {
  margin-bottom: 40px;
}
* + .uk-margin-large {
  margin-top: 40px !important;
}
.uk-margin-large-top {
  margin-top: 40px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 40px !important;
}
.uk-margin-large-left {
  margin-left: 40px !important;
}
.uk-margin-large-right {
  margin-right: 40px !important;
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-margin-large {
    margin-bottom: 60px;
  }
  * + .uk-margin-large {
    margin-top: 60px !important;
  }
  .uk-margin-large-top {
    margin-top: 60px !important;
  }
  .uk-margin-large-bottom {
    margin-bottom: 60px !important;
  }
  .uk-margin-large-left {
    margin-left: 60px !important;
  }
  .uk-margin-large-right {
    margin-right: 60px !important;
  }
}
/* XLarge
 ========================================================================== */
.uk-margin-xlarge {
  margin-bottom: 60px;
}
* + .uk-margin-xlarge {
  margin-top: 60px !important;
}
.uk-margin-xlarge-top {
  margin-top: 60px !important;
}
.uk-margin-xlarge-bottom {
  margin-bottom: 60px !important;
}
.uk-margin-xlarge-left {
  margin-left: 60px !important;
}
.uk-margin-xlarge-right {
  margin-right: 60px !important;
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-margin-xlarge {
    margin-bottom: 140px;
  }
  * + .uk-margin-xlarge {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-top {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }
  .uk-margin-xlarge-left {
    margin-left: 140px !important;
  }
  .uk-margin-xlarge-right {
    margin-right: 140px !important;
  }
}
/* Auto
 ========================================================================== */
.uk-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.uk-margin-auto-top {
  margin-top: auto !important;
}
.uk-margin-auto-bottom {
  margin-bottom: auto !important;
}
.uk-margin-auto-left {
  margin-left: auto !important;
}
.uk-margin-auto-right {
  margin-right: auto !important;
}
.uk-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-auto\@s {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@s {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@s {
    margin-right: auto !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-margin-auto\@m {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@m {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@m {
    margin-right: auto !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-margin-auto\@l {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@l {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@l {
    margin-right: auto !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1400px) {
  .uk-margin-auto\@xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@xl {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@xl {
    margin-right: auto !important;
  }
}
/* Remove
 ========================================================================== */
.uk-margin-remove {
  margin: 0 !important;
  color: white;
}
.uk-margin-remove-dark {
  margin: 0 !important;
  color: black;
}
.uk-margin-remove-top {
  margin-top: 0 !important;
}
.uk-margin-remove-bottom {
  margin-bottom: 0 !important;
}
.uk-margin-remove-left {
  margin-left: 0 !important;
}
.uk-margin-remove-right {
  margin-right: 0 !important;
}
.uk-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.uk-margin-remove-adjacent + *, .uk-margin-remove-first-child > :first-child {
  margin-top: 0 !important;
}
.uk-margin-remove-last-child > :last-child {
  margin-bottom: 0 !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-remove-left\@s {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@s {
    margin-right: 0 !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-margin-remove-left\@m {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-margin-remove-left\@l {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@l {
    margin-right: 0 !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1400px) {
  .uk-margin-remove-left\@xl {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@xl {
    margin-right: 0 !important;
  }
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.uk-padding {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.uk-padding-small {
  padding: var(--gap);
}
/* Large
 ========================================================================== */
.uk-padding-large {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1240px) {
  .uk-padding-large {
    padding: 70px;
  }
}
/* Remove
 ========================================================================== */
.uk-padding-remove {
  padding: 0 !important;
}
.uk-padding-remove-top {
  padding-top: 0 !important;
}
.uk-padding-remove-bottom {
  padding-bottom: 0 !important;
}
.uk-padding-remove-left {
  padding-left: 0 !important;
}
.uk-padding-remove-right {
  padding-right: 0 !important;
}
.uk-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.uk-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* ========================================================================
   Component: Inverse
 ========================================================================== */
/*
 * Implemented class depends on the general theme color
 * `uk-light` is for light colors on dark backgrounds
 * `uk-dark` is or dark colors on light backgrounds
 */
.uk-light {
  color: #fff;
}
.uk-light a, .uk-light .uk-link {
  color: #fff;
}
.uk-light a:hover, .uk-light .uk-link:hover {
  color: #fff;
}
.uk-light :not(pre) > code, .uk-light :not(pre) > kbd, .uk-light :not(pre) > samp {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.uk-light em {
  color: #fff;
}
.uk-light h1, .uk-light .uk-h1, .uk-light h2, .uk-light .uk-h2, .uk-light h3, .uk-light .uk-h3, .uk-light h4, .uk-light .uk-h4, .uk-light h5, .uk-light .uk-h5, .uk-light h6, .uk-light .uk-h6, .uk-light .uk-heading-small, .uk-light .uk-heading-medium, .uk-light .uk-heading-large, .uk-light .uk-heading-xlarge, .uk-light .uk-heading-2xlarge {
  color: #fff;
}
.uk-light blockquote {
  color: #fff;
}
.uk-light blockquote footer {
  color: #fff;
}
.uk-light hr, .uk-light .uk-hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light a.uk-link-muted, .uk-light .uk-link-muted a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light a.uk-link-muted:hover, .uk-light .uk-link-muted a:hover, .uk-light .uk-link-toggle:hover .uk-link-muted, .uk-light .uk-link-toggle:focus .uk-link-muted {
  color: #fff;
}
.uk-light a.uk-link-text:hover, .uk-light .uk-link-text a:hover, .uk-light .uk-link-toggle:hover .uk-link-text, .uk-light .uk-link-toggle:focus .uk-link-text {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light a.uk-link-heading:hover, .uk-light .uk-link-heading a:hover, .uk-light .uk-link-toggle:hover .uk-link-heading, .uk-light .uk-link-toggle:focus .uk-link-heading {
  color: #fff;
}
.uk-light .uk-heading-divider {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-heading-bullet::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-heading-line > ::before, .uk-light .uk-heading-line > ::after {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22rgba(255, 255, 255, 0.2)%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-divider-icon::before, .uk-light .uk-divider-icon::after {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-small::after {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-vertical {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-muted > ::before {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-list-emphasis > ::before {
  color: #fff !important;
}
.uk-light .uk-list-primary > ::before {
  color: #fff !important;
}
.uk-light .uk-list-secondary > ::before {
  color: #fff !important;
}
.uk-light .uk-list-bullet > ::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22white%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-list-divider > :nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-striped > *:nth-of-type(odd) {
  border-top-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-striped > :nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.uk-light .uk-icon-link {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-icon-link:hover, .uk-light .uk-icon-link:focus {
  color: #fff;
}
.uk-light .uk-icon-link:active, .uk-light .uk-active > .uk-icon-link {
  color: #fff;
}
.uk-light .uk-icon-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-icon-button:hover, .uk-light .uk-icon-button:focus {
  background-color: rgba(242, 242, 242, 0.1);
  color: #fff;
}
.uk-light .uk-icon-button:active {
  background-color: rgba(230, 230, 230, 0.1);
  color: #fff;
}
.uk-light .uk-input, .uk-light .fw-control-input, .uk-light .uk-select, .uk-light .fw-control-select, .uk-light .uk-textarea, .uk-light .fw-control-textarea {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  background-clip: padding-box;
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-input:focus, .uk-light .fw-control-input:focus, .uk-light .uk-select:focus, .uk-light .fw-control-select:focus, .uk-light .uk-textarea:focus, .uk-light .fw-control-textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-input::-ms-input-placeholder, .uk-light .fw-control-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-input::placeholder, .uk-light .fw-control-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-textarea::-ms-input-placeholder, .uk-light .fw-control-textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-textarea::placeholder, .uk-light .fw-control-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-select:not([multiple]):not([size]), .uk-light .fw-control-select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22white%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22white%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-input[list]:hover, .uk-light .fw-control-input[list]:hover, .uk-light .uk-input[list]:focus, .uk-light .fw-control-input[list]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22white%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-radio, .uk-light .uk-checkbox {
  background-color: rgba(242, 242, 242, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-radio:focus, .uk-light .uk-checkbox:focus {
  border-color: #fff;
}
.uk-light .uk-radio:checked, .uk-light .uk-checkbox:checked, .uk-light .uk-checkbox:indeterminate {
  background-color: #fff;
  border-color: #fff;
}
.uk-light .uk-radio:checked:focus, .uk-light .uk-checkbox:checked:focus, .uk-light .uk-checkbox:indeterminate:focus {
  background-color: #e6e6e6;
}
.uk-light .uk-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22var(--base-color)%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22var(--base-color)%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22var(--base-color)%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-form-label {
  color: #fff;
}
.uk-light .uk-form-icon {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-form-icon:hover {
  color: #fff;
}
.uk-light .uk-button-default {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-default:hover, .uk-light .uk-button-default:focus {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-default:active, .uk-light .uk-button-default.uk-active {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-primary {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-button-primary:hover, .uk-light .uk-button-primary:focus {
  background-color: #f2f2f2;
  color: var(--base-color);
}
.uk-light .uk-button-primary:active, .uk-light .uk-button-primary.uk-active {
  background-color: #e6e6e6;
  color: var(--base-color);
}
.uk-light .uk-button-secondary {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-button-secondary:hover, .uk-light .uk-button-secondary:focus {
  background-color: #f2f2f2;
  color: var(--base-color);
}
.uk-light .uk-button-secondary:active, .uk-light .uk-button-secondary.uk-active {
  background-color: #e6e6e6;
  color: var(--base-color);
}
.uk-light .uk-button-text {
  color: #fff;
}
.uk-light .uk-button-text::before {
  border-bottom-color: #fff;
}
.uk-light .uk-button-text:hover, .uk-light .uk-button-text:focus {
  color: #fff;
}
.uk-light .uk-button-text:disabled {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-button-link {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-button-link:hover, .uk-light .uk-button-link:focus {
  color: #fff;
}
.uk-light .uk-grid-divider > :not(.uk-first-column)::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-close {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-close:hover, .uk-light .uk-close:focus {
  color: #fff;
}
.uk-light .uk-totop {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-totop:hover, .uk-light .uk-totop:focus {
  color: #fff;
}
.uk-light .uk-totop:active {
  color: #fff;
}
.uk-light .uk-badge {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-badge:hover, .uk-light .uk-badge:focus {
  color: var(--base-color);
}
.uk-light .uk-label {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-article-meta {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-input {
  color: #fff;
}
.uk-light .uk-search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search .uk-search-icon {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search .uk-search-icon:hover {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-default .uk-search-input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-search-default .uk-search-input:focus {
  background-color: transparent;
}
.uk-light .uk-search-navbar .uk-search-input {
  background-color: transparent;
}
.uk-light .uk-search-large .uk-search-input {
  background-color: transparent;
}
.uk-light .uk-search-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-toggle:hover, .uk-light .uk-search-toggle:focus {
  color: #fff;
}
.uk-light .uk-nav-parent-icon > .uk-parent > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-nav-default > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-default > li > a:hover, .uk-light .uk-nav-default > li > a:focus {
  color: #fff;
}
.uk-light .uk-nav-default > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-default .uk-nav-sub a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-default .uk-nav-sub a:hover, .uk-light .uk-nav-default .uk-nav-sub a:focus {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-primary > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-primary > li > a:hover, .uk-light .uk-nav-primary > li > a:focus {
  color: #fff;
}
.uk-light .uk-nav-primary > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-primary .uk-nav-sub a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-primary .uk-nav-sub a:hover, .uk-light .uk-nav-primary .uk-nav-sub a:focus {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-navbar-nav > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-navbar-nav > li:hover > a, .uk-light .uk-navbar-nav > li > a:focus, .uk-light .uk-navbar-nav > li > a.uk-open {
  color: #fff;
}
.uk-light .uk-navbar-nav > li > a:active {
  color: #fff;
}
.uk-light .uk-navbar-nav > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-navbar-item {
  color: #fff;
}
.uk-light .uk-navbar-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-navbar-toggle:hover, .uk-light .uk-navbar-toggle:focus, .uk-light .uk-navbar-toggle.uk-open {
  color: #fff;
}
.uk-light .uk-subnav > * > :first-child {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-subnav > * > a:hover, .uk-light .uk-subnav > * > a:focus {
  color: #fff;
}
.uk-light .uk-subnav > .uk-active > a {
  color: #fff;
}
.uk-light .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-subnav-pill > * > :first-child {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-subnav-pill > * > a:hover, .uk-light .uk-subnav-pill > * > a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.uk-light .uk-subnav-pill > * > a:active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.uk-light .uk-subnav-pill > .uk-active > a {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-subnav > .uk-disabled > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-breadcrumb > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-breadcrumb > * > :hover, .uk-light .uk-breadcrumb > * > :focus {
  color: #fff;
}
.uk-light .uk-breadcrumb > :last-child > * {
  color: #fff;
}
.uk-light .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-pagination > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-pagination > * > :hover, .uk-light .uk-pagination > * > :focus {
  color: #fff;
}
.uk-light .uk-pagination > .uk-active > * {
  color: #fff;
}
.uk-light .uk-pagination > .uk-disabled > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-tab::before {
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-tab > * > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-tab > * > a:hover, .uk-light .uk-tab > * > a:focus {
  color: #fff;
}
.uk-light .uk-tab > .uk-active > a {
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-tab > .uk-disabled > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-slidenav {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-slidenav:hover, .uk-light .uk-slidenav:focus {
  color: rgba(255, 255, 255, 0.95);
}
.uk-light .uk-slidenav:active {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-dotnav > * > * {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.9);
}
.uk-light .uk-dotnav > * > :hover, .uk-light .uk-dotnav > * > :focus {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}
.uk-light .uk-dotnav > * > :active {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
}
.uk-light .uk-dotnav > .uk-active > * {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}
.uk-light .uk-accordion-title::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' data-svg='chevron-down'%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='1.03' points='16 7 10 13 4 7'%3E%3C/polyline%3E%3C/svg%3E");
}
.uk-light .uk-open > .uk-accordion-title::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22white%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-iconnav > * > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-iconnav > * > a:hover, .uk-light .uk-iconnav > * > a:focus {
  color: #fff;
}
.uk-light .uk-iconnav > .uk-active > a {
  color: #fff;
}
.uk-light .uk-text-lead {
  color: #fff;
}
.uk-light .uk-text-meta {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-text-emphasis {
  color: #fff !important;
}
.uk-light .uk-text-primary {
  color: #fff !important;
}
.uk-light .uk-text-secondary {
  color: #fff !important;
}
.uk-light .uk-column-divider {
  column-rule-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-logo {
  color: #fff;
}
.uk-light .uk-logo:hover, .uk-light .uk-logo:focus {
  color: #fff;
}
.uk-light .uk-logo > :not(.uk-logo-inverse):not(:only-of-type) {
  display: none;
}
.uk-light .uk-logo-inverse {
  display: inline;
}
/*
// Base
@import "variables.scss";
@import "base.scss";

// Elements
@import "link.scss";
//@import "heading.scss";
@import "divider.scss";
@import "list.scss";
//@import "description-list.scss";
@import "table.scss";
@import "icon.scss";
@import "form-range.scss";
@import "form.scss";
//@import "button.scss";

// Layout
@import "section.scss";
@import "container.scss"; */
/*
 * xSmall
 */
/* Horizontal */
.uk-grid-xsmall, .uk-grid-column-xsmall {
  margin-left: -5px;
}
.uk-grid-xsmall > *, .uk-grid-column-xsmall > * {
  padding-left: 5px;
}
/* Vertical */
.uk-grid + .uk-grid-xsmall, .uk-grid + .uk-grid-row-xsmall, .uk-grid-xsmall > .uk-grid-margin, .uk-grid-row-xsmall > .uk-grid-margin, * + .uk-grid-margin-xsmall {
  margin-top: 5px;
}
/*
//@import "tile.scss";
@import "card.scss";

// Common
@import "close.scss";
@import "spinner.scss";
@import "marker.scss";
@import "totop.scss";
@import "alert.scss";
//@import "badge.scss";
@import "label.scss";
@import "overlay.scss";
@import "article.scss";
@import "comment.scss";
@import "search.scss";

// Navs
@import "nav.scss";
@import "navbar.scss";
//@import "subnav.scss";
@import "breadcrumb.scss";
@import "pagination.scss";
@import "tab.scss";
@import "slidenav.scss";
@import "dotnav.scss";
@import "thumbnav.scss";

// JavaScript
@import "accordion.scss";
@import "drop.scss";
@import "dropdown.scss";
@import "modal.scss";
@import "lightbox.scss";
@import "sticky.scss";
@import "offcanvas.scss";
@import "leader.scss";

// Additional
//@import "iconnav.scss";
@import "notification.scss";
//@import "tooltip.scss";
@import "placeholder.scss";
@import "progress.scss";
//@import "sortable.scss";
@import "countdown.scss";

// Utilities
@import "animation.scss";
@import "width.scss";
@import "height.scss";
@import "text.scss";
@import "column.scss";
@import "background.scss";
@import "align.scss";
@import "utility.scss";
@import "margin.scss";
@import "padding.scss";
@import "position.scss";
@import "transition.scss";
@import "inverse.scss";

*/
.fw-link-dg {
  color: var(--dark-color);
  cursor: pointer;
  transition: 0.1s;
}
.fw-link-dg:hover {
  color: var(--gray-color);
}
.fw-bredcrumb-section {
  padding-top: 14px;
  padding-bottom: var(--gap-md);
}
.fw-bredcrumb-abs {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 10;
}
.bc-page .fw-bredcrumb-abs {
  top: 140px;
}
@media (max-width: 640px) {
  .bc-page .fw-bredcrumb-abs {
    top: 106px;
  }
}
@media (max-width: 1240px) {
  .uk-section.section-collapse-mobile {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .uk-container.container-expand-mobile {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .fw-bredcrumb-abs {
    top: 92px;
  }
}
.banner-bg-page .uk-section, .banner-bg-page .fw-footer {
  position: relative;
  z-index: 1;
}
.fw-work {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: var(--gap-md) var(--gap);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
  align-items: flex-start;
}
.fw-work__text {
  color: var(--dark-color);
}
@media (max-width: 640px) {
  .fw-work {
    padding: var(--gap) var(--gap);
  }
}
* + .fw-features-block {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  * + .fw-features-block {
    margin-top: var(--gap-lg);
  }
}
.fw-feature {
  background-color: var(--violet);
  border-radius: var(--border-radius);
  padding: 45px var(--gap-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  color: white;
}
.fw-feature-primary-light {
  background-color: var(--bg-muted);
}
.fw-feature-secondary {
  background-color: var(--overlay-banner-bg);
}
.fw-feature-column {
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
}
.fw-feature__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}
.fw-feature__content .title {
  font-family: var(--base-font-family);
  margin-bottom: 14px;
}
.fw-feature__content .text {
  font-family: var(--text-font-family);
  margin-bottom: auto;
  color: #FFFFFF;
}
.fw-feature__content .btn {
  margin-top: var(--gap-lg);
}
@media (min-width: 641px) {
  .fw-feature.pr-100 {
    padding-right: 100px;
  }
  .fw-feature__content {
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .fw-feature {
    padding: 35px var(--gap-md);
  }
  .fw-feature .text {
    font-family: var(--text-font-family);
    font-size: var(--fs-small);
    color: white;
  }
}
@media (max-width: 640px) {
  .fw-feature {
    padding: 25px var(--gap);
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }
  .fw-feature__content .btn {
    margin-top: var(--gap);
  }
}
.fw-feat-mini {
  background-color: var(--grey);
  border-radius: var(--border-radius);
  padding: var(--gap-md) var(--gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .fw-feat-mini {
    padding: var(--gap) var(--gap);
  }
}
.fbc {
  width: 100%;
}
.fbc__inner {
  position: relative;
}
.fbc .fw-feat-mini {
  max-width: 366px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.fbc .fw-feat-mini .fw-link-more .uk-icon {
  font-size: 0;
}
.fbc .fm-arr {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 951px) {
  .fbc__inner > *:not(.fm-arr-wrap) {
    position: absolute;
  }
  .fbc .fm-arr {
    position: absolute;
  }
}
@media (max-width: 950px) {
  .fbc__inner {
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 56px;
  }
  .fbc__inner > * {
    position: relative;
  }
  .fbc .fw-feat-mini {
    max-width: 100%;
  }
  .fbc .fm-arr-wrap {
    display: none !important;
  }
}
@media (min-width: 951px) {
  .fbc__inner.inner_reverse-eng {
    height: 1100px;
  }
  .fbc__inner.inner_reverse-eng .fm-01 {
    top: 0;
    left: 0;
  }
  .fbc__inner.inner_reverse-eng .fm-02 {
    top: 341px;
    left: 250px;
  }
  .fbc__inner.inner_reverse-eng .fm-03 {
    top: 0;
    right: 0;
  }
  .fbc__inner.inner_reverse-eng .fm-04 {
    bottom: 67px;
    right: 0;
  }
  .fbc__inner.inner_reverse-eng .fm-05 {
    bottom: 0;
    left: 0;
  }
  .fbc__inner.inner_reverse-eng .arr-ri-01 {
    top: 286px;
    left: 138px;
    width: 113px;
    height: 285px;
    background-image: url("../../../uploads/storage/reverse-inzhineereng-features/arrows/arr-ri-01-tabl.png");
  }
  .fbc__inner.inner_reverse-eng .arr-ri-02 {
    top: 268px;
    right: 53px;
    width: 28px;
    height: 414px;
    background-image: url("../../../uploads/storage/reverse-inzhineereng-features/arrows/arr-ri-02-tabl.png");
  }
  .fbc__inner.inner_reverse-eng .arr-ri-03 {
    right: 366px;
    bottom: 337px;
    width: 168px;
    height: 97px;
    background-image: url("../../../uploads/storage/reverse-inzhineereng-features/arrows/arr-ri-03-tabl.png");
  }
  .fbc__inner.inner_reverse-eng .arr-ri-04 {
    width: calc(100% - 366px*2);
    height: 61px;
    bottom: 199px;
    right: 366px;
    background-image: url("../../../uploads/storage/reverse-inzhineereng-features/arrows/arr-ri-04-tabl.png");
  }
}
@media (min-width: 1100px) {
  .fbc__inner.inner_reverse-eng .arr-ri-04 {
    bottom: 130px;
    height: 81px;
    background-image: url("../../../uploads/storage/reverse-inzhineereng-features/arrows/arr-ri-04-desk.png");
  }
}
@media (min-width: 1241px) {
  .fbc__inner.inner_reverse-eng {
    height: 1040px;
  }
  .fbc__inner.inner_reverse-eng .fm-02 {
    left: 290px;
  }
  .fbc__inner.inner_reverse-eng .fm-04 {
    bottom: 134px;
  }
  .fbc__inner.inner_reverse-eng .arr-ri-01 {
    top: 300px;
    left: 138px;
    width: 153px;
    height: 273px;
    background-image: url("../../../uploads/storage/reverse-inzhineereng-features/arrows/arr-ri-01-desk.png");
  }
  .fbc__inner.inner_reverse-eng .arr-ri-02 {
    top: 280px;
    right: 179px;
    width: 27px;
    height: 261px;
    background-image: url("../../../uploads/storage/reverse-inzhineereng-features/arrows/arr-ri-02-desk.png");
  }
  .fbc__inner.inner_reverse-eng .arr-ri-03 {
    bottom: 265px;
    width: 168px;
    height: 97px;
    background-image: url("../../../uploads/storage/reverse-inzhineereng-features/arrows/arr-ri-03-desk.png");
  }
}
@media (max-width: 950px) {
  .fbc__inner.inner_reverse-eng .fm-01 {
    display: none;
  }
  .fbc__inner.inner_reverse-eng .fm-02::before, .fbc__inner.inner_reverse-eng .fm-03::before, .fbc__inner.inner_reverse-eng .fm-04::before {
    content: "";
    position: absolute;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
    height: 56px;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .fbc__inner.inner_reverse-eng .fm-02::before {
    width: 26px;
    background-image: url('data:image/svg+xml,<svg width="25" height="54" viewBox="0 0 25 54" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="12" y="50" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" y="43" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" y="36" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" y="14" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" y="7" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" width="1" height="4" fill="rgb(103,103,103)"/><path d="M1.56072 28.9499L5.1669 23H6.8821V31.1818H5.32138V25.2266L1.73118 31.1818H0V23H1.56072V28.9499ZM8.3789 31.1818L8.37358 29.8022H8.66655C8.89382 29.8022 9.0838 29.7543 9.2365 29.6584C9.39275 29.5589 9.52059 29.392 9.62003 29.1577C9.71946 28.9233 9.79581 28.6001 9.84907 28.1882C9.90234 27.7727 9.94143 27.2507 9.96623 26.6222V23H15.8203V31.1818H14.2596V24.3743H11.4577V27.1548C11.4257 27.8295 11.3565 28.419 11.25 28.9233C11.147 29.4276 10.9961 29.8484 10.7972 30.1857C10.5983 30.5195 10.3427 30.7699 10.0302 30.9368C9.71768 31.1001 9.33771 31.1818 8.89027 31.1818H8.3789ZM19.505 28.9499L23.1112 23H24.8264V31.1818H23.2657V25.2266L19.6755 31.1818H17.9443V23H19.505V28.9499Z" fill="rgb(103,103,103)"/></svg>');
  }
  .fbc__inner.inner_reverse-eng .fm-03::before, .fbc__inner.inner_reverse-eng .fm-04::before {
    width: 7px;
    background-image: url('data:image/svg+xml,<svg width="6" height="54" viewBox="0 0 6 54" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 54L0 49H6L3 54Z" fill="rgb(103,103,103)"/><rect x="2.5" y="43" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="36" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="29" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="22" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="14" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="7" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" width="1" height="4" fill="rgb(103,103,103)"/></svg>');
  }
}
@media (min-width: 951px) {
  .fbc__inner.inner_3d-scanning {
    height: 885px;
  }
  .fbc__inner.inner_3d-scanning .fm-2-01 {
    top: 0;
    right: 0;
  }
  .fbc__inner.inner_3d-scanning .fm-2-02 {
    top: 0;
    left: 0;
  }
  .fbc__inner.inner_3d-scanning .fm-2-03 {
    bottom: 0;
    left: 126px;
  }
  .fbc__inner.inner_3d-scanning .fm-2-04 {
    bottom: 120px;
    right: 0;
  }
  .fbc__inner.inner_3d-scanning .arr-3dsc-01 {
    width: 108px;
    height: 223px;
    left: 18px;
    top: 352px;
    background-image: url("../../../uploads/storage/3d-scanning-features/arrows/arr-3dsc-01-desk.png");
  }
  .fbc__inner.inner_3d-scanning .arr-3dsc-02 {
    left: 366px;
    top: 130px;
    height: 47px;
    width: calc(100% - 366px*2);
    background-image: url("../../../uploads/storage/3d-scanning-features/arrows/arr-3dsc-02-tabl.png");
  }
  .fbc__inner.inner_3d-scanning .arr-3dsc-03 {
    left: 366px;
    top: 250px;
    height: 267px;
    width: calc(100% - 366px*2);
    background-image: url("../../../uploads/storage/3d-scanning-features/arrows/arr-3dsc-03-tabl.png");
  }
  .fbc__inner.inner_3d-scanning .arr-3dsc-04 {
    right: 366px;
    bottom: 269px;
    height: 22px;
    width: calc(100% - 366px*2 - 126px);
    background-image: url("../../../uploads/storage/3d-scanning-features/arrows/arr-3dsc-04-tabl.png");
  }
}
@media (min-width: 1100px) {
  .fbc__inner.inner_3d-scanning .arr-3dsc-02 {
    top: 90px;
    height: 89px;
    background-image: url("../../../uploads/storage/3d-scanning-features/arrows/arr-3dsc-02-desk.png");
  }
  .fbc__inner.inner_3d-scanning .arr-3dsc-03 {
    background-image: url("../../../uploads/storage/3d-scanning-features/arrows/arr-3dsc-03-desk.png");
  }
  .fbc__inner.inner_3d-scanning .arr-3dsc-04 {
    height: 62px;
    background-image: url("../../../uploads/storage/3d-scanning-features/arrows/arr-3dsc-04-desk.png");
  }
}
@media (min-width: 1241px) {
  .fbc__inner.inner_3d-scanning {
    height: 766px;
  }
  .fbc__inner.inner_3d-scanning .fm-2-03 {
    bottom: 20px;
    left: 180px;
  }
  .fbc__inner.inner_3d-scanning .fm-2-04 {
    bottom: 0;
    right: 0;
  }
  .fbc__inner.inner_3d-scanning .arr-3dsc-01 {
    left: 72px;
    top: 366px;
  }
  .fbc__inner.inner_3d-scanning .arr-3dsc-04 {
    bottom: 123px;
    width: calc(100% - 366px*2 - 180px);
  }
}
@media (max-width: 950px) {
  .fbc__inner.inner_3d-scanning .fm-2-01::before, .fbc__inner.inner_3d-scanning .fm-2-02::before, .fbc__inner.inner_3d-scanning .fm-2-03::before {
    content: "";
    position: absolute;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 56px;
    background-image: url('data:image/svg+xml,<svg width="6" height="54" viewBox="0 0 6 54" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 54L0 49H6L3 54Z" fill="rgb(103,103,103)"/><rect x="2.5" y="43" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="36" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="29" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="22" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="14" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="7" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" width="1" height="4" fill="rgb(103,103,103)"/></svg>');
    background-position: center center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 951px) {
  .fbc__inner.inner_3d-modeling {
    height: 1150px;
  }
  .fbc__inner.inner_3d-modeling .model3d {
    width: calc((100% / 3.0001) - (40px/3));
  }
  .fbc__inner.inner_3d-modeling .fm-3-01 {
    top: 0;
    left: 0;
  }
  .fbc__inner.inner_3d-modeling .fm-3-02 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .fbc__inner.inner_3d-modeling .fm-3-03 {
    top: 0;
    right: 0;
  }
  .fbc__inner.inner_3d-modeling .fm-3-04 {
    top: 360px;
    right: 0px;
  }
  .fbc__inner.inner_3d-modeling .fm-3-05 {
    bottom: 340px;
    left: 170px;
  }
  .fbc__inner.inner_3d-modeling .fm-3-06 {
    bottom: 0;
    right: 71px;
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-01 {
    top: 287px;
    left: 200px;
    width: 54px;
    height: 170px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-01-tabl.png");
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-02 {
    top: 269px;
    left: 381px;
    width: 120px;
    height: 188px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-02-tabl.png");
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-03 {
    top: 287px;
    right: 28%;
    width: 268px;
    height: 172px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-03-tabl.png");
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-04 {
    top: 530px;
    right: calc((100% / 3.0001) - (40px / 3));
    width: calc(100% - (((100% / 3.0001) - (40px / 3)) * 2 + 170px));
    height: 132px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-04-tabl.png");
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-05 {
    bottom: 183px;
    right: calc(((100% / 3.0001) - (40px / 3)) + 71px);
    width: 218px;
    height: 159px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-05-tabl.png");
  }
}
@media (min-width: 1241px) {
  .fbc__inner.inner_3d-modeling {
    height: 1092px;
  }
  .fbc__inner.inner_3d-modeling .fm-3-04 {
    top: 320px;
    right: 0px;
  }
  .fbc__inner.inner_3d-modeling .fm-3-05 {
    bottom: 277px;
    left: 179px;
    width: 386px;
  }
  .fbc__inner.inner_3d-modeling .fm-3-05 > * {
    max-width: 100%;
  }
  .fbc__inner.inner_3d-modeling .fm-3-06 {
    bottom: 0;
    right: 140px;
    width: 386px;
  }
  .fbc__inner.inner_3d-modeling .fm-3-06 > * {
    max-width: 100%;
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-01 {
    top: 290px;
    left: 238px;
    width: 55px;
    height: 175px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-01-desk.png");
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-02 {
    top: 290px;
    left: 459px;
    width: 121px;
    height: 179px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-02-desk.png");
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-03 {
    top: 280px;
    right: 31%;
    width: 268px;
    height: 190px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-03-desk.png");
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-04 {
    top: 498px;
    width: 209px;
    height: 131px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-04-desk.png");
  }
  .fbc__inner.inner_3d-modeling .arr-3dmd-05 {
    bottom: 117px;
    right: calc(386px + 140px);
    width: 222px;
    height: 159px;
    background-image: url("../../../uploads/storage/3d-modeling-features/arrows/arr-3dmd-05-desk.png");
  }
}
@media (max-width: 950px) {
  .fbc__inner.inner_3d-modeling .fm-3-01::before, .fbc__inner.inner_3d-modeling .fm-3-02::before, .fbc__inner.inner_3d-modeling .fm-3-03::before, .fbc__inner.inner_3d-modeling .fm-3-04::before, .fbc__inner.inner_3d-modeling .fm-3-05::before {
    content: "";
    position: absolute;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
    height: 56px;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .fbc__inner.inner_3d-modeling .fm-3-01::before, .fbc__inner.inner_3d-modeling .fm-3-02::before, .fbc__inner.inner_3d-modeling .fm-3-03::before {
    width: 26px;
    background-image: url('data:image/svg+xml,<svg width="25" height="54" viewBox="0 0 25 54" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="12" y="50" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" y="43" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" y="36" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" y="14" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" y="7" width="1" height="4" fill="rgb(103,103,103)"/><rect x="12" width="1" height="4" fill="rgb(103,103,103)"/><path d="M1.56072 28.9499L5.1669 23H6.8821V31.1818H5.32138V25.2266L1.73118 31.1818H0V23H1.56072V28.9499ZM8.3789 31.1818L8.37358 29.8022H8.66655C8.89382 29.8022 9.0838 29.7543 9.2365 29.6584C9.39275 29.5589 9.52059 29.392 9.62003 29.1577C9.71946 28.9233 9.79581 28.6001 9.84907 28.1882C9.90234 27.7727 9.94143 27.2507 9.96623 26.6222V23H15.8203V31.1818H14.2596V24.3743H11.4577V27.1548C11.4257 27.8295 11.3565 28.419 11.25 28.9233C11.147 29.4276 10.9961 29.8484 10.7972 30.1857C10.5983 30.5195 10.3427 30.7699 10.0302 30.9368C9.71768 31.1001 9.33771 31.1818 8.89027 31.1818H8.3789ZM19.505 28.9499L23.1112 23H24.8264V31.1818H23.2657V25.2266L19.6755 31.1818H17.9443V23H19.505V28.9499Z" fill="rgb(103,103,103)"/></svg>');
  }
  .fbc__inner.inner_3d-modeling .fm-3-04::before, .fbc__inner.inner_3d-modeling .fm-3-05::before {
    width: 7px;
    background-image: url('data:image/svg+xml,<svg width="6" height="54" viewBox="0 0 6 54" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 54L0 49H6L3 54Z" fill="rgb(103,103,103)"/><rect x="2.5" y="43" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="36" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="29" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="22" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="14" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" y="7" width="1" height="4" fill="rgb(103,103,103)"/><rect x="2.5" width="1" height="4" fill="rgb(103,103,103)"/></svg>');
  }
}
.feat-more__plus {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 0;
}
.feat-more__info {
  padding: 30px 80px;
  box-sizing: border-box;
  border-radius: var(--border-radius);
  background-color: #fff;
  box-shadow: 0px 4px 44.4px 0px rgba(187, 187, 187, 0.25);
  position: absolute;
  z-index: 10;
  display: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.feat-more__info.open {
  display: block;
}
.feat-more__info.visible {
  opacity: 1;
}
.feat-more__info .fm-sldn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.feat-more__info .fm-sldn.prev {
  left: -60px;
}
.feat-more__info .fm-sldn.next {
  right: -60px;
}
@media (max-width: 950px) {
  .feat-more__info {
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px 50px;
  }
  .feat-more__info .fm-sldn.prev {
    left: -45px;
  }
  .feat-more__info .fm-sldn.next {
    right: -45px;
  }
}
.feat-more__info-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.feat-more__item {
  padding: 0 7px;
}
@media (min-width: 951px) {
  .fm-2-02 .feat-more__info {
    top: 0;
    left: 102%;
    width: 500px;
  }
}
@media (min-width: 951px) {
  .fm-04 .feat-more__info {
    top: 0;
    right: 102%;
    width: 500px;
  }
}
.info-content-hidden {
  display: none;
}
.contentMore p {
  margin: 0 0 var(--gap-xs);
}
.contentMore * + p {
  margin-top: var(--gap-xs);
}
@media (min-width: 641px) {
  .w-470 {
    max-width: 470px;
  }
}
@media (min-width: 641px) {
  .w-420 {
    max-width: 420px;
  }
}
@media (min-width: 641px) {
  .w-380-300 {
    max-width: 300px;
  }
}
@media (min-width: 1025px) {
  .w-380-300 {
    max-width: 380px;
  }
}
@media (min-width: 641px) {
  .w-800-615 {
    max-width: 615px;
  }
}
@media (min-width: 1025px) {
  .w-800-615 {
    max-width: 800px;
  }
}
.fw-panel {
  padding: var(--gap-xl) var(--gap-lg);
  border-radius: var(--border-radius);
  background-color: var(--secondary-bold);
  box-sizing: border-box;
}
.fw-panel-primary {
  background-color: var(--secondary-bold);
}
.fw-panel-primary .fw-title > *, .fw-panel-primary .fw-panel__text {
  color: var(--primary-inverse);
}
.fw-panel-primary-light {
  background-color: var(--overlay-banner-bg);
}
.fw-panel-secondary {
  background-color: var(--grey);
}
.fw-panel-review {
  border-radius: var(--border-radius-sm);
  height: 100%;
}
.fw-panel-action {
  padding: var(--gap-lg) var(--gap-xl);
  background-color: var(--overlay-banner-bg);

}
.fw-panel-lg {
  padding: var(--gap-xl) var(--gap-xl);
}
.fw-panel-lg:not(.brs-default) {
  border-radius: var(--border-radius-md);
}
.fw-panel__content {
  max-width: 626px;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fw-panel__text {
  margin-top: 24px;
  margin-bottom: 26px;
  font-family: var(--text-font-family);
}
.fw-panel__btn {
  margin-top: auto;
}
@media (max-width: 1024px) {
  .fw-panel {
    padding: var(--gap-lg) var(--gap-md);
  }
  .fw-panel__text {
    margin-top: 18px;
    font-family: var(--text-font-family);
  }
  .fw-panel-lg {
    padding: var(--gap-lg) var(--gap-lg);
  }
}
@media (max-width: 640px) {
  .fw-panel {
    padding: var(--gap-md) var(--gap);
  }
  .fw-panel-action {
    padding: var(--gap) var(--gap);
  }
  .fw-panel__text {
    margin-top: 14px;
    font-family: var(--text-font-family);
  }
  .fw-panel .image img {
    width: 288px;
    height: auto;
  }
}
.fw-panel .form-text {
  max-width: 450px;
  width: 100%;
}
.fw-panel .form {
  max-width: 513px;
  width: 100%;
}
.fw-panel .action-notice {
  margin-top: 15px;
  color: var(--light-color);
  font-size: var(--fs-xsmall);
  line-height: var(--line-height-medium);
  font-weight: 400;
}
@media (max-width: 640px) {
  .fw-panel .action-notice {
    margin-top: var(--gap-xs);
  }
}
.uk-slider-container.visible {
  overflow: visible !important;
}
@media (max-width: 768px) {
  .fw-layout-link {
    order: 1;
  }
}
.fw-card {
  box-sizing: border-box;
  min-height: 217px;
  height: 100%;
  padding: var(--gap) var(--gap);
  border-radius: var(--border-radius);
  background-color: var(--grey);
  display: flex;
  gap: var(--gap);
}
.fw-card__img {
  display: flex;
}
.fw-card__img:not(.product) img {
  border-radius: var(--border-radius);
}
.fw-card__body {
  display: flex;
  flex-direction: column;
}
.fw-card__date {
  font-size: var(--fs-xsmall);
  font-weight: 400;
  line-height: var(--line-height-medium);
}
.fw-card__brief p:last-child {
  margin-bottom: 0;
}
.fw-card__content {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fw-card__content .text {
  font-family: var(--text-font-family);
  font-size: var(--fs-xsmall);
  line-height: var(--line-height-medium);
  color: var(--dark-color);
  font-weight: 400;
}

.fw-card__content .text-white {
  font-family: var(--text-font-family);
  font-size: var(--fs-xsmall);
  line-height: var(--line-height-medium);
  color: var(--light-color);
  font--weight: 400;
}
.fw-card__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 66px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fw-card__content ul > * {
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
}
.fw-card__content ul + .footer {
  padding-bottom: 0;
}
.fw-card__content .footer {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fw-card__content .footer > * {
  padding: 10px 20px;
  border-radius: var(--border-radius-xs);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fw-card__content .footer > *.price {
  background-color: var(--primary-light-2);
}
.fw-card__content .footer > *.time {
  background-color: #fff;
}
@media (min-width: 641px) {
  .fw-card__content .footer {
    padding-bottom: var(--gap-xs);
  }
}
.fw-card.product {
  flex-direction: column;

}
.fw-card.dark {
  flex-direction: column;
  background-color: var(--bg-muted);

}
.fw-card.product .fw-card__body {
  flex: 1;
}
.fw-card.article .fw-card__img picture {
  width: 100%;
}
.fw-card.article .fw-card__img img {
  width: 100%;
}
.fw-card.article .fw-card__body {
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 641px) {
  .fw-card.article > * {
    width: calc(50% - (var(--gap)/2));
  }
}
@media (max-width: 960px) {
  .fw-card.article {
    flex-direction: column;
  }
  .fw-card.article > * {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .fw-card {
    padding: 16px 16px;
    gap: 14px;
  }
  .fw-card__content ul {
    margin-bottom: 50px;
  }
}
.fw-card-product__title {
  margin-bottom: 0;
}
.fw-col-block__title {
  width: 100%;
}
@media (min-width: 641px) {
  .fw-col-block__title {
    width: 346px;
  }
}
@media (min-width: 1240px) {
  .fw-col-block__title {
    width: 410px;
  }
}
.fw-col-block .sub-title {
  margin-top: var(--gap-md);
}
@media (min-width: 1024px) {
  .fw-col-block__content {
    max-width: 690px;
    margin-left: auto;
  }
  .fw-col-reviews {
    max-width: 655px;
    margin-left: auto;
  }
}
@media (max-width: 1024px) {
  .fw-col-block .sub-title {
    margin-top: var(--gap);
  }
}
.fw-work-line {
  background-color: var(--bg-muted);
  border-radius: var(--border-radius);
  padding: var(--gap-lg) var(--gap-lg);
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  gap: var(--gap);
}
.fw-work-line.numbered {
  align-items: center;
}
.fw-work-line.numbered .number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--secondary-bold);
  font-size: var(--fs-h4);
  flex-shrink: 0;
}
.fw-work-line__content {
  flex: 1;
}
.fw-work-line__content .text {
  margin-top: 14px;
}
.fw-work-line + .fw-work-line {
  margin-top: var(--gap);
}
@media (max-width: 1240px) {
  .fw-work-line {
    padding: var(--gap-md) var(--gap-md);
  }
  .fw-work-line.numbered {
    padding: var(--gap-lg) var(--gap-md);
  }
}
@media (max-width: 640px) {
  .fw-work-line {
    padding: var(--gap) var(--gap);
  }
  .fw-work-line.numbered {
    padding: var(--gap) var(--gap);
    align-items: flex-start;
    gap: 16px;
  }
  .fw-work-line.numbered .number {
    width: 32px;
    height: 32px;
    font-size: var(--fs-base);
  }
  .fw-work-line.numbered .fw-work-line__content.h4 {
    font-size: var(--fs-base);
    line-height: var(--line-height-md);
  }
  .fw-work-line:not(.numbered) {
    flex-direction: column;
  }
  .fw-work-line__content .text {
    margin-top: var(--gap-xs);
  }
  .fw-work-line img {
    width: 70px;
    order: -1;
  }
  .fw-work-line + .fw-work-line {
    margin-top: 16px;
  }
}
.fw-acc-item {
  padding: 25px var(--gap-md);
  border-top: 1px solid rgba(177, 177, 177, 0.5);
}
.fw-acc-item:last-child {
  border-bottom: 1px solid rgba(177, 177, 177, 0.5);
}
.fw-acc-item .uk-accordion-title::before {
  content: none;
}
.fw-acc-item.uk-open .fw-acc-icon {
  transform: rotate(180deg);
}
.fw-acc-icon {
  flex-shrink: 0;
  color: var(--gray-color);
}
.fw-acc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  position: relative;
  user-select: none;
}
.fw-acc-title:hover .fw-acc-icon {
  color: var(--dark-color);
}
.fw-acc-cont {
  margin-top: 16px;
}
@media (min-width: 1240px) {
  .fw-acc-title .title {
    padding-right: 100px;
  }
}
@media (max-width: 640px) {
  .fw-acc-item {
    padding: var(--gap) 16px;
  }
  .fw-acc-title {
    gap: var(--gap-xxs);
  }
}
.fw-tab-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-left: -16px;
  padding-left: 16px;
  margin-right: -16px;
  padding-right: 16px;
}
.fw-tab-nav::-webkit-scrollbar {
  display: none;
}
.fw-tab-nav li {
  flex: none;
}
.fw-tab-nav li a {
  font-size: var(--fs-medium);
  line-height: var(--line-height-xsmall);
  color: var(--gray-color);
  padding-bottom: 24px;
  border-bottom: 4px solid transparent;
  display: inline-flex;
}
.fw-tab-nav li:hover a, .fw-tab-nav li.uk-active a {
  color: var(--dark-color);
}
.fw-tab-nav li.uk-active a {
  border-color: var(--dark-color);
}
.fw-tab-nav-contacts {
  margin-top: 60px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .fw-tab-nav li a {
    font-size: var(--fs-base);
  }
  .fw-tab-nav-contacts {
    margin-top: var(--gap-lg);
  }
}
@media (max-width: 640px) {
  .fw-tab-nav li a {
    padding-bottom: 15px;
  }
  .fw-tab-nav-contacts {
    margin-top: var(--gap-md);
  }
}
.fw-map-contact {
  position: relative;
}
.fw-map-contact .map-wrap {
  height: 480px;
  background-color: var(--primary-light);
  overflow: hidden;
}
.fw-map-contact .contact-info {
  background-color: #fff;
  box-sizing: border-box;
}
.fw-map-contact .contact-info__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
.fw-map-contact .contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.fw-map-contact .contact-info__item .head {
  font-size: var(--fs-xsmall);
  line-height: var(--line-height-medium);
  font-weight: 400;
}
.fw-map-contact .contact-info__item .val {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
@media (min-width: 961px) {
  .fw-map-contact .contact-info {
    padding: var(--gap-md) var(--gap-md);
    border-radius: var(--border-radius-md);
    left: var(--gap-lg);
    top: var(--gap-lg);
    bottom: var(--gap-lg);
    width: 346px;
    position: absolute;
  }
}
@media (min-width: 1025px) {
  .fw-map-contact__title {
    margin-bottom: var(--gap-lg);
  }
  .fw-map-contact .contact-info {
    padding: var(--gap-lg) var(--gap-lg);
    position: absolute;
    left: var(--gap-xl);
    top: var(--gap-xl);
    bottom: var(--gap-xl);
    width: 390px;
  }
}
@media (min-width: 1241px) {
  .fw-map-contact .map-wrap {
    border-radius: var(--border-radius-md);
  }
}
@media (max-width: 1024px) {
  .fw-map-contact .map-wrap {
    height: 410px;
  }
  .fw-map-contact .contact-info__item.address .val {
    font-size: var(--fs-small);
  }
}
@media (max-width: 960px) {
  .fw-map-contact-descr {
    padding: 0 0;
  }
  .fw-map-contact__title {
    margin-bottom: var(--gap);
  }
  .fw-map-contact .contact-info {
    padding: var(--gap-lg) var(--gap-lg);
    background-color: var(--primary-light-2);
  }
  .fw-map-contact .contact-info__inner {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .fw-map-contact .map-wrap {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .fw-map-contact .contact-info {
    padding: var(--gap) var(--container-padding);
    margin-bottom: 0;
  }
}
.grid-slider-section {
  overflow: hidden;
}
.grid-slider-head + .grid-slider {
  margin-top: 60px;
}
.grid-slider-descr {
  margin-top: var(--gap-lg);
  margin-bottom: var(--gap-md);
}
.grid-slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--gap-xs);
}
@media (max-width: 1024px) {
  .grid-slider-head + .grid-slider {
    margin-top: var(--gap-lg);
  }
}
.item-1-1 > * {
  width: 100%;
  box-sizing: border-box;
}
.item-1-3 > * {
  width: 366px;
}
.item-1-5 > * {
  width: 224px;
}
@media (max-width: 640px) {
  .item-1-3 > * {
    width: 286px;
  }
}
.elementsList.overlay {
  opacity: 0.7;
  pointer-events: none;
}
.fw-rubrics {
  list-style: none;
  display: flex;
  gap: var(--gap-xs);
  margin: 0;
  padding: 0;
}
.fw-rubrics.desk-of {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-left: -16px;
  padding-left: 16px;
  margin-right: -16px;
  padding-right: 16px;
}
@media (min-width: 641px) {
  .fw-rubrics:not(.desk-of) {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .fw-rubrics:not(.desk-of) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: -16px;
    padding-left: 16px;
    margin-right: -16px;
    padding-right: 16px;
  }
}
.fw-rubrics::-webkit-scrollbar {
  display: none;
}
.fw-rubrics li {
  flex: none;
}
.fw-rubrics li a {
  display: flex;
  align-items: center;
  height: 38px;
  background-color: var(--bg-muted);
  padding: 0px 20px;
  border-radius: var(--border-radius-xs);
  color: var(--light-color);
  font-size: var(--fs-small);
  user-select: none;
}
.fw-rubrics li a:hover {
  color: #9eff00;
}
.fw-rubrics li a.active {
  background-color: var(--secondary-bold);
  color: #fff;
}
.fw-rubrics li a.disabled {
  pointer-events: none;
  opacity: 0.7;
}
.fw-slider-nav {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid #e2e2e2;
  color: var(--dark-color);
  background-color: #fff;
  border-radius: 50%;
  user-select: none;
}
.fw-slider-nav.uk-invisible {
  visibility: visible !important;
  color: #e2e2e2;
  pointer-events: none;
}
.project-item {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 16px;
}
.project-item__img img {
  border-radius: var(--border-radius);
}
.project-item__title {
  margin-bottom: 0;
}
.project-item__brief {
  margin-top: 8px;
}
.project-item__brief .project-brief {
  font-size: var(--fs-medium);
  line-height: var(--line-height-medium);
}
.project-item__brief .project-pb {
  display: none;
}
.project-item__more {
  margin-top: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item .giv-ovrl {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: rgba(103, 103, 103, 0.25);
}
.grid-items-gallery {
  margin-left: -20px;
  row-gap: 20px;
}
.grid-items-gallery > * {
  padding-left: 20px;
}
@media (max-width: 639px) {
  .grid-items-gallery.uk-slider-items > * {
    width: auto;
  }
  .grid-items-gallery.uk-slider-items > * .gallery-item {
    width: 286px;
  }
}
@media (max-width: 639px) {
  .grid-items-articles.uk-slider-items > * {
    width: auto;
  }
  .grid-items-articles.uk-slider-items > * .article {
    width: 328px;
  }
}
@media (max-width: 389px) {
  .grid-items-articles.uk-slider-items > * {
    width: auto;
  }
  .grid-items-articles.uk-slider-items > * .article {
    width: 300px;
  }
}
@media (max-width: 639px) {
  .t-props-items.uk-slider-items > * {
    width: auto;
  }
  .t-props-items.uk-slider-items > * > * {
    width: 300px;
  }
}
.banner-item {
  padding: 25px 0;
}
.review-inner {
  display: flex;
}
.review-top {
  width: 333px;
}
.review-top .fw-avatar + .review-author {
  margin-top: var(--gap);
}
.review-body {
  flex: 1;
}
@media (max-width: 1024px) {
  .review-body {
    font-size: var(--fs-small);
  }
}
@media (max-width: 950px) {
  .review-inner {
    gap: 14px;
  }
  .review-top {
    width: 200px;
  }
  .review-top .fw-avatar + .review-author {
    margin-top: 18px;
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  .review-inner {
    flex-direction: column;
  }
}
.fw-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  font-size: var(--fs-h4);
  text-transform: uppercase;
}
.fw-avatar__ph {
  background-color: var(--primary);
  color: var(--primary-inverse);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fw-page-banner {
  height: 500px;
}
.fw-page-banner__inner {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fw-page-banner__inner.isBgVideo::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.2);
}
.fw-page-banner__inner .content-inner {
  display: flex;
  height: 100%;
}
.fw-page-banner__inner .content-inner.pb-container {
  box-sizing: content-box;
  padding-left: var(--gap-xl);
  padding-right: var(--gap-xl);
}
.fw-page-banner__inner .content {
  padding: 90px 0 var(--gap-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.fw-page-banner__inner .content .title {
  margin-bottom: var(--gap);
}
.fw-page-banner__inner .content .text {
  margin-bottom: var(--gap-md);
}
.fw-page-banner__inner .content .btn {
  margin-top: auto;
}
.fw-page-banner .pb-image {
  position: absolute;
  right: 50px;
  bottom: 50px;
}
.fw-page-banner .pb-image.project-index {
  top: 0;
  right: 0;
}
.fw-page-banner .pb-video-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 500px;
}
/*.fw-page-banner .pb-video {*/
/*  pointer-events: none;*/
/*  user-select: none;*/
/*  height: 100%;*/
/*  max-width: none;*/
/*}*/
.fw-page-banner {
  position: relative;
  overflow: hidden;
  height: 400px; /* или другой размер, который подходит для шапки */
}

.fw-page-banner .pb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Для адаптивности, если нужно менять высоту на мобильных */
@media (max-width: 768px) {
  .fw-page-banner {
    height: 250px; /* Меньшая высота для мобильных */
  }
}
.fw-page-banner .pb-video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}
@media (min-width: 641px) {
  .fw-page-banner {
    margin-top: 14px;
  }
  .fw-page-banner__inner .content {
    width: 62.45%;
  }
  .fw-page-banner .pb-video-wrap {
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .fw-page-banner .pb-video {
    height: auto;
    max-width: 100%;
  }
}
@media (min-width: 1241px) {
  .fw-page-banner__inner {
    border-radius: var(--border-radius);
  }
}
@media (max-width: 1240px) {
  .fw-page-banner__inner .content-inner.pb-container {
    padding-left: var(--gap-lg);
    padding-right: var(--gap-lg);
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
  }
  .fw-page-banner .pb-image.project-index {
    width: 40.75%;
  }
}
@media (max-width: 1024px) {
  .fw-page-banner:not(.bg-video) {
    height: 400px;
  }
  .fw-page-banner__inner .content {
    padding: 80px 0 var(--gap-lg);
  }
  .fw-page-banner .pb-video-wrap {
    width: 400px;
  }
  .fw-page-banner .pb-image {
    right: 35px;
    bottom: 35px;
    width: 38%;
  }
}
@media (max-width: 640px) {
  .fw-page-banner:not(.bg-video) {
    height: 700px;
  }
  .fw-page-banner__inner .content-inner {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .fw-page-banner__inner .content-inner.pb-container {
    padding-left: var(--gap);
    padding-right: var(--gap);
    box-sizing: border-box;
  }
  .fw-page-banner__inner .content {
    text-align: center;
    padding: 70px 0 var(--gap-md);
  }
  .fw-page-banner__inner .content .title {
    margin-bottom: 14px;
    justify-content: center;
  }
  .fw-page-banner .pb-video-wrap {
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 390px;
    height: 390px;
  }
  .fw-page-banner .pb-image {
    right: 50%;
    bottom: 45px;
    width: 95%;
    transform: translateX(50%);
  }
  .fw-page-banner .pb-image.project-index {
    right: 50%;
    width: 95%;
    top: auto;
  }
}
* .ban-wide-container {
  box-sizing: content-box;
  max-width: var(--container-width-large);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1241px) {
  * .ban-wide-container {
    padding-left: var(--gap);
    padding-right: var(--gap);
  }
}
@media (max-width: 1240px) {
  .container-expand-mobile .fw-panel {
    border-radius: 0 !important;
    padding-left: var(--gap-lg);
    padding-right: var(--gap-lg);
  }
}
@media (max-width: 640px) {
  .container-expand-mobile .fw-panel {
    padding: var(--gap) var(--container-padding);
  }
}
.ann-props {
  display: flex;
  gap: var(--gap-md);
}
.ann-props .ann-p .text {
  margin-top: 16px;
   color: white;
}
@media (min-width: 961px) {
  .ann-props > * {
    flex: 1;
    min-width: 1px;
  }
}
@media (max-width: 960px) {
  .ann-props {
    flex-direction: column;
  }
}
.prop-inner {
  width: 100%;
}
@media (min-width: 641px) {
  .prop-inner {
    min-height: 310px;
  }
}
.fw-sticky-nav-bar {
  background-color: #fff;
  margin-bottom: var(--gap);
  padding-bottom: var(--gap-xs);
  position: sticky;
  top: 76px;
  box-sizing: content-box;
  z-index: 1;
}
.dev-details {
  border-top: 1px solid rgba(103, 103, 103, 0.5);
}
.dev-details .prop {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
  padding: 29.5px 0;
  border-bottom: 1px solid rgba(103, 103, 103, 0.5);
}
.dev-details .prop .value {
  color: var(--dark-color);
}
@media (min-width: 1025px) {
  .dev-details .prop {
    font-size: var(--fs-h4);
    line-height: var(--line-height-xsmall);
  }
  .dev-details .prop .name {
    width: 40%;
  }
  .dev-details .prop .value {
    text-align: right;
  }
}
@media (max-width: 1024px) {
  .dev-details .prop {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 25.5px 0;
  }
}
@media (max-width: 640px) {
  .dev-details .prop {
    padding: 16px 0;
  }
}
.pager-loader-wrap {
  position: relative;
}
.pager-loader-wrap .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  line-height: var(--line-height-xsmall);
}
.pager-loader-wrap .pagination > * {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  color: var(--gray-color);
}
.pager-loader-wrap .pagination > *.active, .pager-loader-wrap .pagination > *:hover {
  color: var(--dark-color);
}
.pager-loader-wrap .pagination .hidden {
  display: none;
}
@media (min-width: 641px) {
  .pager-loader-wrap .pagination {
    position: absolute;
    right: 0;
    top: 0;
    box-sizing: content-box;
    height: 22px;
  }
}
@media (min-width: 1025px) {
  .pager-loader-wrap .pagination {
    font-size: var(--fs-medium);
  }
}
@media (max-width: 640px) {
  .pager-loader-wrap .pagination {
    padding-top: var(--gap);
  }
}
textarea, input, select {
  font-family: var(--base-font-family) !important;
}
label:hover {
  cursor: text;
}
button {
  font-family: var(--base-font-family);
}
.fw-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-xs);
}
.fw-form .fw-accept {
  color: var(--dark-color);
  font-size: var(--fs-xsmall);
  font-weight: 400;
  line-height: var(--control-line-height-md);
}
.fw-form .fw-accept .fw-link {
  color: inherit;
}
.body-primary .fw-form .fw-accept {
  color: #fff;
}
.fw-control-group {
  position: relative;
}
.fw-control-group .fw-help-text {
  font-size: var(--fs-xsmall);
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0;
}
.fw-has-error .fw-help-text {
  color: red;
}
.fw-has-error .fw-control {
  border-color: red;
}
.fw-control-input::placeholder, .fw-control-textarea::placeholder, .fw-control-select::placeholder {
  color: transparent;
}
.fw-control-label {
  position: absolute;
  padding-left: var(--control-px);
  line-height: var(--control-line-height);
  transition: linear 0.1s;
  pointer-events: none;
  font-size: var(--fs-small);
  z-index: 1;
}
.fw-control-has-focus .fw-control-label, .fw-control-not-empty .fw-control-label {
  opacity: 0;
  visibility: hidden;
}
.fw-control-file {
  padding: 0 var(--control-px);
  height: var(--control-height);
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
  display: flex;
  border: 1px solid transparent;
  font-size: var(--fs-small);
  background-color: var(--control-bg);
  border-radius: var(--control-border-radius);
  box-sizing: border-box;
  align-items: center;
  gap: var(--gap-xs);
}
.fw-control-file:not(.fw-control-file-name) {
  justify-content: space-between;
  cursor: pointer;
}
.fw-control-file .uk-icon {
  color: #1BDFD3;
  flex-shrink: 0;
}
.fw-control-file-name {
  height: 46px;
  margin-top: var(--gap-xs);
}
.fw-control-file-name .name {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.fw-control-file-note {
  background-color: var(--primary-light);
  color: var(--dark-color);
  padding: var(--control-px);
  border-radius: var(--control-border-radius);
  margin-top: var(--gap-xs);
}
.fw-form-2 .group-submit-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-xs);
  margin-top: var(--gap-xs);
}
@media (max-width: 640px) {
  .fw-form-2 .group-submit-wrap {
    flex-direction: column;
    width: 100%;
  }
  .fw-form-2 .group-submit-wrap > * {
    width: 100%;
  }
  .fw-form-2 [type=submit] {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 641px) {
  .fw-form-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "a a" "b b" "c c" "d e";
  }
  .fw-form-4 .fw-control-group-18 {
    grid-area: a;
  }
  .fw-form-4 .fw-control-group-19 {
    grid-area: b;
  }
  .fw-form-4 .fw-control-group-20 {
    grid-area: c;
  }
  .fw-form-4 .fw-control-group-21 {
    grid-area: d;
  }
  .fw-form-4 .fw-accept {
    grid-area: e;
  }
}
.fw-form-4 [type=submit] {
  width: 100%;
  box-sizing: border-box;
}
.fw-checkbox {
  user-select: none;
}
.fw-checkbox > input {
  display: none;
}
.fw-checkbox > input:checked + span.fw-checkbox-title::before {
  background-color: var(--primary);
  border-color: var(--primary);
}
.fw-checkbox > input:checked + span.fw-checkbox-title::after {
  transform: scale(1);
}
.fw-checkbox span.fw-checkbox-title {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  min-height: 20px;
  line-height: 20px;
  font-size: var(--fs-small);
  cursor: pointer;
}
.fw-checkbox span.fw-checkbox-title::before, .fw-checkbox span.fw-checkbox-title::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 10px;
  margin-top: -10px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: linear 0.2s;
}
.fw-checkbox span.fw-checkbox-title::before {
  border-color: var(--gray-color);
  background-color: #fff;
}
.fw-checkbox span.fw-checkbox-title::after {
  background: center no-repeat;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='18' viewBox='0 0 17 18' fill='none'><path d='M2.83398 9.43221L6.32117 12.8952L14.1673 5.10352' stroke='white' stroke-width='1.41667' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  transform: scale(0);
}
.fw-form .fw-accept.fw-checkbox > input:checked + span.fw-checkbox-title::before {
  background-color: var(--dark-color);
}
.fw-form .fw-accept.fw-checkbox span.fw-checkbox-title {
  padding-left: 28px;
}
.fw-form .fw-accept.fw-checkbox span.fw-checkbox-title::before {
  border-color: var(--dark-color);
  background-color: transparent;
  top: 14px;
}
.fw-form .fw-accept.fw-checkbox span.fw-checkbox-title::after {
  top: 14px;
}
.fw-form .fw-accept.fw-checkbox.fw-has-error span.fw-checkbox-title::before {
  border-color: red;
}
.fw-form .fw-accept.fw-checkbox .fw-help-text {
  padding-left: 28px;
}
@media (min-width: 641px) {
  .fw-form .fw-accept.fw-checkbox {
    transform: translateY(-4px);
  }
}
:root {
  --footer-border: #EAEAEA;
}
.fw-footer {
  padding: var(--gap-lg) 0;
  background: var(--base-body-background);
}
.fw-footer__logo {
  display: flex;
  width: 172px;
}
.fw-footer__logo img {
  width: 100%;
}
.fw-footer__main {
  padding-top: var(--gap-xl);
  padding-bottom: var(--gap-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--gap);
}
@media (max-width: 640px) {
  .fw-footer__main {
    padding-top: var(--gap-lg);
    gap: 0;
  }
}
.fw-footer__col {
  width: auto;
}
@media (min-width: 1240px) {
  .fw-footer__col {
    min-width: 150px;
    max-width: 175px;
  }
}
@media (max-width: 640px) {
  .fw-footer__col {
    width: 100%;
  }
  .fw-footer__col.mobile-collapse {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--footer-border);
  }
  .fw-footer__col.mobile-collapse + .mobile-collapse {
    padding-top: 14px;
  }
  .fw-footer__col.mobile-collapse:not(.open) .footer-list {
    display: none;
  }
  .fw-footer__col.mobile-collapse.open .footer-title-collapse .ftc-icon {
    transform: rotate(180deg);
  }
  .fw-footer__col.col-titles {
    margin-top: var(--gap-lg);
    margin-bottom: var(--gap-lg);
  }
}
.fw-footer-copy {
  border-top: 1px solid var(--footer-border);
  padding-top: var(--gap-md);
  font-size: var(--fs-small);
  line-height: var(--line-height-sm);
}
.fw-footer .footer-title {
  color: var(--dark-color);
  line-height: var(--line-height-medium);
}
.fw-footer .footer-title + * {
  margin-top: var(--gap);
}
.fw-footer .footer-title-collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
@media (min-width: 641px) {
  .fw-footer .footer-title-collapse .ftc-icon {
    display: none;
  }
}
.fw-footer .footer-title a {
  color: inherit;
}
.fw-footer .footer-title a:hover {
  color: var(--gray-color);
}
.fw-footer .footer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fw-footer .footer-link {
  font-size: var(--fs-small);
  line-height: var(--line-height-small);
  color: var(--gray-color);
}
.fw-footer .footer-link:hover {
  color: var(--dark-color);
}
.fw-footer .footer-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--fs-small);
  line-height: var(--line-height-small);
}
:root {
  --thumbs-gap: 10px;
}
@media (max-width: 1240px) {
  :root {
    --thumbs-gap: 8px;
  }
}
@media (max-width: 768px) {
  :root {
    --thumbs-gap: 5px;
  }
}
.gallery-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1020;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 40px;
  background-color: rgba(100, 100, 100, 0.75);
  display: none;
}
.gallery-box.open {
  display: block;
}
.gallery-box-dialog {
  position: relative;
  display: flex;
  justify-content: center;
}
.gallery-box-close {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: #fff;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 1;
}
.gallery-box-close:hover {
  color: #fff;
}
.gallery-box-inner {
  max-width: 760px;
  width: 100%;
  position: relative;
  transition: 0.2s linear;
  transform: translateY(30px);
  opacity: 0;
}
.gallery-box-inner.active {
  transform: translateY(0);
  opacity: 1;
}
.gallery-box-main {
  margin-bottom: var(--thumbs-gap);
}
.gallery-box-main ul li {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-box-main ul .gbiv.playing .gbiv-action {
  display: none;
}
.gallery-box-main ul .gbiv-movie {
  cursor: pointer;
}
.gallery-box-main ul .gbiv-action {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -70%);
  color: #fff;
}
@media (max-width: 1024px) {
  .gallery-box-main ul .gbiv-action {
    display: none;
  }
}
.gallery-box-nav ul li {
  cursor: pointer;
}
.gallery-box-nav ul li.is-active {
  border: 2px solid var(--primary);
}
.gallery-box-nav ul .gb-th-video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="15" fill="white"/><path d="M23 15.1058L11 22L11.0601 15L11.1203 8L23 15.1058Z" fill="rgb(103,103,103)"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  width: 30px;
  height: 30px;
}
.gallery-box .galleryBoxThumbs-list > * {
  width: calc((100% / 6) - ((var(--thumbs-gap)* 5) / 6)) !important;
  margin-right: var(--thumbs-gap);
}
.gallery-box .gb-sldnv {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-box .gb-sldnv svg .arr-path {
  color: var(--dark-color);
}
.gallery-box .gb-sldnv:active svg .arr-path, .gallery-box .gb-sldnv:hover svg .arr-path, .gallery-box .gb-sldnv:focus svg .arr-path {
  color: var(--gray-color);
}
.gallery-box .gb-sldnv-wrap {
  gap: 14px;
}
.gallery-box .gb-sldnv::before {
  content: "";
  position: absolute;
  top: -7px;
  bottom: -7px;
  left: -7px;
  right: -7px;
}
@media (min-width: 769px) {
  .gallery-box .gb-sldnv {
    position: absolute;
    top: 39.7%;
  }
  .gallery-box .gb-sldnv-prev {
    left: -52px;
  }
  .gallery-box .gb-sldnv-next {
    right: -52px;
  }
  .gallery-box .gb-sldnv::before {
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
  }
}
@media (min-width: 1241px) {
  .gallery-box .gb-sldnv-prev {
    left: -70px;
  }
  .gallery-box .gb-sldnv-next {
    right: -70px;
  }
}
@media (max-width: 1240px) {
  .gallery-box-inner {
    max-width: 588px;
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
  .gallery-box {
    padding: 76px 16px 16px;
    background-color: #f6f6f6;
  }
  .gallery-box-dialog {
    align-items: center;
    min-height: 100%;
  }
  .gallery-box-close {
    color: var(--dark-color);
    top: 25px;
    right: 15px;
  }
  .gallery-box-close:hover {
    color: var(--gray-color);
  }
}
.empty-ph {
  padding: 30px 20px;
  text-align: center;
  background-color: var(--bg-muted);
  border-radius: var(--border-radius-xs);
}
.fw-section-32 {
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  z-index: 10 !important;
}
.fw-section-32 + * {
  margin-top: -50px;
  padding-top: calc(var(--section-padding-xlg) + 50px);
}
.fw-section-37 .fw-panel__text {
  max-width: 435px;
  width: 100%;
}
a, .fw-btn {
  transition: all 0.1s;
}
*:focus {
  outline: 0 !important;
}
.fw-text-sm {
  font-size: var(--fs-small);
  line-height: var(--line-height-small);
}
.fw-text-md {
  font-size: var(--fs-medium);
  line-height: var(--line-height-medium);
  color: var(--dark-color);
}
.fw-text-md-gray {
  font-family: var(--text-font-family);
  font-size: var(--fs-medium);
  line-height: var(--line-height-medium);
  color: var(--gray-color);
}
@media (max-width: 1240px) {
  .fw-text-md {
    font-size: var(--fs-base);
    font-family: var(--text-font-family);

  }
}
@media (max-width: 1240px) {
  .fw-text-md-gray {
    font-size: var(--fs-base);
    font-family: var(--text-font-family);
  }
}
.fw-text-lg {
  font-size: var(--fs-h4);
  line-height: var(--line-height-xsmall);
}
.fw-text-button {
  font-size: var(--fs-medium);
  line-height: var(--line-height-xsmall);
}
@media (max-width: 1240px) {
  .fw-text-button {
    font-size: var(--fs-base);
  }
}
@media (max-width: 1240px) {
  .fw-text-base-small {
    font-size: var(--fs-small);
  }
}
.fw-text-gray {
  color: var(--light-color);
}
.fw-text-dark {
  color: var(--dark-color);
}
.fw-text-dark a {
  color: inherit;
}
.fw-text-dark a:hover {
  color: var(--hover-color);
}
.fw-text-white {
  color: #fff;
}
.fw-text-accent {
  color: var(--accent-color);
}
.fw-container-sm {
  max-width: 825px;
  width: 100%;
}
.max-width-max-content {
  max-width: max-content;
}
.max-width-420 {
  max-width: 420px;
}
@media (min-width: 1025px) {
  .max-width-420-m {
    max-width: 420px;
  }
}
.max-width-800 {
  max-width: 800px;
}
@media (min-width: 1025px) {
  .max-width-800-m {
    max-width: 800px;
  }
}
.max-width-850 {
  max-width: 850px;
}
@media (min-width: 1025px) {
  .max-width-850-m {
    max-width: 850px;
  }
}
.max-width-895 {
  max-width: 895px;
}
@media (min-width: 1025px) {
  .max-width-895-m {
    max-width: 895px;
  }
}
.mt-10 {
  margin-top: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
@media (min-width: 641px) {
  .mb-10-s {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .mt-10-m {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .mb-10-m {
    margin-bottom: 10px;
  }
}
.mt-14 {
  margin-top: 14px;
  color: var(--dark-color);
}

.txt {
  margin-top: 14px;
  color: var(--dark-color);
}

/* Для изменения цвета при наведении */
.txt:hover {
  color: var(--gray-color);
}
.mb-14 {
  margin-bottom: 14px;
}
@media (min-width: 641px) {
  .mb-14-s {
    margin-bottom: 14px;
  }
}
@media (min-width: 1025px) {
  .mt-14-m {
    margin-top: 14px;
  }
}
@media (min-width: 1025px) {
  .mb-14-m {
    margin-bottom: 14px;
  }
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
@media (min-width: 641px) {
  .mb-20-s {
    margin-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .mt-20-m {
    margin-top: 20px;
  }
}
@media (min-width: 1025px) {
  .mb-20-m {
    margin-bottom: 20px;
  }
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
@media (min-width: 641px) {
  .mb-30-s {
    margin-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .mt-30-m {
    margin-top: 30px;
  }
}
@media (min-width: 1025px) {
  .mb-30-m {
    margin-bottom: 30px;
  }
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
@media (min-width: 641px) {
  .mb-40-s {
    margin-bottom: 40px;
  }
}
@media (min-width: 1025px) {
  .mt-40-m {
    margin-top: 40px;
  }
}
@media (min-width: 1025px) {
  .mb-40-m {
    margin-bottom: 40px;
  }
}
.mt-50 {
  margin-top: 50px;
}
.mb-50 {
  margin-bottom: 50px;
}
@media (min-width: 641px) {
  .mb-50-s {
    margin-bottom: 50px;
  }
}
@media (min-width: 1025px) {
  .mt-50-m {
    margin-top: 50px;
  }
}
@media (min-width: 1025px) {
  .mb-50-m {
    margin-bottom: 50px;
  }
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
@media (min-width: 641px) {
  .mb-60-s {
    margin-bottom: 60px;
  }
}
@media (min-width: 1025px) {
  .mt-60-m {
    margin-top: 60px;
  }
}
@media (min-width: 1025px) {
  .mb-60-m {
    margin-bottom: 60px;
  }
}
.mt-70 {
  margin-top: 70px;
}
.mb-70 {
  margin-bottom: 70px;
}
@media (min-width: 641px) {
  .mb-70-s {
    margin-bottom: 70px;
  }
}
@media (min-width: 1025px) {
  .mt-70-m {
    margin-top: 70px;
  }
}
@media (min-width: 1025px) {
  .mb-70-m {
    margin-bottom: 70px;
  }
}
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
.fs-base {
  font-size: var(--fs-base);
}
.fs-small {
  font-size: var(--fs-small);
}
.fs-xsmall {
  font-size: var(--fs-xsmall);
}
.fs-large {
  font-size: var(--fs-large);
}
.fs-xlarge {
  font-size: var(--fs-xlarge);
}
.fs-h6 {
  font-size: var(--fs-h6);
}
.uk-section:not(.uk-section-muted):not(.uk-section-secondary):not(.uk-section-primary):not(.fw-has-bg) + .uk-section:not(.uk-section-muted):not(.uk-section-secondary):not(.uk-section-primary):not(.fw-has-bg) {
  padding-top: 0;
}
.uk-section-muted + .uk-section-muted {
  padding-top: 0;
}
.uk-container[class*="uk-height"] {
  box-sizing: content-box;
}
.fw-cookie {
  padding: var(--gap) var(--gap-md);
  font-size: var(--fs-small);
  position: fixed;
  bottom: var(--gap);
  left: var(--gap);
  right: 0;
  background-color: var(--bg-default);
  border-radius: var(--border-radius);
  width: 295px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}
.fw-cookie [class*="uk-modal-close-"] {
  top: var(--gap-xs);
  right: var(--gap-xs);
  padding: 0;
}
/*# sourceMappingURL=style.min.map */