@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: 1000ms;
  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: 'TT Norms';
  src: url("../fonts/TTNorms/TTNorms-Regular.eot");
  src: url("../fonts/TTNorms/TTNorms-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TT Norms';
  src: url("../fonts/TTNorms/TTNorms-Bold.eot");
  src: url("../fonts/TTNorms/TTNorms-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'TT Norms';
  src: url("../fonts/TTNorms/TTNorms-Medium.eot");
  src: url("../fonts/TTNorms/TTNorms-Medium.woff") format("woff");
  font-weight: 500;
  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;
}

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;
}

html {
  font-size: 14px;
}

body {
  overflow-x: hidden;
  color: #0a0a0a;
  font-family: 'TT Norms', sans-serif;
}

.mobile-menu-shown {
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
}

.one-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.one-line p {
  margin-bottom: 0;
}

span.br {
  display: block;
}

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

.content .heading,
.heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 32px;
}

.content .heading_medium,
.heading_medium {
  font-size: 36px;
  letter-spacing: -0.45px;
  margin-bottom: 30px;
}

.content .heading_small,
.heading_small {
  font-size: 32px;
  letter-spacing: -0.45px;
  margin-bottom: 30px;
}

.catalog h1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 30px;
}

.detail h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.38;
  color: #0a0a0a;
  margin-bottom: 20px;
  max-width: 430px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  border-radius: 4px;
  border: solid 1px #fff;
  width: 170px;
  color: #fff;
  text-decoration: none;
}

.button.button-grey {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
  height: 54px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.button.button-grey:hover {
  background-color: transparent;
  color: #fff;
}

.button.button-grey:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}

.button.button-grey:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: '';
  background: #555555;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.button.button-white {
  background-color: transparent;
  color: #000;
  height: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  width: 270px;
  border: 1px solid #d6dbe0;
}

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

.button.button-white:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}

.button.button-white:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: '';
  background: #555555;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.button.button-black {
  background-color: #000;
  color: #fff;
  border: none;
  height: 60px;
  width: 145px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.button.button-black span {
  position: relative;
  z-index: 1;
}

.button.button-black:hover {
  color: #fff;
}

.button.button-black:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}

.button.button-black:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: 0;
  content: '';
  background: #555555;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

header .button {
  margin-left: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

header .button:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}

header .button:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: 0;
  content: '';
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

footer .button {
  height: 54px;
  width: 165px;
  border: 2px solid #727274;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

footer .button:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}

footer .button:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: 0;
  content: '';
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.load-more {
  font-weight: 500;
  text-decoration: none;
  display: table;
  padding: 10px 0;
  text-transform: uppercase;
  text-decoration: none;
  margin: 20px auto;
  width: 195px;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #000;
  transition: all ease .3s;
}

.load-more:hover {
  color: #ffcc00;
  border-bottom: 1px solid #ffcc00;
}

.subscribe-form {
  height: 415px;
  background-color: #f5f6fa;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subscribe-form p {
  line-height: 1.5;
}

.subscribe-form p:first-of-type {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 12px;
}

.subscribe-form p:nth-of-type(2) {
  margin-bottom: 30px;
}

.subscribe-form form {
  display: flex;
  margin-bottom: 30px;
}

.subscribe-form form input[type="text"] {
  width: 425px;
  height: 60px;
  background-color: #fff;
  border: none;
  font-size: 18px;
  color: #2d2d2d;
  padding: 0 32px;
  border-radius: 4px 0 0 4px;
  font-family: 'TT Norms', sans-serif;
  box-sizing: border-box;
}

.subscribe-form form input[type="text"]::placeholder {
  opacity: .3;
}

.subscribe-form form input[type="text"] {
  position: relative;
}

.subscribe-form form input[type="text"]:before {
  width: 14px;
  height: 14px;
  background-color: #000;
  display: block;
  content: "";
  border-radius: 3px;
}

.subscribe-form form .button {
  border-radius: 0 4px 4px 0;
  width: 270px;
  font-family: 'TT Norms', sans-serif;
  cursor: pointer;
}

.policy a {
  position: relative;
  top: -2px;
  color: #000;
  transition: all ease .3s;
}

.policy a:hover {
  opacity: .4;
}

.policy input[type="checkbox"] {
  display: none;
}

.policy input[type="checkbox"] + label {
  display: inline-flex;
  align-items: flex-start;
  line-height: 0;
  margin-bottom: 25px;
  margin-right: 30px;
  position: relative;
  cursor: pointer;
  user-select: none;
  line-height: 1.33;
}

.policy input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  max-width: 14px;
  background: #fff;
  border-radius: 3px;
  margin-right: 17px;
  border: solid 1px #f2f2f2;
}

.policy input[type="checkbox"]:checked + label:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #000 url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDE0IDE0Ij4gICAgPHBhdGggZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMy4xMjEgNy4zYS4zMTkuMzE5IDAgMCAxLS4wOTMtLjIxYzAtLjA2LjAzMS0uMTUuMDkzLS4yMWwuNDM1LS40MmMuMTI0LS4xMi4zMS0uMTIuNDM1IDBsLjAzMS4wM0w1LjczIDguMjZjLjA2Mi4wNi4xNTYuMDYuMjE4IDBsNC4xNjItNC4xN2guMDNjLjEyNS0uMTIuMzExLS4xMi40MzUgMGwuNDM1LjQyYy4xMjUuMTIuMTI1LjMgMCAuNDJMNi4wNCA5LjkxYS4yODcuMjg3IDAgMCAxLS4yMTcuMDkuMjg3LjI4NyAwIDAgMS0uMjE3LS4wOUwzLjE4NCA3LjM5IDMuMTIgNy4zeiIvPjwvc3ZnPg==);
}

.contact-form {
  border-radius: 8px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding: 40px 70px;
}

.contact-form p:first-of-type {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 7px;
}

.contact-form p:nth-of-type(2) {
  margin-bottom: 30px;
  line-height: 1.64;
}

.contact-form input[type="text"],
.contact-form textarea {
  width: 100%;
  height: 60px;
  background-color: #f9f9fb;
  border: none;
  font-size: 18px;
  color: #2d2d2d;
  padding: 0 32px;
  border-radius: 4px;
  font-family: 'TT Norms', sans-serif;
  box-sizing: border-box;
  display: block;
  margin-bottom: 30px;
}

.contact-form input[type="text"]::placeholder,
.contact-form textarea::placeholder {
  opacity: .3;
}

.contact-form textarea {
  height: 140px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.contact-form .button {
  width: 100%;
  font-family: 'TT Norms', sans-serif;
  cursor: pointer;
  margin-bottom: 30px;
}

.contact-form .policy {
  text-align: center;
}

.contact-form .policy input[type="checkbox"] + label {
  margin: 0;
}

.modal {
  display: none;
  width: 100%;
  max-width: 570px;
}

.modal.fancybox-content {
  padding: 0;
  background: transparent;
}

.modal .fancybox-button svg {
  width: 40px;
  height: 40px;
}

.modal .fancybox-close-small {
  right: 15px;
  top: 15px;
  padding: 0;
  width: 40px;
  height: 40px;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  display: inline-flex;
  align-items: flex-start;
  line-height: 0;
  margin-bottom: 25px;
  margin-right: 30px;
  position: relative;
  cursor: pointer;
  user-select: none;
  line-height: 1.33;
  font-weight: bold;
}

input[type="radio"] + label:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  border: solid 1px #f2f2f2;
  background-color: #ffffff;
  margin-right: 10px;
}

input[type="radio"]:checked + label:after {
  position: absolute;
  top: 4px;
  left: 4px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #000;
}

a.dowload {
  display: inline-flex;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  transition: all ease .3s;
}

a.dowload:hover {
  filter: grayscale(100%);
}

a.dowload:before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 8px;
}

a.dowload_pdf {
  color: #e2574c;
}

a.dowload_pdf:before {
  background: url(../images/001-pdf-file.svg);
}

a.dowload_doc {
  color: #1465c0;
}

a.dowload_doc:before {
  background: url(../images/001-doc-file.svg);
}

a.dowload_xls {
  color: #26a59a;
}

a.dowload_xls:before {
  background: url(../images/002-xls-file.svg);
}

header {
  background: #0f1013;
}

header.main-page {
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.compensate-for-scrollbar header.main-page,
.compensate-for-scrollbar .thumbs-carousel__wrap,
.compensate-for-scrollbar .nav-container {
  width: calc(100% - 17px);
}

.header__logo {
  transition: all ease-in-out .3s;
}

.header__logo img {
  width: 268px;
}

.header__logo:hover {
  opacity: .4;
}

.header a {
  color: #fff;
}

.header__top nav ul {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.header__top nav ul a {
  text-decoration: none;
  color: #fff;
  transition: all ease-in-out .3s;
}

.header__top nav ul a:hover {
  opacity: .6;
}

.header__top_white {
  background: #fff;
}

.header__top_white nav ul a {
  color: #000;
}

.header__middle {
  color: #fff;
  margin: 17px 0;
}

.header__middle .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__contacts {
  display: flex;
}

.header__contacts > div:first-of-type {
  margin-right: 30px;
}

.header__contacts-item {
  width: 170px;
}

.header__contacts-item a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  transition: all ease-in-out .3s;
}

.header__contacts-item a:hover {
  opacity: .4;
}

.header__bottom {
  background: #fff;
}

.header__bottom ul {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #000;
  position: relative;
  overflow: hidden;
}

.header__bottom ul li {
  width: 100%;
  text-align: center;
}

.header__bottom ul a {
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 46px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  padding: 0 35px;
  white-space: nowrap;
  transition: all ease-in-out .3s;
}

.main-page .header__top {
  background: #fff;
}

.main-page .header__top nav ul a {
  color: #000;
}

.main-page .header__bottom {
  background: transparent;
}

.main-page .header__bottom ul {
  border-bottom: 2px solid #fff;
}

.main-page .header__bottom ul li a {
  color: #fff;
}

.magic-line {
  position: absolute;
  top: 0px;
  left: -1000px;
  width: 1100px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
  pointer-events: none;
}

.main-page .magic-line {
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.mobile-menu .magic-line {
  display: none;
}

footer {
  box-shadow: 0 10px 20px 0 rgba(40, 62, 85, 0.1);
  background-color: #0f1013;
  padding: 60px 0 15px 0;
}

footer p {
  color: #fff;
  opacity: .6;
  line-height: 1.33;
}

footer nav {
  display: flex;
}

footer nav ul:first-of-type {
  margin-right: 18px;
}

footer nav ul {
  margin-top: 27px;
  margin-bottom: 44px;
}

footer nav ul li span {
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}

footer nav ul li a {
  color: #fff;
  opacity: .6;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all ease-in-out .3s;
}

footer nav ul li a:hover {
  opacity: 1;
}

.hamburger {
  display: none;
  width: 27px;
  height: 18px;
  position: relative;
  z-index: 4;
  opacity: 1;
  z-index: 10;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger .line {
  width: 27px;
  height: 3px;
  background-color: #000;
  display: block;
  margin: 4px auto 0px auto;
  transition: all ease-in-out .3s;
}

.hamburger .line:first-of-type {
  margin-top: 0px;
}

.hamburger.active .line {
  background-color: #000;
}

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

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

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

.main-page .hamburger .line {
  background-color: #fff;
}

.main-page .hamburger.active .line {
  background-color: #000;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #f9f9f9;
  z-index: 9;
}

.mobile-menu__content {
  overflow-y: scroll;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  height: calc(100vh - 60px);
  padding-bottom: 30px;
}

.mobile-menu hr {
  width: calc(100% - 30px);
  padding: 0;
  margin: 0;
  position: absolute;
  margin-top: 1px;
  border: 1px solid #000;
}

.mobile-menu .header__middle {
  background: #fff;
  padding: 12px 0;
  margin: 0;
}

.mobile-menu .header__top {
  background: #fff;
}

.mobile-menu .header__top nav ul {
  flex-wrap: wrap;
  margin: 10px 0;
  height: auto;
}

.mobile-menu .header__top nav ul li {
  width: 50%;
  max-width: 50%;
  flex: 0 0 50%;
}

.mobile-menu .header__top nav ul li a {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.mobile-menu .header__bottom nav ul {
  flex-wrap: wrap;
  margin-top: 0px;
  height: auto;
  border-bottom: 2px solid #000;
  margin: 10px 0 0 0;
  padding-bottom: 10px;
}

.mobile-menu .header__bottom nav ul li {
  width: 50%;
  max-width: 50%;
  flex: 0 0 50%;
}

.mobile-menu .header__bottom nav ul li a {
  color: #000;
}

.mobile-menu .header__contacts {
  color: #000;
  text-align: center;
}

.mobile-menu .header__contacts a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.mobile-menu .header__contacts a.button {
  margin-left: 0;
  width: 290px;
  height: 60px;
  border-radius: 4px;
  border: solid 1px #000;
  margin-top: 15px;
}

.mobile-menu .header__contacts-item {
  margin: 15px 0px;
}

.footer__logo {
  margin-bottom: 20px;
  width: 268px;
}

.footer__contacts {
  margin-top: 27px;
}

.footer__contacts p {
  font-weight: bold;
  opacity: 1;
  margin-bottom: 1px;
}

.footer__contacts a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 30px;
  transition: all ease-in-out .3s;
}

.footer__contacts a:hover {
  opacity: .6;
}

.main-carousel {
  height: 100vh;
  width: 100%;
  position: relative;
}

.main-carousel.owl-carousel .owl-item {
  position: relative;
}

.main-carousel__content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-carousel__content p {
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: -1.36px;
}

.main-carousel.owl-carousel .owl-item img {
  height: 100vh;
  object-fit: cover;
}

.main-carousel .owl-dots {
  position: absolute;
  bottom: 257px;
  width: 100%;
  text-align: center;
}

.main-carousel .owl-dots button {
  width: 8px;
  height: 8px;
  border: none;
  background: #fff;
  border-radius: 4px;
  margin: 0 13px;
  opacity: .4;
  cursor: pointer;
}

.main-carousel .owl-dots button.active {
  opacity: 1;
}

.thumbs-carousel {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

.thumbs-carousel__wrap {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.thumbs-carousel.owl-carousel .owl-item {
  height: 177px;
  border-left: solid 1px rgba(255, 255, 255, 0.2);
  padding-right: 20px;
}

.thumbs-carousel.owl-carousel .owl-item > div {
  padding: 20px;
  transition: all ease .3s;
  border-radius: 4px;
}

.thumbs-carousel.owl-carousel .owl-item.current {
  border-left: solid 1px rgba(255, 255, 255, 0);
}

.thumbs-carousel.owl-carousel .owl-item.current > div {
  background: rgba(255, 255, 255, 0.2);
}

.thumbs-carousel.owl-carousel .owl-item p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.39;
  color: #fff;
}

.thumbs-carousel.owl-carousel .owl-item img {
  width: 130px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  display: block;
  margin-bottom: 17px;
}

.nav-container {
  position: absolute;
  bottom: 237px;
  text-align: right;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

.nav-container button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  margin-right: 20px;
  transition: all ease .3s;
  position: relative;
  pointer-events: all;
}

.nav-container button.owl-next {
  transform: rotate(180deg);
}

.nav-container button:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNyIgdmlld0JveD0iMCAwIDE3IDE3Ij4gICAgPHBhdGggZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNNS4xOSA4LjUzMmw1LjMwMi01LjM0QS42NDUuNjQ1IDAgMCAxIDEwLjk1MyAzYy4xNzUgMCAuMzM5LjA2OC40NjEuMTkybC4zOS4zOTNhLjY2LjY2IDAgMCAxIDAgLjkyOEw3LjM1MyA4Ljk5OGw0LjQ1OCA0LjQ4OWMuMTIyLjEyMy4xOS4yODguMTkuNDY0IDAgLjE3Ni0uMDY4LjM0LS4xOS40NjRsLS4zOS4zOTNhLjY0NS42NDUgMCAwIDEtLjQ2Mi4xOTIuNjQ1LjY0NSAwIDAgMS0uNDYtLjE5Mkw1LjE5IDkuNDYzQS42NTUuNjU1IDAgMCAxIDUgOC45OThjMC0uMTc3LjA2Ny0uMzQyLjE5LS40NjZ6Ii8+PC9zdmc+) center center no-repeat;
  transition: all ease .3s;
  opacity: 1;
}

.nav-container button:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNyIgdmlld0JveD0iMCAwIDE3IDE3Ij4gICAgPHBhdGggZmlsbD0iIzAwMCIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNNS4xOSA4LjUzMmw1LjMwMi01LjM0QS42NDUuNjQ1IDAgMCAxIDEwLjk1MyAzYy4xNzUgMCAuMzM5LjA2OC40NjEuMTkybC4zOS4zOTNhLjY2LjY2IDAgMCAxIDAgLjkyOEw3LjM1MyA4Ljk5OGw0LjQ1OCA0LjQ4OWMuMTIyLjEyMy4xOS4yODguMTkuNDY0IDAgLjE3Ni0uMDY4LjM0LS4xOS40NjRsLS4zOS4zOTNhLjY0NS42NDUgMCAwIDEtLjQ2Mi4xOTIuNjQ1LjY0NSAwIDAgMS0uNDYtLjE5Mkw1LjE5IDkuNDYzQS42NTUuNjU1IDAgMCAxIDUgOC45OThjMC0uMTc3LjA2Ny0uMzQyLjE5LS40NjZ6Ii8+PC9zdmc+) center center no-repeat;
  transition: all ease .3s;
  opacity: 0;
}

.nav-container button:hover:before {
  opacity: 0;
}

.nav-container button:hover:after {
  opacity: 1;
}

.nav-container button:hover {
  background: white;
  border: solid 1px white;
}

.category-top {
  padding: 70px 0 0 0;
}

.category-top .row > div {
  margin-bottom: 30px;
}

.category-top .container {
  padding: 0 15px 40px 15px;
  border-bottom: 1px solid #d8d8d8;
}

.category-top__item {
  position: relative;
  border-radius: 6px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  line-height: 0;
  overflow: hidden;
  transition: all ease .3s;
  top: 0;
}

.category-top__item:hover {
  top: -10px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.category-top__item img {
  width: 100%;
  height: 292px;
  object-fit: cover;
}

.category-top__item > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
}

.category-top__item:before {
  content: "";
  background-image: linear-gradient(to right, #000000 100px, rgba(0, 0, 0, 0));
  background-repeat: no-repeat;
  transition: all ease .3s;
  background-position: -100px;
}

.category-top__item:hover:before {
  background-position: -50px;
}

.category-top-info,
.category-top__item:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
}

.category-top-info {
  line-height: 1.4;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.category-top-info a {
  margin-top: auto;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.category-top-descr {
  color: #fff;
  margin-bottom: 20px;
}

.category-top-name {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-filter-close {
  font-size: 28px;
  font-weight: bold;
  padding: 0px 0px 20px 0;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.mobile-filter-close a {
  display: block;
  width: 36px;
  height: 36px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMiIgaGVpZ2h0PSIyMiIgdmlld0JveD0iMCAwIDIyIDIyIj4gICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxwYXRoIGQ9Ik0tNy03aDM2djM2SC03eiIvPiAgICAgICAgPHBhdGggZmlsbD0iIzAwMCIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNLjM5MyAyLjUxNWwxOS4wOTIgMTkuMDkyIDIuMTIyLTIuMTIyTDIuNTE1LjM5My4zOTMgMi41MTV6bTIuMTIyIDE5LjA5MkwyMS42MDcgMi41MTUgMTkuNDg1LjM5My4zOTMgMTkuNDg1bDIuMTIyIDIuMTIyeiIvPiAgICA8L2c+PC9zdmc+) center center no-repeat;
}

.catalog {
  padding: 30px 0 100px 0;
}

.catalog__main-img {
  border-radius: 4px;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.catalog__caption {
  font-weight: 500;
  color: #999;
  display: block;
  margin-bottom: 30px;
}

.catalog__filter ul {
  overflow: hidden;
}

.catalog__filter ul span {
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 5px;
  max-width: calc(100% - 5px);
}

.catalog__filter ul span:before {
  content: "";
  position: absolute;
  left: 0px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  display: block;
  background: red;
  z-index: -1;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all ease-in-out .3s;
}

.catalog__filter ul li {
  position: relative;
}

.catalog__filter ul li input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}

.catalog__filter ul li input[type="checkbox"]:checked + span:before {
  opacity: 1;
}

.catalog__filter ul.level-1 > li {
  border-bottom: 1px solid #d6dbe0;
  margin-bottom: 20px;
}

.catalog__filter ul.level-1 > li:last-of-type {
  border-bottom: none;
}

.catalog__filter a.level-2-toggler {
  font-size: 18px;
  font-weight: bold;
  color: #0a0a0a;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.catalog__filter a.level-2-toggler:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4gICAgPHBhdGggZmlsbD0iIzk5OSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNOC4zOSA1LjE2M2w0LjQ1IDQuNTQ1YS41Ni41NiAwIDAgMSAuMTYuMzk1LjU2LjU2IDAgMCAxLS4xNi4zOTVsLS4zMjcuMzM1YS41NC41NCAwIDAgMS0uNzc0IDBMOC4wMDIgNy4wMTZsLTMuNzQxIDMuODJhLjUzOC41MzggMCAwIDEtLjc3NCAwbC0uMzI3LS4zMzRhLjU2LjU2IDAgMCAxLS4xNi0uMzk1YzAtLjE1LjA1Ny0uMjkuMTYtLjM5NWw0LjQ1NC00LjU1QS41MzguNTM4IDAgMCAxIDguMDAyIDVjLjE0NyAwIC4yODUuMDU4LjM4OC4xNjN6Ii8+PC9zdmc+) center center no-repeat;
  transition: all ease-in-out .3s;
  transform: rotate(180deg);
}

.catalog__filter a.level-2-toggler.toggled:after {
  transform: rotate(0deg);
}

.catalog__filter a.level-2-toggler.toggled + ul.level-2 {
  max-height: 2000px;
  transition: max-height 0.7s ease-in-out;
}

.catalog__filter a.level-3-toggler {
  font-size: 18px;
  font-weight: bold;
  color: #0a0a0a;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.catalog__filter a.level-3-toggler:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4gICAgPHBhdGggZmlsbD0iIzk5OSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNOC4zOSA1LjE2M2w0LjQ1IDQuNTQ1YS41Ni41NiAwIDAgMSAuMTYuMzk1LjU2LjU2IDAgMCAxLS4xNi4zOTVsLS4zMjcuMzM1YS41NC41NCAwIDAgMS0uNzc0IDBMOC4wMDIgNy4wMTZsLTMuNzQxIDMuODJhLjUzOC41MzggMCAwIDEtLjc3NCAwbC0uMzI3LS4zMzRhLjU2LjU2IDAgMCAxLS4xNi0uMzk1YzAtLjE1LjA1Ny0uMjkuMTYtLjM5NWw0LjQ1NC00LjU1QS41MzguNTM4IDAgMCAxIDguMDAyIDVjLjE0NyAwIC4yODUuMDU4LjM4OC4xNjN6Ii8+PC9zdmc+) center center no-repeat;
  transition: all ease-in-out .3s;
  transform: rotate(180deg);
}

.catalog__filter a.level-3-toggler.toggled:after {
  transform: rotate(0deg);
}

.catalog__filter a.level-3-toggler.toggled + ul.level-3 {
  max-height: 2000px;
  transition: max-height 0.7s ease-in-out;
}

.catalog__filter ul.level-2 {
  margin: 0 0 20px 25px;
  box-sizing: border-box;
}

.catalog__filter ul.level-2 > li:first-of-type {
  margin-top: 15px;
}

.catalog__filter ul.level-3 > li:first-of-type {
  margin-top: 5px;
}

.catalog__filter ul.level-2,
.catalog__filter ul.level-3 {
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.catalog__one-line {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.catalog__sort-selected {
  width: 170px;
  margin-left: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 0 20px;
}

.catalog__sort-selected:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4gICAgPHBhdGggZmlsbD0iIzk5OSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNOC4zOSA1LjE2M2w0LjQ1IDQuNTQ1YS41Ni41NiAwIDAgMSAuMTYuMzk1LjU2LjU2IDAgMCAxLS4xNi4zOTVsLS4zMjcuMzM1YS41NC41NCAwIDAgMS0uNzc0IDBMOC4wMDIgNy4wMTZsLTMuNzQxIDMuODJhLjUzOC41MzggMCAwIDEtLjc3NCAwbC0uMzI3LS4zMzRhLjU2LjU2IDAgMCAxLS4xNi0uMzk1YzAtLjE1LjA1Ny0uMjkuMTYtLjM5NWw0LjQ1NC00LjU1QS41MzguNTM4IDAgMCAxIDguMDAyIDVjLjE0NyAwIC4yODUuMDU4LjM4OC4xNjN6Ii8+PC9zdmc+) center center no-repeat;
  z-index: 1;
  transform: rotate(180deg);
}

.catalog__sort-selected.toggled:after {
  transform: rotate(0deg);
}

.catalog__sort {
  position: absolute;
  right: 0;
  top: -12px;
  border-radius: 4px;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  width: 170px;
  opacity: 0;
  pointer-events: none;
}

.catalog__sort a {
  display: block;
  margin: 12px 20px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.catalog__sort-selected.toggled + .catalog__sort {
  opacity: 1;
  pointer-events: all;
}

.catalog__banner {
  height: 170px;
  border-radius: 4px;
  background-image: linear-gradient(to right, #eeeeee, #d8d8d8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 30px;
  margin-bottom: 48px;
}

.catalog__banner-content p:first-of-type {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.09;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.catalog__banner-content p:nth-of-type(2) {
  font-size: 18px;
  line-height: 1.28;
  color: #2d2d2d;
  max-width: 420px;
}

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

.catalog__list-item {
  border: 1px solid #d6dbe0;
  background: #fff;
  height: 100%;
  position: relative;
  transition: all ease .3s;
  top: 0;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0);
  border-radius: 4px;
}

.catalog__list-item:hover {
  top: -5px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #fff;
}

.catalog__list-item a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.catalog__list-item__img {
  position: relative;
  margin-bottom: 13px;
}

.catalog__list-item__img:after {
  content: "";
  display: block;
  padding-bottom: 71%;
}

.catalog__list-item__img img {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  margin-left: -1px;
  margin-top: -1px;
  height: 100%;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.catalog__list-item__title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.36;
  display: inline-block;
  padding: 3px 6px;
  border-radius: 4px;
  background-color: #ffcc00;
  margin-left: 20px;
  max-width: calc(100% - 40px);
}

.catalog__list-item__short {
  padding: 0 20px 20px 20px;
  line-height: 1.5;
}

.catalog__list-detail-page {
  margin-bottom: 70px;
}

.detail {
  padding: 30px 0 85px 0;
}

.detail .row {
  border-bottom: 1px solid #d6dbe0;
  padding-bottom: 50px;
}

.detail .breadcrumbs ul {
  margin-bottom: 70px;
}

.detail__gallery {
  position: relative;
  z-index: 1;
}

.detail__img {
  position: relative;
}

.detail__img:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.detail__img .fancybox {
  position: absolute;
  width: 100%;
  height: 100%;
}

.detail__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail__articul {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.36;
  display: inline-block;
  padding: 3px 6px;
  border-radius: 4px;
  background-color: #ffcc00;
}

.detail__meta {
  margin-bottom: 40px;
}

.detail__meta li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.39;
  margin-right: 30px;
}

.detail__gallery-thumbs {
  position: absolute;
  top: 20px;
  left: 20px;
}

.detail__gallery-thumbs li,
.detail__gallery-thumbs a {
  line-height: 0;
}

.detail__gallery-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  position: relative;
  box-shadow: 0px 0px 0px 3px rgba(255, 204, 0, 0);
}

.detail__gallery-thumbs a.active img {
  box-shadow: 0px 0px 0px 3px #ffcc00;
  z-index: 1;
  border-radius: 4px;
  transition: all ease .3s;
}

.detail__main-info {
  min-height: 100%;
  padding-bottom: 100px;
  position: relative;
}

.detail__text {
  margin-top: 50px;
}

.detail__text p {
  line-height: 1.57;
  color: #000;
  margin-bottom: 20px;
}

.detail__text p strong {
  display: block;
  font-weight: bold;
}

.detail__convertion {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d6dbe0;
  border-bottom: 1px solid #d6dbe0;
  width: calc(100% + 30px);
  margin-left: -30px;
  padding-left: 30px;
  height: 64px;
}

.detail__convertion:before {
  content: "";
  display: block;
  position: absolute;
  border-top: 1px solid #d6dbe0;
  border-bottom: 1px solid #d6dbe0;
  height: 64px;
  width: 1000px;
  left: -1000px;
}

.detail__convertion:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  height: 64px;
  width: 1000px;
  left: -1500px;
}

.detail__convertion div span {
  position: absolute;
  top: -8px;
  left: 20px;
  padding: 0 10px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: #999;
}

.detail__convertion div a {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all ease .3s;
}

.detail__convertion div a:hover {
  opacity: .4;
}

.detail__convertion .button {
  width: 50%;
  border-radius: 0 4px 4px 0;
  height: 64px;
  position: relative;
  top: -1;
}

.detail dl {
  display: flex;
  flex-wrap: wrap;
}

.detail dl dt {
  width: 190px;
  max-width: 190px;
  flex: 0 0 190px;
  color: #999999;
  font-weight: bold;
  margin-bottom: 17px;
  margin-right: 20px;
}

.detail dl dt:last-of-type {
  margin-bottom: 0;
}

.detail dl dd {
  width: calc(100% - 210px);
  max-width: calc(100% - 210px);
  flex: 0 0 calc(100% - 210px);
  line-height: 1.29;
  color: #000;
  margin-bottom: 17px;
}

.detail dl dd:last-of-type {
  margin-bottom: 0;
}

.main-content {
  padding: 70px 0 90px 0;
}

.main-content .content img {
  margin-bottom: 30px;
}

.content img {
  max-width: 100%;
  margin-bottom: 30px;
}

.content p {
  line-height: 1.28;
  margin-bottom: 18px;
  color: #0a0a0a;
}

.textpage {
  padding: 30px 0 100px 0;
}

.textpage h1,
.textpage h2,
.textpage h3,
.textpage h4,
.textpage h5,
.textpage h6 {
  font-weight: bold;
  margin-bottom: 5px;
}

.textpage h1 {
  font-size: 60px;
  line-height: 1.33;
  margin-bottom: 25px;
}

.textpage h2 {
  font-size: 40px;
  line-height: 1.35;
  margin-bottom: 25px;
}

.textpage h3 {
  font-size: 32px;
  line-height: 1.38;
  margin-bottom: 25px;
}

.textpage h4 {
  font-size: 24px;
  line-height: 1.32;
  margin-bottom: 20px;
}

.textpage h5 {
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 15px;
}

.textpage h6 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.textpage .breadcrumbs {
  margin-bottom: 20px;
}

.textpage img {
  max-width: 100%;
  margin-bottom: 20px;
}

.textpage p {
  line-height: 1.43;
  margin-bottom: 20px;
}

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

.textpage ul {
  margin-bottom: 30px;
}

.textpage ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.textpage ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ffcc00;
  position: absolute;
  top: 3px;
  left: 0;
}

.textpage ol {
  counter-reset: myCounter;
}

.textpage ol li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.textpage ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ".";
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

.textpage table {
  margin-bottom: 30px;
  width: 100%;
  border-top: 1px solid #d6dbe0;
}

.textpage table td,
.textpage table th {
  font-size: 16px;
  font-weight: normal;
  padding-top: 17px;
  padding-bottom: 15px;
  color: #44454e;
  min-width: 150px;
  text-align: left;
}

.textpage table th {
  font-weight: bold;
}

.textpage table tr:nth-of-type(even) {
  background-color: #fafbfb;
}

.textpage table td:first-of-type,
.textpage table th:first-of-type {
  padding-left: 15px;
  min-width: 320px;
}

.textpage table td:last-of-type,
.textpage table th:last-of-type {
  padding-right: 35px;
  text-align: right;
}

.textpage .button {
  width: 200px;
}

.breadcrumbs {
  margin-bottom: 30px;
}

.breadcrumbs ul {
  display: flex;
}

.breadcrumbs ul li {
  padding-left: 0;
}

.breadcrumbs ul li:after {
  content: "•";
  margin: 0 15px;
  display: inline-block;
  color: #999999;
  font-weight: bold;
}

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

.breadcrumbs ul li:before {
  display: none;
}

.breadcrumbs ul a {
  color: #999999;
}

blockquote {
  margin: 30px 0 30px 0;
  background: #fafbfb url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNCIgdmlld0JveD0iMCAwIDM2IDM0Ij4gICAgPHBhdGggZmlsbD0iIzAwMCIgZmlsbC1vcGFjaXR5PSIuMSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTUuNSAxLjQ2OHY1Ljk4YzAgLjgxLS42NiAxLjQ2Ny0xLjQ3NSAxLjQ2Ny0yLjkwNyAwLTQuNDg4IDIuOTY4LTQuNzA3IDguODI0aDQuNzA3Yy44MTUgMCAxLjQ3NS42NTggMS40NzUgMS40Njh2MTIuNjI1YzAgLjgxLS42NiAxLjQ2OC0xLjQ3NSAxLjQ2OEgxLjQ3NUExLjQ3MSAxLjQ3MSAwIDAgMSAwIDMxLjgzMlYxOS4yMDdjMC0yLjgwNy4yODQtNS4zODQuODQ0LTcuNjU4LjU3NC0yLjMzMiAxLjQ1Ni00LjM3MiAyLjYxOS02LjA2MSAxLjE5Ny0xLjczNyAyLjY5NS0zLjEgNC40NTEtNC4wNDlDOS42ODIuNDg0IDExLjczOSAwIDE0LjAyNiAwIDE0Ljg0IDAgMTUuNS42NTcgMTUuNSAxLjQ2OHptMTkuMDI1IDcuNDQ3Yy44MTQgMCAxLjQ3NS0uNjU3IDEuNDc1LTEuNDY4VjEuNDY4QzM2IC42NTggMzUuMzQgMCAzNC41MjUgMGMtMi4yODYgMC00LjM0My40ODUtNi4xMSAxLjQ0LTEuNzU3Ljk0OS0zLjI1NiAyLjMxMS00LjQ1MyA0LjA0OC0xLjE2MyAxLjY5LTIuMDQ0IDMuNzI5LTIuNjE5IDYuMDYyLS41NiAyLjI3NS0uODQzIDQuODUxLS44NDMgNy42NTh2MTIuNjI0YzAgLjgxLjY2IDEuNDY4IDEuNDc1IDEuNDY4aDEyLjU1Yy44MTQgMCAxLjQ3NC0uNjU4IDEuNDc0LTEuNDY4VjE5LjIwN2MwLS44MS0uNjYtMS40NjgtMS40NzQtMS40NjhoLTQuNjRjLjIxNi01Ljg1NiAxLjc3NC04LjgyNCA0LjY0LTguODI0eiIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-position: 30px 40px;
  max-width: 830px;
  padding: 32px 30px 28px 96px;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.56;
  letter-spacing: normal;
  color: #44454e;
}

.fancybox {
  overflow: hidden;
  position: relative;
  display: block;
  line-height: 0;
}

.fancybox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all ease .3s;
}

.fancybox:hover:after {
  opacity: 1;
}

.fancybox img {
  margin-bottom: 0px;
  line-height: 0;
  width: 100%;
  transition: all ease .3s;
}

.fancybox:hover img {
  transform: scale(1.1);
}

.content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.content-block p {
  font-size: 18px;
  line-height: 1.5;
}

.content-block p.heading {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.content-block-img img {
  margin-bottom: 0;
}

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

.news-item {
  border: 1px solid #e9e9e9;
  background: #fff;
  height: 100%;
  position: relative;
  transition: all ease .3s;
  top: 0;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0);
}

.news-item:hover {
  top: -5px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
}

.news-item a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.news-item__img {
  position: relative;
  margin-bottom: 13px;
}

.news-item__img:after {
  content: "";
  display: block;
  padding-bottom: 65%;
}

.news-item__img img {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  margin-left: -1px;
  margin-top: -1px;
  height: 100%;
  object-fit: cover;
}

.news-item__title {
  padding: 0 20px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.39;
}

.news-item__short {
  padding: 0 20px 20px 20px;
  line-height: 1.5;
}

.contacts {
  padding: 60px 0 30px 0;
  color: #000;
}

.contacts__address {
  margin-bottom: 60px;
}

.contacts__address span {
  white-space: nowrap;
}

.contacts__address p:first-of-type {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contacts__address p:nth-of-type(2) {
  font-size: 30px;
  font-weight: bold;
}

.contacts__item {
  margin-bottom: 70px;
}

.contacts__item p strong {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.contacts__item p a {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  transition: all ease .3s;
  white-space: nowrap;
}

.contacts__item p a:hover {
  opacity: .3;
}

.contacts__item p:nth-of-type(3),
.contacts__item p:nth-of-type(5),
.contacts__item p:nth-of-type(7) {
  margin-bottom: 20px;
}

@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 (min-width: 1200px) {
  .container {
    max-width: 1210px;
  }

  .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 (max-width: 1536px) {
  .main-carousel__content p {
    font-size: 45px;
    line-height: 1.15;
    margin-bottom: 80px;
  }
}

@media (max-width: 1200px) {
  .button.button-white {
    width: 208px;
  }

  .header__bottom ul a {
    white-space: normal;
    padding: 0 15px;
  }

  .main-carousel__content p {
    font-size: 60px;
    margin-bottom: 0px;
    line-height: 1.33;
  }

  .detail__convertion:after {
    left: -1600px;
  }
}

@media only screen and (max-width: 1200px) {
  .contact-form {
    padding: 40px 40px;
  }

  .modal .contact-form {
    padding: 40px 70px;
  }
}

@media (max-width: 991px) {
  header .button {
    width: 130px;
    height: 50px;
  }

  footer .button {
    margin-bottom: 30px;
    width: 206px;
  }

  .header__logo {
    margin-right: 35px;
  }

  .header__logo img {
    width: 206px;
  }

  .header__contacts {
    align-items: center;
  }

  .header__contacts > div:first-of-type {
    margin-right: 20px;
  }

  .header__contacts-item {
    width: auto;
  }

  .header__contacts-item p {
    font-size: 15px;
  }

  .header__contacts-item a {
    font-size: 16px;
  }

  .header__bottom ul a {
    padding: 0 5px;
  }

  footer {
    padding: 80px 0 30px 0;
  }

  footer nav ul:first-of-type {
    margin-right: 50px;
  }

  footer nav ul {
    margin-top: 11px;
  }

  .footer__logo {
    width: 100%;
  }

  .footer__logo {
    width: 268px;
    display: block;
    margin: 0 auto 20px auto;
  }

  .main-carousel__content p {
    font-size: 50px;
    letter-spacing: -1.14px;
  }

  .thumbs-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
  }

  .category-top .container {
    border-bottom: 0;
    padding: 0 15px 0 15px;
  }

  .catalog__filter ul.level-2 {
    margin: 0 0 20px 0px;
  }

  .catalog__banner {
    display: block;
    padding: 30px;
    height: auto;
  }

  .catalog__banner-content p:nth-of-type(2) {
    margin-bottom: 15px;
  }

  .catalog__list-detail-page {
    margin-bottom: 30px;
  }

  .catalog__list-detail-page .container-padding {
    width: calc(1185px + (100vw - 720px) / 2);
    padding-right: calc((100vw - 720px) / 2);
  }

  .catalog__list-detail-page .row {
    width: 1210px;
  }

  .catalog__list-detail-page .one-line .button {
    display: none;
  }

  .dragscroll {
    cursor: grab;
    overflow-x: auto;
  }

  .dragscroll::-webkit-scrollbar {
    display: none;
  }

  .detail__gallery {
    margin-bottom: 20px;
  }

  .detail__convertion .button {
    width: 270px;
  }

  .main-content {
    padding-top: 15px;
  }

  .textpage h1 {
    font-size: 50px;
  }

  .textpage h2 {
    font-size: 36px;
  }

  .textpage h3 {
    font-size: 28px;
  }

  .news {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-form {
    padding: 40px 70px;
  }

  .mobile-menu .header__contacts > div:first-of-type {
    margin: 30px 0 20px 0;
  }

  .contacts__address {
    padding-left: 70px;
  }

  .contacts__item {
    padding-left: 70px;
  }
}

@media (max-width: 991px) and (max-width: 565px) {
  .catalog__list-detail-page .container-padding {
    width: auto;
    padding-right: 0;
  }

  .catalog__list-detail-page .row {
    width: 565px;
    padding-top: 7px;
    margin-right: -7px;
    margin-left: -7px;
  }

  .catalog__list-detail-page .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 767px) {
  .content .heading,
  .heading {
    font-size: 24px;
    line-height: 1.38;
    margin-bottom: 20px;
  }

  .catalog h1 {
    font-size: 28px;
  }

  .detail h1 {
    line-height: 1.4;
    font-size: 20px;
  }

  footer .button {
    font-size: 16px;
    width: 165px;
  }

  .load-more {
    margin: -10px auto 0 auto;
  }

  .subscribe-form {
    height: 520px;
  }

  .subscribe-form p:first-of-type {
    font-size: 24px;
  }

  .subscribe-form p:nth-of-type(2) {
    margin-bottom: 70px;
  }

  .subscribe-form form {
    display: block;
  }

  .subscribe-form form input[type="text"] {
    width: 510px;
    border-radius: 4px 4px 0 0;
  }

  .subscribe-form form .button {
    width: 510px;
    border-radius: 0 0 4px 4px;
  }

  .subscribe-form .policy {
    width: 510px;
  }

  .subscribe-form .policy a {
    font-size: 14px;
    text-align: left;
  }

  header {
    background: transparent;
  }

  .compensate-for-scrollbar {
    width: 100%;
  }

  .header__logo img {
    width: 130px;
  }

  .header__top {
    display: none;
  }

  .header__middle {
    margin: 12px 0;
  }

  .header__contacts {
    display: none;
  }

  .header__bottom {
    background: transparent;
  }

  .header__bottom ul {
    height: 0;
  }

  footer {
    text-align: center;
    padding: 70px 0 30px 0;
  }

  footer nav {
    display: block;
  }

  footer nav ul:first-of-type {
    margin: 50px 0;
  }

  .main-carousel__content p {
    font-size: 28px;
    letter-spacing: -0.64px;
    margin-bottom: 120px;
  }

  .main-carousel .owl-dots {
    bottom: 240px;
  }

  .thumbs-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
  }

  .thumbs-carousel.owl-carousel .owl-item {
    padding-right: 0px;
    border-left: 0;
  }

  .thumbs-carousel.owl-carousel .owl-item p {
    font-size: 16px;
    line-height: 1.56;
  }

  .nav-container {
    display: none;
  }

  .category-top {
    padding: 50px 0 0 0;
  }

  .mobile-filter-close {
    display: flex;
  }

  .catalog {
    padding: 30px 0 50px 0;
    overflow-x: hidden;
  }

  .catalog aside .catalog__filter {
    display: none;
  }

  .catalog aside .catalog__caption {
    width: 50%;
    display: inline-flex;
    height: 50px;
    color: #000;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6dbe0;
  }

  .catalog aside .catalog__caption.toggled + .catalog__filter {
    display: block;
    position: absolute;
    background: #fff;
    top: -110px;
    z-index: 2;
    width: calc(100% - 30px);
  }

  .catalog aside .catalog__caption.toggled + .catalog__filter .level-1 {
    height: calc(100vh - 140px);
    overflow-y: scroll;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .catalog .catalog__one-line {
    display: block;
  }

  .catalog .catalog__one-line .catalog__caption {
    width: 50%;
    display: inline-flex;
    height: 50px;
    color: #000;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6dbe0;
    margin-top: -80px;
    float: right;
    border-left: 0;
    position: relative;
    z-index: 1;
    pointer-events: none;
  }

  .catalog .catalog__one-line .catalog__caption.no-border {
    border: 1px solid #fff;
  }

  .catalog .catalog__one-line .catalog__sort-selected {
    float: right;
    margin-top: -63px;
    text-indent: -99999px;
    width: 50%;
  }

  .catalog .catalog__one-line .catalog__sort {
    width: 50%;
    margin-top: -68px;
    border-radius: 0;
    padding-top: 35px;
  }

  .catalog .catalog__one-line .catalog__sort a {
    margin: 20px 20px;
  }

  .catalog__main-img {
    display: none;
  }

  .catalog__banner {
    padding: 30px 15px 15px 15px;
    text-align: center;
    margin-bottom: 30px;
  }

  .catalog__banner-content p:first-of-type {
    text-align: center;
    font-size: 24px;
    line-height: 1.46;
    margin-bottom: 5px;
  }

  .catalog__banner-content p:nth-of-type(2) {
    text-align: center;
    font-size: 14px;
    line-height: 1.64;
    padding: 0 40px;
    margin-bottom: 5px;
    max-width: none;
  }

  .catalog__list-item__title {
    font-size: 10px;
    margin-left: 10px;
    max-width: calc(100% - 20px);
  }

  .catalog__list-item__short {
    padding: 0 10px 10px 10px;
    font-size: 11px;
  }

  .catalog__list-detail-page .one-line {
    margin-bottom: 20px;
  }

  .detail {
    padding-bottom: 20px;
  }

  .detail .row {
    padding-bottom: 0px;
  }

  .detail .breadcrumbs ul {
    margin-bottom: 30px;
  }

  .detail__meta {
    display: flex;
    flex-wrap: wrap;
  }

  .detail__meta li {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 10px;
    margin-right: 0px;
  }

  .detail__main-info {
    padding-bottom: 30px;
  }

  .detail__text {
    margin-top: 0px;
  }

  .detail__convertion {
    display: block;
    border-bottom: none;
    height: auto;
    position: relative;
    margin-top: 30px;
    width: calc(100% + 60px);
    text-align: center;
    padding-left: 0px;
  }

  .detail__convertion:before {
    display: none;
  }

  .detail__convertion:after {
    display: none;
  }

  .detail__convertion div {
    text-align: center;
  }

  .detail__convertion div a {
    display: inline-block;
    margin: 20px auto 30px auto;
  }

  .detail__convertion .button {
    border-radius: 4px;
    width: 290px;
  }

  .detail dl dt {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 10px;
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .detail dl dd {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .main-content {
    padding-bottom: 15px;
  }

  .textpage h1 {
    font-size: 28px;
  }

  .textpage h2 {
    font-size: 24px;
  }

  .textpage h3 {
    font-size: 20px;
  }

  .textpage h4 {
    font-size: 18px;
  }

  .textpage h5 {
    font-size: 16px;
  }

  .textpage h6 {
    font-size: 14px;
  }

  .textpage img {
    margin-bottom: 10px;
  }

  .textpage p {
    margin-bottom: 10px;
  }

  .textpage .row > div {
    margin-bottom: 10px;
  }

  .textpage table td,
  .textpage table th {
    font-size: 12px;
    min-width: auto;
  }

  .textpage table td:first-of-type,
  .textpage table th:first-of-type {
    min-width: auto;
  }

  .textpage table td:last-of-type,
  .textpage table th:last-of-type {
    padding-right: 15px;
  }

  blockquote {
    padding: 20px 20px 20px 76px;
    background-position: 20px 27px;
    font-size: 16px;
    line-height: 1.63;
  }

  .content-block {
    padding-bottom: 30px;
  }

  .content-block p.heading {
    font-size: 20px;
  }

  .news {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .policy input[type="checkbox"] + label {
    margin-bottom: 15px;
    font-size: 0.8667rem;
  }

  .policy input[type="checkbox"] + label:before {
    margin-right: 7px;
  }

  .modal .contact-form {
    padding: 20px 15px;
  }

  input[type="radio"] + label {
    margin-bottom: 15px;
    font-size: 0.8667rem;
  }

  input[type="radio"] + label:before {
    margin-right: 7px;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu .header__top {
    display: flex;
  }

  .mobile-menu .header__bottom ul {
    height: auto;
  }

  .mobile-menu .header__contacts {
    display: block;
  }

  .contacts {
    padding: 30px 0;
  }

  .contacts__address {
    padding-left: 0px;
    margin-bottom: 30px;
  }

  .contacts__address p:first-of-type {
    font-size: 14px;
  }

  .contacts__address p:nth-of-type(2) {
    font-size: 20px;
    line-height: 1.4;
  }

  .contacts__item {
    padding-left: 0px;
    margin-bottom: 30px;
  }

  .contacts__item p {
    font-size: 12px;
  }

  .contacts__item p strong {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contacts__item p a {
    font-size: 20px;
    line-height: 1.4;
  }

  .contacts__item p:nth-of-type(3),
  .contacts__item p:nth-of-type(5),
  .contacts__item p:nth-of-type(7) {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) and (max-width: 565px) {
  .catalog aside .catalog__caption {
    width: calc(50% + 16px);
    margin-left: -16px;
  }

  .catalog aside .catalog__caption.toggled + .catalog__filter {
    width: 100%;
    margin-left: -15px;
    padding: 0 15px;
  }

  .catalog .catalog__one-line .catalog__caption {
    width: calc(50% + 16px);
    margin-right: -16px;
    padding-right: 40px;
  }

  .catalog .catalog__one-line .catalog__sort-selected {
    width: calc(50% + 16px);
    margin-right: -16px;
  }

  .catalog .catalog__one-line .catalog__sort {
    width: calc(50% + 16px);
    margin-right: -16px;
  }
}

@media (max-width: 767px) and (max-width: 320px) {
  .catalog .catalog__one-line .catalog__caption {
    padding-right: 20px;
  }
}

@media (max-width: 565px) {
  .button.button-white.mobile-button {
    width: calc(100% - 30px);
  }

  .subscribe-form form input[type="text"] {
    width: calc(100% - 30px);
  }

  .subscribe-form form .button {
    width: calc(100% - 30px);
  }

  .subscribe-form .policy {
    width: calc(100% - 30px);
  }

  .catalog__banner {
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }

  .catalog__banner .button {
    width: 100%;
  }

  .detail__gallery {
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .detail__convertion {
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .detail__convertion div span {
    left: 5px;
  }
}

@media only screen and (max-width: 565px) {
  .contact-form {
    padding: 40px 15px;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }

  .contact-form p:first-of-type {
    font-size: 20px;
  }

  .contact-form p:nth-of-type(2) {
    margin-bottom: 20px;
  }

  .contact-form input[type="text"],
  .contact-form textarea {
    padding: 0 22px;
  }

  .contact-form textarea {
    padding: 22px;
  }

  .modal .contact-form {
    width: 100%;
    margin: 0;
    border-radius: 6px;
  }

  .contacts {
    padding: 30px 0 0 0;
  }
}

@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;
  }
}