/* 1. Settings
=========================*/
/* 2. Font family
=========================*/
/* 3. Font sizes
=========================*/
/* 4. Colors
=========================*/
/* 39. Tooltips
=========================*/
/* Default */
/* Sizes */
/* Styling */
/* Default Buttons
============================*/
/* Outline Buttons
============================*/
/* Inverted Buttons
============================*/
/* Gradient Buttons
============================*/
/* --------------- Font Choice --------------- */
@font-face {
  font-family: 'e-Ukraine';
  src: url(../fonts/e-Ukraine-Light.otf) format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: fallback; }

@font-face {
  font-family: 'e-Ukraine';
  src: url(../fonts/e-Ukraine-Regular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: fallback; }

@font-face {
  font-family: 'e-Ukraine';
  src: url(../fonts/e-Ukraine-Medium.otf) format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: fallback; }

@font-face {
  font-family: 'e-Ukraine';
  src: url(../fonts/e-Ukraine-Bold.otf) format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: fallback; }

.container {
  max-width: 100%; }

html {
  font-size: 10px; }

html,
body {
  -webkit-overflow-scrolling: touch; }
  html.fixed,
  body.fixed {
    overflow: hidden;
    touch-action: none; }

body {
  font-family: 'e-Ukraine', sans-serif;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
  overflow-x: hidden;
  font-size: 2.7rem;
  line-height: 1.7; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit; }

a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s; }
  a:hover {
    text-decoration: none; }
  a:focus {
    outline: 0;
    text-decoration: none; }

p {
  margin: 0 0 0.5em; }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }

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

::-webkit-scrollbar {
  width: 0.5rem; }

::-webkit-scrollbar-track {
  background: #131313; }

::-webkit-scrollbar-thumb {
  background: #FFCB00; }

::selection {
  color: #000000;
  background-color: #FFCB00; }

.site {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh; }

.mask {
  position: fixed;
  height: 100%;
  background: #131313;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s; }
  .mask.active {
    opacity: 0.7;
    visibility: visible; }

/* Vendor libs
==========================*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Dots */
.slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 0.5rem;
    cursor: pointer; }
    .slick-dots li button {
      display: block;
      width: 2rem;
      height: 2rem;
      margin: 0;
      padding: 0;
      border: 0;
      background: transparent;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      cursor: pointer;
      outline: 0;
      opacity: 1; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        opacity: 1; }
      .slick-dots li button:hover:before {
        background-color: #FFCB00; }
      .slick-dots li button:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: solid 3px #FFFFFF;
        background-color: #D9D9D9;
        transition: 0.3s; }
    .slick-dots li.slick-active button {
      opacity: 1; }
      .slick-dots li.slick-active button:before {
        background-color: #FFCB00; }

/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  height: 4rem;
  width: 4rem;
  padding: 0;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  border: none;
  outline: none;
  position: absolute;
  left: 1.7rem;
  transition: 0.5s; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
  .slick-prev.slick-disabled,
  .slick-next.slick-disabled {
    opacity: 0; }
  .slick-prev:before,
  .slick-next:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center; }

.slick-prev {
  top: 0; }
  .slick-prev:before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13 23L20 16L27 23' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e "); }

.slick-next {
  bottom: 0; }
  .slick-next:before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M27 16L20 23L13 16' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e "); }

/* Import blocks
==========================*/
/* 51. Bootstrap 4 Grid
=========================*/
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px; }
  @media (min-width: 1760px) {
    .container {
      width: 1760px;
      max-width: 100%; } }

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
  margin-right: -20px;
  margin-left: -20px; }
  @media (min-width: 560px) {
    .row {
      margin-right: -20px;
      margin-left: -20px; } }
  @media (min-width: 992px) {
    .row {
      margin-right: -20px;
      margin-left: -20px; } }
  @media (min-width: 1760px) {
    .row {
      margin-right: -20px;
      margin-left: -20px; } }

.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-left: 20px; }
  @media (min-width: 560px) {
    .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
      padding-right: 20px;
      padding-left: 20px; } }
  @media (min-width: 992px) {
    .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
      padding-right: 20px;
      padding-left: 20px; } }
  @media (min-width: 1760px) {
    .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
      padding-right: 20px;
      padding-left: 20px; } }

@media (min-width: 560px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .pull-md-0 {
    right: auto; }
  .pull-md-1 {
    right: 8.33333%; }
  .pull-md-2 {
    right: 16.66667%; }
  .pull-md-3 {
    right: 25%; }
  .pull-md-4 {
    right: 33.33333%; }
  .pull-md-5 {
    right: 41.66667%; }
  .pull-md-6 {
    right: 50%; }
  .pull-md-7 {
    right: 58.33333%; }
  .pull-md-8 {
    right: 66.66667%; }
  .pull-md-9 {
    right: 75%; }
  .pull-md-10 {
    right: 83.33333%; }
  .pull-md-11 {
    right: 91.66667%; }
  .pull-md-12 {
    right: 100%; }
  .push-md-0 {
    left: auto; }
  .push-md-1 {
    left: 8.33333%; }
  .push-md-2 {
    left: 16.66667%; }
  .push-md-3 {
    left: 25%; }
  .push-md-4 {
    left: 33.33333%; }
  .push-md-5 {
    left: 41.66667%; }
  .push-md-6 {
    left: 50%; }
  .push-md-7 {
    left: 58.33333%; }
  .push-md-8 {
    left: 66.66667%; }
  .push-md-9 {
    left: 75%; }
  .push-md-10 {
    left: 83.33333%; }
  .push-md-11 {
    left: 91.66667%; }
  .push-md-12 {
    left: 100%; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .pull-lg-0 {
    right: auto; }
  .pull-lg-1 {
    right: 8.33333%; }
  .pull-lg-2 {
    right: 16.66667%; }
  .pull-lg-3 {
    right: 25%; }
  .pull-lg-4 {
    right: 33.33333%; }
  .pull-lg-5 {
    right: 41.66667%; }
  .pull-lg-6 {
    right: 50%; }
  .pull-lg-7 {
    right: 58.33333%; }
  .pull-lg-8 {
    right: 66.66667%; }
  .pull-lg-9 {
    right: 75%; }
  .pull-lg-10 {
    right: 83.33333%; }
  .pull-lg-11 {
    right: 91.66667%; }
  .pull-lg-12 {
    right: 100%; }
  .push-lg-0 {
    left: auto; }
  .push-lg-1 {
    left: 8.33333%; }
  .push-lg-2 {
    left: 16.66667%; }
  .push-lg-3 {
    left: 25%; }
  .push-lg-4 {
    left: 33.33333%; }
  .push-lg-5 {
    left: 41.66667%; }
  .push-lg-6 {
    left: 50%; }
  .push-lg-7 {
    left: 58.33333%; }
  .push-lg-8 {
    left: 66.66667%; }
  .push-lg-9 {
    left: 75%; }
  .push-lg-10 {
    left: 83.33333%; }
  .push-lg-11 {
    left: 91.66667%; }
  .push-lg-12 {
    left: 100%; }
  .offset-lg-0 {
    margin-left: 0%; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1760px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .pull-xl-0 {
    right: auto; }
  .pull-xl-1 {
    right: 8.33333%; }
  .pull-xl-2 {
    right: 16.66667%; }
  .pull-xl-3 {
    right: 25%; }
  .pull-xl-4 {
    right: 33.33333%; }
  .pull-xl-5 {
    right: 41.66667%; }
  .pull-xl-6 {
    right: 50%; }
  .pull-xl-7 {
    right: 58.33333%; }
  .pull-xl-8 {
    right: 66.66667%; }
  .pull-xl-9 {
    right: 75%; }
  .pull-xl-10 {
    right: 83.33333%; }
  .pull-xl-11 {
    right: 91.66667%; }
  .pull-xl-12 {
    right: 100%; }
  .push-xl-0 {
    left: auto; }
  .push-xl-1 {
    left: 8.33333%; }
  .push-xl-2 {
    left: 16.66667%; }
  .push-xl-3 {
    left: 25%; }
  .push-xl-4 {
    left: 33.33333%; }
  .push-xl-5 {
    left: 41.66667%; }
  .push-xl-6 {
    left: 50%; }
  .push-xl-7 {
    left: 58.33333%; }
  .push-xl-8 {
    left: 66.66667%; }
  .push-xl-9 {
    left: 75%; }
  .push-xl-10 {
    left: 83.33333%; }
  .push-xl-11 {
    left: 91.66667%; }
  .push-xl-12 {
    left: 100%; }
  .offset-xl-0 {
    margin-left: 0%; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

.error__page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 74rem;
  padding: 14rem 0;
  background-color: #F6F6F6; }
  .error__page .btn {
    min-width: 20rem; }

.error__page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  text-align: center; }

.error__title {
  width: 100%;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 20rem;
  line-height: 1.15;
  color: #000000; }

.error__text {
  width: 100%;
  margin-bottom: 4.5rem;
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  color: #000000; }

.closed__page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  perspective: 1000px; }

.closed__container {
  width: 400px;
  height: 300px;
  margin: 0 auto;
  position: relative;
  transform: scale(1) rotateZ(7deg) rotateY(14deg);
  transform-origin: center 12px;
  animation: 2s init, 0.7s aa 1s, 3s ab 1.7s infinite; }

@keyframes aa {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1) rotateZ(7deg) rotateY(14deg); } }

@keyframes ab {
  0% {
    transform: rotateZ(7deg) rotateY(14deg); }
  50% {
    transform: rotateZ(-7deg) rotateY(-14deg); }
  100% {
    transform: rotateZ(7deg) rotateY(14deg); } }

.closed__box {
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
  background: #E18842;
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
  border-radius: 20px;
  text-shadow: 0 2px #E18842;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center; }

.rope {
  width: 150px;
  height: 150px;
  border: solid 5px #D9D9D9;
  border-bottom: none;
  border-right: none;
  position: absolute;
  top: 38px;
  left: 122px;
  transform: rotatez(45deg); }

.pin {
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 25px;
  background: #000000; }
  .pin--first {
    top: 0;
    left: 187px; }
  .pin--second {
    top: 110px;
    left: 80px; }
  .pin--third {
    top: 110px;
    right: 80px; }

@keyframes init {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }

/* Sticker */
.sticker {
  position: relative;
  display: block;
  font-weight: 700;
  background-color: #fcf59b;
  border-radius: 0px 10px 250px / 0 200px 55px 250px;
  -webkit-box-shadow: -3px 5px 12px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -3px 5px 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: -3px 5px 12px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 1em; }
  .sticker:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 90%;
    height: 20px;
    -webkit-box-shadow: 3px 17px 6px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 3px 17px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 17px 6px rgba(0, 0, 0, 0.3);
    bottom: 15px;
    right: 5px;
    -ms-transform: skew(-10deg, 2deg);
    -webkit-transform: skew(-10deg, 2deg);
    transform: skew(-10deg, 2deg); }
  .sticker:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    right: 8px;
    bottom: 1px;
    border-top: 10px solid #9ca63d;
    border-right: 10px solid transparent;
    -webkit-transform: skew(-55deg, 10deg);
    transform: skew(-55deg, 10deg); }

/* Text on the sticker*/
.sticker__text {
  text-align: center;
  display: block;
  padding: 1em;
  font-size: 1.3em;
  color: #000000; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(19, 19, 19, 0.75);
  z-index: 10; }

.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 14rem; }

.header__block {
  display: flex;
  align-items: center; }
  .header__block:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center; }
  .header__block:last-child {
    justify-content: flex-end; }

.logo {
  display: block;
  color: #FFCB00;
  font-size: 2rem;
  font-weight: 700; }

.header__link {
  font-size: 2rem; }

.nav {
  display: flex;
  align-items: center; }

.menu-item {
  margin-right: 4.5rem; }
  .menu-item a {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700; }
    .menu-item a.active {
      color: #FFCB00; }
    .menu-item a:hover {
      color: #FFCB00; }
  .menu-item:last-child {
    margin-right: 0; }

/* 17. Alerts
=========================*/
/* Styling */
.alert {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 46rem;
  max-width: 100%;
  min-height: 5.4rem;
  margin-bottom: 3rem;
  padding: 1rem;
  background-color: #000000;
  border-radius: 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  color: #FFFFFF;
  /* Colors */
  /* Border */
  /* Styling */ }
  .alert p:last-of-type {
    margin-bottom: 0; }
  .alert p.alert__text {
    margin-bottom: 20px; }
  .alert--gray {
    background-color: #D9D9D9;
    color: #000000; }
  .alert--dark-blue {
    background-color: #1437CC;
    color: #FFFFFF; }
  .alert--red {
    background-color: #E30520;
    color: #FFFFFF; }
  .alert--rblack {
    background-color: #000;
    color: #FFFFFF; }
  .alert--white {
    background-color: #FFFFFF;
    color: #000000; }
  .alert--pink {
    background-color: #EBDDDD;
    color: #000000; }
  .alert--deep-pink {
    background-color: #DCC9C3;
    color: #000000; }
  .alert--purple {
    background-color: #A08CA7;
    color: #FFFFFF; }
  .alert--deep-purple {
    background-color: #673ab7;
    color: #FFFFFF; }
  .alert--dark-pink {
    background-color: #BC9999;
    color: #000000; }
  .alert--blue {
    background-color: #0094DA;
    color: #FFFFFF; }
  .alert--cyan {
    background-color: #60A2AB;
    color: #FFFFFF; }
  .alert--green {
    background-color: #4DB45E;
    color: #FFFFFF; }
  .alert--yellow {
    background-color: #FFCB00;
    color: #FFFFFF; }
  .alert--main {
    background-color: #FFCB00;
    color: #FFFFFF; }
  .alert--moicvet {
    background-color: #000;
    color: #FFFFFF; }
  .alert--secondary {
    background-color: #000;
    color: #FFFFFF; }
  .alert--brown {
    background-color: #94816C;
    color: #FFFFFF; }
  .alert--black {
    background-color: #000000;
    color: #FFFFFF; }
  .alert--gray {
    background-color: #D9D9D9;
    color: #000000; }
  .alert--peach {
    background-color: #916868;
    color: #FFFFFF; }
  .alert--o-gray {
    background: transparent;
    color: #D9D9D9;
    border: 1px solid #D9D9D9; }
  .alert--o-dark-blue {
    background: transparent;
    color: #1437CC;
    border: 1px solid #1437CC; }
  .alert--o-red {
    background: transparent;
    color: #E30520;
    border: 1px solid #E30520; }
  .alert--o-rblack {
    background: transparent;
    color: #000;
    border: 1px solid #000; }
  .alert--o-white {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF; }
  .alert--o-pink {
    background: transparent;
    color: #EBDDDD;
    border: 1px solid #EBDDDD; }
  .alert--o-deep-pink {
    background: transparent;
    color: #DCC9C3;
    border: 1px solid #DCC9C3; }
  .alert--o-purple {
    background: transparent;
    color: #A08CA7;
    border: 1px solid #A08CA7; }
  .alert--o-deep-purple {
    background: transparent;
    color: #673ab7;
    border: 1px solid #673ab7; }
  .alert--o-dark-pink {
    background: transparent;
    color: #BC9999;
    border: 1px solid #BC9999; }
  .alert--o-blue {
    background: transparent;
    color: #0094DA;
    border: 1px solid #0094DA; }
  .alert--o-cyan {
    background: transparent;
    color: #60A2AB;
    border: 1px solid #60A2AB; }
  .alert--o-green {
    background: transparent;
    color: #4DB45E;
    border: 1px solid #4DB45E; }
  .alert--o-yellow {
    background: transparent;
    color: #FFCB00;
    border: 1px solid #FFCB00; }
  .alert--o-main {
    background: transparent;
    color: #FFCB00;
    border: 1px solid #FFCB00; }
  .alert--o-moicvet {
    background: transparent;
    color: #000;
    border: 1px solid #000; }
  .alert--o-secondary {
    background: transparent;
    color: #000;
    border: 1px solid #000; }
  .alert--o-brown {
    background: transparent;
    color: #94816C;
    border: 1px solid #94816C; }
  .alert--o-black {
    background: transparent;
    color: #000000;
    border: 1px solid #000000; }
  .alert--o-gray {
    background: transparent;
    color: #D9D9D9;
    border: 1px solid #D9D9D9; }
  .alert--o-peach {
    background: transparent;
    color: #916868;
    border: 1px solid #916868; }
  .alert--rounded {
    border-radius: 0.3em; }
  .alert--shadow {
    box-shadow: 0 0 0.3em currentColor; }

.alert__button {
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  line-height: 1;
  font-size: 1em;
  position: absolute;
  top: 0.3em;
  right: 0.5em;
  z-index: 1; }
  .alert__button:focus {
    outline: 0; }

.content__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem; }
  .content__wrapper.quad .content__block {
    width: 25%; }
  .content__wrapper.half .content__block {
    width: 50%; }

.content__block {
  width: 33.33333%;
  padding: 0 1rem;
  margin-bottom: 2rem; }

.content__item {
  display: block;
  color: #000; }
  .content__item:hover {
    text-decoration: none; }
    .content__item:hover .content__img {
      transform: scale(1.2); }

.content__img-wrapper {
  height: 19rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden; }

.content__img {
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .2s ease; }

.content__block-title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: inherit; }

.content__block-text {
  margin-bottom: 1rem;
  font-size: 1rem; }

.content__block-link {
  color: #E30520;
  font-size: 1.2rem; }

.content__slider {
  height: 36rem;
  overflow: hidden; }
  .content__slider .slick-dots {
    bottom: 2rem;
    z-index: 2; }

.content__slide {
  height: 36rem;
  padding: 6rem;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: flex-end; }
  .content__slide:after {
    background: linear-gradient(200.86deg, rgba(196, 196, 196, 0) 35.86%, rgba(0, 0, 0, 0.54) 80.41%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .content__slide:hover {
    text-decoration: none; }

.content__slide-item {
  position: relative;
  z-index: 2; }
  .content__slide-item .title {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #FFFFFF; }
  .content__slide-item .text {
    font-size: 1rem;
    color: #FFFFFF; }

/* 20. Table
=========================*/
.table__wrapper {
  width: 135rem;
  max-width: 100%;
  margin: 0 auto; }

.table {
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%; }
  .table tr:nth-child(odd) td {
    background-color: #FFCB00; }
  .table th,
  .table td {
    border: none; }
    .table th:nth-child(2), .table th:nth-child(3), .table th:nth-child(4), .table th:nth-child(5),
    .table td:nth-child(2),
    .table td:nth-child(3),
    .table td:nth-child(4),
    .table td:nth-child(5) {
      width: 13rem; }
    .table th:nth-child(6), .table th:nth-child(7),
    .table td:nth-child(6),
    .table td:nth-child(7) {
      width: 18rem; }
  .table th {
    padding: 2.8rem 2rem 2rem;
    background-color: #D9D9D9;
    border-right: 8px solid #FFFFFF;
    vertical-align: top;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center; }
    .table th:last-child {
      border-right: none; }
  .table td {
    height: 5rem;
    padding: 0.5rem 2.5rem;
    border-right: 8px solid #FFFFFF;
    background-color: #D9D9D9;
    font-size: 2.5rem;
    text-align: left; }
    .table td:last-child {
      border-right: none; }

.section.gray .table tr:nth-child(odd) td {
  background-color: #FFCB00; }

.section.gray .table th {
  background-color: #FFFFFF;
  border-color: #D9D9D9; }

.section.gray .table td {
  border-color: #D9D9D9;
  background-color: #FFFFFF; }

.footer {
  position: relative;
  padding: 15rem 0 24rem; }

.footer__wrapper {
  position: relative;
  z-index: 2; }

.intro {
  position: relative;
  background-color: #111111; }

.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }
  .intro__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.intro__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 18rem 0 22rem;
  text-align: center;
  z-index: 2; }

.intro__title {
  width: 120rem;
  max-width: 100%;
  margin: 0 auto;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #FFCB00;
  text-transform: uppercase; }

.intro__text {
  margin-bottom: 4.5rem;
  color: #FFFFFF;
  font-size: 3.8rem;
  font-weight: 300; }

.intro__img {
  position: relative;
  width: 80rem;
  max-width: 100%;
  margin: 0 auto; }
  .intro__img img {
    display: block;
    width: 100%; }

.address {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 45rem; }

.address__img {
  width: 7rem;
  margin-right: 1.5rem; }
  .address__img svg {
    display: block;
    width: 100%; }

.address__text {
  flex: 1;
  color: #FFCB00;
  font-weight: 700;
  line-height: 1.2;
  text-align: left; }

.gallery {
  position: relative;
  width: 100%; }
  .gallery .slick-dots {
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%); }

.gallery__item {
  height: 50rem;
  padding: 0 0.3rem; }
  .gallery__item img {
    display: block;
    height: 100%; }

.section {
  position: relative;
  padding: 15rem 0 18rem; }
  .section.gray {
    background-color: rgba(157, 157, 157, 0.33); }

.section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8rem; }

.block__img {
  width: 18rem;
  margin-right: 3rem; }
  .block__img img {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto; }

.block__title {
  font-weight: 700;
  font-size: 4.7rem; }

.block__text {
  font-weight: 400; }
  .block__text.center {
    text-align: center; }
  .block__text a:hover {
    color: #FFCB00; }
  .block__text ul {
    list-style: disc;
    margin-left: 1.8rem;
    margin-bottom: 1em; }
  .block__text h2 {
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 2rem; }
  .block__text h3 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 2rem; }
  .block__text h4 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 2rem; }
  .block__text p {
    margin-bottom: 2rem; }
    .block__text p:last-child {
      margin-bottom: 0; }

.services__item {
  margin-bottom: 15rem; }
  .services__item:last-child {
    margin-bottom: 0; }

.services__title {
  margin-bottom: 2.5rem;
  padding: 2rem 3rem;
  background-color: #FFCB00; }

.services__content {
  padding-left: 3rem; }
  .services__content ul {
    padding-left: 7rem; }
  .services__content li {
    list-style-type: disc; }
    .services__content li::marker {
      color: #FFCB00; }

.link {
  display: flex;
  align-items: center;
  transition: 0.3s; }
  .link:hover {
    color: #FFCB00; }

.link__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 2.5rem;
  padding: 0.5rem; }
  .link__img svg {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%; }
  .link__img--yellow {
    background-color: #FFCB00; }
  .link__img--red {
    background-color: #E30520; }
  .link__img--blue {
    background-color: #0094DA; }

.link__text {
  flex: 1; }

.contacts {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(19, 19, 19, 0.75);
  z-index: 10; }

.contacts__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 14rem;
  color: #FFFFFF; }

.contacts__list {
  display: flex;
  align-items: center; }

.contacts__item {
  margin-right: 6.5rem; }
  .contacts__item:last-child {
    margin-right: 0; }

.header__link {
    margin-right: 2rem; }
  .menu__btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 1.8rem; }
    .menu__btn:before, .menu__btn:after,
    .menu__btn i {
      content: '';
      width: 100%;
      display: block;
      height: 2px;
      background-color: #FFFFFF;
      transition: 0.3s; }
    .menu__btn:hover:before {
      transform: translateY(0.2rem); }
    .menu__btn:hover:after {
      transform: translateY(-0.2rem); }
  .menu__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 1.4rem;
    height: 1.4rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.7805 0.219436C11.4879 -0.0731455 11.0186 -0.0731455 10.726 0.219436L6 4.94491L1.27398 0.219436C0.981367 -0.0731455 0.512077 -0.0731455 0.219462 0.219436C-0.0731539 0.512018 -0.0731539 0.981254 0.219462 1.27384L4.94548 5.99931L0.219462 10.7248C-0.0731539 11.0174 -0.0731539 11.4866 0.219462 11.7792C0.363009 11.9227 0.556246 12 0.743961 12C0.931677 12 1.12491 11.9282 1.26846 11.7792L5.99448 7.05371L10.7205 11.7792C10.864 11.9227 11.0573 12 11.245 12C11.4382 12 11.6259 11.9282 11.7695 11.7792C12.0621 11.4866 12.0621 11.0174 11.7695 10.7248L7.05452 5.99931L11.7805 1.27384C12.0732 0.981254 12.0732 0.512018 11.7805 0.219436Z' fill='%23FFFFFF'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1; }
  .menu {
    padding: 6rem 0 3rem;
    width: 32rem;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: rgba(19, 19, 19, 0.85);
    transition: 0.3s;
    transform: translateX(100%);
    z-index: 1001; }
    .menu.opened {
      transforM: translateX(0); }
  .menu__content {
    width: 100%;
    height: 100%;
    padding: 0 2rem;
    overflow-y: auto; }
    .menu__content .nav {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 2.5rem; }
  .menu-item {
    margin-right: 0;
    margin-bottom: 2rem; }
    .menu-item:last-child {
      margin-bottom: 0; }

/* Helpers (must be as last import to override rules when use)
==========================*/
@media (max-width: 1420px) {
  body {
    font-size: 1.8rem;
    line-height: 1.4; }
  .header__wrapper {
    height: 10rem; }
  .logo {
    font-size: 1.6rem; }
  .menu-item {
    margin-right: 2.5rem; }
    .menu-item a {
      font-size: 1.6rem; }
  .link__img {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem; }
  .header__link {
    font-size: 1.6rem; }
  .intro__wrapper {
    padding: 14rem 0; }
  .intro__title {
    font-size: 3rem; }
  .intro__text {
    margin-bottom: 6rem;
    font-size: 3rem; }
  .address__img {
    width: 5rem;
    margin-right: 1rem; }
  .section {
    padding: 8rem 0; }
  .section__header {
    margin-bottom: 5rem; }
  .block__img {
    width: 15rem;
    margin-right: 2rem; }
  .block__title {
    font-size: 4rem; }
  .table th:nth-child(2), .table th:nth-child(3), .table th:nth-child(4), .table th:nth-child(5),
  .table td:nth-child(2),
  .table td:nth-child(3),
  .table td:nth-child(4),
  .table td:nth-child(5) {
    width: 10rem; }
  .table th:nth-child(6), .table th:nth-child(7),
  .table td:nth-child(6),
  .table td:nth-child(7) {
    width: 14rem; }
  .table th {
    padding: 2rem 1.5rem;
    border-width: 4px;
    font-size: 1.6rem; }
  .table td {
    height: 4rem;
    padding: 0.5rem 1.5rem;
    border-width: 4px;
    font-size: 1.8rem; }
  .services__item {
    margin-bottom: 8rem; }
  .services__title {
    margin-bottom: 2rem;
    padding: 2rem; }
  .services__content {
    padding-left: 2rem; }
    .services__content ul {
      padding-left: 4rem; }
  .footer {
    padding: 8rem 0 20rem; }
  .gallery__item {
    height: 40rem; }
  .contacts__wrapper {
    height: 10rem; }
  .contacts__item {
    margin-right: 4rem; } }

@media (min-width: 1101px) {
  .hide-desktop {
    display: none; } }

@media (max-width: 1100px) {
  .hide-mobile {
    display: none; }
  .header__wrapper {
    height: 8rem; }
  
  .intro__wrapper {
    padding: 10rem 0; }
  .table {
    display: block;
    width: 100%; }
    .table thead,
    .table tbody {
      display: block; }
    .table thead {
      float: left; }
    .table tbody {
      width: auto;
      position: relative;
      padding-bottom: 1rem;
      overflow-x: auto; }
      .table tbody::-webkit-scrollbar {
        height: 0.5rem; }
    .table tr {
      display: table-cell;
      border-right: solid 2px #FFFFFF; }
      .table tr:nth-child(odd) td {
        background-color: #D9D9D9; }
        .table tr:nth-child(odd) td:nth-child(odd) {
          background-color: #FFCB00; }
    .table th,
    .table td {
      display: flex;
      align-items: center;
      box-sizing: border-box;
      overflow: hidden;
      padding: 0.5rem 1.5rem;
      border-right: none;
      border-bottom: solid 2px #FFFFFF;
      font-size: 1.5rem;
      line-height: 1;
      text-align: left; }
      .table th:nth-child(2), .table th:nth-child(3), .table th:nth-child(4), .table th:nth-child(5),
      .table td:nth-child(2),
      .table td:nth-child(3),
      .table td:nth-child(4),
      .table td:nth-child(5) {
        width: auto; }
      .table th:nth-child(6), .table th:nth-child(7),
      .table td:nth-child(6),
      .table td:nth-child(7) {
        width: auto; }
    .table th {
      height: 4rem;
      background-color: #D9D9D9; }
    .table td {
      white-space: nowrap; }
      .table td:nth-child(odd) {
        background-color: #FFCB00; }
  .section.gray .table tr {
    border-color: #D9D9D9; }
    .section.gray .table tr:nth-child(odd) td {
      background-color: #FFFFFF; }
      .section.gray .table tr:nth-child(odd) td:nth-child(odd) {
        background-color: #FFCB00; }
  .section.gray .table td:nth-child(odd),
  .section.gray .table th:nth-child(odd) {
    background-color: #FFCB00; }
  .footer {
    padding: 8rem 0 16rem; }
  .contacts__wrapper {
    height: 8rem;
    font-size: 1.6rem; } }

@media (max-width: 768px) {
  body {
    font-size: 1.6rem; }
  .header__wrapper {
    height: 6rem; }
  .header__link .link__text {
    display: none; }
  .header__link .link__img {
    margin-right: 0; }
  .intro__wrapper {
    padding: 8rem 0; }
  .intro__title {
    margin-bottom: 2rem;
    font-size: 2.2rem; }
  .intro__text {
    margin-bottom: 4rem;
    font-size: 2.2rem; }
  .address {
    position: static;
    width: 100%;
    margin-top: 2rem; }
  .address__img {
    width: 3rem; }
  .section {
    padding: 5rem 0; }
  .section__header {
    flex-direction: column;
    margin-bottom: 3rem; }
  .block__img {
    width: 15rem;
    margin-right: 0;
    margin-bottom: 1rem; }
  .block__title {
    font-size: 3rem; }
  .table th,
  .table td {
    padding: 0.5rem 1rem;
    font-size: 1.4rem; }
  .services__title {
    padding: 1rem 1.5rem; }
  .services__content {
    padding-left: 1.5rem; }
    .services__content ul {
      padding-left: 1.8rem; }
    .services__content li {
      margin-bottom: 1rem; }
      .services__content li:last-child {
        margin-bottom: 0; }
  .footer {
    padding: 5rem 0 14rem; }
  .gallery .slick-dots {
    bottom: -4rem; }
  .contacts__wrapper {
    height: 6rem; }
  .contacts__item {
    margin-right: 2rem; }
  .contacts__title {
    display: none; }
  .contacts__list {
    width: 100%;
    justify-content: center; } }
