/*! UIkit 3.5.0 | https://www.getuikit.com | (c) 2014 - 2020 YOOtheme | MIT License */
/* ======================================================================== Component: Base ========================================================================== */
/* ======================================================================== Component: Spinner ========================================================================== */
/* Adopts `uk-icon` */
/* SVG ========================================================================== */
.uk-spinner>* {
  -webkit-animation: uk-spinner-rotate 1.4s linear infinite;
  animation: uk-spinner-rotate 1.4s linear infinite;
}

@-webkit-keyframes uk-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@keyframes uk-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

/* Circle */
.uk-spinner>*>* {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: uk-spinner-dash 1.4s ease-in-out infinite;
  animation: uk-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}

@-webkit-keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }

  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

@keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }

  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

/* ======================================================================== Component: Totop ========================================================================== */
/* Addopts `uk-icon` */
.uk-totop {
  padding: 5px;
  color: #999;
  -webkit-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

/* Hover + Focus */
.uk-totop:hover,
.uk-totop:focus {
  color: #666;
  outline: none;
}

/* OnClick */
.uk-totop:active {
  color: #333;
}

/* ======================================================================== Component: Alert ========================================================================== */
.uk-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
  background: #f8f8f8;
  color: #666;
}

/* Add margin if adjacent element */
*+.uk-alert {
  margin-top: 20px;
}

/* Remove margin from the last-child */
.uk-alert> :last-child {
  margin-bottom: 0;
}

/* Close Adopts `uk-close` ========================================================================== */
.uk-alert-close {
  position: absolute;
  top: 20px;
  right: 15px;
  color: inherit;
  opacity: 0.4;
}

/* Remove margin from adjacent element */
.uk-alert-close:first-child+* {
  margin-top: 0;
}

/* Hover + Focus */
.uk-alert-close:hover,
.uk-alert-close:focus {
  color: inherit;
  opacity: 0.8;
}

/* Style modifiers ========================================================================== */
/* Primary */
.uk-alert-primary {
  background: #d8eafc;
  color: #1e87f0;
}

/* Success */
.uk-alert-success {
  background: #edfbf6;
  color: #32d296;
}

/* Warning */
.uk-alert-warning {
  background: #fff6ee;
  color: #faa05a;
}

/* Danger */
.uk-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}

/* Content */
.uk-alert h1,
.uk-alert h2,
.uk-alert h3,
.uk-alert h4,
.uk-alert h5,
.uk-alert h6 {
  color: inherit;
}

.uk-alert a:not([class]) {
  color: inherit;
  text-decoration: underline;
}

.uk-alert a:not([class]):hover {
  color: inherit;
  text-decoration: underline;
}

/* ======================================================================== Component: Overlay ========================================================================== */
.uk-overlay {
  padding: 30px 30px;
}

/* Remove margin from the last-child */
.uk-overlay> :last-child {
  margin-bottom: 0;
}

/* Icon ========================================================================== */
/* Style modifiers ========================================================================== */
/* Default */
.uk-overlay-default {
  background: rgba(255, 255, 255, 0.8);
}

/* Primary */
.uk-overlay-primary {
  background: rgba(34, 34, 34, 0.8);
}

/* ======================================================================== Component: Search ========================================================================== */
/* 1. Container fits its content 2. Create position context 3. Prevent content overflow 4. Reset `form` */
.uk-search {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  margin: 0;
}

/* Input ========================================================================== */
/* Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X. */
.uk-search-input::-webkit-search-cancel-button,
.uk-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Removes placeholder transparency in Firefox. */
.uk-search-input::-moz-placeholder {
  opacity: 1;
}

/* 1. Define consistent box sizing. 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 5. Show the overflow in Edge. 6. Remove default style in iOS. 7. Vertical alignment 8. Take the full container width 9. Style */
.uk-search-input {
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  -webkit-border-radius: 0;
  border-radius: 0;
  /* 4 */
  font: inherit;
  /* 5 */
  overflow: visible;
  /* 6 */
  -webkit-appearance: none;
  /* 7 */
  vertical-align: middle;
  /* 8 */
  width: 100%;
  /* 9 */
  border: none;
  color: #666;
}

.uk-search-input:focus {
  outline: none;
}

/* Placeholder */
.uk-search-input:-ms-input-placeholder {
  color: #999 !important;
}

.uk-search-input::-webkit-input-placeholder {
  color: #999;
}

.uk-search-input::-moz-placeholder {
  color: #999;
}

.uk-search-input::-ms-input-placeholder {
  color: #999;
}

.uk-search-input::placeholder {
  color: #999;
}

/* Icon (Adopts `uk-icon`) ========================================================================== */
/* Remove default focus style */
.uk-search-icon:focus {
  outline: none;
}

/* Position above input 1. Set position 2. Center icon vertically and horizontally 3. Style */
.uk-search .uk-search-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* 3 */
  color: #999;
}

/* Required for `a`. */
.uk-search .uk-search-icon:hover {
  color: #999;
}

/* Make `input` element clickable through icon, e.g. if it's a `span` */
.uk-search .uk-search-icon:not(a):not(button):not(input) {
  pointer-events: none;
}

/* Position modifier */
.uk-search .uk-search-icon-flip {
  right: 0;
  left: auto;
}

/* Default modifier ========================================================================== */
.uk-search-default {
  width: 180px;
}

/* Input */
.uk-search-default .uk-search-input {
  height: 40px;
  padding-left: 6px;
  padding-right: 6px;
  background: transparent;
  border: 1px solid #e5e5e5;
}

/* Focus */
.uk-search-default .uk-search-input:focus {
  background-color: transparent;
}

/* Icon */
.uk-search-default .uk-search-icon {
  width: 40px;
}

.uk-search-default .uk-search-icon:not(.uk-search-icon-flip)~.uk-search-input {
  padding-left: 40px;
}

.uk-search-default .uk-search-icon-flip~.uk-search-input {
  padding-right: 40px;
}

/* Navbar modifier ========================================================================== */
.uk-search-navbar {
  width: 400px;
}

/* Input */
.uk-search-navbar .uk-search-input {
  height: 40px;
  background: transparent;
  font-size: 1.5rem;
}

/* Icon */
.uk-search-navbar .uk-search-icon {
  width: 40px;
}

.uk-search-navbar .uk-search-icon:not(.uk-search-icon-flip)~.uk-search-input {
  padding-left: 40px;
}

.uk-search-navbar .uk-search-icon-flip~.uk-search-input {
  padding-right: 40px;
}

/* Large modifier ========================================================================== */
.uk-search-large {
  width: 500px;
}

/* Input */
.uk-search-large .uk-search-input {
  height: 80px;
  background: transparent;
  font-size: 2.625rem;
}

/* Icon */
.uk-search-large .uk-search-icon {
  width: 80px;
}

.uk-search-large .uk-search-icon:not(.uk-search-icon-flip)~.uk-search-input {
  padding-left: 80px;
}

.uk-search-large .uk-search-icon-flip~.uk-search-input {
  padding-right: 80px;
}

/* Toggle ========================================================================== */
.uk-search-toggle {
  color: #999;
}

/* Hover + Focus */
.uk-search-toggle:hover,
.uk-search-toggle:focus {
  color: #666;
}

/* ======================================================================== Component: Nav ========================================================================== */
/* Reset 1. Prepare lists 2. Prepare links 3. Remove default focus style */
/* 1 */
.uk-nav,
.uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 2 */
.uk-nav li>a {
  display: block;
  text-decoration: none;
}

/* 3 */
.uk-nav li>a:focus {
  outline: none;
}

/* Items Must target `a` elements to exclude other elements (e.g. lists) */
.uk-nav>li>a {
  padding: 5px 0;
}

/* Sublists ========================================================================== */
/* Level 2 `ul` needed for higher specificity to override padding */
ul.uk-nav-sub {
  padding: 5px 0 5px 15px;
}

/* Level 3 and deeper */
.uk-nav-sub ul {
  padding-left: 15px;
}

/* Items */
.uk-nav-sub a {
  padding: 2px 0;
}

/* Parent icon modifier ========================================================================== */
.uk-nav-parent-icon>.uk-parent>a::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  float: right;
  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%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.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%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

/* Header ========================================================================== */
.uk-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.uk-nav-header:not(:first-child) {
  margin-top: 20px;
}

/* Divider ========================================================================== */
.uk-nav-divider {
  margin: 5px 0;
}

/* Default modifier ========================================================================== */
.uk-nav-default {
  font-size: 0.875rem;
}

/* Items */
.uk-nav-default>li>a {
  color: #999;
}

/* Hover + Focus */
.uk-nav-default>li>a:hover,
.uk-nav-default>li>a:focus {
  color: #666;
}

/* Active */
.uk-nav-default>li.uk-active>a {
  color: #333;
}

/* Header */
.uk-nav-default .uk-nav-header {
  color: #333;
}

/* Divider */
.uk-nav-default .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/* Sublists */
.uk-nav-default .uk-nav-sub a {
  color: #999;
}

.uk-nav-default .uk-nav-sub a:hover,
.uk-nav-default .uk-nav-sub a:focus {
  color: #666;
}

.uk-nav-default .uk-nav-sub li.uk-active>a {
  color: #333;
}

/* Primary modifier ========================================================================== */
/* Items */
.uk-nav-primary>li>a {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #999;
}

/* Hover + Focus */
.uk-nav-primary>li>a:hover,
.uk-nav-primary>li>a:focus {
  color: #666;
}

/* Active */
.uk-nav-primary>li.uk-active>a {
  color: #333;
}

/* Header */
.uk-nav-primary .uk-nav-header {
  color: #333;
}

/* Divider */
.uk-nav-primary .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/* Sublists */
.uk-nav-primary .uk-nav-sub a {
  color: #999;
}

.uk-nav-primary .uk-nav-sub a:hover,
.uk-nav-primary .uk-nav-sub a:focus {
  color: #666;
}

.uk-nav-primary .uk-nav-sub li.uk-active>a {
  color: #333;
}

/* Alignment modifier ========================================================================== */
.uk-nav-center {
  text-align: center;
}

/* Sublists */
.uk-nav-center .uk-nav-sub,
.uk-nav-center .uk-nav-sub ul {
  padding-left: 0;
}

/* Parent icon modifier  */
.uk-nav-center.uk-nav-parent-icon>.uk-parent>a::after {
  position: absolute;
}

/* ======================================================================== Component: Navbar ========================================================================== */
/* 1. Create position context to center navbar group */
.uk-navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  position: relative;
}

/* Container ========================================================================== */
.uk-navbar-container:not(.uk-navbar-transparent) {
  background: #f8f8f8;
}

/* Remove pseudo elements created by micro clearfix as precaution (if Container component is used) */
.uk-navbar-container> ::before,
.uk-navbar-container> ::after {
  display: none !important;
}

/* Groups ========================================================================== */
/* 1. Align navs and items vertically if they have a different height 2. Note: IE 11 requires an extra `div` which affects the center selector */
.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center,
.uk-navbar-center-left>*,
.uk-navbar-center-right>* {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Horizontal alignment 1. Create position context for centered navbar with sub groups (left/right) 2. Fix text wrapping if content is larger than 50% of the container. 3. Needed for dropdowns because a new position context is created `z-index` must be smaller than off-canvas 4. Align sub groups for centered navbar */
.uk-navbar-right {
  margin-left: auto;
}

.uk-navbar-center:only-child {
  margin-left: auto;
  margin-right: auto;
  /* 1 */
  position: relative;
}

.uk-navbar-center:not(:only-child) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* 2 */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 3 */
  z-index: 990;
}

/* 4 */
.uk-navbar-center-left,
.uk-navbar-center-right {
  position: absolute;
  top: 0;
}

.uk-navbar-center-left {
  right: 100%;
}

.uk-navbar-center-right {
  left: 100%;
}

[class*='uk-navbar-center-'] {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Nav ========================================================================== */
/* 1. Reset list */
.uk-navbar-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Allow items to wrap into the next line Only not `absolute` positioned groups */
.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center:only-child {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Items 1. Center content vertically and horizontally 2. Dimensions 3. Style 4. Required for `a` */
.uk-navbar-nav>li>a,
.uk-navbar-item,
.uk-navbar-toggle {
  /* 1 */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* 2 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 80px;
  padding: 0 15px;
  /* 3 */
  font-size: 0.875rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  text-decoration: none;
}

/* Nav items */
.uk-navbar-nav>li>a {
  color: #999;
  text-transform: uppercase;
  -webkit-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, background-color;
  -o-transition-property: color, background-color;
  transition-property: color, background-color;
}

/* Hover Apply hover style also to focus state and if dropdown is opened */
.uk-navbar-nav>li:hover>a,
.uk-navbar-nav>li>a:focus,
.uk-navbar-nav>li>a.uk-open {
  color: #666;
  outline: none;
}

/* OnClick */
.uk-navbar-nav>li>a:active {
  color: #333;
}

/* Active */
.uk-navbar-nav>li.uk-active>a {
  color: #333;
}

/* Item ========================================================================== */
.uk-navbar-item {
  color: #666;
}

/* Toggle ========================================================================== */
.uk-navbar-toggle {
  color: #999;
}

.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #666;
  outline: none;
  text-decoration: none;
}

/* Icon Adopts `uk-icon` */
/* Hover + Focus */
/* Subtitle ========================================================================== */
.uk-navbar-subtitle {
  font-size: 0.875rem;
}

/* Style modifiers ========================================================================== */
/* Dropdown ========================================================================== */
/* Adopts `uk-dropdown` 1. Hide by default 2. Set position 3. Set a default width 4. Style */
.uk-navbar-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
  /* 4 */
  padding: 25px;
  background: #fff;
  color: #666;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Show */
.uk-navbar-dropdown.uk-open {
  display: block;
}

/* Direction / Alignment modifiers */
/* Direction */
[class*='uk-navbar-dropdown-top'] {
  margin-top: -15px;
}

[class*='uk-navbar-dropdown-bottom'] {
  margin-top: 15px;
}

[class*='uk-navbar-dropdown-left'] {
  margin-left: -15px;
}

[class*='uk-navbar-dropdown-right'] {
  margin-left: 15px;
}

/* Grid Adopts `uk-grid` */
/* Gutter Horizontal */
.uk-navbar-dropdown-grid {
  margin-left: -50px;
}

.uk-navbar-dropdown-grid>* {
  padding-left: 50px;
}

/* Gutter Vertical */
.uk-navbar-dropdown-grid>.uk-grid-margin {
  margin-top: 50px;
}

/* Stack */
.uk-navbar-dropdown-stack .uk-navbar-dropdown-grid>* {
  width: 100% !important;
}

/* Width modifier */
.uk-navbar-dropdown-width-2:not(.uk-navbar-dropdown-stack) {
  width: 400px;
}

.uk-navbar-dropdown-width-3:not(.uk-navbar-dropdown-stack) {
  width: 600px;
}

.uk-navbar-dropdown-width-4:not(.uk-navbar-dropdown-stack) {
  width: 800px;
}

.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
  width: 1000px;
}

/* Dropbar modifier */
.uk-navbar-dropdown-dropbar {
  margin-top: 0;
  margin-bottom: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Dropdown Nav Adopts `uk-nav` ========================================================================== */
.uk-navbar-dropdown-nav {
  font-size: 0.875rem;
}

/* Items */
.uk-navbar-dropdown-nav>li>a {
  color: #999;
}

/* Hover + Focus */
.uk-navbar-dropdown-nav>li>a:hover,
.uk-navbar-dropdown-nav>li>a:focus {
  color: #666;
}

/* Active */
.uk-navbar-dropdown-nav>li.uk-active>a {
  color: #333;
}

/* Header */
.uk-navbar-dropdown-nav .uk-nav-header {
  color: #333;
}

/* Divider */
.uk-navbar-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/* Sublists */
.uk-navbar-dropdown-nav .uk-nav-sub a {
  color: #999;
}

.uk-navbar-dropdown-nav .uk-nav-sub a:hover,
.uk-navbar-dropdown-nav .uk-nav-sub a:focus {
  color: #666;
}

.uk-navbar-dropdown-nav .uk-nav-sub li.uk-active>a {
  color: #333;
}

/* Dropbar ========================================================================== */
.uk-navbar-dropbar {
  background: #fff;
}

/* Slide modifier */
.uk-navbar-dropbar-slide {
  position: absolute;
  z-index: 980;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05);
}

/* Navbar */
.uk-navbar-container>.uk-container .uk-navbar-left {
  margin-left: -15px;
  margin-right: -15px;
}

.uk-navbar-container>.uk-container .uk-navbar-right {
  margin-right: -15px;
}

/* Grid Divider */
.uk-navbar-dropdown-grid>* {
  position: relative;
}

.uk-navbar-dropdown-grid> :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  border-left: 1px solid #e5e5e5;
}

/* Vertical */
.uk-navbar-dropdown-grid.uk-grid-stack>.uk-grid-margin::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50px;
  right: 0;
  border-top: 1px solid #e5e5e5;
}

/* ======================================================================== Component: Subnav ========================================================================== */
/* 1. Allow items to wrap into the next line 2. Gutter 3. Reset list */
.uk-subnav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}

/* 1. Space is allocated solely based on content dimensions: 0 0 auto 2. Gutter 3. Create position context for dropdowns */
.uk-subnav>* {
  /* 1 */
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items ========================================================================== */
/* Items must target `a` elements to exclude other elements (e.g. dropdowns) Using `:first-child` instead of `a` to support `span` elements for text 1. Prevent gap if child element is `inline-block`, e.g. an icon 2. Style */
.uk-subnav>*> :first-child {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
  font-size: 0.875rem;
  text-transform: uppercase;
  -webkit-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, background-color;
  -o-transition-property: color, background-color;
  transition-property: color, background-color;
}

/* Hover + Focus */
.uk-subnav>*>a:hover,
.uk-subnav>*>a:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}

/* Active */
.uk-subnav>.uk-active>a {
  color: #333;
}

/* Divider modifier ========================================================================== */
/* Set gutter  */
.uk-subnav-divider {
  margin-left: -41px;
}

/* Align items and divider vertically */
.uk-subnav-divider>* {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Divider 1. `nth-child` makes it also work without JS if it's only one row */
.uk-subnav-divider> ::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 20px;
  border-left: 1px solid transparent;
}

/* 1 */
.uk-subnav-divider> :nth-child(n+2):not(.uk-first-column)::before {
  border-left-color: #e5e5e5;
}

/* Pill modifier ========================================================================== */
.uk-subnav-pill>*> :first-child {
  padding: 5px 10px;
  background: transparent;
  color: #999;
}

/* Hover + Focus */
.uk-subnav-pill>*>a:hover,
.uk-subnav-pill>*>a:focus {
  background-color: #f8f8f8;
  color: #666;
}

/* OnClick */
.uk-subnav-pill>*>a:active {
  background-color: #f8f8f8;
  color: #666;
}

/* Active */
.uk-subnav-pill>.uk-active>a {
  background-color: #1e87f0;
  color: #fff;
}

/* Disabled The same for all style modifiers ========================================================================== */
.uk-subnav>.uk-disabled>a {
  color: #999;
}

/* ======================================================================== Component: Breadcrumb ========================================================================== */
/* 1. Allow items to wrap into the next line 2. Reset list */
.uk-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  padding: 0;
  list-style: none;
}

/* Space is allocated solely based on content dimensions: 0 0 auto */
.uk-breadcrumb>* {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

/* Items ========================================================================== */
.uk-breadcrumb>*>* {
  display: inline-block;
  font-size: 0.875rem;
  color: #999;
}

/* Hover + Focus */
.uk-breadcrumb>*> :hover,
.uk-breadcrumb>*> :focus {
  color: #666;
  text-decoration: none;
}

/* Disabled */
/* Active */
.uk-breadcrumb> :last-child>span,
.uk-breadcrumb> :last-child>a:not([href]) {
  color: #666;
}

/* Divider `nth-child` makes it also work without JS if it's only one row */
.uk-breadcrumb> :nth-child(n+2):not(.uk-first-column)::before {
  content: "/";
  display: inline-block;
  margin: 0 20px;
  font-size: 0.875rem;
  color: #999;
}

/* ======================================================================== Component: Pagination ========================================================================== */
/* 1. Allow items to wrap into the next line 2. Gutter 3. Reset list */
.uk-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}

/* 1. Space is allocated solely based on content dimensions: 0 0 auto 2. Gutter 3. Create position context for dropdowns */
.uk-pagination>* {
  /* 1 */
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items ========================================================================== */
/* 1. Prevent gap if child element is `inline-block`, e.g. an icon 2. Style */
.uk-pagination>*>* {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
  -webkit-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

/* Hover + Focus */
.uk-pagination>*> :hover,
.uk-pagination>*> :focus {
  color: #666;
  text-decoration: none;
}

/* Active */
.uk-pagination>.uk-active>* {
  color: #666;
}

/* Disabled */
.uk-pagination>.uk-disabled>* {
  color: #999;
}

/* ======================================================================== Component: Tab ========================================================================== */
/* 1. Allow items to wrap into the next line 2. Gutter 3. Reset list */
.uk-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
  position: relative;
}

.uk-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* 1. Space is allocated solely based on content dimensions: 0 0 auto 2. Gutter 3. Create position context for dropdowns */
.uk-tab>* {
  /* 1 */
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items ========================================================================== */
/* Items must target `a` elements to exclude other elements (e.g. dropdowns) 1. Center text if a width is set 2. Style */
.uk-tab>*>a {
  /* 1 */
  display: block;
  text-align: center;
  /* 2 */
  padding: 5px 10px;
  color: #999;
  border-bottom: 1px solid transparent;
  font-size: 0.875rem;
  text-transform: uppercase;
  -webkit-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

/* Hover + Focus */
.uk-tab>*>a:hover,
.uk-tab>*>a:focus {
  color: #666;
  text-decoration: none;
}

/* Active */
.uk-tab>.uk-active>a {
  color: #333;
  border-color: #1e87f0;
}

/* Disabled */
.uk-tab>.uk-disabled>a {
  color: #999;
}

/* Position modifier ========================================================================== */
/* Bottom */
.uk-tab-bottom::before {
  top: 0;
  bottom: auto;
}

.uk-tab-bottom>*>a {
  border-top: 1px solid transparent;
  border-bottom: none;
}

/* Left + Right 1. Reset Gutter */
.uk-tab-left,
.uk-tab-right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  /* 1 */
  margin-left: 0;
}

/* 1 */
.uk-tab-left>*,
.uk-tab-right>* {
  padding-left: 0;
}

.uk-tab-left::before {
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}

.uk-tab-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}

.uk-tab-left>*>a {
  text-align: left;
  border-right: 1px solid transparent;
  border-bottom: none;
}

.uk-tab-right>*>a {
  text-align: left;
  border-left: 1px solid transparent;
  border-bottom: none;
}

.uk-tab .uk-dropdown {
  margin-left: 30px;
}

/* ======================================================================== Component: Slidenav ========================================================================== */
/* Adopts `uk-icon` */
.uk-slidenav {
  padding: 5px 10px;
  color: rgba(102, 102, 102, 0.5);
  -webkit-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

/* Hover + Focus */
.uk-slidenav:hover,
.uk-slidenav:focus {
  color: rgba(102, 102, 102, 0.9);
  outline: none;
}

/* OnClick */
.uk-slidenav:active {
  color: rgba(102, 102, 102, 0.5);
}

/* Icon modifier ========================================================================== */
/* Previous */
/* Next */
/* Size modifier ========================================================================== */
.uk-slidenav-large {
  padding: 10px 10px;
}

/* Container ========================================================================== */
.uk-slidenav-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* ======================================================================== Component: Drop ========================================================================== */
/* 1. Hide by default 2. Set position 3. Set a default width */
.uk-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 300px;
}

/* Show */
.uk-drop.uk-open {
  display: block;
}

/* Direction / Alignment modifiers ========================================================================== */
/* Direction */
[class*='uk-drop-top'] {
  margin-top: -20px;
}

[class*='uk-drop-bottom'] {
  margin-top: 20px;
}

[class*='uk-drop-left'] {
  margin-left: -20px;
}

[class*='uk-drop-right'] {
  margin-left: 20px;
}

/* Grid modifiers ========================================================================== */
.uk-drop-stack .uk-drop-grid>* {
  width: 100% !important;
}

/* ======================================================================== Component: Dropdown ========================================================================== */
/* 1. Hide by default 2. Set position 3. Set a default width 4. Style */
.uk-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 25px;
  background: #fff;
  color: #666;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Show */
.uk-dropdown.uk-open {
  display: block;
}

/* Nav Adopts `uk-nav` ========================================================================== */
.uk-dropdown-nav {
  white-space: nowrap;
  font-size: 0.875rem;
}

/* Items */
.uk-dropdown-nav>li>a {
  color: #999;
}

/* Hover + Focus + Active */
.uk-dropdown-nav>li>a:hover,
.uk-dropdown-nav>li>a:focus,
.uk-dropdown-nav>li.uk-active>a {
  color: #666;
}

/* Header */
.uk-dropdown-nav .uk-nav-header {
  color: #333;
}

/* Divider */
.uk-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/* Sublists */
.uk-dropdown-nav .uk-nav-sub a {
  color: #999;
}

.uk-dropdown-nav .uk-nav-sub a:hover,
.uk-dropdown-nav .uk-nav-sub a:focus,
.uk-dropdown-nav .uk-nav-sub li.uk-active>a {
  color: #666;
}

/* Direction / Alignment modifiers ========================================================================== */
/* Direction */
[class*='uk-dropdown-top'] {
  margin-top: -10px;
}

[class*='uk-dropdown-bottom'] {
  margin-top: 10px;
}

[class*='uk-dropdown-left'] {
  margin-left: -10px;
}

[class*='uk-dropdown-right'] {
  margin-left: 10px;
}

/* Grid modifiers ========================================================================== */
.uk-dropdown-stack .uk-dropdown-grid>* {
  width: 100% !important;
}

/* ======================================================================== 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: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-modal {
    padding: 50px 30px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .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 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: -webkit-calc(100% - 0.01px) !important;
  max-width: calc(100% - 0.01px) !important;
  /* 4 */
  background: #fff;
  /* 5 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

/* Open */
.uk-open>.uk-modal-dialog {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  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%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Sections ========================================================================== */
.uk-modal-body {
  display: flow-root;
  padding: 30px 30px;
}

.uk-modal-header {
  display: flow-root;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.uk-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

/* 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: 2rem;
  line-height: 1.3;
}

/* Close Adopts `uk-close` ========================================================================== */
[class*='uk-modal-close-'] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}

/* 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;
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  color: #ffffff;
}

.uk-modal-close-outside:hover {
  color: #fff;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {

  /* 1 */
  .uk-modal-close-outside {
    right: 0;
    -webkit-transform: translate(100%, -100%);
    -ms-transform: translate(100%, -100%);
    transform: translate(100%, -100%);
  }
}

/* Full */
.uk-modal-close-full {
  top: 0;
  right: 0;
  padding: 20px;
  background: #fff;
}

/* ======================================================================== Component: Lightbox ========================================================================== */
/* 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 7. Prevent cancellation of pointer events while dragging */
.uk-lightbox {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 5 */
  background: #000;
  /* 6 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 7 */
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}

/* Open 1. Center child 2. Fade-in */
.uk-lightbox.uk-open {
  display: block;
  /* 2 */
  opacity: 1;
}

/* Page ========================================================================== */
/* Prevent scrollbars */
.uk-lightbox-page {
  overflow: hidden;
}

/* Item ========================================================================== */
/* 1. Center child within the viewport 2. Not visible by default 3. Color needed for spinner icon 4. Optimize animation 5. Responsiveness Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera Using `vh` and `vw` to make responsive image work in IE11 6. Suppress outline on focus */
.uk-lightbox-items>* {
  /* 1 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* 3 */
  color: rgba(255, 255, 255, 0.7);
  /* 4 */
  will-change: transform, opacity;
}

/* 5 */
.uk-lightbox-items>*>* {
  max-width: 100vw;
  max-height: 100vh;
}

/* 6 */
.uk-lightbox-items> :focus {
  outline: none;
}

.uk-lightbox-items>*> :not(iframe) {
  width: auto;
  height: auto;
}

.uk-lightbox-items>.uk-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* Toolbar ========================================================================== */
.uk-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.uk-lightbox-toolbar>* {
  color: rgba(255, 255, 255, 0.7);
}

/* Toolbar Icon (Close) ========================================================================== */
.uk-lightbox-toolbar-icon {
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
}

/* Hover */
.uk-lightbox-toolbar-icon:hover {
  color: #fff;
}

/* Button (Slidenav) ========================================================================== */
/* 1. Center icon vertically and horizontally */
.uk-lightbox-button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  /* 1 */
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Hover */
.uk-lightbox-button:hover {
  color: #fff;
}

/* Caption ========================================================================== */
.uk-lightbox-caption:empty {
  display: none;
}

/* Iframe ========================================================================== */
.uk-lightbox-iframe {
  width: 80%;
  height: 80%;
}

/* ======================================================================== Component: Slideshow ========================================================================== */
/* 1. Prevent tab highlighting on iOS. */
.uk-slideshow {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Items ========================================================================== */
/* 1. Create position and stacking context 2. Reset list 3. Clip child elements 4. Prevent displaying the callout information on iOS. */
.uk-slideshow-items {
  /* 1 */
  position: relative;
  z-index: 0;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  overflow: hidden;
  /* 4 */
  -webkit-touch-callout: none;
}

/* Item ========================================================================== */
/* 1. Position items above each other 2. Take the full width 3. Clip child elements, e.g. for `uk-cover` 4. Optimize animation 5. Disable horizontal panning gestures in IE11 and Edge 6. Suppress outline on focus */
.uk-slideshow-items>* {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  right: 0;
  bottom: 0;
  /* 3 */
  overflow: hidden;
  /* 4 */
  will-change: transform, opacity;
  /* 5 */
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

/* 6 */
.uk-slideshow-items> :focus {
  outline: none;
}

/* Hide not active items */
.uk-slideshow-items> :not(.uk-active) {
  display: none;
}

/* ======================================================================== 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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}

.uk-slider-items.uk-grid {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  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 */
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  /* 2 */
  position: relative;
  /* 3 */
  -ms-touch-action: pan-y;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Faster animations */
.uk-sticky[class*='uk-animation-'] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.uk-sticky.uk-animation-reverse {
  -webkit-animation-duration: 0.2s;
  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: 1000;
}

/* 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;
  left: -270px;
  /* 2 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #222;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-bar {
    left: -350px;
    width: 350px;
    padding: 40px 40px;
  }
}

/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: -270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-flip .uk-offcanvas-bar {
    right: -350px;
  }
}

/* Open */
.uk-open>.uk-offcanvas-bar {
  left: 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 {
  -webkit-transition: left 0.3s ease-out;
  -o-transition: left 0.3s ease-out;
  transition: left 0.3s ease-out;
}

.uk-offcanvas-flip .uk-offcanvas-bar-animation {
  -webkit-transition-property: right;
  -o-transition-property: right;
  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 */
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  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: 270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-open>.uk-offcanvas-reveal {
    width: 350px;
  }
}

/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}

/* Close Adopts `uk-close` ========================================================================== */
.uk-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}

/* 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 */
  -ms-touch-action: none;
  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(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  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;
  -webkit-transition: left 0.3s ease-out;
  -o-transition: left 0.3s ease-out;
  transition: left 0.3s ease-out;
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

/* Activate slide-out animation */
:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
  left: 270px;
}

.uk-offcanvas-flip.uk-offcanvas-container-animation {
  left: -270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
    left: 350px;
  }

  .uk-offcanvas-flip.uk-offcanvas-container-animation {
    left: -350px;
  }
}

/* ======================================================================== 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: Leader ========================================================================== */
.uk-leader {
  overflow: hidden;
}

/* 1. Place element in text flow 2. Never break into a new line 3. Get a string back with as many repeating characters to fill the container 4. Prevent wrapping. Overflowing characters will be clipped by the container */
.uk-leader-fill::after {
  /* 1 */
  display: inline-block;
  margin-left: 15px;
  /* 2 */
  width: 0;
  /* 3 */
  content: attr(data-fill);
  /* 4 */
  white-space: nowrap;
}

/* Hide if media does not match */
.uk-leader-fill.uk-leader-hide::after {
  display: none;
}

/* Pass fill character to JS */
.uk-leader-fill-content::before {
  content: '.';
}

:root {
  --uk-leader-fill-content: .;
}

/* ======================================================================== Component: Iconnav ========================================================================== */
/* 1. Allow items to wrap into the next line 2. Reset list 3. Gutter */
.uk-iconnav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  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: #666;
  outline: none;
}

/* Active */
.uk-iconnav>.uk-active>a {
  color: #666;
}

/* Modifier: 'uk-iconnav-vertical' ========================================================================== */
/* 1. Change direction 2. Gutter */
.uk-iconnav-vertical {
  /* 1 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -10px;
}

/* 2 */
.uk-iconnav-vertical>* {
  padding-left: 0;
  padding-top: 10px;
}

/* ======================================================================== Component: Notification ========================================================================== */
/* 1. Set position 2. Dimensions */
.uk-notification {
  /* 1 */
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  /* 2 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 350px;
}

/* Position modifiers
========================================================================== */
.uk-notification-top-right,
.uk-notification-bottom-right {
  left: auto;
  right: 10px;
}

.uk-notification-top-center,
.uk-notification-bottom-center {
  left: 50%;
  margin-left: -175px;
}

.uk-notification-bottom-left,
.uk-notification-bottom-right,
.uk-notification-bottom-center {
  top: auto;
  bottom: 10px;
}

/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 639px) {
  .uk-notification {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}

/* Message
========================================================================== */
.uk-notification-message {
  position: relative;
  padding: 15px;
  background: #f8f8f8;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
}

*+.uk-notification-message {
  margin-top: 10px;
}

/* Close Adopts `uk-close` ========================================================================== */
.uk-notification-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}

.uk-notification-message:hover .uk-notification-close {
  display: block;
}

/* Style modifiers ========================================================================== */
/* Primary */
.uk-notification-message-primary {
  color: #1e87f0;
}

/* Success */
.uk-notification-message-success {
  color: #32d296;
}

/* Warning */
.uk-notification-message-warning {
  color: #faa05a;
}

/* Danger */
.uk-notification-message-danger {
  color: #f0506e;
}

/* ======================================================================== Component: Tooltip ========================================================================== */
/* 1. Hide by default 2. Position 3. Remove tooltip from document flow to keep the UIkit container from changing its size when injected into the document initially 4. Dimensions 5. Style */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  top: 0;
  /* 4 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 200px;
  padding: 3px 6px;
  /* 5 */
  background: #666;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
}

/* Show */
.uk-tooltip.uk-active {
  display: block;
}

/* Direction / Alignment modifiers ========================================================================== */
/* Direction */
[class*='uk-tooltip-top'] {
  margin-top: -10px;
}

[class*='uk-tooltip-bottom'] {
  margin-top: 10px;
}

[class*='uk-tooltip-left'] {
  margin-left: -10px;
}

[class*='uk-tooltip-right'] {
  margin-left: 10px;
}

/* ======================================================================== Component: Placeholder ========================================================================== */
.uk-placeholder {
  margin-bottom: 20px;
  padding: 30px 30px;
  background: transparent;
  border: 1px dashed #e5e5e5;
}

/* Add margin if adjacent element */
*+.uk-placeholder {
  margin-top: 20px;
}

/* Remove margin from the last-child */
.uk-placeholder> :last-child {
  margin-bottom: 0;
}

/* ======================================================================== Component: Progress ========================================================================== */
/* 1. Add the correct vertical alignment in Chrome, Firefox, and Opera. 2. Remove default style 3. Behave like a block element 4. Remove borders in Firefox and Edge 5. Set background color for progress container in Firefox, IE11 and Edge 6. Style */
.uk-progress {
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 3 */
  display: block;
  width: 100%;
  /* 4 */
  border: 0;
  /* 5 */
  background-color: #f8f8f8;
  /* 6 */
  margin-bottom: 20px;
  height: 15px;
  -webkit-border-radius: 500px;
  border-radius: 500px;
  overflow: hidden;
}

/* Add margin if adjacent element */
*+.uk-progress {
  margin-top: 20px;
}

/* Remove animated circles for indeterminate state in IE11 and Edge */
.uk-progress:indeterminate {
  color: transparent;
}

/* Progress container 2. Remove progress bar for indeterminate state in Firefox */
.uk-progress::-webkit-progress-bar {
  background-color: #f8f8f8;
  -webkit-border-radius: 500px;
  border-radius: 500px;
  overflow: hidden;
}

/* 2 */
.uk-progress:indeterminate::-moz-progress-bar {
  width: 0;
}

/* Progress bar 1. Remove right border in IE11 and Edge */
.uk-progress::-webkit-progress-value {
  background-color: #1e87f0;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.uk-progress::-moz-progress-bar {
  background-color: #1e87f0;
}

.uk-progress::-ms-fill {
  background-color: #1e87f0;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
  /* 1 */
  border: 0;
}

/* ======================================================================== Component: Sortable ========================================================================== */
.uk-sortable {
  position: relative;
}

/* Deactivate pointer-events on SVGs in Safari */
.uk-sortable svg {
  pointer-events: none;
}

/* Remove margin from the last-child */
.uk-sortable> :last-child {
  margin-bottom: 0;
}

/* Drag ========================================================================== */
.uk-sortable-drag {
  position: fixed !important;
  z-index: 1050 !important;
  pointer-events: none;
}

/* Placeholder ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
  pointer-events: none;
}

/* Empty modifier ========================================================================== */
.uk-sortable-empty {
  min-height: 50px;
}

/* Handle ========================================================================== */
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}

/* ======================================================================== Component: Countdown ========================================================================== */
/* Item ========================================================================== */
/* Number ========================================================================== */
/* 1. Make numbers all of the same size to prevent jumping. Must be supported by the font. 2. Style */
.uk-countdown-number {
  /* 1 */
  font-variant-numeric: tabular-nums;
  /* 2 */
  font-size: 2rem;
  line-height: 0.8;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-countdown-number {
    font-size: 4rem;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-countdown-number {
    font-size: 6rem;
  }
}

/* Separator ========================================================================== */
.uk-countdown-separator {
  font-size: 1rem;
  line-height: 1.6;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-countdown-separator {
    font-size: 2rem;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-countdown-separator {
    font-size: 3rem;
  }
}

/* Label ========================================================================== */
/* ======================================================================== Component: Animation ========================================================================== */
[class*='uk-animation-'] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Animations ========================================================================== */
/* Fade */
.uk-animation-fade {
  -webkit-animation-name: uk-fade;
  animation-name: uk-fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

/* Scale */
.uk-animation-scale-up {
  -webkit-animation-name: uk-fade-scale-02;
  animation-name: uk-fade-scale-02;
}

.uk-animation-scale-down {
  -webkit-animation-name: uk-fade-scale-18;
  animation-name: uk-fade-scale-18;
}

/* Slide */
.uk-animation-slide-top {
  -webkit-animation-name: uk-fade-top;
  animation-name: uk-fade-top;
}

.uk-animation-slide-bottom {
  -webkit-animation-name: uk-fade-bottom;
  animation-name: uk-fade-bottom;
}

.uk-animation-slide-left {
  -webkit-animation-name: uk-fade-left;
  animation-name: uk-fade-left;
}

.uk-animation-slide-right {
  -webkit-animation-name: uk-fade-right;
  animation-name: uk-fade-right;
}

/* Slide Small */
.uk-animation-slide-top-small {
  -webkit-animation-name: uk-fade-top-small;
  animation-name: uk-fade-top-small;
}

.uk-animation-slide-bottom-small {
  -webkit-animation-name: uk-fade-bottom-small;
  animation-name: uk-fade-bottom-small;
}

.uk-animation-slide-left-small {
  -webkit-animation-name: uk-fade-left-small;
  animation-name: uk-fade-left-small;
}

.uk-animation-slide-right-small {
  -webkit-animation-name: uk-fade-right-small;
  animation-name: uk-fade-right-small;
}

/* Slide Medium */
.uk-animation-slide-top-medium {
  -webkit-animation-name: uk-fade-top-medium;
  animation-name: uk-fade-top-medium;
}

.uk-animation-slide-bottom-medium {
  -webkit-animation-name: uk-fade-bottom-medium;
  animation-name: uk-fade-bottom-medium;
}

.uk-animation-slide-left-medium {
  -webkit-animation-name: uk-fade-left-medium;
  animation-name: uk-fade-left-medium;
}

.uk-animation-slide-right-medium {
  -webkit-animation-name: uk-fade-right-medium;
  animation-name: uk-fade-right-medium;
}

/* Kenburns */
.uk-animation-kenburns {
  -webkit-animation-name: uk-scale-kenburns;
  animation-name: uk-scale-kenburns;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}

/* Shake */
.uk-animation-shake {
  -webkit-animation-name: uk-shake;
  animation-name: uk-shake;
}

/* SVG Stroke The `--uk-animation-stroke` custom property contains the longest path length. Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically. All strokes are animated by the same pace and doesn't end simultaneously. To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet. */
.uk-animation-stroke {
  -webkit-animation-name: uk-stroke;
  animation-name: uk-stroke;
  stroke-dasharray: var(--uk-animation-stroke);
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* Direction modifier ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Duration modifier ========================================================================== */
.uk-animation-fast {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
}

/* Toggle (Hover + Focus)
========================================================================== */
/* The toggle is triggered on touch devices using `:focus` and tabindex */
.uk-animation-toggle:not(:hover):not(:focus) [class*='uk-animation-'] {
  -webkit-animation-name: none;
  animation-name: none;
}

/* 1. Prevent tab highlighting on iOS. */
.uk-animation-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Remove outline for `tabindex` */
.uk-animation-toggle:focus {
  outline: none;
}

/* Keyframes used by animation classes ========================================================================== */
/* Fade */
@-webkit-keyframes uk-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes uk-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Slide Top */
@-webkit-keyframes uk-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes uk-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Slide Bottom */
@-webkit-keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Slide Left */
@-webkit-keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Slide Right */
@-webkit-keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Slide Top Small */
@-webkit-keyframes uk-fade-top-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes uk-fade-top-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Slide Bottom Small */
@-webkit-keyframes uk-fade-bottom-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes uk-fade-bottom-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Slide Left Small */
@-webkit-keyframes uk-fade-left-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes uk-fade-left-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Slide Right Small */
@-webkit-keyframes uk-fade-right-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes uk-fade-right-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Slide Top Medium */
@-webkit-keyframes uk-fade-top-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes uk-fade-top-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Slide Bottom Medium */
@-webkit-keyframes uk-fade-bottom-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes uk-fade-bottom-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Slide Left Medium */
@-webkit-keyframes uk-fade-left-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes uk-fade-left-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Slide Right Medium */
@-webkit-keyframes uk-fade-right-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes uk-fade-right-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Scale Up */
@-webkit-keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Scale Down */
@-webkit-keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Kenburns */
@-webkit-keyframes uk-scale-kenburns {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes uk-scale-kenburns {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

/* Shake */
@-webkit-keyframes uk-shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
  }

  20% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  30% {
    -webkit-transform: translateX(-7px);
    transform: translateX(-7px);
  }

  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  50% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  60% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  70% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }

  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }

  90% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }
}

@keyframes uk-shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
  }

  20% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  30% {
    -webkit-transform: translateX(-7px);
    transform: translateX(-7px);
  }

  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  50% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  60% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  70% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }

  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }

  90% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }
}

/* Stroke */
@-webkit-keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* 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 * {
  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 {
  -webkit-box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
  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 {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Transform Origin
========================================================================== */
.uk-transform-origin-top-left {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.uk-transform-origin-top-center {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.uk-transform-origin-top-right {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.uk-transform-origin-center-left {
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.uk-transform-origin-center-right {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.uk-transform-origin-bottom-left {
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
}

.uk-transform-origin-bottom-center {
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.uk-transform-origin-bottom-right {
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

/* ======================================================================== Component: Position ========================================================================== */
/* Directions ========================================================================== */
/* 1. Prevent content overflow if `max-width: 100%` is used inside position container. */
[class*='uk-position-top'],
[class*='uk-position-bottom'],
[class*='uk-position-left'],
[class*='uk-position-right'],
[class*='uk-position-center'] {
  position: absolute !important;
  /* 1 */
  max-width: 100%;
}

/* Edges ========================================================================== */
/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}

.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.uk-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}

.uk-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}

/* Corners ========================================================================== */
.uk-position-top-left {
  top: 0;
  left: 0;
}

.uk-position-top-right {
  top: 0;
  right: 0;
}

.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}

.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}

/* Center 1. Fix text wrapping if content is larger than 50% of the container. */
.uk-position-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* 1 */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Vertical */
[class*='uk-position-center-left'],
[class*='uk-position-center-right'] {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.uk-position-center-left {
  left: 0;
}

.uk-position-center-right {
  right: 0;
}

.uk-position-center-left-out {
  right: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.uk-position-center-right-out {
  left: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/* Horizontal */
.uk-position-top-center,
.uk-position-bottom-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  /* 1 */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.uk-position-top-center {
  top: 0;
}

.uk-position-bottom-center {
  bottom: 0;
}

/* Cover ========================================================================== */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Utility ========================================================================== */
.uk-position-relative {
  position: relative !important;
}

.uk-position-absolute {
  position: absolute !important;
}

.uk-position-fixed {
  position: fixed !important;
}

.uk-position-z-index {
  z-index: 1;
}

/* Margin modifier ========================================================================== */
/* Small */
.uk-position-small {
  max-width: -webkit-calc(100% - (15px * 2));
  max-width: calc(100% - (15px * 2));
  margin: 15px;
}

.uk-position-small.uk-position-center {
  -webkit-transform: translate(-50%, -50%) translate(-15px, -15px);
  -ms-transform: translate(-50%, -50%) translate(-15px, -15px);
  transform: translate(-50%, -50%) translate(-15px, -15px);
}

.uk-position-small[class*='uk-position-center-left'],
.uk-position-small[class*='uk-position-center-right'] {
  -webkit-transform: translateY(-50%) translateY(-15px);
  -ms-transform: translateY(-50%) translateY(-15px);
  transform: translateY(-50%) translateY(-15px);
}

.uk-position-small.uk-position-top-center,
.uk-position-small.uk-position-bottom-center {
  -webkit-transform: translateX(-50%) translateX(-15px);
  -ms-transform: translateX(-50%) translateX(-15px);
  transform: translateX(-50%) translateX(-15px);
}

/* Medium */
.uk-position-medium {
  max-width: -webkit-calc(100% - (30px * 2));
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}

.uk-position-medium.uk-position-center {
  -webkit-transform: translate(-50%, -50%) translate(-30px, -30px);
  -ms-transform: translate(-50%, -50%) translate(-30px, -30px);
  transform: translate(-50%, -50%) translate(-30px, -30px);
}

.uk-position-medium[class*='uk-position-center-left'],
.uk-position-medium[class*='uk-position-center-right'] {
  -webkit-transform: translateY(-50%) translateY(-30px);
  -ms-transform: translateY(-50%) translateY(-30px);
  transform: translateY(-50%) translateY(-30px);
}

.uk-position-medium.uk-position-top-center,
.uk-position-medium.uk-position-bottom-center {
  -webkit-transform: translateX(-50%) translateX(-30px);
  -ms-transform: translateX(-50%) translateX(-30px);
  transform: translateX(-50%) translateX(-30px);
}

/* Large */
.uk-position-large {
  max-width: -webkit-calc(100% - (30px * 2));
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}

.uk-position-large.uk-position-center {
  -webkit-transform: translate(-50%, -50%) translate(-30px, -30px);
  -ms-transform: translate(-50%, -50%) translate(-30px, -30px);
  transform: translate(-50%, -50%) translate(-30px, -30px);
}

.uk-position-large[class*='uk-position-center-left'],
.uk-position-large[class*='uk-position-center-right'] {
  -webkit-transform: translateY(-50%) translateY(-30px);
  -ms-transform: translateY(-50%) translateY(-30px);
  transform: translateY(-50%) translateY(-30px);
}

.uk-position-large.uk-position-top-center,
.uk-position-large.uk-position-bottom-center {
  -webkit-transform: translateX(-50%) translateX(-30px);
  -ms-transform: translateX(-50%) translateX(-30px);
  transform: translateX(-50%) translateX(-30px);
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-position-large {
    max-width: -webkit-calc(100% - (50px * 2));
    max-width: calc(100% - (50px * 2));
    margin: 50px;
  }

  .uk-position-large.uk-position-center {
    -webkit-transform: translate(-50%, -50%) translate(-50px, -50px);
    -ms-transform: translate(-50%, -50%) translate(-50px, -50px);
    transform: translate(-50%, -50%) translate(-50px, -50px);
  }

  .uk-position-large[class*='uk-position-center-left'],
  .uk-position-large[class*='uk-position-center-right'] {
    -webkit-transform: translateY(-50%) translateY(-50px);
    -ms-transform: translateY(-50%) translateY(-50px);
    transform: translateY(-50%) translateY(-50px);
  }

  .uk-position-large.uk-position-top-center,
  .uk-position-large.uk-position-bottom-center {
    -webkit-transform: translateX(-50%) translateX(-50px);
    -ms-transform: translateX(-50%) translateX(-50px);
    transform: translateX(-50%) translateX(-50px);
  }
}

/* ======================================================================== Component: Transition ========================================================================== */
/* Toggle (Hover + Focus) ========================================================================== */
/* 1. Prevent tab highlighting on iOS. */
.uk-transition-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Remove outline for `tabindex` */
.uk-transition-toggle:focus {
  outline: none;
}

/* Transitions ========================================================================== */
/* The toggle is triggered on touch devices by two methods: 1. Using `:focus` and tabindex 2. Using `:hover` and a `touchstart` event listener registered on the document (Doesn't work on Surface touch devices) Note: Transitions don't work with `uk-postion-center-*` classes because they also use `transform`, therefore it's recommended to use an extra `div` for the transition. */
.uk-transition-fade,
[class*='uk-transition-scale'],
[class*='uk-transition-slide'] {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  -o-transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
  opacity: 0;
}

/* Fade */
.uk-transition-toggle:hover .uk-transition-fade,
.uk-transition-toggle:focus .uk-transition-fade,
.uk-transition-active.uk-active .uk-transition-fade {
  opacity: 1;
}

/* Scale */
.uk-transition-scale-up {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.uk-transition-scale-down {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

/* Show */
.uk-transition-toggle:hover .uk-transition-scale-up,
.uk-transition-toggle:focus .uk-transition-scale-up,
.uk-transition-active.uk-active .uk-transition-scale-up {
  opacity: 1;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.uk-transition-toggle:hover .uk-transition-scale-down,
.uk-transition-toggle:focus .uk-transition-scale-down,
.uk-transition-active.uk-active .uk-transition-scale-down {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* Slide */
.uk-transition-slide-top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.uk-transition-slide-bottom {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.uk-transition-slide-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.uk-transition-slide-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.uk-transition-slide-top-small {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.uk-transition-slide-bottom-small {
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.uk-transition-slide-left-small {
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}

.uk-transition-slide-right-small {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.uk-transition-slide-top-medium {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}

.uk-transition-slide-bottom-medium {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.uk-transition-slide-left-medium {
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}

.uk-transition-slide-right-medium {
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}

/* Show */
.uk-transition-toggle:hover [class*='uk-transition-slide'],
.uk-transition-toggle:focus [class*='uk-transition-slide'],
.uk-transition-active.uk-active [class*='uk-transition-slide'] {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* Opacity modifier ========================================================================== */
.uk-transition-opaque {
  opacity: 1;
}

/* Duration modifiers ========================================================================== */
.uk-transition-slow {
  -webkit-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  transition-duration: 0.7s;
}

/* ======================================================================== Component: Visibility ========================================================================== */
/* Hidden `hidden` attribute also set here to make it stronger */
[hidden],
.uk-hidden {
  display: none !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-hidden\@s {
    display: none !important;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-hidden\@m {
    display: none !important;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-hidden\@l {
    display: none !important;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-hidden\@xl {
    display: none !important;
  }
}

/* Visible */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-visible\@s {
    display: none !important;
  }
}

/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-visible\@m {
    display: none !important;
  }
}

/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-visible\@l {
    display: none !important;
  }
}

/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-visible\@xl {
    display: none !important;
  }
}

/* Visibility ========================================================================== */
.uk-invisible {
  visibility: hidden !important;
}

/* Toggle (Hover + Focus) ========================================================================== */
/* Hidden 1. The toggle is triggered on touch devices using `:focus` and tabindex 2. The target stays visible if any element within receives focus through keyboard Doesn't work in Edge, yet. 3. Can't use `display: none` nor `visibility: hidden` because both are not focusable. */
/* 1 + 2 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
  /* 3 */
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* Invisible */
/* 1 + 2 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
  /* 3 */
  opacity: 0 !important;
}

/* 1. Prevent tab highlighting on iOS. */
.uk-visible-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Remove outline for `tabindex` */
.uk-visible-toggle:focus {
  outline: none;
}

/* Touch ========================================================================== */
/* Hide if primary pointing device has limited accuracy, e.g. a touch screen. Works on mobile browsers: Safari, Chrome and Android browser */
@media (pointer: coarse) {
  .uk-hidden-touch {
    display: none !important;
  }
}

/* Hide if primary pointing device is accurate, e.g. mouse. 1. Fallback for IE11 and Firefox, because `pointer` is not supported 2. Reset if supported */
/* 1 */
.uk-hidden-notouch {
  display: none !important;
}

@media (pointer: coarse) {
  .uk-hidden-notouch {
    display: block !important;
  }
}

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

html,
body {
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 840px) {

  html.noscrolled,
  body.noscrolled {
    overflow: hidden;
    height: 100vh;
  }
}

body {
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 840px) {
  body.noscrolled {
    overflow: hidden;
    height: 100vh;
  }
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hidden {
  display: none;
}

.tac {
  text-align: center;
}

object {
  pointer-events: none;
}

.cf:after {
  content: ' ';
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

input,
button,
textarea {
  outline: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  font-weight: normal;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

input::-webkit-input-placeholder {
  font-size: inherit;
  color: inherit;
  opacity: .6;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  font-size: inherit;
  color: inherit;
  opacity: .6;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-moz-placeholder {
  font-size: inherit;
  color: inherit;
  opacity: .6;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  font-size: inherit;
  color: inherit;
  opacity: .6;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.title-page {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-bottom: 1.3em;
  margin-top: 1.5em;
}

.about-top .title-page,
.device .title-page {
  margin-top: 0;
}

.s-page {
  padding-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

.s-page__body {
  font-weight: normal;
  line-height: 1.4;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document ========================================================================== */
/** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS. */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections ========================================================================== */
/** Remove the margin in all browsers (opinionated). */
body {
  margin: 0;
}

/** Add the correct display in IE 9-. */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content ========================================================================== */
/** Add the correct display in IE 9-. 1. Add the correct display in IE. */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/** Add the correct margin in IE 8. */
figure {
  margin: 1em 40px;
}

/** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics ========================================================================== */
/** 1. Remove the gray background on active links in IE 10. 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/** 1. Remove the bottom border in Chrome 57- and Firefox 39-. 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/** Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
b,
strong {
  font-weight: inherit;
}

/** Add the correct font weight in Chrome, Edge, and Safari. */
b,
strong {
  font-weight: bolder;
}

/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/** Add the correct font style in Android 4.3-. */
dfn {
  font-style: italic;
}

/** Add the correct background and color in IE 9-. */
mark {
  background-color: #ff0;
  color: #000;
}

/** Add the correct font size in all browsers. */
small {
  font-size: 80%;
}

/** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content ========================================================================== */
/** Add the correct display in IE 9-. */
audio,
video {
  display: inline-block;
}

/** Add the correct display in iOS 4-7. */
audio:not([controls]) {
  display: none;
  height: 0;
}

/** Remove the border on images inside links in IE 10-. */
img {
  border-style: none;
}

/** Hide the overflow in IE. */
svg:not(:root) {
  overflow: hidden;
}

/* Forms ========================================================================== */
/** 1. Change the font styles in all browsers (opinionated). 2. Remove the margin in Firefox and Safari. */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/** Show the overflow in IE. 1. Show the overflow in Edge. */
button,
input {
  /* 1 */
  overflow: visible;
}

/** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
button,
select {
  /* 1 */
  text-transform: none;
}

/** 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4. 2. Correct the inability to style clickable types in iOS and Safari. */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/** Remove the inner border and padding in Firefox. */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/** Restore the focus styles unset by the previous rule. */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/** Correct the padding in Firefox. */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/** 1. Add the correct display in IE 9-. 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/** Remove the default vertical scrollbar in IE. */
textarea {
  overflow: auto;
}

/** 1. Add the correct box sizing in IE 10-. 2. Remove the padding in IE 10-. */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/** Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/** Remove the inner padding and cancel buttons in Chrome and Safari on macOS. */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive ========================================================================== */
/* Add the correct display in IE 9-. 1. Add the correct display in Edge, IE, and Firefox. */
details,
menu {
  display: block;
}

/* Add the correct display in all browsers. */
summary {
  display: list-item;
}

/* Scripting ========================================================================== */
/** Add the correct display in IE 9-. */
canvas {
  display: inline-block;
}

/** Add the correct display in IE. */
template {
  display: none;
}

/* Hidden ========================================================================== */
/** Add the correct display in IE 10-. */
[hidden] {
  display: none;
}

@media (min-width: 1025px) {
  html body .chat-message__close {
    -webkit-background-size: 10px !important;
    background-size: 10px !important;
  }
}

.modal-open {
  overflow: hidden;
}

.modal {
  font-family: "Montserrat", sans-serif;
}

.modal__body {
  width: 450px;
  max-width: 95%;
  padding: 58px 20px 30px;
}

.modal .modal-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

.modal__close {
  background: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.modal__close svg {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal__form .inp-group {
  margin-bottom: 40px;
}

.modal__form .inp-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 3px;
}

.modal__form .inp-group input {
  height: 49px;
  border: 1px solid #000;
  font: inherit;
  background: transparent;
  color: inherit;
  width: 100%;
  padding: 0 10px;
}

.modal__form .form-button {
  text-align: center;
}


.modal-order__body {
  color: #ffffff;
  background: #000;
}

.modal-order__form .inp-group input {
  height: 49px;
  border: 1px solid #ffffff;
}

.advantages {
  background: rgba(199, 199, 199, 0.28);
  padding: 57px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 50px;
}

.advantages__bottom {
background: rgb(255 255 255 / 28%);
  padding: 57px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.advantages__bottom ol {
  padding-left: 2em;
}

.advantages__bottom ul {
  padding-left: 2em;
  margin: 1em 0;
}

.advantages__bottom ul li {
  list-style: disc;
}

.advantages__bottom .wrapper {
  max-width: 1100px;
}

.advantages__bottom h3 {
  margin: 1.5em 0;
}

.advantages__block {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.advantages__title {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1em;
  font-family: "Montserrat", sans-serif;
}

@media all and (max-width: 768px) {
  .advantages__title {
    font-size: 24px;
    text-align: left;
    padding: 0 15px;
  }
}

@media all and (max-width: 360px) {
  .advantages__title {
    font-size: 20px;
  }
}

.advantages__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 60px;
}

@media all and (max-width: 1024px) {
  .advantages__list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.advantages__item {
  max-width: 285px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 18px;
  line-height: 1.55;
}

@media all and (max-width: 1024px) {
  .advantages__item {
    margin-bottom: 25px;
  }
}

.advantages__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  margin: 0 0 10px;
}

.advantages__icon img {
  margin: auto;
}

.advantages__description {
  max-width: 1070px;
  margin: 0 auto;
  font-size: 16px;
  padding: 0 15px;
}

.advantages__description ol {
  padding-left: 3em;
}

.advantages__description ul {
  padding-left: 3em;
}

.advantages__description ul li {
  list-style: circle;
}

.shugaring-header {
  background: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.shugaring-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.shugaring-header__left {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  padding-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 840px) {
  .shugaring-header__left {
    padding-top: 20px;
  }
}

@media all and (max-width: 640px) {
  .shugaring-header__left {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    padding-bottom: 25px;
  }
}

.shugaring-header__title {
  font-size: 40px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 1em;
  margin-top: 0;
}

@media screen and (max-width: 840px) {
  .shugaring-header__title {
    font-size: 24px;
  }
}

.shugaring-header__text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  .shugaring-header__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.shugaring-header__right {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  margin-top: auto;
}

.shugaring-header__right img {
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 840px) {
  .shugaring-header__right img {
    width: 240px;
  }
}

@media all and (max-width: 640px) {
  .shugaring-header__right {
    display: none;
  }
}

.shugaring-body ol {
  padding-left: 3em;
}

.shugaring-body ul {
  padding-left: 3em;
}

.shugaring-body ul li {
  list-style: disc;
}

.title-shugaring {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 840px) {
  .title-shugaring {
    font-size: 24px;
  }
}

.shugaring-body {
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 840px) {
  .shugaring-body {
    font-size: 16px;
  }
}

.shugaring-body h3 {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

@media screen and (max-width: 840px) {
  .shugaring-body h3 {
    font-size: 20px;
  }
}

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  /**/
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  /**/
}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  /**/
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  /**/
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
  /**/
}

/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/
}

/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/
}

.btn {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #6848ab;
  display: inline-block;
  -webkit-box-shadow: 0 0 10px #6848ab;
  box-shadow: 0 0 10px #6848ab;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 40px;
  -webkit-border-radius: 23px;
  border-radius: 23px;
  line-height: 1;
  border: none;
  outline: none;
}

.btn:hover {
  -webkit-box-shadow: 0 0 5px #ffffff;
  box-shadow: 0 0 5px #ffffff;
  opacity: 0.8;
}

.btn-primary {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  background: #6848ab;
  color: #ffffff;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: normal;
  padding: 15px 52px 15px 52px;
  /* letter-spacing: 2px !important; */
    -webkit-box-shadow: 0 0 10px #6848ab;
    box-shadow: 0 0 10px #6848ab;
  font-weight: 100;
  text-decoration: none;
}

.btn-primary:hover {
  -webkit-box-shadow: 0 0 5px #ffffff;
  box-shadow: 0 0 5px #ffffff;
  opacity: 0.8;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:hover:focus {
  outline: none;
}

.btn:hover {
  cursor: pointer;
}

body {
  -ms-overflow-x: visible;
  overflow-x: visible;
  padding-top: 190px;
}

@media all and (max-width: 1024px) {
  body {
    padding-top: 180px;
  }
}

@media screen and (max-width: 840px) {
  body {
    padding-top: 80px;
  }
}

.header {
  padding-bottom: 10px;
  height: 190px;
  position: relative;
  z-index: 999;
  position: fixed;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 1px 16px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.15);
}

@media all and (max-width: 1024px) {
  .header {
    height: 180px;
  }
}

@media screen and (max-width: 840px) {
  .header {
    height: 80px;
  }
}

.header>.wrapper {
  height: 100%;
}

.header .tmenu {
  text-decoration: none;
  outline: none;
  width: 30px;
  margin-left: 2px;
  margin-top: 10px;
  position: relative;
  z-index: 7;
  height: 30px;
}

@media screen and (min-width: 841px) {
  .header .tmenu {
    display: none;
  }
}

.header .tmenu .line {
  height: 3.33px;
  height: 4px;
  display: block;
  background: #000;
  margin-bottom: 5px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 30px;
}

.header .tmenu .line:last-of-type {
  margin-bottom: 0;
}

.header .tmenu.open .line {
  position: absolute;
  margin: 0;
  top: 10px;
  left: 0;
}

.header .tmenu.open .line:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header .tmenu.open .line:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header .tmenu.open .line:last-of-type {
  display: none;
}

.header__footer .header__in {
  padding-bottom: 0;
}

.header__place p {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
}

.header__in {
  height: auto;
  padding-top: 10px;
}

@media screen and (max-width: 840px) {
  .header__in {
    padding-top: 7px;
  }
}

.header__logo {
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.header__logo img {
  width: auto;
  height: 150px;
}

@media all and (max-width: 1024px) {
  .header__logo img {
    height: 100px;
  }
}

@media screen and (max-width: 840px) {
  .header__logo img {
    height: 44px;
  }
}

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

@media screen and (min-width: 841px) {
  .header__c {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 240px auto 240px;
    grid-template-columns: 240px auto 240px;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    -ms-grid-rows: 75px 1fr;
    grid-template-rows: 75px 1fr;
  }
}

@media screen and (min-width: 841px) and (max-width: 1180px) {
  .header__c {
    -ms-grid-columns: 170px auto 200px;
    grid-template-columns: 170px auto 200px;
  }
}

@media screen and (min-width: 841px) and (max-width: 1024px) {
  .header__c {
    -ms-grid-columns: 100px auto 70px;
    grid-template-columns: 100px auto 70px;
    -ms-grid-rows: 60px 1fr;
    grid-template-rows: 60px 1fr;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    justify-items: center;
  }
}

.header__brand {
  position: relative;
  z-index: 7;
}

@media screen and (min-width: 841px) {
  .header__brand {
    -ms-grid-column: 1;
    grid-column: 1;
    grid-row: 1 / span 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 3;
    margin-top: 5px;
    padding-left: 5px;
  }
}

.header__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  padding-top: 37px;
  letter-spacing: .045em;
}

@media all and (max-width: 1280px) {
  .header__title {
    font-size: 32px;
  }
}

@media all and (max-width: 1180px) {
  .header__title {
    font-size: 26px;
  }
}

@media screen and (max-width: 840px) {
  .header__title {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    font-size: 14px;
    padding: 0;
  }
}

.header__phones {
  text-align: center;
  position: relative;
  z-index: 7;
}

@media screen and (min-width: 841px) {
  .header__phones {
    -ms-grid-column: 3;
    grid-column: 3;
    grid-row: 1 / span 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 3;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-top: 20px;
  }
}

@media screen and (min-width: 841px) and (max-width: 1024px) {
  .header__phones {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

@media screen and (max-width: 840px) {
  .header__phones {
    margin: auto 0;
  }
}

.header__phones .tel-info {
  display: block;
  font-size: 11px;
}

.header__phones .tel-info>span {
  font-size: 12px;
}

@media (max-width: 1024px) {
  .header__phones .tel-info {
    display: none;
  }
}

.header__phones_button {
  padding-top: 23px;
  padding-top: 2px;
}

@media screen and (min-width: 841px) {
  .header__phones_button {
    margin-top: 15px;
  }
}

@media all and (max-width: 1024px) {
  .header__phones_button {
    display: none;
  }
}

.header__phones .btn {
  white-space: nowrap;
}

@media all and (max-width: 1180px) {
  .header__phones .btn {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.header__phone {
  color: #000;
  text-decoration: none;
  letter-spacing: .1em;
  font-size: 18px;
}

@media all and (min-width: 1025px) {
  .header__phone svg {
    display: none;
  }
}

@media all and (max-width: 1024px) {
  .header__phone span {
    display: none;
  }
}

.header__place {
  margin-bottom: 20px;
  line-height: 130%;
}

.header__socials {
  margin-bottom: 20px;
  margin-top: auto;
}

@media screen and (min-width: 841px) {
  .header__socials {
    display: none;
  }
}

.header__socials_title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}

.header__socials ul {
  font-size: 0;
}

.header__socials ul li {
  display: inline-block;
  margin: 0 5px;
}

.header__socials ul li a {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.header__socials ul li a svg {
  display: block;
  width: 20px;
  height: auto;
  fill: #000;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.header__socials ul li a:hover svg {
  fill: #6848ab;
}

.header__menu {
  position: absolute;
  background: #fff;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

@media screen and (max-width: 840px) {
  .header__menu {
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    padding-top: 20px;
    z-index: 5;
    width: 100%;
    left: 0;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    top: 50px;
    height: -webkit-calc(100vh - 50px);
    height: calc(100vh - 50px);
    overflow: auto;
    padding-left: 17px;
    padding-right: 115px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__menu.open {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@media screen and (min-width: 841px) {
  .header__menu {
    -ms-grid-column: 2;
    grid-column: 2;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
}

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

@media screen and (max-width: 840px) {
  .header__nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.header__nav ul li {
  display: inline-block;
  margin-right: 30px;
}

@media all and (max-width: 1400px) {
  .header__nav ul li {
    margin-right: 30px;
  }
}

@media all and (max-width: 1280px) {
  .header__nav ul li {
    margin-right: 10px;
  }
}

@media screen and (max-width: 840px) {
  .header__nav ul li {
    margin-bottom: 5px;
  }
}

.header__nav ul li:last-child {
  margin-right: 0;
}

.header__nav ul li a {
  color: #000;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 14px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 10px;
  font-weight: 500;
}

@media all and (max-width: 1180px) {
  .header__nav ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 840px) {
  .header__nav ul li a {
    font-size: 24px;
  }
}

.header__nav ul li a:after {
  content: ' ';
  position: absolute;
  height: 1px;
  bottom: 0px;
  left: 0;
  right: 0;
  top: initial;
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.header__nav ul li a:before {
  position: absolute;
  background: #3f227c;
  content: ' ';
  height: 1px;
  bottom: 0px;
  left: 0;
  right: 0;
  top: initial;
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.header__nav ul li a:hover {
  color: #3f227c;
}

.header__nav ul li a:hover:after {
  -webkit-transform: translate3d(101%, 0, 0);
  transform: translate3d(101%, 0, 0);
}

.header__nav ul li a:hover:before {
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.top__slider {
  min-height: -webkit-calc(100vh - 257px);
  min-height: calc(100vh - 257px);
  height: -webkit-calc(100vh - 100px);
  height: calc(100vh - 100px);
  overflow: hidden;
}

@media (min-width: 1025px) {
  .top__slider {
    min-height: 600px;
  }
}

.top__slider p {
  margin-bottom: 30px;
}

.top__slider-in {
  height: 100%;
}

.top__slider-items {
  height: 100%;
}

.top__slider-item {
  position: relative;
  height: 100%;
}

.top__slider-img {
  height: 100%;
}

.top__slider-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.top__slider-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -75%);
  -ms-transform: translate(0, -75%);
  transform: translate(0, -75%);
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.top__slider-text p {
  font-size: 49px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.top__slider-text span {
  display: block;
  font-size: 32px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  margin-bottom: 20px;
  max-width: 60%;
}

.top__slider-text span:last-child {
  margin-bottom: 50px;
}

.top__slider-text .btn {
  margin-top: 50px;
}

.top__slider-text_mini {
  font-size: 16px !important;
}

.top__slider-img {
  width: 100%;
}

.top__slider-img img {
  display: block;
  width: 100%;
}

.services {
  background-color: #fff;
  padding-bottom: 80px;
}

.services__man {
  padding-top: 0;
}

.services__headline {
  margin: 0px 0 70px 0;
}

.services__headline h5 {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

@media all and (max-width: 1024px) {
  .services__headline h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 840px) {
  .services__headline h5 {
    font-size: 18px;
  }
}

.services__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.services__item {
  width: 460px;
}

.services__item-img {
  width: 100%;
  height: 460px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-box-shadow: inset 0 0 16px 0 #6848ab, 0 0 18px 0 #6848ab;
  box-shadow: inset 0 0 16px 0 #6848ab, 0 0 18px 0 #6848ab;
  margin-bottom: 36px;
}

.services__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.services__item-btn {
  text-align: center;
}

.services__item-btn .btn {
  height: 60px;
  width: 348px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  padding-left: 12px;
  padding-right: 12px;
}

@media screen and (max-width: 840px) {
  .services__item-btn .btn {
    font-size: 15px;
    height: 45px;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    width: 250px;
  }
}

.services__item-headline {
  margin: 0 0 30px 0;
}

.services__item-headline h5 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 60px;
  font-weight: 100;
  font-weight: 600;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .services__item {
    width: 40%;
  }

  .services__item-headline {
    margin: 0 0 20px 0;
  }

  .services__item-headline h5 {
    font-size: 24px;
  }

  .services__item-img {
    width: 100%;
    height: auto;
  }
}

.form {
  min-height: 100vh;
  background: #000;
  background: url("../images/bg.jpg") center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.form__video {
  position: relative;
  padding-top: 100px;
  background: transparent;
}

.form__video-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.form__video-video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form__video .form__in {
  position: relative;
  z-index: 10;
}

.form__video .form__headline {
  position: relative;
  z-index: 10;
}

.form__mini {
  background: #000;
  position: relative;
  min-height: initial;
  padding: 100px 0 250px 0;
}

.form__mini .form__headline {
  margin: 0 0 30px 0;
}

.form__mini .form__in {
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 400px;
}

.form__mini p {
  margin-top: 30px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.form__mini-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.form__mini-bg img {
  display: block;
  width: 100%;
}

.form__headline {
  text-align: center;
  margin: 0 0 100px 0;
}

.form__headline h5 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: 36px;
}

.form__in {
  width: 380px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  background: #000;
  padding: 50px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 1px 0px #6848ab, 0 0 10px 0px #6848ab;
  box-shadow: inset 0 0 1px 0px #6848ab, 0 0 10px 0px #6848ab;
}

.form__in .inp-group {
  display: block;
  width: 100%;
  border: 1px solid #6848ab;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: normal;
  padding: 15px 20px 15px 20px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form__in .inp-group input {
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 100%;
  padding: 0;
  color: #6848ab;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.form__in .inp-group input.placeholder {
  color: #6848ab;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.form__in .inp-group input:-moz-placeholder {
  color: #6848ab;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.form__in .inp-group input::-webkit-input-placeholder {
  color: #6848ab;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.form__in .btn {
  border-color: #000;
  color: #000;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #6848ab;
  font-weight: 300;
}

.items .service {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.items .service__item {
  width: 20%;
  padding: 0 20px;
  position: relative;
  border: 0.5px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-collapse: collapse;
  border-left: none;
  border-right: 1px solid #000;
  border: none;
  margin-bottom: 20px;
}

.items .service__item-desc {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: #6848ab;
  color: #000;
  padding: 10px 0;
}

.items .service__item-desc p {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-weight: bold;
}

.items .service__item-desc p b {
  font-weight: bold;
  position: relative;
}

.items .service__item-desc p b:before {
  position: absolute;
  content: ' ';
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: #000;
  display: none;
}

.items .service__item-img {
  width: 100%;
  overflow: hidden;
}

.items .service__item-img img {
  width: 100%;
  display: block;
  -webkit-transition: all 3s;
  -o-transition: all 3s;
  transition: all 3s;
}

.items .service__item-img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.nav-tabs {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav-tabs>li {
  margin: 0 10px;
}

.nav-tabs>li a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding: 20px 50px;
  border: 1px solid #000;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.nav-tabs>li a:hover {
  background: #6848ab;
}

.table__typical {
  width: 100%;
  padding-right: 100px;
  padding-left: 100px;
  margin-bottom: 100px;
}

.table__typical-headline {
  margin: 50px 0 30px 0;
}

.table__typical-headline h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  color: #000;
  text-align: center;
}

.table__typical tr {
  border: none;
  border-collapse: collapse;
  background: #FFF;
}

.table__typical tr th {
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1rem;
  text-align: left;
  background: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #000;
  background: #6848ab;
  text-align: center;
}

.table__typical tr th:first-child {
  width: 85%;
  text-align: left;
}

.table__typical tr td {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 1rem;
  text-align: center;
}

.table__typical tr td:first-child {
  width: 80%;
  text-align: left;
}

.table__typical tr td.td_price {
  white-space: nowrap;
}

.table__typical tr td:nth-child(2),
.table__typical tr td.td_price {
  position: relative;
}

.table__typical tr td:nth-child(2) span+span,
.table__typical tr td.td_price span+span {
  margin-right: 0;
}

.table__typical tr td:nth-child(2) .price-full,
.table__typical tr td.td_price .price-full {
  display: inline-block;
  position: relative;
  color: #818181;
}

.table__typical tr td:nth-child(2) .price-full:before,
.table__typical tr td.td_price .price-full:before {
  position: absolute;
  content: ' ';
  left: -2px;
  right: -2px;
  top: 11px;
  height: 1px;
  background: #818181;
  margin-left: auto;
  margin-right: auto;
}

.table__typical tr td:nth-child(2) .price-full:after,
.table__typical tr td.td_price .price-full:after {
  display: none;
  position: absolute;
  content: ' ';
  left: 0;
  right: 0;
  top: 11px;
  width: 80px;
  height: 1px;
  background: red;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

.table__typical tr td:nth-child(2) .price-sale,
.table__typical tr td.td_price .price-sale {
  display: inline-block;
  position: relative;
  min-width: 90px;
}

.table__typical tr td:nth-child(2) .price-sale:after,
.table__typical tr td.td_price .price-sale:after {
  position: absolute;
  content: ' ';
  top: 0;
  right: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: url("../images/sale.svg") center center no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
}

.table__typical tr:nth-of-type(odd) {
  background-color: #f6f6f6;
}

.footer {
  background: #000;
  padding: 30px 0;
}

.footer p {
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  line-height: 170%;
}

.inp-group.inp-error {
  border-color: red;
}

.form__in-thanks {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.form__in-thanks.is-hidden {
  display: none;
}

.form__in-thanks h5 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-align: center;
  line-height: 160%;
}

.sale {
  margin-top: 74px;
  margin-bottom: 74px;
}

@media screen and (max-width: 1000px) {
  .sale {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .sale {
    margin-top: 40px;
  }
}

.sale__headline {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.sale__headline h5 {
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .sale__headline h5 {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .sale__headline h5 {
    font-size: 18px;
  }
}

.sale__headline p {
  margin-top: 15px;
  color: #818181;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 150%;
}

.sale__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1100px;
}

.sale__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  padding: 10px;
}

.sale__item-in {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #000;
  padding: 0px 40px 35px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-border-radius: 80px;
  border-radius: 80px;
}

@media screen and (max-width: 1199px) {
  .sale__item-in {
    -webkit-border-radius: 50px;
    border-radius: 50px;
  }
}

.sale__item-top {
  margin-bottom: auto;
}

.sale__item-img {
  height: 348px;
  margin-top: -1px;
  margin-left: -40px;
  margin-right: -40px;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 1199px) {
  .sale__item-img {
    height: 250px;
  }
}

.sale__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sale__item-name {
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .sale__item-name {
    padding-top: 20px;
  }
}

.sale__item-name span {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .sale__item-name span {
    font-size: 16px;
  }
}

.sale__item-date {
  margin: 15px 0 35px 0;
  padding: 5px 0 5px 32px;
  background: url("../images/calendar.svg") left center no-repeat;
  -webkit-background-size: auto 20px;
  background-size: auto 20px;
  display: none;
}

.sale__item-date span {
  color: #818181;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.sale__item-footer {
  margin-top: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 44px;
}

.sale__item-footer_r {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sale__item-footer span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 24px;
}

.sale__item-btn {
  text-align: center;
}

.sale__item-btn .btn {
  color: #ffffff;
  font-weight: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 22px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .sale__item-btn .btn {
    font-size: 15px;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    padding: 15px;
  }
}

.sale__item-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sale__item-price_old span {
  position: relative;
  display: inline-block;
  color: #818181;
  font-size: 20px;
  font-weight: 500;
}

.sale__item-price_old span:after {
  position: absolute;
  content: ' ';
  left: -2px;
  right: -2px;
  background: #818181;
  height: 1px;
  display: block;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.sale__item-price_new {
  margin-left: 20px;
  font-size: 24px;
  font-weight: bold;
  color: red;
}

.sale__footer {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 100px;
}

.sale__footer-headline h5 {
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 25px;
}

.sale__footer p {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
  line-height: 150%;
  font-size: 15px;
}

.sale__footer p:last-child {
  margin-bottom: 0;
}

.nav-tabs .is-active a {
  background: #6848ab;
}

@media (max-width: 1024px) {
  .nav-tabs {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nav-tabs a {
    padding: 10px;
  }
}

.device__in {
  padding: 100px 0;
}

.device__headline h5,
.device__headline h3 {
  margin: 0;
}

.device__headline h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: bold;
}

.device__headline h5 {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  text-align: center;
  line-height: 150%;
  font-weight: bold;
}

.device__desc {
  text-align: center;
}

.device__desc p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 150%;
}

.device__images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.device__images img {
  display: block;
  width: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 720px;
}

@media (min-width: 1025px) {
  .form {
    padding-bottom: 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 1024px) {
  .nav-tabs>li {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .nav-tabs>li:last-child {
    margin-bottom: 0;
  }

  .nav-tabs>li a {
    text-align: center;
    padding: 10px 20px;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .sale__item {
    width: 100%;
  }

  .sale__items {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form__in .inp-group input {
    text-align: center;
  }

  .form__mini .form__in,
  .form__in {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .services__headline h5 {
    font-size: 24px;
  }

  .services__item {
    width: 100%;
  }

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

  .services__headline {
    margin-bottom: 20px;
  }

  .services__item-headline h5 {
    font-size: 24px;
  }

  .top__slider {
    height: 100%;
    min-height: initial;
  }

  .top__slider-text span {
    font-size: 18px;
    max-width: 100%;
  }

  .top__slider-text span:last-child {
    margin-bottom: 10px;
  }

  .top__slider-text .btn {
    margin-top: 0px;
  }

  .btn-primary {
    padding-left: 25px;
    padding-right: 25px;
  }

  .services {
    padding-top: 20px;
  }

  .services__item {
    margin-bottom: 50px;
  }

  .services__item:last-child {
    margin-bottom: 0;
  }

  .services {
    padding-bottom: 50px;
  }

  .services__item-img {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
  }

  .services__item-img img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .form__video {
    padding-top: 50px;
  }

  .form__headline h5 {
    font-size: 24px;
  }

  .form__headline {
    margin-bottom: 30px;
  }

  .form__in {
    padding: 25px;
  }

  .form {
    min-height: initial;
    padding-bottom: 50px;
  }

  .form__mini {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .form__mini .form__in {
    padding: 0;
  }

  .form__mini p {
    color: #fff;
  }

  .form__headline h5 {
    font-size: 20px;
  }

  .form__mini p {
    margin-top: 10px;
  }

  .form__headline h5 {
    font-size: 18px;
  }

  .table__typical-headline h5 {
    font-size: 18px;
  }

  .table__typical-headline {
    margin: 20px 0 15px 0;
  }

  .table__typical {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 50px;
  }

  .table__typical tr th:first-child,
  .table__typical tr td:first-child {
    width: 60%;
  }

  .table__typical tr th,
  .table__typical tr td {
    font-size: 16px;
  }

  .table__typical tr td,
  .table__typical tr th {
    padding: 10px;
  }

  .top__slider-in,
  .top__slider-items {
    height: 400px;
  }

  .top__slider-in .slick-list,
  .top__slider-in .slick-track,
  .top__slider-in .slick-slide,
  .top__slider-items .slick-list,
  .top__slider-items .slick-track,
  .top__slider-items .slick-slide {
    height: 100%;
  }

  .top__slider-in .slick-list>div,
  .top__slider-in .slick-track>div,
  .top__slider-in .slick-slide>div,
  .top__slider-items .slick-list>div,
  .top__slider-items .slick-track>div,
  .top__slider-items .slick-slide>div {
    height: 100%;
  }

  .top__slider-text {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .top__slider-text p {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .top__slider-text span {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .top__slider-text .btn {
    margin-top: 20px;
  }

  .contacts {
    padding: 25px 0;
  }

  .contacts__desc p,
  .contacts__top a {
    line-height: 160%;
    font-size: 14px;
  }

  .contacts__top {
    margin-bottom: 20px;
  }

  .contacts__socials {
    margin-top: 20px;
  }

  .device__in {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .device__headline h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
  }

  .device__headline h5 {
    font-size: 16px;
    text-align: left;
  }

  .device__headline h5 br {
    display: none;
  }

  .device__desc p {
    font-size: 14px;
    text-align: left;
  }

  .device__images img {
    height: 200px;
  }
}

.form-mini .inp-group input {
  text-align: center;
}

.faq-headline {
  text-align: center;
}

.about-gallery {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .top__slider-text {
    -webkit-transform: translate(0, -80%);
    -ms-transform: translate(0, -80%);
    transform: translate(0, -80%);
  }
}

@media (max-width: 1024px) {

  .device__headline h3,
  .device__headline h5,
  .device__desc p {
    text-align: center;
  }
}

.about-top__item {
  margin-bottom: 30px;
}

.about-top__item:last-child {
  margin-bottom: 0;
}

.chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.chat-headline {
  background: rgba(255, 255, 255, 0.95);
  padding-top: 60px;
  -webkit-border-radius: 13px 13px 0 0;
  border-radius: 13px 13px 0 0;
  padding-bottom: 15px;
}

.chat-headline h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}

.chat-headline p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-align: center;
}

.chat-logo {
  border: 2px solid #fff;
  height: 86px;
  width: 86px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-box-shadow: inset 0 0 16px 0 #6848ab, 0 0 18px 0 #6848ab;
  box-shadow: inset 0 0 16px 0 #6848ab, 0 0 18px 0 #6848ab;
}

.chat-logo img {
  display: block;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.chat-btn {
  width: 65px;
  height: 65px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: black;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 black;
  box-shadow: 0 0 0 0 black;
  margin: 10px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: pulse-black 2s infinite;
  animation: pulse-black 2s infinite;
  border: 2px solid #6848ab;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.chat-btn svg {
  display: block;
  width: auto;
  height: 70%;
  fill: #6848ab;
}

.chat-btn:hover {
  cursor: pointer;
}

.chat-message {
  position: absolute;
  background: #FFF;
  top: 0;
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  right: 80px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #6848ab;
  -webkit-box-shadow: inset 0 0 16px 0 #6848ab, 0 0 18px 0 #6848ab;
  box-shadow: inset 0 0 16px 0 #6848ab, 0 0 18px 0 #6848ab;
}

.chat-message span {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-align: center;
  display: block;
  width: 100%;
  white-space: nowrap;
}

.chat-message__close {
  width: 15px;
  height: 15px;
  background: url("../images/close.svg") center center no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(120%, -120%);
  -ms-transform: translate(120%, -120%);
  transform: translate(120%, -120%);
}

.chat-message__close:hover {
  cursor: pointer;
}

.chat-message__in {
  background: rgba(48, 53, 62, 0.95);
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 425px;
  height: auto;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.chat-message__in.is-visible {
  opacity: 1;
  pointer-events: all;
}

.chat-item {
  display: block;
  width: 33.33%;
  text-decoration: none;
  margin-bottom: 15px;
}

.chat-item__icon {
  display: block;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.chat-item__icon img {
  display: block;
  width: 100%;
  font-weight: normal;
}

.chat-item__name {
  margin: 10px 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
}

.chat-items {
  margin-top: 15px;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.chat-items__headline {
  padding-top: 15px;
}

.chat-items__headline h5 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-align: center;
}

@-webkit-keyframes pulse-black {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(247, 210, 128, 0.7);
    box-shadow: 0 0 0 0 rgba(247, 210, 128, 0.7);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(247, 210, 128, 0);
    box-shadow: 0 0 0 10px rgba(247, 210, 128, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(247, 210, 128, 0);
    box-shadow: 0 0 0 0 rgba(247, 210, 128, 0);
  }
}

@keyframes pulse-black {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(247, 210, 128, 0.7);
    box-shadow: 0 0 0 0 rgba(247, 210, 128, 0.7);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(247, 210, 128, 0);
    box-shadow: 0 0 0 10px rgba(247, 210, 128, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(247, 210, 128, 0);
    box-shadow: 0 0 0 0 rgba(247, 210, 128, 0);
  }
}

@media (max-width: 1024px) {
  .chat {
    bottom: 0px;
    right: 0px;
  }

  .chat-message {
    display: none;
  }

  .chat-message__in {
    height: auto;
    bottom: 10px;
    width: auto;
    left: 10px;
    right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .chat-item {
    width: 50%;
  }

  .chat-item__icon {
    width: 40%;
  }

  .chat-message__close {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 10px;
    right: 10px;
  }
}

.faq-headline {
  margin-top: 50px;
  margin-bottom: 10px;
}

.faq-headline h5 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: bold;
}

.faq-items {
  margin-bottom: 100px;
}

.faq-items ul {
  list-style: none;
  padding: 0;
}

.faq-items ul .inner {
  padding-left: 0;
  overflow: hidden;
  display: none;
  padding: 20px;
  padding-top: 0;
  padding-left: 110px;
}

.faq-items ul .inner p {
  line-height: 150%;
  font-family: "Montserrat", sans-serif;
}

.faq-items ul .inner.show {
  /*display: block;*/
}

.faq-items ul .inner-dec__icon {
  display: none;
}

.faq-items ul .inner ul li {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  position: relative;
  padding-left: 10px;
  line-height: 150%;
}

.faq-items ul .inner ul li:before,
.faq-items ul .inner ul li:after {
  display: none;
}

.faq-items ul .inner ul li:after {
  position: absolute;
  content: ' ';
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: #6848ab;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: block;
}

.faq-items ul li {
  padding: 20px 0;
  position: relative;
}

.faq-items ul li:hover {
  cursor: pointer;
}

.faq-items ul li:before {
  position: absolute;
  content: ' ';
  bottom: 20px;
  width: 80px;
  height: 36px;
  background: url("../images/plus.svg") center center no-repeat;
  -webkit-background-size: 36px auto;
  background-size: 36px auto;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
  left: 10px;
  pointer-events: none;
  z-index: 1;
}

.faq-items ul li.is-active:before {
  position: absolute;
  content: ' ';
  bottom: 20px;
  width: 80px;
  height: 36px;
  background: url("../images/minus.svg") center center no-repeat;
  -webkit-background-size: 36px auto;
  background-size: 36px auto;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
  left: 10px;
  pointer-events: none;
  z-index: 1;
}

.faq-items ul li:after {
  position: absolute;
  content: ' ';
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background-color: #6848ab;
}

.faq-items ul li a.toggle {
  width: 100%;
  display: block;
  background: transparent;
  color: #fefefe;
  padding: 20px 10px;
  -webkit-border-radius: 0.15em;
  border-radius: 0.15em;
  -webkit-transition: background .3s ease;
  -o-transition: background .3s ease;
  transition: background .3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.faq-items ul li a.toggle span {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #000;
}

.faq-items ul li a.toggle span.toggle-dec {
  width: 80px;
  font-size: 54px;
  font-weight: bold;
  color: #6848ab;
  text-align: center;
  margin-right: 20px;
}

.faq-items ul li a.toggle+.inner-dec {
  display: none !important;
}

@media (max-width: 1024px) {
  .faq-items ul li a.toggle span.toggle-dec {
    width: 60px;
    margin-right: 0;
  }

  .faq-items ul li a.toggle span.toggle-dec {
    font-size: 34px;
    text-align: left;
  }

  .faq-items ul li a.toggle span.toggle-dec+span {
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
  }

  .faq-items ul li:before {
    width: 60px;
    display: none;
  }

  .faq-items ul li a.toggle span {
    font-size: 16px;
  }

  .faq-items ul .inner {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-items ul .inner p {
    font-size: 14px;
  }

  .faq-items ul .inner li {
    font-size: 14px;
  }

  .faq-items ul li {
    padding-bottom: 0;
    padding-top: 0;
  }

  .faq-items ul li.is-active:before,
  .faq-items ul li:after,
  .faq-items ul li:before {
    bottom: 0;
  }

  .faq-items {
    margin-bottom: 50px;
  }

  .faq-headline {
    margin-top: 30px;
  }

  .faq-headline h5 {
    text-align: center;
    font-size: 18px;
  }

  .faq-items ul li a.toggle {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.about-top {
  padding: 100px 0;
}

.about-top h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 24px;
  margin: 0 0 20px 0;
}

.about-top p {
  font-family: "Montserrat", sans-serif;
  line-height: 150%;
  margin-bottom: 1.5em;
}

.about-personal {
  margin-bottom: 100px;
}

.about-personal__headline {
  margin-bottom: 50px;
}

.about-personal__headline h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 24px;
  margin: 0 0 20px 0;
  text-align: center;
}

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

.about-personal__item {
  width: 20%;
}

.about-personal__item img {
  display: block;
  width: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.about-personal__item h5,
.about-personal__item p {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.about-personal__item h5 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.about-personal__item p {
  font-size: 16px;
  margin-top: 10px;
}

.about-gallery {
  margin-top: 50px;
  margin-bottom: 100px;
}

.about-gallery__items .slick-list {
  overflow: visible;
}

.about-gallery__items .slick-slide {
  margin-left: 0px;
  margin-right: 0px;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.5;
}

.about-gallery__items .slick-slide:hover {
  cursor: pointer;
}

.about-gallery__items .slick-slide:hover,
.about-gallery__items .slick-slide:focus {
  outline: none;
  border: none;
}

.about-gallery__items .slick-slide.slick-current.slick-active.slick-center {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.about-gallery__items .slick-prev,
.about-gallery__items .slick-next {
  z-index: 100;
  width: 50px;
  height: 50px;
}

.about-gallery__items .slick-prev:before,
.about-gallery__items .slick-next:before {
  font-size: 50px;
}

.about-gallery__items .slick-prev {
  left: -75px;
}

.about-gallery__items .slick-next {
  right: -75px;
}

.about-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-gallery__headline {
  margin-bottom: 50px;
}

.about-gallery__headline h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 24px;
  margin: 0 0 20px 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .about-personal__items {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-personal__item {
    width: 45%;
    margin-bottom: 25px;
  }

  .about-personal__item:last-child {
    margin-bottom: 0;
  }

  .about-personal__item:nth-last-child(2) {
    margin-bottom: 0;
  }

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

  .about-top p {
    font-size: 14px;
  }

  .about-gallery {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .about-personal {
    margin-bottom: 50px;
  }

  .about-gallery {
    overflow: hidden;
  }

  .about-gallery__items .slick-next {
    right: -20px;
  }

  .about-gallery__items .slick-prev {
    left: -20px;
  }

  .about-gallery__items .slick-next:before,
  .about-gallery__items .slick-prev:before {
    font-size: 30px;
  }
}

.wrapper {
  max-width: 1560px;
  padding: 0px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.s-home {
  background-color: #000;
  background-image: url(../images/img-home-top-pc.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

@media all and (max-width: 1220px) {
  .s-home {
    background-position: 60% bottom;
  }
}

@media screen and (max-width: 840px) {
  .s-home {
    background-image: url(../images/img-home-top-mob.png);
    background-position: right bottom;
    -webkit-background-size: contain;
    background-size: contain;
  }
}

@media all and (max-width: 480px) {
  .s-home {
    background-position: right -32px bottom;
  }
}

.s-home__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
}

@media screen and (max-width: 840px) {
  .s-home__inner {
    height: 363px;
  }
}

.s-home__left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 830px;
  -ms-flex: 0 1 830px;
  flex: 0 1 830px;
  max-width: 70%;
  padding-top: 99px;
}

@media screen and (max-width: 840px) {
  .s-home__left {
    padding-top: 16px;
  }
}

.s-home__title {
  color: #ffffff;
  font-size: 40px;
  letter-spacing: .045em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 47px;
}

@media all and (max-width: 1220px) {
  .s-home__title {
    font-size: 32px;
  }
}

@media screen and (max-width: 840px) {
  .s-home__title {
    font-size: 23px;
    margin-bottom: 15px;
  }
}

.s-home__body {
  font-size: 18px;
  letter-spacing: .045em;
  font-weight: 500;
}

@media screen and (max-width: 840px) {
  .s-home__body {
    font-size: 14px;
  }

  .s-home__body br {
    display: none;
  }
}

.s-home__body h3,
.s-home__body h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 56px;
}

@media all and (max-width: 1220px) {

  .s-home__body h3,
  .s-home__body h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 840px) {

  .s-home__body h3,
  .s-home__body h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.s-home__button {
  padding-top: 63px;
}

@media screen and (max-width: 840px) {
  .s-home__button {
    padding-top: 30px;
  }
}

.s-home__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

.s-home__image img {
  display: block;
}

.s-home .btn {
  -webkit-box-shadow: 0 0 53px #DAC086;
  box-shadow: 0 0 53px #DAC086;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: .1em;
  -webkit-border-radius: 2em;
  border-radius: 2em;
  padding: 22px 80px;
}

.s-home .btn:hover {
  -webkit-box-shadow: 0 0 23px #DAC086;
  box-shadow: 0 0 23px #DAC086;
}

@media screen and (max-width: 840px) {
  .s-home .btn {
    font-size: 14px;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    padding: 14px 27px;
    line-height: 125%;
    -webkit-box-shadow: 0 0 25px #DAC086;
    box-shadow: 0 0 25px #DAC086;
    white-space: nowrap;
  }
}

.s-callback {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #000;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 16px;
}

@media screen and (max-width: 840px) {
  .s-callback {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.s-callback__right {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  margin: auto;
}

@media screen and (max-width: 840px) {
  .s-callback__right {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    padding: 40px 15px 15px;
  }
}

.s-callback__right form {
  max-width: 482px;
  display: block;
  margin: auto;
}

@media screen and (max-width: 840px) {
  .s-callback__right form {
    font-size: 14px;
  }
}

.s-callback__right form h3 {
  color: #ffffff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.9;
  margin-bottom: 30px;
}

@media screen and (max-width: 840px) {
  .s-callback__right form h3 {
    font-size: 17px;
    margin-bottom: 18px;
  }
}

.s-callback__right form .inp-group {
  margin-bottom: 40px;
}

@media screen and (max-width: 840px) {
  .s-callback__right form .inp-group {
    margin-bottom: 20px;
  }
}

.s-callback__right form .inp-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 3px;
}

.s-callback__right form .inp-group input {
  height: 49px;
  border: 1px solid #ffffff;
  font: inherit;
  background: transparent;
  color: #ffffff;
  width: 100%;
  padding: 0 10px;
}

@media screen and (max-width: 840px) {
  .s-callback__right form .inp-group input {
    height: 39px;
  }
}

.s-callback__right form .form-button {
  text-align: center;
}

.s-callback__right form .btn {
  height: 60px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font-size: 16px;
  color: #ffffff;
  width: 348px;
  max-width: 100%;
}

@media screen and (max-width: 840px) {
  .s-callback__right form .btn {
    height: 45px;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    width: 250px;
    font-size: 15px;
  }
}

.s-callback__left {
  margin-top: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

@media screen and (max-width: 840px) {
  .s-callback__left {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    text-align: center;
  }
}

.s-callback__left img {
  max-width: 100%;
  text-align: center;
}

.contacts {
  background: #000;
  color: #fff;
  padding: 0;
}

.contacts span,
.contacts p,
.contacts h5,
.contacts a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: #fff;
}

.contacts__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 840px) {
  .contacts__inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.contacts__map {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60%;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  background: url(../images/map-contact.png) no-repeat center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 740px;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  overflow: hidden;
}

@media screen and (max-width: 840px) {
  .contacts__map {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    height: 250px;
    min-height: 250px;
    margin-left: -webkit-calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-right: -webkit-calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: url(../images/map-contact-mob.png) no-repeat center;
    margin-bottom: 50px;
    -webkit-background-size: cover;
    background-size: cover;
  }

  .contacts__map.map-pc {
    display: none;
  }
}

@media screen and (min-width: 841px) {
  .contacts__map.map-mob {
    display: none;
  }
}

.contacts__map .btn {
  margin: auto;
  position: relative;
  height: 60px;
  color: #000;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(-53px, 12px);
  -ms-transform: translate(-53px, 12px);
  transform: translate(-53px, 12px);
}

@media screen and (max-width: 840px) {
  .contacts__map .btn {
    font-size: 11px;
    height: 39px;
    -webkit-transform: translate(-20px, -28px);
    -ms-transform: translate(-20px, -28px);
    transform: translate(-20px, -28px);
  }
}

.contacts__map .btn:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  height: 0;
  border-top: 26px solid #ffffff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media screen and (max-width: 840px) {
  .contacts__map .btn:after {
    border-top: 14px solid #ffffff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }
}

.contacts__left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 840px) {
  .contacts__left {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
}

.contacts__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding-top: 80px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.contacts__item {
  font-weight: 500;
  font-family: inherit;
}

.contacts__item h3,
.contacts__item h4 {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 22px;
  font-weight: 500;
}

@media screen and (max-width: 840px) {
  .contacts__button {
    margin-bottom: 33px;
  }
}

.contacts__button .btn {
  height: 60px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  width: 290px;
  max-width: 100%;
}

@media screen and (max-width: 840px) {
  .contacts__button .btn {
    height: 45px;
    width: 250px;
    font-size: 15px;
  }
}

.contacts__top a {
  display: inline-block;
  color: inherit;
}

@media screen and (max-width: 840px) {
  .contacts__socials {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.contacts__socials h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: inherit;
}

.contacts__socials a {
  display: inline-block;
  margin-right: 10px;
}

.contacts__socials svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: #fff;
}

.contacts .copyright {
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.faq-items ul li:before {
  right: 0;
  left: initial;
  top: 35px;
  bottom: initial;
}

.faq-items ul li.is-active:before {
  right: 0;
  left: initial;
  top: 35px;
  bottom: initial;
}

@media (max-width: 1024px) {
  .faq-items ul li:before {
    display: block;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 30px;
    -webkit-background-size: contain;
    background-size: contain;
  }

  .faq-items ul li.is-active:before {
    right: 0;
    left: initial;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    bottom: initial;
    opacity: 0;
  }

  .faq-items ul li a.toggle span.toggle-dec+span {
    padding-right: 40px;
  }

  .chat-btn {
    margin: 5px;
  }
}

@media (min-width: 1025px) {
  .sale__item-in {
    -webkit-border-radius: 50px;
    border-radius: 50px;
    overflow: hidden;
  }

  body .chat-message__close {
    background-color: #FFF;
    width: 18px;
    height: 18px;
    -webkit-background-size: 15px !important;
    background-size: 15px !important;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
}

.arrow-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  margin: 10px;
  border: 2px solid #6848ab;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
  background: #000;
}

.arrow-top:hover {
  cursor: pointer;
}

.arrow-top svg {
  display: block;
  width: auto;
  height: 50%;
  font-weight: normal;
}

@media (max-width: 1024px) {
  .arrow-top {
    margin: 0;
    left: 5px;
    bottom: 35px;
    z-index: 10000;
    width: 65px;
    height: 65px;
  }

  .arrow-top svg {
    height: 50%;
  }
}

@media (max-width: 1024px) {
  .chat {
    bottom: 35px;
    z-index: 10000;
  }
}

/*# sourceMappingURL=style.css.map */