@charset "UTF-8";

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  animation-duration: 300ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*!
 * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

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

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

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/fonts/icomoon.eot?oeuf3z");
  src: url("../fonts/icomoon/fonts/icomoon.eot?oeuf3z#iefix") format("embedded-opentype"), url("../fonts/icomoon/fonts/icomoon.ttf?oeuf3z") format("truetype"), url("../fonts/icomoon/fonts/icomoon.woff?oeuf3z") format("woff"), url("../fonts/icomoon/fonts/icomoon.svg?oeuf3z#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  outline: none;
  -webkit-appearance: none;
}

body {
  background: #f2f1f0;
  font-size: 18px;
  line-height: 130%;
  color: #000;
  font-family: 'Roboto';
}

a {
  color: #000;
  text-decoration: none;
  transition: all ease .3s;
}

a:hover {
  color: #FF514C;
}

.socials a {
  width: 30px;
  height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.socials a:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
}

.socials_vk:hover {
  color: #4C75A3;
}

.socials_vk:before {
  content: "\e906";
}

.socials_tg:hover {
  color: #229ED9;
}

.socials_tg:before {
  content: "\e905";
}

.socials_wa:hover {
  color: #25D366;
}

.socials_wa:before {
  content: "\e904";
}

.work {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.work-sticky .work-container {
  padding-bottom: 20px;
}

.work-sticky + footer {
  display: none;
}

.work-container {
  background: #FFFFFF;
  border-radius: 20px 20px 0px 0px;
  padding: 30px 20px 105px 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

a.zoom {
  position: relative;
  line-height: 0;
  border-radius: 30px;
  overflow: hidden;
  display: block;
}

a.zoom:hover:before {
  opacity: 1;
  background-size: 100px;
}

a.zoom:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3) url(../images/zoom.svg) center center no-repeat;
  background-size: 30px;
  display: block;
  transition: all ease .3s;
  opacity: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"],
input[type="tel"],
input[type="date"],
textarea {
  height: 50px;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 21px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid #999;
  border-radius: 10px;
  transition: all ease-in-out .3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="phone"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
  border: 1px solid #FF514C;
}

input[type="text"].error,
input[type="email"].error,
input[type="password"].error,
input[type="phone"].error,
input[type="tel"].error,
input[type="date"].error,
textarea.error {
  border-bottom: 1px solid #EF476F;
  color: #EF476F;
}

textarea {
  height: 112px;
  padding-top: 22px;
}

input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 1;
  flex: 0 0 0;
  overflow: hidden;
  margin: 0;
}

input[type="checkbox"]:checked + span:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90d";
  font-size: 9px;
  color: #fff;
}

input[type="checkbox"]:checked + span {
  border: 1px solid #7B61FF;
  background: #7B61FF;
}

input[type="checkbox"] + span {
  background: #FFF;
  border: 1px solid #D6D6D6;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .3s;
  margin-right: 6px;
}

.modal {
  padding: 25px 35px;
  background: #FFF;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  z-index: 3;
  display: none;
}

.modal-overlay {
  position: fixed;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.modal-close {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 20px;
}

.modal-close:hover {
  color: #FF514C;
}

.modal-close:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e902";
  font-size: 15px;
}

.modal__call-me {
  z-index: 4;
  position: absolute;
  width: 440px;
  right: -250px;
  top: 70px;
}

.modal__call-me > p {
  margin-bottom: 20px;
  line-height: 150%;
  margin-top: 10px;
}

.modal__call-me input {
  width: 325px;
  margin-bottom: 20px;
}

.modal__call-me .button {
  margin-left: 0;
  margin-bottom: 20px;
}

.modal__call-me .policy {
  max-width: 297px;
}

.modal__all-services {
  z-index: 3;
  position: fixed;
  width: 1150px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  overflow: hidden;
}

.modal__all-services-container {
  display: flex;
}

.modal__all-services-container > div {
  flex: 0 0 33.3333%;
  padding: 25px 35px;
}

.modal__all-services-container > div:nth-of-type(1) {
  background: #F5F5F5;
  flex: 0 0 278px;
}

.modal__all-services-container > div ul {
  display: flex;
  flex-direction: column;
  height: 412px;
  flex-wrap: wrap;
}

.modal__all-services-container > div ul li {
  padding-right: 40px;
}

.modal__all-services-container > div ul li a {
  white-space: nowrap;
}

.modal__all-services-container p {
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 15px;
}

.modal__all-services-container li {
  margin-bottom: 10px;
}

p.policy {
  font-size: 12px;
  line-height: 150%;
  color: #999;
}

p.policy a {
  text-decoration: underline;
  color: inherit;
}

p.policy a:hover {
  color: #FF514C;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 21px;
}

.selectize-control.single .selectize-input {
  height: 50px;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 21px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid #999;
  border-radius: 10px;
  transition: all ease-in-out .3s;
  background: #fff;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  display: flex;
}

.selectize-control.single .selectize-input:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e900";
  border: none;
  font-size: 13px;
  margin-top: -6px;
  right: 30px;
  color: #aaa;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -6px;
  border: none;
}

.selectize-dropdown {
  z-index: 0;
  margin-top: -10px;
  border: 1px solid #CCC;
  box-shadow: 0px 2px 7px rgba(170, 170, 170, 0.676929);
  border-radius: 10px;
  overflow: hidden;
}

.selectize-dropdown-content::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.selectize-dropdown-content::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #DFE9EB;
}

.selectize-dropdown-content::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

.selectize-dropdown-content::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

.selectize-dropdown-content::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #A9A9A9;
}

.selectize-dropdown .option {
  font-size: 18px;
}

.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 15px;
}

.selectize-dropdown .option:nth-of-type(odd),
.selectize-dropdown .optgroup-header:nth-of-type(odd) {
  background: #F2F1F0;
}

.selectize-dropdown .option:nth-of-type(1),
.selectize-dropdown .optgroup-header:nth-of-type(1) {
  padding: 10px 15px 0 15px;
  height: 50px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  background: #FFF;
  border: 1px solid #AAA;
  border-radius: 4px;
}

input[type="checkbox"]:checked {
  background: url(../images/check.svg) center center no-repeat;
}

.nice-select {
  float: none;
  border-radius: 8px;
  border: 1px solid #E1E1E1;
  padding-left: 12px;
}

.nice-select .current {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  position: relative;
  top: 1px;
}

.nice-select .list {
  width: 100%;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #FF514C;
  border-radius: 8px;
}

.nice-select .option {
  font-size: 14px;
  line-height: 16px;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  height: 32px;
  padding-left: 12px;
}

.nice-select .option.selected,
.nice-select .option.selected.focus {
  background: #FFEDEC;
  position: relative;
}

.nice-select .option.selected:before,
.nice-select .option.selected.focus:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90a";
  position: absolute;
  right: 10px;
  font-size: 8px;
  color: #FF514C;
}

.nice-select:after {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  width: 7px;
  height: 7px;
  right: 19px;
}

aside .city-select__form {
  margin-bottom: 0;
}

aside .city-select__form input {
  height: 42px;
}

.aside-select {
  margin-top: 23px;
}

.aside-select > p {
  font-size: 14px;
  line-height: 16px;
  color: #A6A5A5;
  margin-bottom: 5px;
}

.form.disable {
  pointer-events: none;
}

.form.disable input,
.form.disable textarea {
  opacity: .7;
}

.form.disable .button {
  background: #F5F5F5;
  color: #CDCDCD;
  border: none;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form input[type="phone"],
.form input[type="tel"],
.form input[type="date"],
.form textarea {
  padding: 0px 12px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E1E1E1;
  border-radius: 8px;
  font-size: 16px;
  line-height: 19px;
  width: 100%;
}

.form .button {
  width: 100%;
  height: 40px;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
}

.form .policy {
  font-size: 14px;
  line-height: 22px;
  color: #A6A5A5;
}

.form textarea {
  padding: 8px 12px;
  height: 75px;
}

.form-field {
  margin-bottom: 25px;
}

.form-field > p {
  font-size: 14px;
  line-height: 16px;
  color: #A6A5A5;
  margin-bottom: 2px;
}

.button {
  display: flex;
  height: 50px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: #FF514C;
  border: 1px solid #FF514C;
  transition: all ease-in-out .3s;
  cursor: pointer;
  white-space: nowrap;
  min-width: 178px;
  padding: 0 45px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
}

.button:hover {
  background: #fff;
  color: #FF514C;
}

.button-white {
  background: transparent;
  border: 1px solid #999;
  color: #000;
}

.button-white:hover {
  border: 1px solid #FF514C;
}

.button-one-click {
  background: #F2F1F0;
  border: 1px solid #F2F1F0;
  color: #FF514C;
  position: relative;
}

.button-one-click:hover {
  border: 1px solid #FF514C;
}

.header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 3;
}

.header-container {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px 0px 20px 20px;
  padding: 20px 30px 30px 30px;
}

.header-top {
  display: flex;
  margin-bottom: 20px;
}

.header-top nav ul {
  display: flex;
}

.header-top nav ul li {
  margin-right: 30px;
}

.header-top nav ul li:last-of-type {
  margin-right: 0px;
}

.header-city {
  margin-right: 30px;
}

.header-city > a {
  text-decoration: underline;
}

.header-city__list {
  display: flex;
  flex-wrap: wrap;
}

.header-city__list li {
  margin-top: 10px;
  margin-right: 30px;
}

.header-city__modal {
  position: absolute;
  min-width: 623px;
  margin-left: -10px;
  margin-top: 10px;
}

.header-city__modal > p:nth-of-type(1) {
  font-weight: 700;
  margin-bottom: 10px;
}

.header-city__modal-2 {
  min-width: 320px;
  padding: 20px;
}

.header-city__modal-2 > p:nth-of-type(1) {
  font-weight: 400;
  margin-bottom: 10px;
}

.header-city__modal-2 > p:nth-of-type(1) strong {
  font-weight: 700;
}

.header-city__modal-2 .buttons {
  display: flex;
  justify-content: space-between;
}

.header-city__modal-2 .buttons .button {
  height: 43px;
  font-size: 16px;
  line-height: 19px;
  width: fit-content;
  min-width: 100px;
  padding: 0 20px;
}

.header-phones {
  margin-right: auto;
}

.header-phones a {
  margin-right: 30px;
}

.header-phones a:last-of-type {
  margin-right: 0px;
}

.header-middle {
  display: flex;
  margin-bottom: 50px;
}

.header-logo {
  width: 90px;
  height: 62px;
  background: url(../images/logo.png) center center no-repeat;
  background-size: cover;
  flex: 0 0 90px;
  display: block;
  position: relative;
  left: -10px;
}

.header-slogan {
  width: 195px;
  flex: 0 0 195px;
  margin: 0 15px 0 10px;
}

.header-search {
  position: relative;
  width: 100%;
}

.header-search input {
  width: 100%;
}

.header-search button {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #AAA;
  transition: all ease .3s;
}

.header-search button:hover {
  color: #FF514C;
}

.header-search button:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e900";
}

.header-buttons {
  display: flex;
}

.header-buttons .button {
  margin-left: 15px;
}

.header-buttons .modal__call-me .button {
  margin-left: 0px;
}

.header-cart {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAA;
  transition: all ease .3s;
  margin-left: 15px;
}

.header-cart span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  color: #FFF;
  background: #FF514C;
  border-radius: 50%;
  right: 0;
  bottom: 0;
  line-height: 1;
}

.header-cart:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e901";
  font-size: 38px;
}

.header-bottom nav > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom nav > ul > li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.header-bottom nav > ul > li:hover > div {
  opacity: 1;
  pointer-events: all;
}

.header-bottom nav > ul > li > div {
  position: absolute;
  display: flex;
  background: #FFF;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 30px 35px;
  width: max-content;
  margin-top: 10px;
  opacity: 0;
  pointer-events: none;
}

.header-bottom nav > ul > li > div > div {
  width: fit-content;
}

.header-bottom nav > ul > li > div p {
  font-weight: 700;
  line-height: 150%;
  white-space: nowrap;
  margin-bottom: 20px;
  padding-right: 40px;
}

.header-bottom nav > ul > li > div ul {
  display: flex;
  flex-direction: column;
  max-height: 412px;
  flex-wrap: wrap;
}

.header-bottom nav > ul > li > div ul li {
  margin-bottom: 10px;
  padding-right: 40px;
  min-width: 180px;
}

.header-bottom nav > ul > li > div ul li a {
  white-space: nowrap;
}

.header__call-me {
  position: relative;
}

.hamburger {
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 4;
  opacity: 1;
  transition: all ease .3s;
  z-index: 10;
  display: none;
  cursor: pointer;
  margin-left: auto;
  width: 27px;
  height: 18px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 15px;
}

.hamburger .line {
  width: 27px;
  height: 2px;
  box-sizing: content-box;
  background-color: #999;
  display: block;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  padding-top: 100px;
  display: none;
  background: #fff;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: auto;
}

.mobile-menu nav {
  margin-top: 20px;
}

.mobile-menu nav > ul > li {
  border-bottom: 1px solid #ddd;
}

.mobile-menu nav > ul > li > a {
  height: 40px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.mobile-menu nav > ul > li > a.parent {
  display: flex;
  justify-content: space-between;
}

.mobile-menu nav > ul > li > a.parent:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e903";
  font-size: 6px;
  color: #999;
  transition: all ease .3s;
}

.mobile-menu nav > ul > li > a.parent.active:after {
  transform: rotate(180deg);
}

.mobile-menu nav > ul > li ul {
  padding-left: 20px;
  padding-bottom: 10px;
  display: none;
}

.mobile-menu nav > ul > li ul li {
  height: 30px;
  align-items: center;
  display: flex;
}

.mobile-menu nav > ul > li ul li p {
  font-weight: 600;
}

.city-select__form {
  position: relative;
  margin-bottom: 23px;
}

.city-select__form input {
  width: 100%;
  height: 40px;
  border: 1px solid #e1e1e1;
  padding: 0 20px 0 40px;
  font-size: 16px;
  line-height: 19px;
}

.city-select__form button {
  background: none;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-select__form button:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e900";
  color: #C0C0C0;
  font-size: 18px;
}

.city-select__form a.clear {
  display: flex;
  width: 20px;
  height: 20px;
  background: #C0C0C0;
  border-radius: 20px;
  position: absolute;
  right: 10px;
  top: 13px;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  display: none;
}

.city-select__form a.clear:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e902";
  color: #fff;
  font-size: 8px;
}

.modal-city__select {
  width: 100%;
  max-width: 937px;
}

.modal-city__select > p:nth-of-type(1) {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 23px;
}

.city-select__resultlist {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 23px;
  flex-direction: column;
}

.city-select__resultlist li {
  height: 40px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.city-select__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 23px;
}

.city-select__list li {
  height: 40px;
  display: flex;
  align-items: center;
}

.city-select__cities {
  display: flex;
}

.city-select__cities p {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #A6A5A5;
  margin-bottom: 20px;
}

.city-select__cities > div {
  max-width: 50%;
  flex: 0 0 50%;
}

.city-select__cities > div > div {
  height: 400px;
  overflow: auto;
}

.city-select__cities > div > div::-webkit-scrollbar-thumb {
  background: #dfdfdf;
  border-radius: 10px;
}

.city-select__cities > div > div::-webkit-scrollbar {
  width: 6px;
}

.city-select__cities > div > div::-webkit-scrollbar-track {
  background: #f2f1f0;
  position: relative;
  border-radius: 10px;
}

.city-select__cities > div:nth-of-type(2) > div {
  position: relative;
}

.city-select__cities > div:nth-of-type(2) > div:before {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 2px;
  bottom: 0;
  background: #E1E1E1;
  position: absolute;
}

.city-select__cities > div a,
.city-select__cities > div label {
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 19px;
  padding-left: 20px;
  position: relative;
  cursor: pointer;
  border-left: 2px solid transparent;
}

.city-select__cities > div a input[type='radio'],
.city-select__cities > div a span,
.city-select__cities > div label input[type='radio'],
.city-select__cities > div label span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-left: 2px solid transparent;
  transition: all ease .3s;
}

.city-select__cities > div a input[type='radio']:checked + span,
.city-select__cities > div label input[type='radio']:checked + span {
  background: #FFEDEC;
  border-left: 2px solid #FF514C;
}

.city-select__cities > div a {
  position: relative;
  z-index: 1;
}

.city-select__cities > div a:hover {
  background: #FFEDEC;
  border-left: 2px solid #FF514C;
}

.footer {
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

.footer-container {
  padding: 35px 40px 25px 40px;
  background: #2A2A2A;
  border-radius: 20px 20px 0px 0px;
}

.footer-top {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo {
  width: 86px;
  height: 65px;
  background: url(../images/logo.svg) center center no-repeat;
  background-size: cover;
  flex: 0 0 86px;
  display: block;
  position: relative;
  left: -7px;
  margin-right: 5px;
}

.footer-slogan {
  font-size: 14px;
  line-height: 115%;
  color: #FFF;
  flex: 0 0 160px;
  margin-right: 90px;
}

.footer-slogan2 {
  font-size: 14px;
  line-height: 115%;
  color: #FFF;
  flex: 0 0 280px;
  margin-right: auto;
}

.footer-phone {
  margin-left: 40px;
}

.footer-phone a {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #FFF;
  white-space: nowrap;
}

.footer-phone a:hover {
  color: #FF514C;
}

.footer-phone p {
  font-size: 14px;
  line-height: 130%;
  color: #999;
  text-align: right;
}

.footer-middle {
  display: flex;
  align-items: center;
}

.footer-middle > p {
  font-size: 14px;
  line-height: 130%;
  color: #FFF;
  margin-right: auto;
}

.footer .socials {
  margin-right: 40px;
}

.footer .socials a {
  margin-left: 15px;
}

.footer-mobilephone {
  display: none;
}

.footer-bottom {
  display: flex;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 40px 0;
  margin-top: 40px;
  justify-content: space-between;
}

.footer-bottom p {
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  color: #FFF;
  max-width: 140px;
  margin-bottom: 10px;
}

.footer-bottom a {
  font-size: 14px;
  line-height: 170%;
  color: #FFF;
}

.footer-bottom a:hover {
  color: #FF514C;
}

.footer-bottom ul {
  margin-bottom: 10px;
}

.socials {
  display: flex;
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  margin-right: 10px;
}

.social:hover:before {
  transform: scale(1.1);
}

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

.social:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  font-size: 30px;
  transition: all ease-in-out .1s;
  color: #fff;
}

.social-vk {
  background: #4C75A3;
}

.social-vk:before {
  content: "\e909";
  font-size: 11px;
}

.social-fb {
  background: #1877F2;
}

.social-fb:before {
  content: "\e90b";
  font-size: 18px;
}

.social-in {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-in:before {
  content: "\e908";
  font-size: 18px;
}

.social-yo {
  background: #CD201F;
}

.social-yo:before {
  content: "\e907";
  font-size: 12px;
}

.social-tg {
  background: #0088cc;
}

.social-tg:before {
  content: "\e90a";
  font-size: 15px;
}

.owl-carousel .owl-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin-top: 30px;
}

.owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  background: #F2F1F0;
  border-radius: 50%;
  margin: 0 25px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .3s;
  font-size: 6px;
  color: #999;
}

.owl-carousel .owl-nav button:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e903";
  font-size: 8px;
  transition: all ease-in-out .3s;
}

.owl-carousel .owl-nav button.owl-next {
  margin-right: 0px;
  transform: rotate(-90deg);
  background: #F2F1F0;
}

.owl-carousel .owl-nav button.owl-next:hover {
  color: #FF514C;
}

.owl-carousel .owl-nav button.owl-prev {
  margin-left: 0px;
  transform: rotate(90deg);
  background: #F2F1F0;
}

.owl-carousel .owl-nav button.owl-prev:hover {
  color: #FF514C;
}

.owl-carousel .owl-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  position: relative;
}

.owl-carousel .owl-dots button.owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0);
  margin: 0 3.5px;
  transition: all ease-in-out .3s;
  border: 1px solid #FFF;
}

.owl-carousel .owl-dots button.owl-dot.active {
  background-color: white;
}

.product-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin-top: 30px;
}

.product-nav button {
  width: 40px;
  height: 40px;
  background: #F2F1F0;
  border-radius: 50%;
  margin: 0 25px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .3s;
  font-size: 6px;
  color: #999;
  border: 0;
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.product-nav button:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e903";
  font-size: 8px;
  transition: all ease-in-out .3s;
  color: #000;
}

.product-nav button.owl-next {
  margin-right: 0px;
  transform: rotate(-90deg);
  background: #F2F1F0;
}

.product-nav button.owl-next:hover {
  color: #FF514C;
}

.product-nav button.owl-prev {
  margin-left: 0px;
  transform: rotate(90deg);
  background: #F2F1F0;
}

.product-nav button.owl-prev:hover {
  color: #FF514C;
}

.breadcrumbs {
  margin: 40px 0 20px 0;
  padding: 5px 0;
  overflow-x: auto;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: nowrap;
  font-size: 12px;
  line-height: 14px;
}

.breadcrumbs ul li {
  color: #000;
  white-space: nowrap;
}

.breadcrumbs ul li:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e903";
  transform: rotate(-90deg);
  display: inline-block;
  margin: 0 10px;
  color: #A6A5A5;
  font-size: 6px;
  position: relative;
  top: -2px;
}

.breadcrumbs ul li:last-of-type:after {
  display: none;
}

.breadcrumbs ul li a {
  color: #A6A5A5;
}

.breadcrumbs ul li a:hover {
  color: #FF514C;
}

.pagination {
  margin-top: 20px;
}

.pagination ul {
  display: flex;
  align-items: center;
}

.pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2F1F0;
  height: 40px;
  padding: 0 13px;
}

.pagination ul li a.prev,
.pagination ul li a.next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F2F1F0;
  transform: rotate(90deg);
  padding: 0;
  color: #999;
}

.pagination ul li a.prev:hover,
.pagination ul li a.next:hover {
  color: #FF514C;
}

.pagination ul li a.prev:before,
.pagination ul li a.next:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e903";
  font-size: 6px;
}

.pagination ul li a.prev {
  margin-right: 10px;
}

.pagination ul li a.next {
  transform: rotate(-90deg);
  margin-left: 10px;
}

.pagination ul li a.first {
  padding-left: 20px;
  border-radius: 20px 0 0 20px;
}

.pagination ul li a.last {
  padding-right: 20px;
  border-radius: 0 20px 20px 0;
}

.heading {
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 30px;
  line-height: 150%;
  margin-bottom: 30px;
}

aside .js-selectize {
  margin-bottom: 10px;
}

.aside-filters__mobile {
  display: none;
}

.aside-filters__mobile a {
  display: flex;
  font-size: 14px;
  line-height: 150%;
  align-items: center;
}

.aside-filters__mobile a.city:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e903";
  font-size: 6px;
  margin-left: 6px;
}

.aside-filters__mobile a.filters:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e907";
  font-size: 17px;
  margin-right: 6px;
}

.aside-accordion {
  border-bottom: 1px solid #DDD;
}

.aside-accordion > div {
  display: none;
  padding-bottom: 10px;
}

.aside-accordion > a {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #000;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
}

.aside-accordion > a:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e903";
  color: #999;
  font-size: 6px;
  margin-right: 17px;
  transition: all ease .3s;
}

.aside-accordion > a.active:after {
  transform: rotate(180deg);
}

.aside-accordion li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.aside-accordion label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.aside-accordion label input {
  margin-right: 8px;
  flex: 0 0 20px;
}

.catalog {
  border-bottom: 1px solid #DDD;
}

.catalog-item {
  position: relative;
  margin-bottom: 30px;
}

.catalog-item img {
  height: 240px;
  border-radius: 12px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin-bottom: 10px;
}

.catalog-item__cart {
  width: 28px;
  height: 28px;
  background: #F2F1F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  position: absolute;
  right: 10px;
  top: 250px;
}

.catalog-item__cart:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e901";
  font-size: 14px;
}

.catalog-item__name {
  font-size: 14px;
  line-height: 150%;
}

.catalog-item__price {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
}

.catalog-item__address {
  font-size: 14px;
  line-height: 150%;
  color: #999999;
}

.catalog-map__wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 60px;
}

.catalog-map__show {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 30px;
  left: 30px;
  height: 40px;
  background: #FFF;
  border-radius: 12px;
}

.catalog-map__full {
  height: 100%;
}

.catalog-map__full-aside {
  height: calc(100vh - 110px);
  overflow: auto;
  width: calc(100% + 15px);
  padding-right: 15px;
}

.catalog-map__full-aside__outter {
  overflow: hidden;
}

.catalog-map__full-aside-catalog {
  position: absolute;
  left: 10px;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
  overflow: auto;
  width: calc(100% - 20px);
  padding-right: 10px;
  margin-left: calc(-100% - 40px);
  transition: all ease .3s;
}

.catalog-map__full-aside-catalog.visible {
  margin-left: 0;
}

.catalog-map__full-aside-catalog a.back-to-filters {
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.catalog-map__full-aside-catalog a.back-to-filters:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e908";
  font-size: 8px;
  margin-right: 4px;
}

.catalog-map__full-aside-catalog > .row {
  margin-right: -5px;
  margin-left: -5px;
}

.catalog-map__full-aside-catalog > .row > div {
  padding-right: 5px;
  padding-left: 5px;
}

.catalog-map__full-aside-catalog .catalog-item img {
  height: 156px;
}

.catalog-map__full-aside-catalog .catalog-item__cart {
  top: 160px;
}

.catalog-map__full-aside-catalog::-webkit-scrollbar-thumb {
  background: #dfdfdf;
  border-radius: 10px;
}

.catalog-map__full-aside-catalog::-webkit-scrollbar {
  width: 6px;
}

.catalog-map__full-aside-catalog::-webkit-scrollbar-track {
  background: #f2f1f0;
  position: relative;
  border-radius: 10px;
}

.catalog-map__full-aside .button {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0px;
  background: #ED2B31;
  height: 40px;
}

.catalog-map__full-aside .button:hover {
  background: #fff;
}

.catalog-map__full-aside::-webkit-scrollbar-thumb {
  background: #dfdfdf;
  border-radius: 10px;
}

.catalog-map__full-aside::-webkit-scrollbar {
  width: 6px;
}

.catalog-map__full-aside::-webkit-scrollbar-track {
  background: #f2f1f0;
  position: relative;
  border-radius: 10px;
}

.catalog-map__full-wrapper {
  height: calc(100vh - 110px);
}

.catalog-map__full-wrapper iframe {
  height: 100% !important;
}

.aside-filters__back {
  display: none;
}

.filters-shown {
  overflow: hidden;
}

.filters-shown .aside-filters {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: #fff;
  padding: 110px 20px 40px 20px;
  overflow: auto;
  transition: all ease .3s;
  margin-left: 0;
  opacity: 1;
  pointer-events: all;
}

.filters-shown .aside-filters__back {
  display: none;
}

.work-container.visible-catalog .col-lg-3 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  transition: all ease .3s;
}

.work-container.visible-catalog .col-lg-9 {
  flex: 0 0 66.66666%;
  max-width: 66.66666%;
  transition: all ease .3s;
}

.detail {
  margin-top: -20px;
}

.detail-left img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 40px;
}

.detail-left iframe {
  width: 100% !important;
  height: 380px !important;
  border-radius: 10px;
}

.detail-right {
  position: sticky;
  top: 20px;
}

.detail-right img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
}

.detail-name {
  font-size: 25px;
  line-height: 130%;
  margin-bottom: 20px;
}

.detail-price {
  font-size: 25px;
  line-height: 130%;
  margin-bottom: 40px;
}

.detail-links {
  margin-bottom: 20px;
}

.detail-links a {
  text-decoration: underline;
  display: block;
  margin-bottom: 20px;
}

.detail-details {
  margin-bottom: 20px;
}

.detail-details b {
  color: #999;
}

.detail-actions {
  max-width: 320px;
  margin-bottom: 40px;
}

.detail-actions .button {
  margin-bottom: 20px;
}

.detail-meta {
  max-width: 360px;
}

.green-dot {
  position: relative;
  padding-left: 12px;
}

.green-dot:before {
  content: "";
  width: 7px;
  height: 7px;
  background: #148A51;
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 8px;
}

a.back {
  display: none;
}

a.back:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e908";
  font-size: 12px;
}

a.share {
  display: flex;
  align-items: center;
  text-decoration: none;
}

a.share span {
  text-decoration: underline;
}

a.share:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e909";
  display: block;
  color: #000;
  font-size: 20px;
  margin-right: 4px;
  text-decoration: none;
  transition: all ease .3s;
}

a.share:hover:before {
  color: #FF514C;
}

.rekl {
  max-width: 1130px;
  margin: auto;
}

.rekl .heading {
  margin-bottom: 25px;
}

.rekl-note {
  background: rgba(239, 219, 43, 0.44);
  border-radius: 15px;
  margin-bottom: 25px;
}

.rekl-note p {
  max-width: 632px;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  padding: 28px 0;
  margin: auto;
}

.rekl .js-selectize {
  max-width: 325px;
  margin-bottom: 30px;
  z-index: 2;
}

.rekl .selectize-control.single .selectize-input {
  z-index: 3;
}

.rekl-nav {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 30px;
}

.rekl-nav li {
  margin: 0 5px;
  display: flex;
  flex-grow: 1;
}

.rekl-nav li a {
  display: flex;
  align-items: center;
  height: 36px;
  border: 1px solid #999999;
  border-radius: 30px;
  font-size: 18px;
  line-height: 21px;
  width: 100%;
  white-space: nowrap;
  justify-content: center;
  display: flex;
  flex-grow: 1;
}

.rekl-nav li a:hover {
  border: 1px solid #FF514C;
}

.rekl-block {
  margin-bottom: 40px;
}

.rekl-block .heading {
  font-size: 30px;
  line-height: 35px;
  position: relative;
}

.rekl-block .heading:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: #FF514C;
  position: absolute;
  left: -26px;
  top: 12px;
  border-radius: 50%;
}

.rekl .button-white {
  max-width: 270px;
  margin: 50px auto;
}

.rekl-tr {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid #999;
  margin-bottom: 10px;
}

.rekl-tr:nth-of-type(1) {
  margin-bottom: 20px;
  padding-bottom: 0px;
  border-bottom: 0;
  margin-top: 50px;
}

.rekl-tr:nth-of-type(1) span {
  font-size: 18px;
  line-height: 150%;
  color: #999;
  white-space: nowrap;
}

.rekl-tr:nth-of-type(1) div:nth-of-type(4) span:nth-of-type(1),
.rekl-tr:nth-of-type(1) div:nth-of-type(5) span:nth-of-type(1) {
  position: absolute;
  margin-top: -30px;
}

.rekl-tr:nth-of-type(1) div:nth-of-type(4) span:nth-of-type(2),
.rekl-tr:nth-of-type(1) div:nth-of-type(5) span:nth-of-type(2) {
  font-size: 14px;
  line-height: 150%;
}

.rekl-tr:nth-of-type(1) div:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
}

.rekl-tr div:nth-of-type(1) {
  display: flex;
  flex: 0 0 220px;
  max-width: 220px;
}

.rekl-tr div:nth-of-type(1) img {
  margin-right: 5px;
}

.rekl-tr div:nth-of-type(2) {
  flex: 0 0 200px;
  max-width: 200px;
}

.rekl-tr div:nth-of-type(3) {
  flex: 0 0 110px;
  max-width: 110px;
}

.rekl-tr div:nth-of-type(4) {
  flex: 0 0 75px;
  max-width: 75px;
}

.rekl-tr div:nth-of-type(5) {
  flex: 0 0 105px;
  max-width: 105px;
}

.rekl-tr div:nth-of-type(6) {
  flex: 0 0 105px;
  max-width: 105px;
}

.check-li ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 150%;
}

.check-li ul li:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90a";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 14px;
}

.check-li .button {
  margin: 50px auto;
  max-width: 290px;
}

.ol-block img {
  display: block;
  width: 100%;
  border-radius: 32px;
}

.ol-block .row {
  margin-right: -35px;
  margin-left: -35px;
}

.ol-block .row > div {
  padding-right: 35px;
  padding-left: 35px;
}

.ol-block ol {
  counter-reset: myCounter;
}

.ol-block ol li {
  padding-left: 110px;
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #999;
}

.ol-block ol li a {
  text-decoration: underline;
}

.ol-block ol li p {
  font-size: 16px;
  line-height: 150%;
}

.ol-block ol li small {
  font-size: 16px;
  line-height: 150%;
  position: relative;
  padding-left: 12px;
  display: block;
}

.ol-block ol li small:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF514C;
  position: absolute;
  left: 0;
  top: 8px;
}

.ol-block ol li p:nth-of-type(1) {
  font-size: 25px;
  line-height: 150%;
}

.ol-block ol li:before {
  counter-increment: myCounter;
  content: "0" counter(myCounter);
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 40px;
  line-height: 150%;
  color: rgba(153, 153, 153, 0.26);
}

.ol-block2 ol {
  counter-reset: myCounter;
  display: flex;
  justify-content: space-between;
  margin-left: -25px;
  margin-right: -25px;
}

.ol-block2 ol li {
  position: relative;
  padding: 0 25px;
  padding-top: 75px;
}

.ol-block2 ol li a {
  text-decoration: underline;
}

.ol-block2 ol li p {
  font-size: 16px;
  line-height: 150%;
}

.ol-block2 ol li:before {
  counter-increment: myCounter;
  content: "0" counter(myCounter);
  position: absolute;
  top: 0px;
  left: 25px;
  font-size: 40px;
  line-height: 150%;
  color: rgba(153, 153, 153, 0.26);
}

.rekl-block_last p:not(.heading) {
  margin-bottom: 30px;
}

.rekl-block_last p:not(.heading) + ul {
  margin-top: -20px;
}

.rekl-block_last p:not(.heading) + ul li {
  margin-bottom: 10px;
}

.rekl-block_last a {
  text-decoration: underline;
}

.rekl-block_last a.tg {
  text-decoration: none;
  color: #038DCA;
}

.rekl-block_last a.wa {
  text-decoration: none;
  color: #06C102;
}

.rekl-block_last .button {
  margin: 0 auto 50px auto;
  max-width: 290px;
  text-decoration: none;
}

.rekl-show-all {
  display: none;
}

.rekl-detail__left strong {
  font-size: 30px;
  line-height: 150%;
  display: block;
  margin-bottom: 33px;
}

.rekl-detail__left strong + p {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 20px;
}

.rekl-detail__left span {
  font-size: 14px;
  line-height: 150%;
  color: #999999;
  display: block;
}

.rekl-detail__left p.price {
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 28px;
}

.rekl-detail__left p.p-note {
  font-size: 12px;
  line-height: 150%;
  margin-bottom: 50px;
}

.rekl-detail__left .button {
  max-width: 293px;
  margin-bottom: 40px;
}

.rekl-detail__left .button + p {
  font-size: 16px;
  line-height: 150%;
}

.rekl-block.d-lg-none .rekl-tr {
  border-bottom: 0;
  padding-bottom: 10px;
}

.rekl-audit {
  background: rgba(240, 240, 240, 0.58);
  border-radius: 32px;
  padding: 30px 50px 50px 50px;
}

.rekl-audit__heading {
  font-size: 30px;
  line-height: 150%;
  margin-bottom: 30px;
}

.rekl-audit__block {
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #999;
}

.rekl-audit__block:last-of-type {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0;
}

.rekl-audit__block > p:nth-of-type(1) {
  font-size: 18px;
  line-height: 150%;
  color: #999;
  margin-bottom: 15px;
}

.rekl-audit__block .percents {
  position: relative;
  margin-top: 80px;
}

.rekl-audit__block .percents span:nth-of-type(1):before {
  content: "Жен";
  position: absolute;
  left: 0;
  top: -40px;
  color: #999;
  font-size: 18px;
  line-height: 150%;
}

.rekl-audit__block .percents span:nth-of-type(2):after {
  content: "Муж";
  position: absolute;
  right: 0;
  top: -40px;
  font-size: 18px;
  line-height: 150%;
  color: #999;
}

.rekl-body {
  background: #f8f8f8;
}

.percents {
  display: flex;
  width: 200px;
}

.percents span {
  display: block;
  height: 25px;
  line-height: 25px;
  padding: 0 5px;
}

.percents span:nth-of-type(1) {
  background: #FFCEC9;
  text-align: left;
}

.percents span:nth-of-type(2) {
  background: #A2C7F2;
  text-align: right;
}

.rekl-rolik p:not(.heading) {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 22px;
}

.rekl-rolik .heading {
  left: 25px;
}

.rekl-rolik .button {
  max-width: 272px;
  margin: 30px 0;
}

.rekl-rolik .row + .button,
.rekl-rolik .owl-carousel + .button,
.rekl-rolik .rekl-block:last-of-type .button {
  margin: 30px auto;
}

.rekl-rolik img {
  display: block;
  width: 100%;
  border-radius: 30px;
}

.rekl-rolik ul:not(.rekl-nav).two-col {
  columns: 2;
}

.rekl-rolik ul:not(.rekl-nav) li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 150%;
}

.rekl-rolik ul:not(.rekl-nav) li:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90a";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 14px;
}

.rekl-rolik ol {
  counter-reset: myCounter;
}

.rekl-rolik ol li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rekl-rolik ol li a {
  text-decoration: underline;
}

.rekl-rolik ol li:before {
  counter-increment: myCounter;
  content: "0" counter(myCounter);
  font-size: 40px;
  line-height: 150%;
  color: rgba(153, 153, 153, 0.26);
  margin-right: 30px;
}

.aside-select__buttons {
  margin-top: 30px;
}

.aside-select__buttons .button {
  height: 40px;
  font-size: 16px;
  line-height: 19px;
}

.aside-select__buttons .button-white {
  background: #fff;
}

.aside-select__buttons .button:nth-of-type(1) {
  margin-bottom: 20px;
}

.rekl-aside {
  max-width: 287px;
}

.rekl-aside .aside-select {
  margin-top: 0;
  margin-bottom: 20px;
}

.rekl-aside__back {
  display: none;
}

.rekl-container {
  padding-bottom: 100px;
}

.nice-select.inact .current {
  color: #C0C0C0;
}

.rekl-list__buttons {
  display: none;
}

.rekl-list__buttons a {
  font-size: 14px;
  line-height: 16px;
  color: #CDCDCD;
}

.rekl-list__buttons a.filter {
  display: flex;
  align-items: center;
  color: #000;
}

.rekl-list__buttons a.filter:hover:before {
  color: #FF514C;
}

.rekl-list__buttons a.filter:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e911";
  font-size: 24px;
  margin-right: 5px;
  transition: all ease .3s;
}

.rekl-list .row > div {
  margin-bottom: 30px;
}

.rekl-list .row + .button {
  height: 40px;
  font-size: 16px;
  background: #fff;
}

.rekl-list .heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}

.rekl-list__items {
  margin-bottom: 90px;
}

.rekl-list__item {
  height: 100%;
  padding-bottom: 40px;
  position: relative;
}

.rekl-list__item > a:nth-of-type(1) {
  overflow: hidden;
  border-radius: 16px;
  display: block;
}

.rekl-list__item > a:nth-of-type(1):hover img {
  transform: scale(1.15) rotate(10deg);
}

.rekl-list__item img {
  height: 240px;
  display: block;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: all ease .2s;
}

.rekl-list__item-buttons {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.rekl-list__item-buttons .button {
  height: 40px;
  max-width: 158px;
  font-size: 16px;
  padding: 0;
  min-width: unset;
  width: 100%;
}

.rekl-list__item-buttons .button-white {
  border: 1px solid #FF514C;
  color: #FF514C;
}

.rekl-list__item-buttons .button-white:hover {
  background: #FF514C;
  color: #fff;
}

.rekl-list__item-buttons .button-tr {
  border: 0;
  background: none;
  max-width: 115px;
  margin-left: 15px;
  color: #000;
}

.rekl-list__item-buttons .button-tr:hover {
  background: #FF514C;
  color: #fff;
}

.rekl-list__item-price {
  margin-bottom: 20px;
}

.rekl-list__item-price p {
  font-size: 18px;
  line-height: 21px;
}

.rekl-list__item-price p span {
  color: #A6A5A5;
  margin-right: 5px;
}

.rekl-list__item-content {
  margin-top: 15px;
  margin-bottom: 35px;
}

.rekl-list__item-content p:nth-of-type(1) {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin-bottom: 10px;
}

.rekl-list__item-content p {
  font-size: 16px;
  line-height: 26px;
  color: #A6A5A5;
  margin-bottom: 3px;
}

.rekl-list .digits {
  display: flex;
  margin-bottom: 100px;
}

.rekl-list .digits .digit {
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  padding-right: 60px;
  margin-right: 60px;
  border-right: 1px solid #E1E1E1;
}

.rekl-list .digits .digit:last-of-type {
  padding-right: 0px;
  margin-right: 0px;
  border-right: 0;
}

.rekl-list .digits .digit span {
  font-weight: 300;
  font-size: 96px;
  line-height: 112px;
  color: #FF514C;
}

.rekl-list .digits .digit small {
  font-weight: 400;
  font-size: 32px;
  line-height: 34px;
}

.rekl-list .digits .digit small.red {
  color: #FF514C;
  font-size: 40px;
}

.rekl-content {
  margin-bottom: 100px;
}

.rekl-content img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.rekl-content__last {
  margin-bottom: 0px;
}

.rekl-content__request .button {
  min-width: unset;
  max-width: 158px;
  height: 40px;
  border: 1px solid #FF514C;
  font-size: 16px;
  line-height: 19px;
  background: #fff;
  color: #FF514C;
  margin-bottom: 25px;
}

.rekl-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}

.rekl-content p strong {
  font-size: 24px;
  line-height: 28px;
  display: block;
}

.rekl-content p.note {
  background: url(../images/note.svg) 0 12px no-repeat;
  padding: 12px 0px 12px 40px;
  font-size: 14px;
  line-height: 22px;
}

.rekl-content ul li {
  font-size: 16px;
  line-height: 28px;
  position: relative;
  padding-left: 25px;
}

.rekl-content ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 10px;
  left: 10px;
}

.rekl-content ol {
  counter-reset: myCounter;
}

.rekl-content ol li {
  padding-top: 20px;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.rekl-content ol li span {
  position: relative;
}

.rekl-content ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 47px;
  color: #ECECEC;
  z-index: 0;
}

.rekl-content ol li:nth-child(-n+9):before {
  content: "0" counter(myCounter);
}

.rekl-content table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid #E1E1E1;
  border-radius: 16px;
  border-collapse: separate;
  overflow: hidden;
}

.rekl-content table td {
  height: 58px;
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid #E1E1E1;
  font-size: 16px;
  line-height: 26px;
  border-right: 1px solid #E1E1E1;
}

.rekl-content table td:last-of-type {
  border-right: 0;
}

.rekl-content table td span {
  color: #A6A5A5;
}

.rekl-content table tr:last-of-type td {
  border-bottom: 0;
}

.rekl-content table tr:nth-of-type(1) td {
  font-weight: 500;
}

.rekl-content table tr:nth-of-type(odd) td {
  background: #f5f5f5;
}

.rekl-content__addresses table td {
  height: 42px;
}

.rekl-content__addresses table td:nth-of-type(1) {
  width: 42px;
}

.rekl-content .buttons {
  display: flex;
}

.rekl-content .buttons .button {
  min-width: 115px;
  padding: 0 20px;
  height: 40px;
  font-size: 16px;
  line-height: 19px;
}

.rekl-content .buttons .button:first-of-type {
  background: transparent;
  color: #FF514C;
  margin-right: 15px;
}

.rekl-content .buttons .button:first-of-type:hover {
  background: #FF514C;
  color: #fff;
}

.aside-filters nav ul li {
  border-bottom: 1px solid #ddd;
}

.aside-filters nav ul li a {
  display: flex;
  min-height: 47px;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  padding: 7px 0;
}

.rekl-suv {
  max-width: 904px;
  margin: 0;
}

.rekl-suv .one-line {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.rekl-suv .button,
.rekl-suv .rekl-block:last-of-type .button {
  width: fit-content;
  margin: 0 5px;
  max-width: unset;
}

.button-top {
  margin-bottom: 20px;
  max-width: 240px;
}

.work-container_analog {
  margin-top: 40px;
  padding-bottom: 80px;
}

.work-container_analog .heading {
  margin-bottom: 20px;
}

.work-container_analog .breadcrumbs {
  margin-top: 0;
}

.work-container_analog-top {
  font-size: 14px;
  line-height: 16px;
  color: #A6A5A5;
  display: block;
  margin-bottom: 15px;
}

.work-container_analog .aside-filters nav ul li {
  border-bottom: 0;
}

.work-container_analog .aside-filters nav ul li a {
  min-height: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  padding: 7px 16px;
}

.work-container_analog .rekl-suv {
  max-width: 100%;
}

.work-container_analog .rekl-suv p {
  font-size: 16px;
  line-height: 26px;
}

.work-container_analog .one-line {
  justify-content: flex-start;
}

.work-container_analog .one-line .button {
  background: transparent;
  border: 1px solid #FF514C;
  color: #FF514C;
  height: 40px;
  width: auto;
  padding: 0 20px;
  background: #fff;
  font-size: 16px;
  line-height: 19px;
}

.work-container_analog .one-line .button-white {
  border: 1px solid #E1E1E1;
  color: #000;
  height: 40px;
}

.accordion {
  margin: 40px 0;
}

.accordion + .one-line .button {
  width: 100%;
}

.accordion-item {
  background: #FFFFFF;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  margin-bottom: 24px;
}

.accordion-item > a {
  display: flex;
  min-height: 80px;
  padding: 0px 25px;
  align-items: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  position: relative;
  justify-content: space-between;
  transition: all ease-in-out .3s;
  color: #000;
}

.accordion-item > a.active:after {
  transform: rotate(45deg);
  background: #FF514C;
  color: #fff;
}

.accordion-item > a:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90e";
  font-size: 16px;
  transition: all ease-in-out .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #F5F5F5;
  border-radius: 500px;
  flex: 0 0 32px;
}

.accordion-item > a.active + div {
  max-height: 1500px;
}

.accordion-item > a.active + div > span {
  opacity: 1;
  margin-top: -20px;
}

.accordion-item > div {
  transition: all ease-in-out .3s;
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
}

.accordion-item > div .button {
  margin-bottom: 30px;
  width: 100%;
  height: 40px;
  font-size: 16px;
  line-height: 19px;
}

.accordion-item > div > span {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #A6A5A5;
  position: relative;
  display: flex;
  opacity: 0;
  margin-top: 0px;
  position: absolute;
  transition: all ease-in-out .3s;
}

.accordion-item > div > span + p {
  margin-top: 20px;
}

.accordion-item > div p,
.accordion-item > div li {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.accordion-item > div p strong,
.accordion-item > div li strong {
  font-weight: 500;
}

.accordion-item > div p a,
.accordion-item > div li a {
  text-decoration: underline;
  color: #FF514C;
}

.accordion-item > div li {
  padding-left: 12px !important;
  margin-bottom: 0 !important;
}

.accordion-item > div li:last-of-type {
  margin-bottom: 25px !important;
}

.accordion-item > div li:before {
  content: "" !important;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  top: 10px !important;
}

.accordion-item > div table {
  table-layout: fixed;
  width: calc(100% - 40px);
  border-collapse: separate;
  margin-bottom: 25px;
}

.accordion-item > div table tr:last-of-type td {
  border-bottom: 1px solid #E1E1E1;
}

.accordion-item > div table tr td {
  height: 44px;
  text-align: center;
  border-left: 1px solid #E1E1E1;
  border-top: 1px solid #E1E1E1;
  vertical-align: middle;
  font-size: 16px;
  line-height: 26px;
}

.accordion-item > div table tr td:last-of-type {
  border-right: 1px solid #E1E1E1;
}

.accordion-item > div table tr:nth-of-type(1) td:first-of-type {
  border-radius: 16px 0 0 0;
}

.accordion-item > div table tr:nth-of-type(1) td:last-of-type {
  border-radius: 0 16px 0 0;
}

.accordion-item > div table tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 16px;
}

.accordion-item > div table tr:last-of-type td:last-of-type {
  border-radius: 0 0 16px 0;
}

.accordion-item > div table tr:nth-of-type(1) td {
  font-weight: 500;
}

.product-gallery {
  margin: 40px 0 80px 0;
}

.product-gallery .owl-carousel .owl-nav button.owl-next {
  margin-right: 0px;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.06), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.product-gallery .owl-carousel .owl-nav button.owl-prev {
  margin-left: 0px;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.06), 0 -2px 4px 0 rgba(0, 0, 0, 0.12);
}

.product-gallery .owl-carousel .owl-dots {
  margin-top: 20px;
}

.product-gallery .owl-carousel .owl-dots button.owl-dot {
  background: #CDCDCD;
  width: 10px;
  height: 10px;
}

.product-gallery .owl-carousel .owl-dots button.owl-dot.active {
  background: #FF514C;
}

.product-slider {
  z-index: 1;
}

.product-slider.owl-carousel .owl-nav {
  position: absolute;
  z-index: 2;
  width: 100%;
  padding: 0 30px;
}

.product-slider img {
  height: 557px;
  margin: 0;
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
}

.product-slider-thumbs {
  z-index: 1;
  width: calc(100% - 80px);
  margin: -70px auto 0 auto;
}

.product-slider-thumbs img {
  border-radius: 8px;
  height: 100px;
}

.product-nav {
  z-index: 2;
  position: relative;
  margin-top: -70px;
  width: 100%;
  padding: 0 30px;
  justify-content: space-between;
}

.vac-aside {
  max-width: 287px;
}

.work-inner {
  padding: 30px 40px;
  background: #FFF;
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
}

.cart-empty {
  height: 100%;
  min-height: 100%;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.cart-empty > p:nth-of-type(1) {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 26px;
}

.cart-empty p {
  font-size: 16px;
  line-height: 26px;
}

.cart-rows {
  max-width: 792px;
  min-height: 100%;
  position: relative;
}

.cart-download {
  position: relative;
  text-decoration: underline;
  padding-left: 30px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  color: #FF514C;
  text-align: center;
  display: table;
}

.cart-download:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90b";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 20px;
}

.cart-success {
  padding: 40px 20px;
  gap: 32px;
  background: #FFF;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  margin-bottom: 80px;
}

.cart-success p {
  max-width: 322px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin: auto;
}

.cart-success > i {
  margin: auto;
  display: block;
  text-align: center;
  margin-bottom: 35px;
}

.cart-success > i + p {
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 16px;
}

.cart-success > i:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90a";
  font-size: 24px;
  color: #3ED523;
}

.cart-order {
  padding: 40px;
  gap: 32px;
  background: #FFF;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  margin-bottom: 80px;
}

.cart-order form {
  width: 100%;
}

.cart-order > p:nth-of-type(1) {
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 20px;
}

.cart-order__note {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  background: #F5F5F5;
  border-radius: 12px;
  margin-bottom: 30px;
}

.cart-order__note:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90d";
  font-size: 20px;
  margin-right: 20px;
}

.cart-order__note p {
  font-size: 14px;
  line-height: 22px;
}

.cart-head {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #A6A5A5;
  margin-bottom: 28px;
}

.cart-footer {
  margin-bottom: 110px;
}

.cart-remove {
  background: none;
  border: 0;
  padding: 0;
  transition: all ease .3s;
  cursor: pointer;
  color: #A6A5A5;
}

.cart-remove:hover {
  color: #FF514C;
}

.cart-remove:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90c";
  font-size: 24px;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-row > div:nth-of-type(1) {
  flex: 0 0 205px;
  max-width: 205px;
}

.cart-row > div:nth-of-type(2) {
  flex: 0 0 322px;
  max-width: 322px;
}

.cart-row > div:nth-of-type(3) {
  flex: 0 0 122px;
  max-width: 122px;
  text-align: center;
}

.cart-row > div:nth-of-type(4) {
  min-width: 20px;
}

.cart-row:not(.cart-head):not(.cart-footer) {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E1E1E1;
}

.cart-total__caption {
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  color: #A6A5A5;
  text-align: right;
}

.cart-price {
  font-size: 24px;
  line-height: 26px;
  white-space: nowrap;
}

.cart-price__total {
  font-weight: 500;
}

.cart-img {
  width: 205px;
  height: 128px;
  border-radius: 16px;
  object-fit: cover;
}

.cart-top {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.cart-top > div {
  display: flex;
  align-items: center;
}

.cart-top .remove {
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  text-decoration: underline;
  font-family: 'Roboto';
  font-size: inherit;
  transition: all ease .3s;
  cursor: pointer;
}

.cart-top .remove:hover {
  color: #FF514C;
}

.cart-top .download {
  position: relative;
  text-decoration: underline;
  padding-left: 30px;
  margin-right: 30px;
}

.cart-top .download:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90b";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 20px;
}

.cart-top .heading {
  margin-bottom: 0;
}

.list {
  padding-bottom: 80px;
}

.list-text .row > div:nth-of-type(odd) p {
  font-size: 24px;
  line-height: 36px;
}

.list-text .row > div:nth-of-type(even) p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.list-text .row > div:nth-of-type(even) p:last-of-type {
  margin-bottom: 30px;
}

.list-text .row {
  margin-bottom: 120px;
}

.list-text .row .buttons {
  display: flex;
}

.list-text .row .buttons .button {
  min-width: 115px;
  padding: 0 20px;
  height: 40px;
  font-size: 16px;
  line-height: 19px;
}

.list-text .row .buttons .button:first-of-type {
  background: transparent;
  color: #FF514C;
  margin-right: 15px;
}

.list-text .row .buttons .button:first-of-type:hover {
  background: #FF514C;
  color: #fff;
}

.list-text .row:last-of-type {
  margin-bottom: 0px;
}

.list-text .row > div img {
  display: block;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  margin-bottom: 15px;
}

.list-text .row > div small {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #A6A5A5;
}

.list-text .row > div ul {
  padding-left: 120px;
  margin-bottom: 30px;
}

.list-text .row > div ul li {
  font-size: 16px;
  line-height: 26px;
  padding-left: 10px;
  position: relative;
}

.list-text .row > div ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.list-items {
  margin-bottom: 130px;
}

.list-items .row > div {
  margin-bottom: 30px;
}

.list-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease .3s;
}

.list-item > a {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.list-item > a:hover img {
  transform: scale(1.25) rotate(-5deg);
}

.list-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-item > div p {
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
}

.list-item > div .button {
  background: transparent;
  color: #FF514C;
  min-width: 115px;
  padding: 0 20px;
  height: 40px;
  font-size: 16px;
  line-height: 19px;
}

.list-item > div .button:hover {
  background: #FF514C;
  color: #fff;
}

.list-tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.list-tags li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}

.list-tags li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  height: 40px;
  border: 1px solid #E1E1E1;
  border-radius: 20px;
  font-size: 16px;
  line-height: 19px;
}

.list-tags li a:hover {
  background: #FF514C;
  color: #fff;
  border: 1px solid #FF514C;
}

.list-tags li a:hover:after {
  color: #fff;
}

.list-tags li a:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90f";
  font-size: 8px;
  margin-left: 10px;
  color: #CDCDCD;
  transition: all ease .3s;
}

.list .heading {
  margin-bottom: 40px;
}

.vyv {
  padding: 40px 0 100px 0;
}

.vyv-list {
  margin-bottom: 70px;
}

.vyv-list .row > div {
  margin-bottom: 30px;
}

.vyv-item {
  height: 100%;
}

.vyv-item .button {
  background: none;
  color: #FF514C;
  height: 40px;
  padding: 0 15px;
  width: fit-content;
  font-size: 16px;
  line-height: 19px;
}

.vyv-item .button:hover {
  color: #fff;
  background: #FF514C;
}

.vyv-item img {
  display: block;
  width: 100%;
  height: 240px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 15px;
}

.vyv-item__content {
  height: calc(100% - 255px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.vyv-item__content div {
  margin-top: auto;
}

.vyv-item__content div p {
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 15px;
}

.vyv-item__content div p span {
  color: #A6A5A5;
}

.vyv-item__content > p:nth-of-type(1) {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

.vyv-item__content > p:nth-of-type(1) a {
  color: inherit;
}

.vyv-item__content > p:nth-of-type(1) a:hover {
  color: #FF514C;
}

.vyv-item__content > p:nth-of-type(2) {
  font-size: 16px;
  line-height: 26px;
  color: #A6A5A5;
}

.vyv aside {
  position: sticky;
  top: 30px;
}

.vyv aside p {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #A6A5A5;
}

.vyv aside a.cases {
  font-size: 16px;
  line-height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10.5px 16px;
  width: 201px;
  height: 40px;
  border: 1px solid #E1E1E1;
  border-radius: 400px;
}

.vyv aside a.cases:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90f";
  font-size: 8px;
  margin-left: 15px;
  color: #CDCDCD;
}

.vyv aside a.cases:hover {
  border: 1px solid #FF514C;
}

.vyv aside a.cases:hover:after {
  color: #FF514C;
}

.vyv aside nav {
  margin-bottom: 40px;
}

.vyv aside nav ul li a {
  padding: 10px 15px;
  border-left: 2px solid transparent;
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.vyv aside nav ul li a.active {
  background: #FFEDEC;
  border-left: 2px solid #FF514C;
  color: #FF514C;
}

.content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
}

.content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) strong {
  font-weight: 500;
}

.content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) a {
  color: #FF514C;
}

.content p.note {
  display: flex;
  font-size: 14px;
  line-height: 22px;
}

.content p.note:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90d";
  font-size: 20px;
  color: #A6A5A5;
  margin-right: 15px;
}

.content p.heading2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 25px;
}

.content p.heading2 strong {
  font-weight: 500;
}

.content p.heading2 span {
  color: #FF514C;
}

.content p.heading2 + p + .button {
  margin-top: 25px;
}

.content p.heading-big {
  margin-bottom: 40px;
}

.content .block + .block {
  margin-top: 100px;
}

.content .block ul li {
  font-size: 24px;
  line-height: 36px;
  position: relative;
  padding-left: 35px;
}

.content .block ul li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 15px;
  top: 15px;
}

.content .block ul.short li {
  max-width: 440px;
}

.content .block .heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}

.content .block .button {
  background: none;
  color: #FF514C;
  height: 40px;
  padding: 0 15px;
  width: fit-content;
  font-size: 16px;
  line-height: 19px;
}

.content .block .button:hover {
  color: #fff;
  background: #FF514C;
}

.content .block .buttons {
  display: flex;
  margin-bottom: 20px;
}

.content .block .buttons .button {
  margin-right: 10px;
}

.content .block .button-more {
  background: #FF514C;
  color: #fff;
}

.content .block .button-more:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90f";
  font-size: 8px;
  margin-left: 10px;
}

.content .block .button-more:hover {
  background: none;
  color: #FF514C;
}

.content table {
  border-collapse: separate;
  margin-bottom: 30px;
}

.content table td {
  padding: 15px;
  border-right: 1px solid #E1E1E1;
  border-top: 1px solid #E1E1E1;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  vertical-align: middle;
}

.content table tr td:nth-of-type(1) {
  border-left: 1px solid #E1E1E1;
  white-space: nowrap;
}

.content table tr:nth-of-type(1) td {
  font-weight: 500;
}

.content table tr:nth-of-type(1) td:nth-of-type(1) {
  border-radius: 16px 0px 0px 0px;
}

.content table tr:nth-of-type(1) td:last-of-type {
  border-radius: 0px 16px 0px 0px;
}

.content table tr:last-of-type td {
  border-bottom: 1px solid #E1E1E1;
}

.content table tr:last-of-type td:nth-of-type(1) {
  border-radius: 0px 0px 0px 16px;
}

.content table tr:last-of-type td:last-of-type {
  border-radius: 0px 0px 16px 0px;
}

.content .table-tab {
  display: none;
}

.content .table-tab.active {
  display: table;
}

.content .table-tabs {
  display: flex;
  margin-bottom: 30px;
}

.content .table-tabs li {
  margin-right: 15px;
}

.content .table-tabs li a {
  font-size: 16px;
  line-height: 19px;
  padding: 10.5px 0px;
  border-bottom: 2px solid transparent;
  display: block;
}

.content .table-tabs li a.active {
  border-bottom: 2px solid #FF514C;
  color: #FF514C;
}

.content + .content {
  margin-top: 100px;
}

.vyv-gallery {
  margin: 0 0;
}

.vyv-gallery .product-slider img {
  height: 350px;
}

.case-gallery {
  margin: 0 0;
}

.case-gallery .product-slider img {
  height: 350px;
}

.case-gallery .product-slider-thumbs {
  max-width: 484px;
}

.case-gallery .product-nav {
  max-width: 584px;
  left: 50%;
  transform: translateX(-50%);
}

.drag {
  overflow: auto;
}

.drag-outer {
  overflow: visible;
  width: 100%;
}

#block03 {
  margin-top: 100px;
}

.contacts {
  padding: 0px 0 40px 0;
}

.contacts .row > div {
  margin-bottom: 30px;
}

.contacts-link {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

.contacts-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
  margin-right: 20px;
}

.contacts-item {
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  min-height: 100%;
}

.contacts-item p {
  font-size: 16px;
  line-height: 28px;
}

.contacts-item img {
  display: block;
  margin-bottom: 20px;
}

.contacts-item__copy {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contacts-item__copy:last-of-type {
  margin-bottom: 0;
}

.contacts-item__copy a {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
}

.contacts-item__copy a.copy:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e910";
  color: #A6A5A5;
  font-size: 22px;
  margin-left: 10px;
}

.row-map {
  margin-top: 100px;
  margin-bottom: 100px;
}

.row-map .content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.row-map .content .heading2 {
  max-width: 440px;
}

.map {
  height: 400px;
}

.reqs-item {
  margin-bottom: 25px;
}

.reqs-item > span {
  display: block;
  font-size: 16px;
  line-height: 28px;
  color: #A6A5A5;
}

.reqs-item > p {
  display: flex;
}

.reqs-item > p span {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
}

.reqs-item a.copy:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e910";
  color: #A6A5A5;
  font-size: 22px;
  margin-left: 10px;
}

.about {
  padding: 0px 0 40px 0;
}

.about .block-top .heading2 {
  max-width: 440px;
}

.about .digits {
  display: flex;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.about .digits-nobottom {
  border-bottom: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.about .digits .digit:first-of-type {
  border-right: 1px solid #E1E1E1;
  padding-right: 60px;
  margin-right: 60px;
}

.about p.digit {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 34px;
}

.about p.digit span {
  font-weight: 300;
  font-size: 120px;
  line-height: 141px;
  margin-right: 20px;
}

.about p.digit span small {
  font-size: 40px;
  line-height: 34px;
  font-weight: 400;
}

.about p.digit-red span {
  color: #FF514C;
}

.about p.digit-flex {
  display: flex;
  align-items: flex-end;
}

.about p.digit-flex em {
  max-width: 357px;
  position: relative;
  top: -25px;
}

.about .row + .row {
  margin-top: 100px;
}

.about .row-last {
  padding-bottom: 100px;
}

.about .heading-big {
  font-weight: 600;
  font-size: 80px;
  line-height: 94px;
  color: #DADADA;
  margin-bottom: 80px;
}

.policy {
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
  color: #A6A5A5;
}

.white {
  padding: 100px 0;
  background: #fff;
}

.grey {
  padding: 100px 0;
}

.team .row > div {
  margin-bottom: 30px;
}

.team-item img {
  width: 100%;
  display: block;
  height: 417px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

.team-item p {
  font-size: 20px;
  line-height: 23px;
}

.team-item p + p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #A6A5A5;
}

.header-container .header-cart span {
  line-height: 0;
}

.about-case .aside-select {
  display: none;
}

.about-case .heading {
  margin-bottom: 40px;
}

.about-case .content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 25px;
}

.about-case .content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) strong {
  font-weight: 500;
}

.about-case .content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) span {
  color: #FF514C;
}

.about-case .content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) small {
  font-size: 16px;
  line-height: 28px;
}

.about-case p.digit {
  margin-bottom: 0;
}

.about-case .digits p.digit:first-of-type {
  margin-bottom: 20px;
}

.about-case .list-tags li a .active {
  color: #FF514C;
  background: #FFEDEC;
  border: 1px solid #FF514C;
}

.about-case .list-tags li a:after {
  display: none;
}

.cases .row > div {
  margin-bottom: 30px;
}

.cases-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.cases-item img {
  width: 100%;
  height: 240px;
  display: block;
  transition: all ease .3s;
  object-fit: cover;
}

.cases-item:hover img {
  transform: scale(1.25) rotate(1.5deg);
}

.cases-item div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(lenina_konfeta_foto.jpg);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.cases-item div p:nth-of-type(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4.5px 12px;
  background: linear-gradient(278.04deg, #F259A0 0%, #FF514C 100%);
  border-radius: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #FFF;
  margin-bottom: 12px;
  margin-top: auto;
  width: fit-content;
}

.cases-item div p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.cases-item > a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.cases + .row {
  margin-top: 100px;
}

.mainpage {
  padding: 50px 0 0 0;
}

.mainpage + .about-case .row > div {
  margin-bottom: 0;
}

.mainpage .list-item > a {
  height: 240px;
}

.mainpage .clients {
  display: flex;
  justify-content: space-between;
  margin: 140px 0 100px 0;
}

.mainpage .clients img {
  padding: 16px;
  border: 1px solid #E1E1E1;
  border-radius: 16px;
}

.mainpage .accent {
  padding: 24px;
  background: linear-gradient(278.04deg, #F259A0 0%, #FF514C 100%);
  border-radius: 16px;
  margin-top: 70px;
}

.mainpage .accent p:nth-of-type(1) {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #FFF;
}

.mainpage .accent p:nth-of-type(1) span {
  font-weight: 400;
  font-size: 64px;
  line-height: 75px;
  margin-right: 10px;
}

.mainpage .accent p {
  font-size: 16px;
  line-height: 28px;
  color: #FFF;
}

.mainpage .accent p strong {
  font-weight: 500;
}

.mainpage .accent .button {
  width: fit-content;
  padding: 0 16px;
  height: 40px;
  background: #FFF;
  border: 1px solid #E1E1E1;
  color: #000;
  font-size: 16px;
  line-height: 19px;
  margin-top: 30px;
}

.mainpage .accent .button:hover {
  color: #FF514C;
}

.mainpage .digits {
  display: flex;
}

.mainpage .digits .digit {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #E1E1E1;
}

.mainpage .digits .digit p {
  white-space: nowrap;
}

.mainpage .digits .digit:last-of-type {
  padding-right: 0px;
  margin-right: 0px;
  border-right: 0;
}

.mainpage .digits .digit:last-of-type p {
  white-space: normal;
}

.mainpage .digits .digit span {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #FF514C;
}

.mainpage .digits .digit span small {
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
}

.mainpage .digits .digit p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #A6A5A5;
}

.mainpage .heading {
  font-weight: 500;
  font-size: 64px;
  line-height: 74px;
  margin-bottom: 30px;
}

.mainpage .heading span {
  color: #FF514C;
}

.mainpage .list-tags {
  margin-bottom: 0;
}

.mainpage .list-tags li a {
  background: #fff;
}

.mainpage .list-tags li a:hover {
  background: #FF514C;
}

.mainpage .aside-select {
  display: none;
}

.landing7 {
  background: #fff;
}

.landing7-hero {
  position: relative;
}

.landing7-hero__img {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.landing7-hero__img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.24);
}

.landing7-hero img {
  width: 100%;
  height: 532px;
  object-fit: cover;
  object-position: 0 0;
  border-radius: 16px;
  display: block;
}

.landing7-hero__content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  color: #fff;
}

.landing7-hero__content .heading {
  font-family: 'Comfortaa';
  font-weight: 700;
  font-size: 56px;
  line-height: 62px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.landing7-hero__content .heading + p {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 30px;
}

.landing7-hero__buttons {
  display: flex;
}

.landing7-hero__buttons .button {
  padding: 0 15px;
  width: fit-content;
  min-width: unset;
  height: 40px;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  background: #fff;
  color: #DC1D22;
}

.landing7-hero__buttons .button:hover {
  background: #FF514C;
  color: #fff;
  border-color: #FF514C;
}

.landing7-hero__buttons .button:last-of-type {
  margin-left: 20px;
  color: #000;
  border-color: #fff;
}

.landing7-hero__buttons .button:last-of-type:hover {
  background: #FF514C;
  color: #fff;
  border-color: #FF514C;
}

.landing7-hero__buttons .button:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90f";
  font-size: 8px;
  margin-left: 13px;
}

.landing7-text {
  padding: 100px 0;
  background: #fff;
  border-bottom: 1px solid #E1E1E1;
}

.landing7-text p {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.landing7-text .heading {
  font-family: 'Comfortaa';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
}

.landing7-text .button {
  height: 40px;
  width: fit-content;
  padding: 0 17px;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.landing7-text__digits {
  display: flex;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-bottom: 30px;
}

.landing7-text__digits > div {
  padding: 0 15px;
  align-self: stretch;
}

.landing7-text__digits > div:nth-of-type(2) {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.landing7-text__digit {
  padding: 24px;
  background: #FFF;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.08), 0px 3px 12px -4px rgba(0, 0, 0, 0.08), 0px 9px 24px 8px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  height: 100%;
}

.landing7-text__digit p:nth-of-type(1) {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FF514C;
  margin-bottom: 15px;
}

.landing7-text__digit p {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.landing7-slides {
  background: #fff;
  padding: 40px 0 100px 0;
}

.landing7-slides .row > div {
  margin-bottom: 30px;
}

.landing7-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  background: #EFEFEF;
  border-radius: 16px;
  position: relative;
  height: 100%;
}

.landing7-slide p {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}

.landing7-slide img {
  object-fit: cover;
  width: 416px;
  height: 233px;
  border-radius: 16px;
  max-width: 100%;
}

.landing7-slide span {
  font-family: 'Comfortaa';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #A6A5A5;
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.landing7-media {
  padding: 0 0 100px 0;
  background: #fff;
  overflow: hidden;
}

.landing7-media .heading {
  font-family: 'Comfortaa';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 30px;
}

.landing7-media .heading span {
  color: #A6A5A5;
}

.landing7-media .button {
  height: 40px;
  width: fit-content;
  padding: 0 17px;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 50px;
}

.landing7-media p {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}

.landing7-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  width: calc(100% - 30px);
  height: calc(100% - 44px);
}

.landing7-video:hover:before {
  transform: scale(1.2);
}

.landing7-video:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.46) url(../images/play.svg) center center no-repeat;
  transition: all ease .3s;
}

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

.landing7-footer {
  padding: 0 0 30px 0;
  background: #fff;
  overflow: hidden;
}

.landing7-footer__container {
  color: #fff;
  background: #2A2A2A;
  border-radius: 16px;
  padding: 40px;
}

.landing7-footer__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-left: 70px;
  border-left: 1px solid #494949;
}

.landing7-footer__right p {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #CDCDCD;
  margin-bottom: 25px;
}

.landing7-footer__right a:not(.button) {
  display: block;
  font-family: 'Comfortaa';
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
  margin-bottom: 25px;
}

.landing7-footer__right a:not(.button):last-of-type {
  margin-bottom: 0px;
}

.landing7-footer__right .socials {
  width: 104px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.landing7-footer__right .socials a {
  width: 24px;
  height: 24px;
  font-size: 24px;
  margin-bottom: 0;
}

.landing7-footer .button {
  height: 40px;
  width: fit-content;
  padding: 0 17px;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border: 0;
  background: #fff;
  color: #000;
}

.landing7-footer .button:hover {
  color: #fff;
  background: #FF514C;
}

.landing7-footer .heading {
  font-family: 'Comfortaa';
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 20px;
  max-width: 635px;
}

.landing7-footer .heading + p {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  max-width: 635px;
}

.owl-carousel.media-carousel .owl-item div {
  width: 322px;
}

.owl-carousel.media-carousel .owl-item div.w2 {
  width: 458px;
}

.owl-carousel.media-carousel .owl-item img {
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.owl-carousel.media-carousel .owl-nav {
  width: 205px;
  margin-top: 20px;
  margin-right: auto;
  justify-content: space-between;
}

.owl-carousel.media-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.owl-carousel.media-carousel .owl-nav button.owl-next {
  transform: rotate(0deg);
}

.owl-carousel.media-carousel .owl-nav button.owl-prev {
  transform: rotate(0deg);
}

.owl-carousel.media-carousel .owl-nav button.owl-prev:before {
  transform: rotate(180deg);
}

.owl-carousel.media-carousel .owl-nav button:hover {
  background: #FF514C;
}

.owl-carousel.media-carousel .owl-nav button:hover:before {
  filter: invert(1);
}

.owl-carousel.media-carousel .owl-nav button:before {
  width: 40px;
  height: 40px;
  content: "";
  background: url(../images/arrow.svg) center center no-repeat;
}

.owl-carousel.media-carousel .owl-dots {
  margin-top: -27px;
  width: 205px;
  height: 12px;
  pointer-events: none;
}

.owl-carousel.media-carousel .owl-dots button.owl-dot {
  background: #fbb5b3;
  pointer-events: all;
}

.owl-carousel.media-carousel .owl-dots button.owl-dot.active {
  width: 12px;
  height: 12px;
  background: #FF514C;
}

.owl-carousel.slides-carousel .owl-nav {
  width: 205px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.owl-carousel.slides-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.owl-carousel.slides-carousel .owl-nav button:hover {
  background: #FF514C;
}

.owl-carousel.slides-carousel .owl-nav button:hover:before {
  filter: invert(1);
}

.owl-carousel.slides-carousel .owl-nav button.owl-next {
  transform: rotate(0deg);
}

.owl-carousel.slides-carousel .owl-nav button.owl-prev {
  transform: rotate(0deg);
}

.owl-carousel.slides-carousel .owl-nav button.owl-prev:before {
  transform: rotate(180deg);
}

.owl-carousel.slides-carousel .owl-nav button:before {
  width: 40px;
  height: 40px;
  content: "";
  background: url(../images/arrow.svg) center center no-repeat;
}

.owl-carousel.slides-carousel .owl-dots {
  margin-top: -27px;
  pointer-events: none;
  height: 12px;
}

.owl-carousel.slides-carousel .owl-dots button.owl-dot {
  background: #fbb5b3;
  pointer-events: all;
}

.owl-carousel.slides-carousel .owl-dots button.owl-dot.active {
  width: 12px;
  height: 12px;
  background: #FF514C;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    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%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    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%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .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%;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media only screen and (min-width: 992px) {
  .city-select__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 12px;
    background: #F6F6F6;
    border: 1px solid #E1E1E1;
    border-radius: 16px;
    height: 32px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .city-select__list a:hover {
    background: #FFEDEC;
    border: 1px solid #FF514C;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    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%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .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%;
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
}

@media only screen and (max-width: 1499px) {
  .footer-slogan {
    margin-right: 0px;
  }

  .cart-download {
    font-size: 16px;
  }

  .cart-row > div:nth-of-type(2) {
    flex: 0 0 260px;
    max-width: 260px;
  }

  .content table td {
    white-space: nowrap;
  }

  .content table tr td:nth-of-type(1) {
    white-space: normal;
  }

  .content table tr:nth-of-type(1) td {
    white-space: normal;
  }

  .landing7-footer__right {
    padding-left: 30px;
  }

  .landing7-footer__right .row > div:nth-of-type(2) {
    margin-top: 30px;
  }

  .owl-carousel.media-carousel .owl-item div {
    width: 222px;
  }

  .owl-carousel.media-carousel .owl-item div.w2 {
    width: 382px;
  }

  .owl-carousel.media-carousel .owl-item img {
    height: 220px;
  }

  .owl-carousel.media-carousel .owl-item img {
    height: 180px;
  }
}

@media (max-width: 1499px) {
  .rekl {
    max-width: 980px;
  }

  .rekl-nav li a {
    font-size: 16px;
  }

  .rekl-tr:nth-of-type(1) div:nth-of-type(4) span:nth-of-type(1),
  .rekl-tr:nth-of-type(1) div:nth-of-type(5) span:nth-of-type(1) {
    margin-left: -20px;
  }

  .rekl-list__item-buttons .button-tr {
    margin-left: -5px;
  }

  .rekl-list__item-buttons .button-tr:hover {
    background: transparent;
    color: #FF514C;
  }

  .rekl-list .digits .digit {
    padding-right: 25px;
    margin-right: 25px;
  }
}

@media only screen and (max-width: 1499px) and (max-width: 991px) {
  .landing7-footer__right .row > div:nth-of-type(2) {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  body {
    font-size: 16px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="phone"],
  input[type="tel"],
  input[type="date"],
  textarea {
    font-size: 16px;
  }

  .button {
    font-size: 16px;
    min-width: 100px;
    padding: 0 15px;
  }

  .header-slogan {
    flex: 0 0 175px;
  }

  .header-search button {
    height: 45px;
    width: 45px;
  }

  .footer-slogan {
    margin-right: 20px;
    flex: 0 0 120px;
  }

  .footer-slogan2 {
    flex: 0 0 160px;
  }

  .footer-phone {
    margin-left: 20px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .footer-bottom a {
    font-size: 13px;
  }

  .cart-download {
    font-size: 12px;
    padding-left: 20px;
  }

  .cart-download:before {
    font-size: 16px;
    top: 0px;
  }

  .cart-success {
    padding: 30px;
  }

  .cart-order {
    padding: 30px;
  }

  .cart-row > div:nth-of-type(2) {
    flex: 0 0 200px;
    max-width: 200px;
  }

  .list-text .row > div img {
    height: 300px;
  }

  .list-item > a {
    height: 300px;
  }

  .about p.digit {
    font-size: 18px;
    line-height: 34px;
  }

  .about p.digit span {
    font-size: 64px;
    line-height: 75px;
    margin-right: 10px;
  }

  .about p.digit span small {
    font-size: 32px;
    line-height: 34px;
  }

  .about p.digit-flex em {
    top: 0;
  }

  .about .heading-big {
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 20px;
  }

  .owl-carousel.media-carousel .owl-item div {
    width: 200px;
  }

  .owl-carousel.media-carousel .owl-item div.w2 {
    width: 300px;
  }
}

@media (max-width: 1199px) {
  .rekl {
    max-width: 820px;
  }

  .rekl-nav {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .rekl-nav li {
    flex-grow: unset;
  }

  .rekl-nav li a {
    font-size: 13px;
    line-height: 15px;
    height: 25px;
    padding: 0 10px;
    margin-bottom: 5px;
  }

  .rekl-tr:nth-of-type(1) div:nth-of-type(4) span:nth-of-type(1),
  .rekl-tr:nth-of-type(1) div:nth-of-type(5) span:nth-of-type(1) {
    margin-left: -40px;
  }

  .rekl-list__item-buttons .button-tr {
    margin-left: 15px;
  }

  .rekl-list__item-buttons .button-tr:hover {
    background: #FF514C;
    color: #fff;
  }
}

@media only screen and (max-width: 991px) {
  body {
    font-size: 14px;
    line-height: 115%;
  }

  .socials a {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .work-container {
    border-radius: 0px;
    margin-top: -30px;
  }

  .work > .container {
    padding-left: 0;
    padding-right: 0;
  }

  a.zoom:before {
    border-radius: 20px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="phone"],
  input[type="tel"],
  input[type="date"],
  textarea {
    font-size: 14px;
    height: 45px;
  }

  .modal {
    padding: 20px 20px;
  }

  .modal__call-me {
    width: 310px;
    margin-right: -155px;
    right: 50%;
  }

  .modal__call-me > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
  }

  .modal__call-me input {
    width: 100%;
  }

  .modal__call-me .button {
    display: flex !important;
    width: 100%;
    margin: auto;
    margin: 0 auto 20px auto;
  }

  .button {
    font-size: 18px;
  }

  .header .container {
    padding-left: 0;
    padding-right: 0;
  }

  .header-container {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    padding: 15px 15px 10px 15px;
    height: 80px;
  }

  .header-container .header-middle {
    order: 0;
    margin-bottom: 10px;
  }

  .header-container .header-top {
    order: 1;
    margin-bottom: 0;
  }

  .header-container .header-top nav {
    display: none;
  }

  .header-container .header-bottom {
    display: none;
  }

  .header-container .header-phones {
    margin-left: auto;
    margin-right: 0;
  }

  .header-container .header-phones a {
    margin-right: 0;
  }

  .header-container .header-phones a:nth-of-type(2) {
    display: none;
  }

  .header-container .header-buttons {
    margin-left: auto;
    align-items: center;
  }

  .header-container .header-logo {
    width: 37px;
    height: 28px;
    flex: 0 0 37px;
    left: -3px;
    top: 1px;
  }

  .header-container .header-slogan {
    font-weight: 400;
    font-size: 12px;
    line-height: 115%;
    flex: 0 0 159px;
    margin: 0 0 0 3px;
  }

  .header-container .header-cart:before {
    font-size: 25px;
  }

  .header-container .header-cart {
    width: 25px;
    height: 25px;
  }

  .header-container .header-cart span {
    width: 14px;
    height: 14px;
    font-size: 9px;
    right: -3px;
    bottom: -2px;
    align-items: center;
  }

  .header-city__modal {
    width: 310px;
    margin-right: -155px;
    right: 50%;
    min-width: 310px;
  }

  .header-city__modal-2 {
    min-width: 320px;
  }

  .header-search {
    display: none;
  }

  .header-buttons .button {
    display: none;
  }

  .header__call-me {
    position: static;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu .header-search {
    display: block;
  }

  .mobile-menu .call-me {
    width: 230px;
    margin: 30px auto;
  }

  .mobile-menu .header-phones {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .mobile-menu .header-phones a {
    margin: 0;
  }

  .mobile-menu .header-phones a:nth-of-type(2) {
    margin: 20px 0;
  }

  .city-select__list {
    flex-direction: column;
  }

  .city-select__list li {
    padding-left: 20px;
  }

  .city-select__cities {
    display: none;
  }

  .footer .container {
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-container {
    border-radius: 10px 10px 0px 0px;
    padding: 15px 15px 30px 15px;
  }

  .footer-logo {
    width: 37px;
    height: 28px;
    flex: 0 0 37px;
  }

  .footer-slogan {
    flex: 0 0 159px;
  }

  .footer-slogan2 {
    display: none;
  }

  .footer-phone {
    display: none;
  }

  .footer-middle {
    display: block;
  }

  .footer-middle > p {
    max-width: 250px;
  }

  .footer .socials {
    position: absolute;
    right: 15px;
    top: 15px;
    margin-right: 0px;
  }

  .footer .socials a {
    margin-left: 10px;
  }

  .footer-mobilephone {
    display: block;
    margin-bottom: 20px;
  }

  .footer-mobilephone a {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #FFF;
    display: block;
    margin-bottom: 10px;
  }

  .footer-bottom {
    display: none;
  }

  .owl-carousel .owl-nav {
    margin-top: 10px;
  }

  .owl-carousel .owl-nav button {
    width: 25px;
    height: 25px;
    margin: 0 10px;
  }

  .product-nav {
    margin-top: 10px;
  }

  .heading {
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin-bottom: 20px;
  }

  .aside-filters {
    opacity: 0;
    pointer-events: none;
    margin-left: -100vw;
    display: none;
  }

  .aside-filters__mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 30px;
  }

  .catalog > .row {
    margin-right: -5px;
    margin-left: -5px;
  }

  .catalog > .row > div {
    padding-right: 5px;
    padding-left: 5px;
  }

  .catalog-item {
    margin-bottom: 10px;
  }

  .catalog-item img {
    height: 106px;
    border-radius: 8px;
  }

  .catalog-item__cart {
    top: 112px;
    right: 0px;
  }

  .catalog-map__wrapper {
    width: calc(100% + 40px);
    border-radius: 0px;
    margin-left: -20px;
    margin-bottom: 20px;
  }

  .catalog-map__full {
    height: calc(100vh - 350px);
  }

  .catalog-map__full-aside {
    height: auto;
  }

  .catalog-map__full-aside__outter {
    overflow: unset;
  }

  .catalog-map__full-aside-catalog.visible {
    height: calc(100vh - 180px);
    z-index: 3;
  }

  .catalog-map__full-aside .button {
    bottom: auto;
    top: calc(100vh - 220px);
    z-index: 2;
  }

  .catalog-map__full-wrapper {
    height: calc(100vh - 290px);
  }

  .filters-shown .aside-filters__back {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 20px;
  }

  .filters-shown .aside-filters__back:before {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: none;
    line-height: 1;
    content: "\e908";
    font-size: 8px;
    margin-right: 7px;
  }

  .work-container.visible-catalog .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .detail-right {
    padding-top: 50px;
  }

  .detail-right__content {
    display: flex;
    flex-direction: column-reverse;
  }

  .detail-name {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 0px;
  }

  .detail-price {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 10px;
  }

  .detail-actions {
    margin-bottom: 10px;
    max-width: 100%;
  }

  .detail-actions .button {
    margin-bottom: 10px;
  }

  .green-dot {
    margin-top: 5px;
    margin-bottom: 20px;
  }

  .green-dot:before {
    top: 4px;
  }

  a.back {
    display: block;
    top: 18px;
    left: 15px;
    position: absolute;
  }

  a.share {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  a.share:before {
    font-size: 14px;
  }

  .rekl-suv .one-line {
    flex-direction: column;
    margin: 20px 0 0 0;
  }

  .rekl-suv .one-line .button {
    margin: 0 auto 20px auto;
  }

  .rekl-suv .one-line .button:last-of-type {
    margin-bottom: 0;
  }

  .aside-filters__mobile-suv {
    margin-top: 0;
  }

  .work-container_analog-top {
    display: none;
  }

  .accordion-item > a {
    min-height: 56px;
    font-size: 16px;
    padding: 20px 18px;
  }

  .accordion-item > a:after {
    width: 24px;
    height: 24px;
    font-size: 12px;
    flex: 0 0 24px;
  }

  .accordion-item > div {
    padding: 0 15px;
  }

  .accordion-item > div p,
  .accordion-item > div li {
    font-size: 14px;
    line-height: 24px;
  }

  .product-gallery {
    margin: 0;
  }

  .product-slider-thumbs {
    display: none !important;
  }

  .product-nav {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -20px;
  }

  .vac-aside {
    max-width: 100%;
  }

  .cart-empty {
    position: relative;
  }

  .cart-container {
    max-width: unset;
    padding: 20px 15px 80px 15px;
    background: #FFF;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
    margin-left: -15px;
    margin-right: -15px;
  }

  .cart-container .breadcrumbs {
    display: none;
  }

  .cart-success > i {
    margin-top: 40px;
  }

  .cart-success {
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0px;
  }

  .cart-order {
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0px;
  }

  .cart-head {
    display: none;
  }

  .cart-footer {
    margin-bottom: 20px;
  }

  .cart-top {
    margin-top: 0px;
  }

  .list-text .row > div:nth-of-type(odd) p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .list-text .row > div:nth-of-type(even) p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 15px;
  }

  .list-text .row {
    margin-bottom: 20px;
  }

  .list-text .row > div small {
    font-size: 14px;
    line-height: 24px;
  }

  .list-text .row > div ul {
    padding-left: 0px;
    margin-bottom: 15px;
  }

  .list-text .row > div ul li {
    font-size: 14px;
    line-height: 26px;
  }

  .list-items {
    margin-bottom: 40px;
  }

  .vyv {
    padding: 0px 0 40px 0;
  }

  .vyv-list {
    margin-bottom: 30px;
  }

  .vyv-item .button {
    width: 100%;
    height: 32px;
    font-size: 14px;
  }

  .vyv-item__content div p {
    font-size: 16px;
    line-height: 18px;
    margin-top: 20px;
  }

  .vyv-item__content > p:nth-of-type(1) {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
  }

  .vyv-item__content > p:nth-of-type(2) {
    font-size: 14px;
    line-height: 24px;
  }

  .vyv aside {
    display: none;
  }

  .content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 10px;
    padding: 0 15px;
  }

  .content p.heading2 {
    font-size: 18px;
    line-height: 28px;
  }

  .content .block + .block {
    margin-top: 40px;
  }

  .content .block ul li {
    font-size: 18px;
    line-height: 28px;
    padding-left: 20px;
  }

  .content .block ul li:before {
    left: 7px;
    top: 12px;
    width: 4px;
    height: 4px;
  }

  .content .block .heading {
    font-size: 18px;
    line-height: 28px;
  }

  .content .block .button {
    width: 100%;
    height: 32px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .content .block .buttons {
    flex-direction: column;
    margin-bottom: 0px;
  }

  .content .block .buttons .button {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .content table td {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 26px;
  }

  .content table tr td:nth-of-type(1) {
    min-width: 300px;
  }

  .content + .content {
    margin-top: 40px;
  }

  .drag-outer {
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .drag-inner {
    padding: 0 15px;
  }

  #block03 {
    margin-top: 40px;
  }

  .contacts {
    padding: 0px 0 40px 0;
  }

  .contacts .row > div {
    margin-bottom: 20px;
  }

  .contacts-link {
    padding: 16px 24px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    font-size: 18px;
    line-height: 24px;
  }

  .contacts-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex: 0 0 32px;
    margin-right: 15px;
  }

  .contacts-item img {
    width: 32px;
    height: 32px;
  }

  .contacts-item__copy a {
    font-size: 18px;
    line-height: 24px;
  }

  .row-map {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .map {
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .about {
    padding: 0px 0 40px 0;
  }

  .about .digits {
    flex-direction: column;
    margin-bottom: 30px;
    padding-bottom: 0px;
  }

  .about .digits .digit:first-of-type {
    border-right: 0;
    padding: 0 0 30px 0;
    border-bottom: 1px solid #E1E1E1;
  }

  .about p.digit {
    width: 100%;
  }

  .about p.digit-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .about .row + .row {
    margin-top: 20px;
  }

  .about .row-last {
    padding-bottom: 20px;
  }

  .white {
    padding: 20px 0;
  }

  .grey {
    padding: 20px 0;
  }

  .team-item img {
    height: 272px;
  }

  .about-case .list-tags {
    display: none;
  }

  .about-case .aside-select {
    display: block;
    margin-top: -20px;
    margin-bottom: 20px;
  }

  .about-case .aside-select .nice-select .list {
    border-bottom: 0;
  }

  .about-case .content p:not(.heading):not(.heading2):not(.digit):not(.heading-big) {
    font-size: 18px;
    line-height: 28px;
  }

  .about-case .row > div {
    margin-bottom: 20px;
  }

  .about-case .row > div .content p.heading-big {
    margin-bottom: 10px;
  }

  .cases + .row {
    margin-top: 40px;
  }

  .mainpage .clients {
    display: none;
  }

  .mainpage .accent {
    display: none;
  }

  .mainpage .digits {
    margin-bottom: 20px;
  }

  .mainpage .digits .digit {
    flex: 0 0 31%;
    border-right: 0;
  }

  .mainpage .digits .digit p {
    white-space: normal;
  }

  .mainpage .heading {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
  }

  .mainpage .list-tags {
    display: none;
  }

  .mainpage .aside-select {
    display: block;
    margin-top: -20px;
    margin-bottom: 20px;
  }

  .mainpage .aside-select .nice-select .list {
    border-bottom: 0;
  }

  .landing7 {
    background: unset;
  }

  .landing7-hero {
    display: flex;
    flex-direction: column-reverse;
  }

  .landing7-hero img {
    height: unset;
  }

  .landing7-hero__content {
    position: static;
    color: #000;
  }

  .landing7-hero__content .heading {
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 5px;
  }

  .landing7-hero__content .heading + p {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .landing7-hero__buttons {
    display: block;
    margin-bottom: 30px;
  }

  .landing7-hero__buttons .button {
    width: 100%;
    height: 32px;
    font-size: 14px;
  }

  .landing7-hero__buttons .button:last-of-type {
    margin-left: 0;
    margin-top: 15px;
    border-color: #e1e1e1;
  }

  .landing7-text {
    background: unset;
    padding: 50px 0;
  }

  .landing7-text p {
    font-size: 16px;
    line-height: 32px;
  }

  .landing7-text .heading {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
  }

  .landing7-text .button {
    width: 100%;
    height: 32px;
    font-size: 14px;
    margin-bottom: 30px;
  }

  .landing7-text__digits {
    display: block;
    width: 100%;
    margin-left: 0;
  }

  .landing7-text__digits > div {
    padding: 0;
  }

  .landing7-text__digits > div:nth-of-type(2) {
    flex: unset;
    max-width: unset;
    margin-top: 15px;
  }

  .landing7-text__digit {
    padding: 24px 16px;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.08), 0px 3px 12px -4px rgba(0, 0, 0, 0.08), 0px 9px 24px 8px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
  }

  .landing7-text__digit p:nth-of-type(1) {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .landing7-text__digit p {
    font-size: 16px;
    line-height: 24px;
  }

  .landing7-slides {
    padding: 30px 0 40px 0;
    background: unset;
  }

  .landing7-slide {
    padding: 24px 16px;
  }

  .landing7-slide p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .landing7-slide img {
    height: 160px;
  }

  .landing7-media {
    background: unset;
    padding: 0 0 50px 0;
  }

  .landing7-media .heading {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
  }

  .landing7-media .button {
    width: 100%;
    height: 32px;
    font-size: 14px;
    margin-bottom: 30px;
  }

  .landing7-media p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 10px;
    margin-top: 30px;
  }

  .landing7-video {
    height: 100%;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }

  .landing7-video:before {
    background-size: 40px;
  }

  .landing7-video img {
    height: 160px;
  }

  .landing7-footer {
    background: unset;
    padding: 0 0 50px 0;
  }

  .landing7-footer__container {
    padding: 24px 16px;
  }

  .landing7-footer__right {
    padding-left: 0;
    border-left: 0;
    border-bottom: 1px solid #494949;
    padding-bottom: 40px;
  }

  .landing7-footer__right p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
  }

  .landing7-footer__right a:not(.button) {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 10px;
  }

  .landing7-footer__right a:not(.button):last-of-type {
    margin-bottom: 0px;
  }

  .landing7-footer .button {
    width: 100%;
    height: 32px;
    font-size: 14px;
    margin-bottom: 30px;
  }

  .landing7-footer .heading + p {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
  }

  .landing7-footer .heading {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
    color: #fff;
    padding-top: 40px;
  }

  .owl-carousel.media-carousel .owl-item div {
    width: 100%;
  }

  .owl-carousel.media-carousel .owl-item div.w2 {
    width: 100%;
  }

  .owl-carousel.media-carousel .owl-item img {
    height: 240px;
  }

  .owl-carousel.media-carousel .owl-nav {
    margin-left: auto;
  }

  .owl-carousel.media-carousel .owl-dots {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .rekl {
    max-width: 100%;
  }

  .rekl-note p {
    padding: 15px 30px;
    font-size: 14px;
    line-height: 16px;
  }

  .rekl-block {
    font-size: 14px;
    line-height: 150%;
  }

  .rekl-block .heading {
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    padding-left: 25px;
  }

  .rekl-block .heading + p {
    padding-left: 10px;
  }

  .rekl-block .heading:before {
    left: 00px;
    top: 6px;
  }

  .rekl .button-white {
    height: 26px;
    margin: 20px auto;
    max-width: 170px;
    font-size: 14px;
    line-height: 16px;
  }

  .rekl-tr {
    flex-direction: column;
    padding-bottom: 30px;
    margin-bottom: 20px;
    display: none;
  }

  .rekl-tr:nth-of-type(2),
  .rekl-tr:nth-of-type(3),
  .rekl-tr:nth-of-type(4) {
    display: flex;
  }

  .rekl-tr:nth-of-type(1) {
    display: none !important;
  }

  .rekl-tr div:nth-of-type(1) {
    flex: unset;
    max-width: unset;
    order: 0;
    align-items: center;
    margin-bottom: 20px;
  }

  .rekl-tr div:nth-of-type(1) p {
    font-size: 18px;
    line-height: 150%;
  }

  .rekl-tr div:nth-of-type(2) {
    flex: unset;
    max-width: unset;
    order: 5;
  }

  .rekl-tr div:nth-of-type(3) {
    flex: unset;
    max-width: unset;
    order: 3;
    font-size: 18px;
    line-height: 150%;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
  }

  .rekl-tr div:nth-of-type(3) .dots {
    width: 100%;
    border-bottom: 1px dashed #7B7B7B;
    position: relative;
    top: -8px;
  }

  .rekl-tr div:nth-of-type(3):before {
    content: "Возраст";
    color: #999;
  }

  .rekl-tr div:nth-of-type(4) {
    flex: unset;
    max-width: unset;
    order: 1;
    font-size: 18px;
    line-height: 150%;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
  }

  .rekl-tr div:nth-of-type(4) .dots {
    width: 100%;
    border-bottom: 1px dashed #7B7B7B;
    position: relative;
    top: -8px;
  }

  .rekl-tr div:nth-of-type(4):before {
    content: "18:00 до 00:00";
    color: #999;
    margin-right: auto;
  }

  .rekl-tr div:nth-of-type(4):after {
    content: "/сек";
  }

  .rekl-tr div:nth-of-type(5) {
    flex: unset;
    max-width: unset;
    order: 2;
    font-size: 18px;
    line-height: 150%;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
  }

  .rekl-tr div:nth-of-type(5) .dots {
    width: 100%;
    border-bottom: 1px dashed #7B7B7B;
    position: relative;
    top: -8px;
  }

  .rekl-tr div:nth-of-type(5):before {
    content: "00:00 до 18:00";
    color: #999;
    margin-right: auto;
  }

  .rekl-tr div:nth-of-type(5):after {
    content: "/сек";
  }

  .rekl-tr div:nth-of-type(6) {
    flex: unset;
    max-width: unset;
  }

  .ol-block img {
    display: none;
  }

  .ol-block ol li {
    padding-left: 0;
    padding-top: 60px;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }

  .ol-block ol li p {
    font-size: 14px;
    line-height: 150%;
  }

  .ol-block2 ol {
    flex-direction: column;
  }

  .ol-block2 ol li {
    padding-top: 0px;
    margin-bottom: 20px;
  }

  .ol-block2 ol li p {
    font-size: 14px;
    line-height: 150%;
  }

  .ol-block2 ol li:before {
    display: none;
  }

  .rekl-show-all {
    display: block;
    margin: 30px auto 10px 0;
    width: fit-content;
    text-decoration: underline;
  }

  .rekl-under-tr {
    display: flex;
    flex-direction: column;
  }

  .rekl-under-tr p {
    order: -1;
  }

  .rekl-detail__left {
    display: none;
  }

  .rekl-audit {
    padding: 25px;
  }

  .rekl-audit__heading {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 0px;
  }

  .rekl-audit__block {
    font-size: 18px;
    line-height: 150%;
  }

  .rekl-audit__block .percents {
    margin-top: 60px;
  }

  .percents {
    width: 100%;
    margin-top: 20px;
    position: relative;
  }

  .percents span:nth-of-type(1):before {
    content: "Жен";
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 12px;
    line-height: 150%;
    color: #999;
  }

  .percents span:nth-of-type(2):after {
    content: "Муж";
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 12px;
    line-height: 150%;
    color: #999;
  }

  .rekl-rolik .heading {
    left: 0px;
  }

  .rekl-rolik .button {
    margin: 30px auto;
  }

  .rekl-rolik img {
    border-radius: 20px;
  }

  .rekl-rolik ol li {
    padding-top: 0px;
    margin-bottom: 20px;
  }

  .rekl-rolik ol li:before {
    margin-right: 10px;
    font-size: 20px;
  }

  .rekl-rolik .button-white {
    height: 50px;
    font-size: 18px;
    max-width: 270px;
  }

  .rekl-rolik .rolik4 {
    margin-bottom: 30px;
    margin-top: -30px;
  }

  .rekl-aside {
    position: fixed;
    width: 100vw;
    margin-left: -100vw;
    transition: all ease .3s;
    background: #f8f8f8;
    z-index: 100;
    top: 0;
    height: 100vh;
    left: 0;
    padding: 30px 15px;
    max-width: unset;
    display: flex;
    flex-direction: column;
  }

  .rekl-aside .aside-select__buttons {
    margin-top: auto;
  }

  .rekl-aside.visible {
    margin-left: 0vw;
  }

  .rekl-aside__back {
    display: flex;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 30px;
  }

  .rekl-aside__back:before {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: none;
    line-height: 1;
    content: "\e903";
    transform: rotate(90deg);
    font-size: 8px;
    margin-right: 12px;
    color: #C0C0C0;
  }

  .rekl-container {
    padding-bottom: 20px;
  }

  .rekl-list__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .rekl-list .row + .button {
    max-width: unset;
    height: 32px;
    font-size: 14px;
    line-height: 16px;
  }

  .rekl-list .heading {
    font-size: 18px;
    line-height: 28px;
  }

  .rekl-list__items {
    margin-bottom: 50px;
  }

  .rekl-list__item {
    padding-bottom: 0px;
  }

  .rekl-list__item-buttons {
    display: block;
    position: static;
  }

  .rekl-list__item-buttons .button {
    max-width: unset;
    height: 32px;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
  }

  .rekl-list__item-buttons .button-tr {
    margin-left: 0;
    margin-bottom: 0;
  }

  .rekl-list__item-price p {
    font-size: 16px;
    line-height: 18px;
  }

  .rekl-list__item-content {
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .rekl-list__item-content p:nth-of-type(1) {
    font-size: 16px;
    line-height: 24px;
  }

  .rekl-list__item-content p {
    font-size: 14px;
  }

  .rekl-list .digits {
    display: block;
    margin-bottom: 0px;
  }

  .rekl-list .digits .digit {
    padding: 0;
    margin: 0 0 50px 0;
    border: 0;
    font-size: 18px;
    line-height: 34px;
  }

  .rekl-list .digits .digit span {
    font-size: 64px;
    line-height: 75px;
  }

  .rekl-list .digits .digit small {
    font-size: 24px;
    line-height: 34px;
    color: #FF514C;
  }

  .rekl-list .digits .digit small.red {
    font-size: 32px;
    line-height: 34px;
    color: #FF514C;
    margin-right: 5px;
  }

  .rekl-content {
    margin-bottom: 50px;
  }

  .rekl-content p {
    font-size: 14px;
    line-height: 26px;
  }

  .rekl-content p strong {
    font-size: 18px;
    line-height: 28px;
  }

  .rekl-content ul li {
    font-size: 14px;
    line-height: 26px;
  }

  .rekl-content ol li {
    font-size: 14px;
    padding-left: 25px;
    margin-bottom: 10px;
    padding-top: 15px;
  }

  .rekl-content ol li:before {
    font-size: 32px;
  }

  .rekl-content table td {
    height: 40px;
    font-size: 14px;
    line-height: 16px;
  }

  .rekl-content__addresses .row {
    flex-wrap: nowrap;
  }

  .rekl-content__addresses .row > div {
    min-width: 243px;
  }
}

@media (max-width: 991px) and (max-width: 991px) {
  .rekl-block .heading + p {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 991px) and (max-width: 991px) {
  .landing7-hero__content {
    padding: 25px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumbs ul li {
    font-size: 14px;
  }

  .product-slider {
    margin-top: 15px;
  }

  .cart-order > p:nth-of-type(1) {
    font-size: 20px;
    line-height: 23px;
    margin-top: 40px;
  }

  .cart-footer {
    flex-direction: row !important;
    justify-content: flex-end !important;
  }

  .cart-footer > div:nth-of-type(3) {
    padding-left: 10px !important;
  }

  .cart-footer > div:nth-of-type(4) {
    display: none;
  }

  .cart-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
  }

  .cart-row > div:nth-of-type(1) {
    flex: unset;
    max-width: unset;
    position: absolute;
    left: 0;
    top: 0;
  }

  .cart-row > div:nth-of-type(2) {
    flex: unset;
    max-width: unset;
    padding-left: 104px;
  }

  .cart-row > div:nth-of-type(2) p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 15px;
  }

  .cart-row > div:nth-of-type(3) {
    flex: unset;
    max-width: unset;
    padding-left: 104px;
  }

  .cart-row > div:nth-of-type(4) {
    flex: unset;
    max-width: unset;
    margin-left: auto;
    margin-top: -25px;
  }

  .cart-row:not(.cart-head):not(.cart-footer) {
    padding-bottom: 15px;
    margin-bottom: 15px;
    min-height: 86px;
    box-sizing: content-box;
  }

  .cart-total__caption {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-align: right;
    color: #000;
    white-space: nowrap;
  }

  .cart-price {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-align: right;
  }

  .cart-img {
    width: 86px;
    height: 81px;
    border-radius: 10px;
  }

  .list-text .row .buttons {
    flex-direction: column;
  }

  .list-text .row .buttons .button:first-of-type {
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .list-text .row > div img {
    height: 160px;
    margin-bottom: 15px;
  }

  .list-items .row > div {
    margin-bottom: 20px;
  }

  .list-item > a {
    height: 160px;
    margin-bottom: 15px;
  }

  .list-item > div p {
    font-size: 16px;
    line-height: 19px;
    padding-right: 40px;
  }

  .list-item > div .button {
    height: 32px;
    font-size: 14px;
    line-height: 16px;
    padding: 0 16px;
    min-width: unset;
  }

  .list-tags {
    justify-content: center;
    margin-bottom: 25px;
  }

  .list-tags li {
    margin: 0 2.5px 5px 2.5px;
  }

  .list-tags li a {
    height: 24px;
    font-size: 12px;
    line-height: 14px;
    padding: 0 6px;
  }

  .list-tags li a:after {
    margin-left: 6px;
  }

  .list .heading {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 565px) {
  .dragscroll {
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    overflow-x: auto;
    position: relative;
  }

  .dragscroll .container {
    width: fit-content;
  }

  .dragscroll::-webkit-scrollbar {
    display: none;
  }

  .work-container_analog {
    padding-left: 15px;
    padding-right: 15px;
  }

  .work-container_analog .one-line .button {
    width: 100%;
    max-width: 100%;
  }

  .product-gallery {
    margin-left: -15px;
    margin-right: -15px;
  }

  .product-slider img {
    border-radius: 0;
    height: 322px;
  }
}

@media (max-width: 565px) {
  .rekl-content img {
    width: 100%;
  }

  .rekl-content__addresses .wrap {
    overflow: auto;
    padding: 0 15px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .rekl-content .buttons {
    flex-direction: column;
  }

  .rekl-content .buttons .button {
    height: 32px;
    font-size: 14px;
    line-height: 16px;
  }

  .rekl-content .buttons .button:first-of-type {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}