* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

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

body {
  font: 18px/24px 'PT Sans', Arial, sans-serif;
  height: 100%;
  color: #282828;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  min-height: 100%;
  height: auto !important;
  height: 100%;
}

.layout {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1280px;
  min-width: 980px;
}

.layout-fluid {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.layout__table {
  display: table;
  margin: 0;
  padding: 0;
  min-width: 100%;
}

.clr:before, .clr:after, .layout:before, .layout:after, .layout-fluid:before, .layout-fluid:after, .section:before, .section:after, nav:before, nav:after {
  content: " ";
  display: table;
}

.clr:after, .layout:after, .layout-fluid:after, .section:after, nav:after {
  clear: both;
}

/* Style */

a, .link {
  color: #e3000f;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

a:hover, .link:hover {
  color: #B00000;
}

.dashed {
  border-bottom: 1px dashed;
}

ul, ol {
  list-style-type: none;
}

.ul-style li {
  position: relative;
  text-align: left;
}

.ul-style_default {
  list-style-type: disc;
}

.ul-style_default li {
  margin-bottom: 14px;
}

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

.ul-style_2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.ul-style_check li {
  padding: 7px 0 0 35px;
}

.ul-style_check li:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 26px;
  height: 26px;
  background: url('../img/check.png') no-repeat;
}

.wide {
  width: 100%;
}

img {
  font: 0/0 a;
  border: 0;
}

/* Text */

.text-strong {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

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

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

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

.text-orange {
  color: #ed2f04;
}

/* Icon */

.icon {
  display: inline-block;
  vertical-align: top;
}

.icon_arrow-prev {
  background: url('../img/arrow-prev.png') no-repeat;
  width: 46px;
  height: 46px;
}

.icon_arrow-next {
  background: url('../img/arrow-next.png') no-repeat;
  width: 46px;
  height: 46px;
}

.icon_arrow-next-white:before, .icon_arrow-prev-white:before {
  content: '';
  position: absolute;
  background: #fff;
  width: 32px;
  height: 24px;
  left: 50%;
  margin-left: -16px;
  top: 50%;
  margin-top: -12px;
  z-index: -1;
}

.icon_arrow-next-white:hover:before, .icon_arrow-prev-white:hover:before {
  background: #ed2f04;
}

/* Form */

button, input, optgroup, select, textarea {
  position: relative;
  color: inherit;
  font: inherit;
  margin: 0;
  border: 0;
  outline: none;
}

button, input[type=button], input[type=submit], input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}

label {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  color: #434343;
}

.input, .textarea, .select {
  background: #fff;
  display: block;
  border: solid 1px #dfe1e7;
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 17px;
}

.input, .select {
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
}

.input_without-border {
  border-color: transparent;
}

.input_radius {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

.textarea {
  padding: 5px 10px;
  resize: none;
  min-height: 70px;
}

.select {
  padding-right: 30px;
  color: #999;
  font-size: 16px;
  -webkit-appearance: none;
  background: #fff url('../img/arrow-select.png') 100% 50% no-repeat;
}

::-webkit-input-placeholder {
  color: #999;
  font-size: 16px;
  line-height: 20px;
}

::-moz-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

.input.error {
  background: #ffd4d4;
}

.input.error::-webkit-input-placeholder {
  color: #ff1e1e;
}

.input.error::-moz-placeholder {
  color: #ff1e1e;
}

.input.error:-moz-placeholder {
  color: #ff1e1e;
}

.input.error:-ms-input-placeholder {
  color: #ff1e1e;
}

.form-block {
  display: block;
}

.form-block__row_inline {
  font-size: 0;
}

.form-block__row {
  margin-bottom: 10px;
}

.form-block__row:last-child {
  margin-bottom: 0;
}

.form-block__cell {
  position: relative;
  margin-bottom: 15px;
}

.form-block__cell:last-child {
  margin-bottom: 0;
}

.form-block__cell_hidden {
  display: none!important;
}

.form-block__row_inline .form-block__cell {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 2%;
  margin-bottom: 0;
}

.form-block__row_inline .form-block__cell:last-child {
  margin-right: 0;
}

.form-block__row_inline-3 .form-block__cell {
  width: 32%;
  margin-right: 2%;
}

.form-block__row_inline-2 .form-block__cell {
  width: 49%;
  margin-right: 2%;
}

.form-brand-order, .form-product-order, .form-feedback {
  max-width: 800px;
  margin: 0 auto;
}

/* Checkbox */

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.checkbox__custom {
  position: relative;
  float: left;
  cursor: pointer;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #BABABA;
  background: #fff;
}

.checkbox__label {
  cursor: pointer;
  position: relative;
  top: -1px;
  line-height: 20px;
  display: block;
  padding-left: 23px;
}

.checkbox__input:checked+.checkbox__custom:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  transition: all .2s;
}

.checkbox__input:checked+.checkbox__custom {
  background: #218b02;
  border-color: transparent;
}

.checkbox_radio .checkbox__custom, .checkbox_radio .checkbox__input:checked+.checkbox__custom:before {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

/* Table */

table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

.table td, .table th {
  padding: 15px 20px;
  background: #fff;
  vertical-align: top;
}

.table th {
  font-weight: normal;
  padding: 10px 20px;
  color: #8d8d8d;
  text-align: left;
}

.table tr:nth-child(2n+1) td {
  background: #f5f5f7;
}

/* Button */

.button {
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  padding: 6px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: transparent;
  color: #323435;
  border: 0;
  font-size: 17px;
  font-weight: bold;
  text-shadow: none;
}

.button_radius {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

.button_default {
  color: #fff;
  background: #0a0ab1;
}

.button_default:hover {
  background: #f23838;
}

.button_default:active {
  background: #ae2121;
}

.button_orange {
  color: #fff;
  background: #fb5b39;
}

.button_orange:hover {
  background: #f23838;
  color: #fff;
}

.button_orange:active {
  background: #ae2121;
}

/* Menu */

.menu {
  margin-bottom: 40px;
}

.menu_center {
  text-align: center;
}

.menu__link {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: bold;
  color: #2c2a61;
  background: #e5e5ed;
  margin: 5px;
  padding: 1px 16px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.menu__link:hover {
  color: #ed2f04;
  background: #eddfdf;
}

.menu__link.active, .menu__link.active:hover {
  background: #0a0ab1;
  color: #fff;
  cursor: default;
}

/* Tab content */

.tab-content {
  display: none;
}

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

/* Header */

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
}

.header__top {
  padding: 20px 0;
}

.header__top .layout__table {
  padding: 0 30px;
}

.header__logo, .header__middle, .header__contacts {
  display: table-cell;
  vertical-align: middle;
}

.header__logo {
  position: relative;
  white-space: nowrap;
}

.header__logo-link {
  display: inline-block;
  vertical-align: middle;
}

.header__logo img {
  display: block;
}

.header__logo-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 15px;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #6c6c6c;
  color: #ccc;
}

.header__middle {
  width: 100%;
}

.header__contacts {
  white-space: nowrap;
}

.header__phone {
  font-size: 21px;
  line-height: 25px;
  font-weight: bold;
  color: #fff;
}

.header__phone .icon {
  vertical-align: middle;
}

.header__phone-number {
  vertical-align: middle;
  margin-left: 10px;
}

.header__nav.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #383d45;
  -webkit-box-shadow: 0 1px 5px rgba(87, 87, 87, 0.136);
  -moz-box-shadow: 0 1px 5px rgba(87, 87, 87, 0.136);
  box-shadow: 0 1px 5px rgba(87, 87, 87, 0.136);
}

.menu-head {
  background: #fff;
  padding-left: 30px;
}

.header__nav.fixed .menu-head {
  background: #383d45;
  padding: 0;
}

.menu-head__item {
  position: relative;
  display: inline-block;
  margin-right: 2%;
}

@media screen and (max-width: 1100px) {
  .menu-head__item {
    margin-right: 1%;
  }
}

.menu-head__item_consultant {
  position: relative;
  float: right;
  margin: 0;
}

.menu-head__item_consultant .menu-head__link {
  color: #fff;
  background: #39a34c;
  padding: 11px 30px 8px;
  font-size: 15px;
  line-height: 25px;
}

.menu-head__item_consultant .menu-head__link:hover {
  color: #c6edcd;
}

.menu-head__link {
  position: relative;
  display: block;
  color: #74625a;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 11px 0 8px;
  cursor: pointer;
}

.menu-head__link:hover {
  color: #999;
}

.menu-head__link_active, .menu-head__link_active:hover {
  border-color: #ed2f04;
  color: #ed2f04;
}

.header__nav.fixed .menu-head__link {
  color: #fff;
}

/* Content */

.content {
  padding: 0 0 112px;
}

.page-content p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-content ul {
  margin-bottom: 15px;
  margin-left: 20px;
  font-size: 16px;
}

.section {
  position: relative;
  padding: 70px 0;
}

.section__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.section__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
}

.title-block {
  position: relative;
  text-align: center;
  z-index: 20;
}

.title-block:last-child {
  margin-bottom: 0;
}

.title-block__name {
  font-size: 40px;
  line-height: 55px;
  font-weight: bold;
}

/*.title-block__name:after {
  content: '';
  display: block;
  background: #ed2f04;
  height: 2px;
  width: 110px;
  margin: 20px auto 0;
}*/

.title-block__desc {
  margin-top: 30px;
}

.content-block {
  margin-top: 60px;
}

.section-header {
  padding: 0;
}

.section-brands {
  padding-bottom: 0;
}

.section-panel, .section-404, .section-agreement {
  padding: 0 0 70px;
}

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

.section-page {
  padding-top: 190px;
}

.section-page .title-block {
  color: #fff;
}

.section-page .section__img {
  background-image: url('../img/banner-main.jpg');
}

.banner-header {
  height: 610px;
}

.banner-header__item {
  padding-top: 70px;
}

.banner-header__item .layout {
  height: 540px;
}

.banner-header__content {
  position: relative;
  float: left;
  width: 60%;
  padding-top: 120px;
  z-index: 10;
}

.banner-header__cover {
  position: absolute;
  right: 60px;
  bottom: -90px;
  width: 65%;
  height: 540px;
}

.banner-header__cover img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
}

.banner-header__title, .banner-header__title h1 {
  font-size: 80px;
  line-height: 90px;
  font-weight: bold;
  color: #fff;
  text-shadow: 3px 3px rgba(48, 48, 48, 0.65);
}

.banner-header__note {
  margin-top: 40px;
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px rgba(48, 48, 48, 0.65);
}

.banner-header__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: 0 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.banner-header__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
}

.banner-header__nav .owl-prev, .banner-header__nav .owl-next {
  position: absolute;
  bottom: 50px;
  z-index: 1;
  cursor: pointer;
}

.banner-header__nav .owl-next {
  left: 100px;
}

.section-advantages {
  padding-top: 90px;
  overflow: hidden;
}

.section-advantages__img {
  position: absolute;
  bottom: -50px;
  right: 50%;
  width: 841px;
  height: 552px;
  background: url('../img/bg-advantages.jpg') no-repeat;
}

.advantages-list {
  position: relative;
  counter-reset: li;
  top: -20px;
  width: 95%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.97);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  z-index: 11;
  font-size: 0;
}

.advantages-list__item {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  min-height: 57px;
  padding: 5px 70px 0 70px;
  margin-bottom: 22px;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.advantages-list__item:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  width: 57px;
  height: 57px;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  color: #fb5b39;
  transition: all .3s ease-out;
  background: url('../img/bg-circle.png') no-repeat;
}

.advantages-list__item:last-child {
  margin-bottom: 0;
}

.brands-slider__list {
  padding: 0 70px;
  margin-top: -32px;
}

.brands-slider__list.owl-carousel .owl-item {
  padding-bottom: 20px;
}

.brands-slider__item {
  position: relative;
  cursor: pointer;
  text-align: center;
}

.brands-slider__item.active .brands-slider__content {
  border-color: #ed2f04;
}

.brands-slider__item.active:before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -13px;
  border: 12px solid transparent;
  border-bottom: 14px solid #ed2f04;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}

.brands-slider__cover {
  position: relative;
  bottom: -32px;
  padding: 0 5px;
  display: inline-block;
  background: #fff;
}

.brands-slider__logo {
  display: block;
  margin: 0 auto;
  max-height: 50px;
  height: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.brands-slider__content {
  padding: 30px 0 10px;
  border: 2px solid #ededed;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.brands-slider__type {
  font-size: 18px;
  font-weight: bold;
  color: #585858;
}

.brands-slider__use {
  font-size: 13px;
  font-weight: bold;
  color: #848484;
}

.brands-block {
  position: relative;
  margin-top: 50px;
  background: #f5f4f4;
  overflow: hidden;
  -webkit-border-top-left-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  -moz-border-radius-topleft: 30px;
  -moz-border-radius-topright: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.brands-block__title {
  position: relative;
  padding: 40px;
  text-align: center;
  z-index: 1;
}

.brands-block__title-name {
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: bold;
}

.brands-block__title-desc {
  margin: 25px auto 0;
  font-size: 16px;
  line-height: 22px;
  width: 80%;
}

.menu-brands {
  position: relative;
  padding: 0 40px;
  z-index: 1;
}

.brands-block__content {
  position: relative;
  padding: 0 40px 40px 45%;
}

.brands-block__img {
  position: absolute;
  top: 50%;
  right: 55%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
}

.brands-block__img_nanothermal {
  top: 40%;
  right: 45%;
}

.brands-block__img_oasis {
  top: 40%;
  right: 35%;
}

.brands-block__img_gulfstream {
  top: 46%;
  right: 34%;
}

.brands-block__img_menred {
  top: 40%;
  right: 40%;
}

.brands-features {
  position: relative;
  padding: 30px 0 30px 50px;
  background: rgba(245, 243, 244, 0.8);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.brands-features__item {
  margin-bottom: 20px;
}

.brands-features__item:last-child {
  margin-bottom: 0;
}

.brands-features__title {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.brands-features__title:before {
  content: '';
  position: absolute;
  top: 7px;
  left: -17px;
  width: 8px;
  height: 8px;
  background: #ed2f04;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.brands-features__content {
  font-size: 16px;
  line-height: 22px;
}

.brands-order {
  padding: 40px 0;
  background: #2a2a5f;
  border-top: 3px solid #7575a3;
  -webkit-border-bottom-right-radius: 30px;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-radius-bottomright: 30px;
  -moz-border-radius-bottomleft: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.section-selection {
  padding-bottom: 0;
}

.section-selection__side {
  float: right;
  width: 10%;
}

.section-selection__content {
  float: left;
  width: 90%;
  padding-right: 30px;
}

.section-selection .section__img {
  background-image: url('../img/bg-selection.jpg');
}

.section-selection .title-block {
  color: #fff;
}

.section-selection .title-block__desc {
  color: #a9a7a5;
}

.section-selection .title-block__desc .ul-style {
  margin-top: 30px;
}

.section-selection .title-block__desc .ul-style li {
  margin: 0 10px;
  display: inline-block;
}

.form-selection {
  padding: 30px;
  background: #f5f3f4;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.form-selection .form-block__row_inline label {
  position: absolute;
  width: 70px;
  top: 3px;
  left: 0;
  line-height: 16px;
}

.form-selection .form-block__row_inline .form-block__cell {
  padding-left: 90px;
}

.form-selection .form-block__cell_space .input-text {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #999;
}

.form-selection .form-block__cell_space .input {
  padding-right: 32px;
}

.form-selection .form-block__cell_covering label {
  padding-left: 10px;
}

.selection-block {
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
  -moz-box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
  box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
}

.selection-block__welcome, .selection-block__empty {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  min-height: 300px;
  padding: 50px 100px;
  font-size: 15px;
}

.selection-block__welcome h4 {
  margin-bottom: 15px;
}

.selection-block__welcome, .selection-block__empty, .selection-block__products {
  display: none;
}

.selection-block__welcome.active, .selection-block__empty.active {
  display: flex;
}

.selection-block__products.active {
  display: block;
}

.button-product {
  font-size: 14px;
  padding: 1px 10px;
  margin-top: 10px;
}

.product.active .button-product {
  background: #f23838;
}

.selection-block__products {
  padding: 20px 30px 30px;
}

.selection-block__products-item {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.selection-block__products-item:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.selection-block__products-category {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.basket {
  /*display: none;*/
  position: relative;
  background: #fff;
  height: 64px;
  width: 70px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
  -moz-box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
  box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
  cursor: pointer;
}

.basket__quantity {
  position: absolute;
  top: 6px;
  right: -12px;
  background: #f65b3b;
  color: #fff;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.cart-block .products-order {
  margin: 40px -40px -40px;
  background: #2a2a5f;
}

.cart-block__products.active, .cart-block__empty.active {
  display: block;
}

.cart-block__empty, .cart-block__products {
  display: none;
}

.product {
  position: relative;
  background: #fff;
}

.product__cover {
  max-width: 100px;
  height: 100px;
  position: relative;
}

.product__cover-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: 0 100%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.product__content {
  padding: 10px 0 0;
}

.product__title {
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
}

.product__price {
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  color: #ed2f04;
}

.product__desc {
  font-size: 13px;
  line-height: 16px;
  margin-top: 5px;
  color: #9f9f9f;
}

.product-slider .owl-prev {
  left: -55px!important;
}

.product-slider .owl-next {
  right: -55px!important;
}

.products-order {
  position: relative;
  text-align: center;
  margin-top: 40px;
  padding: 40px 0 40px;
  border-top: 1px solid #363636;
  background: rgba(56, 56, 56, 0.45);
}

.products-order__text {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  padding: 7px 25px;
  background: #39a34c;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

.section-company {
  padding-bottom: 0;
}

.section-company .section__img {
  background-image: url('../img/bg-company.jpg');
}

.section-company .title-block {
  color: #fff;
}

.company-indicators {
  font-size: 0;
  text-align: center;
}

.company-indicators__item {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 33.3333%;
  padding: 0 60px;
  white-space: nowrap;
}

.company-indicators__title {
  color: #fb5b39;
  font-size: 65px;
  line-height: 90px;
  font-weight: bold;
}

.company-indicators__title span {
  font-size: 24px;
  line-height: 30px;
}

.company-indicators__desc {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  color: #fff;
}

.company-advantages {
  position: relative;
  top: 80px;
  font-size: 0;
  background: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 60px;
  -webkit-box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
  -moz-box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
  box-shadow: 0 3px 68px 0 rgb(50, 50, 63);
  z-index: 11;
}

.company-advantages__item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 33.3333%;
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
}

.company-advantages__item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -29px;
}

.company-advantages__item_delivery {
  padding-left: 66px;
}

.company-advantages__item_delivery:before {
  background: url('../img/icon-delivery.png') no-repeat;
  width: 46px;
  height: 58px;
}

.company-advantages__item_partners {
  padding-left: 96px;
}

.company-advantages__item_partners:before {
  background: url('../img/icon-partners.png') no-repeat;
  width: 76px;
  height: 58px;
}

.company-advantages__item_manufacture {
  padding-left: 76px;
}

.company-advantages__item_manufacture:before {
  background: url('../img/icon-manufacture.png') no-repeat;
  width: 56px;
  height: 58px;
}

.section-order {
  position: relative;
  padding: 140px 0 40px;
  background: #2a2a5f;
  border-top: 4px solid #fff;
}

.form-order {
  width: 900px;
  margin: 0 auto;
}

.block-agreement {
  margin-top: 30px;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  opacity: .8;
}

.block-agreement a {
  color: #efba9a;
}

.profit-list {
  position: relative;
  counter-reset: li;
  font-size: 0;
}

.profit-list__item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
  min-height: 57px;
  padding: 0 0 0 75px;
}

.profit-list__item:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  width: 57px;
  height: 57px;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  color: #fb5b39;
  transition: all .3s ease-out;
  background: url('../img/bg-circle.png') no-repeat;
}

.profit-list__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.profit-list__desc {
  font-size: 16px;
  line-height: 22px;
}

.section-reviews {
  /* background: #f5f4f4; */
}

.reviews-slider {
  padding: 0 70px;
}

.reviews-slider__item {
  text-align: center;
  padding: 5px;
}

.reviews-slider__item img {
  width: 150px;
  border: 2px solid #676f7b;
  box-shadow: 0 0 4px #a5a5a5;
  margin: 0 auto;
}

.reviews-slider__item img:hover {
  border-color: #fb5b39;
}

.video-slider {
  padding: 0 70px;
}

.video-slider .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 374px;
}

.video-slider__item {
  height: 444px;
  padding-bottom: 70px;
}

.video-slider__title {
  display: none;
  text-align: center;
  min-height: 70px;
  padding: 15px 20px 0;
  font-size: 18px;
}

.video-slider .owl-item.active.center .video-slider__title {
  display: block;
}

.video-slider__item .owl-video-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 11;
}

.video-slider .owl-item.active.center .video-slider__item .owl-video-wrapper:before {
  content: none;
}

.section-instructions {
  background: #f5f4f4;
}

.instructions-slider {
  padding: 0 70px;
}

.instruction-block {
  position: relative;
  background: #fff;
  color: #000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}

.instruction-block:hover {
  color: #B00000;
}

.instruction-block__cover {
  width: 100%;
  height: 150px;
  position: relative;
}

.instruction-block__cover-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: 0 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.instruction-block__content {
  padding: 10px 20px;
}

.instruction-block__title {
  font-size: 15px;
  line-height: 19px;
  font-weight: bold;
  height: 55px;
}

.instruction-block__desc {
  font-size: 12px;
  line-height: 16px;
  margin-top: 5px;
  color: #9f9f9f;
}

.faq-list__item {
  margin-bottom: 10px;
}

.faq-list__item:last-child {
  margin-bottom: 0;
}

.faq-block__title {
  position: relative;
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  padding: 15px 60px;
  background: #f5f4f4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
}

.faq-block__title:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 60px;
  width: 18px;
  height: 11px;
  background: url('../img/arrow-down.png') no-repeat;
}

.faq-block__title:hover, .faq-block_active .faq-block__title {
  background: #eee;
}

.faq-block_active .faq-block__title {
  background: #e3e3df;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.faq-block__content {
  display: none;
  padding: 20px 60px;
  background: #ebebeb;
  font-size: 15px;
  line-height: 20px;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.faq-block__content p {
  margin-bottom: 14px;
}

.faq-block__content p:last-child {
  margin-bottom: 0;
}

.faq-block_active .faq-block__title:before {
  background: url('../img/arrow-up.png') no-repeat;
}

.faq-block_active .faq-block__content {
  display: block;
}

.consultant-block {
  margin-top: 50px;
  text-align: center;
}

.consultant-block__text {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 15px;
  color: #a7a7a7;
}

.section-contacts {
  border-top: 1px solid #eee;
  border-bottom: 2px solid #fff;
  padding-bottom: 0;
}

.contacts {
  font-size: 0;
  text-align: center;
  background: #f5f4f4;
  border-bottom: 2px solid #fff;
}

.contacts .layout {
  display: flex;
}

.contacts__item {
  /*display: inline-block;*/
  /*vertical-align: top;*/
  width: 25%; /* 33.3333%; */
  padding: 25px 30px;
}

.contacts__item:nth-child(2n) {
  background: #ededed;
}

.contacts__title {
  font-size: 15px;
  margin-bottom: 7px;
  color: #a7a7a7;
}

.contacts__content {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
}

a.contacts__content:not(:hover) {
  color: #2f2cc1;
}

/* button whatsapp */
.button-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 5;
}

.button-whatsapp svg {
  display: block;
}

/* Footer */

.footer {
  margin: -112px auto 0;
  height: 112px;
  width: 100%;
  font-size: 14px;
  background: #4d525f;
  color: #fff;
  padding: 20px 0;
}

.footer a {
  color: #efba9a;
}

.footer__copyright {
  font-weight: bold;
}

.footer__dev {
  font-weight: bold;
  color: #c3c5ca;
}

.footer__left {
  float: left;
}

.footer__right {
  float: right;
}

.footer__icon-link {
  color: #7d818e!important;
}

/* modal */

.modal-block {
  position: relative;
  width: 500px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
}

.modal-block_large {
  width: 900px;
}

.modal-block__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.modal-block__title_center, .modal-block__text_center {
  text-align: center;
}

.modal-block__text {
  font-size: 14px;
  line-height: 19px;
  background: #e9f0f3;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 20px;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

/*
 *  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;
  -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);
}

.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;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

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

.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;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -23px;
}

.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -23px;
}

.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 {
  -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 .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.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("../img/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 {
  -ms-transform: scale(1.3, 1.3);
  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%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  -webkit-tap-highlight-color: transparent;
}

.owl-carousel-hide .owl-nav {
  transition: All .4s;
  opacity: 0;
}

.owl-carousel-hide:hover .owl-nav {
  opacity: 1;
}

.owl-theme .owl-nav [class*='owl-'] {
  display: inline-block;
  cursor: pointer;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  opacity: .8;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

#map {
  width: 100%;
  height: 450px;
}
