/*Plugins*/

/* Global styles */

@font-face {
  font-family: "Montserrat-Regular";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular/Montserrat-Regular.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Bold";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold/Montserrat-Bold.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-SemiBold";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold/Montserrat-SemiBold.woff") format("woff");
}

a {
  text-decoration: none;
}

h1 {
  font-size: 42px;
  font-family: "Montserrat-Bold", sans-serif;
}

h2 {
  font-size: 33px;
  font-family: "Montserrat-SemiBold", sans-serif;
}

h3 {
  font-size: 18px;
  font-family: "Montserrat-SemiBold", sans-serif;
}

p {
  font-size: 18px;
}

a {
  color: inherit;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #100F0D;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

body.inner {
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.btn {
  outline: none;
  position: relative;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
  text-decoration: none;
  background-color: transparent;
  padding: 13px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn--center {
  margin-right: 0;
  margin-left: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.btn--accent {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#F34C08), color-stop(47.4%, #FF5353), to(#FF9553));
  background: -o-linear-gradient(left, #F34C08 0%, #FF5353 47.4%, #FF9553 100%);
  background: linear-gradient(90deg, #F34C08 0%, #FF5353 47.4%, #FF9553 100%);
  -webkit-box-shadow: 0 1px 46px rgba(246, 80, 54, 0.5);
          box-shadow: 0 1px 46px rgba(246, 80, 54, 0.5);
}

.btn--accent:hover {
  -webkit-box-shadow: 0 5px 15px rgba(246, 80, 54, 0.5);
          box-shadow: 0 5px 15px rgba(246, 80, 54, 0.5);
}

.btn--bd {
  border: 1px solid #919191;
  color: #ffffff;
}

.btn--bd:hover {
  border: 1px solid #F65036;
}

.btn--rounded {
  font-size: 14px;
  border: 1px solid #D0C7C6;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  color: #ffffff;
  padding: 10px 35px;
}

.btn--rounded:hover {
  border: 1px solid #F65036;
}

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

.section__title {
  position: relative;
}

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

.section__title--dark {
  color: #000000;
}

.section__subtitle {
  color: #000000;
  font-size: 21px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__subtitle p {
  display: inline-block;
  white-space: nowrap;
  padding: 0 20px 0 0;
  margin: 0;
}

.section__subtitle span {
  display: inline-block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

.pin {
  pointer-event: none;
}

.pin::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  height: 18px;
  width: 14px;
  background-image: url(../img/icon_pin.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.arr-down {
  pointer-event: none;
}

.arr-down.active::after {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}

.arr-down::after {
  content: '';
  height: 8px;
  width: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.phone::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 18px;
  width: 18px;
  background-image: url(../img/icon__phone.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 15px;
}

.email::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 18px;
  width: 18px;
  background-image: url(../img/icon__email.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 15px;
}

.body__bottom {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.fire__xl {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/fire__xl.png);
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-name: fire;
          animation-name: fire;
}

.fire__big {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/fire__big.png);
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-name: fire;
          animation-name: fire;
}

.fire__small {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/fire__small.png);
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-name: fire;
          animation-name: fire;
}

.smoke {
  position: absolute;
  height: 600px;
  width: 600px;
  top: 100px;
  background-image: url(../img/catalouge__smoke.png);
  background-repeat: no-repeat;
}

.notfound {
  padding: 150px 0;
}

.notfound__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
}

.notfound__content img {
  width: 100%;
  height: auto;
}

.notfound__num {
  line-height: 1;
  font-size: 350px;
  font-family: "Montserrat-Bold", sans-serif;
  letter-spacing: 2rem;
  border: 1px solid;
}

.parallax {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
       -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 18px;
  position: relative;
  display: block;
  width: 100%;
  -webkit-border-radius: 0;
          border-radius: 0;
  background-color: transparent;
  outline: none;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder,
select:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder,
select:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder,
select:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder,
select:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder,
textarea:focus::placeholder,
select:focus::placeholder {
  color: transparent;
}

input.usname {
  background-image: url(../img/icon__user.svg);
  background-repeat: no-repeat;
  background-position: 5px center;
  padding-left: 20px;
}

input.usphone {
  background-image: url(../img/icon__fphone.svg);
  background-repeat: no-repeat;
  background-position: 5px center;
  padding-left: 20px;
}

.accordion {
  position: relative;
  list-style: none;
  counter-reset: list-count;
  -webkit-border-radius: 9px;
          border-radius: 9px;
  overflow: hidden;
  width: 100%;
  padding: 0;
  display: block;
}

.accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  counter-increment: list-count;
  padding: 20px;
  display: block;
  cursor: pointer;
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__item.active .accordion__q {
  color: #F65036;
}

.accordion__item.active .accordion__q::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion__item.active .accordion__q::before {
  color: #F65036;
}

.accordion__q {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transition: color .25s ease;
  -o-transition: color .25s ease;
  transition: color .25s ease;
}

.accordion__q::before {
  -webkit-transition: color .25s ease;
  -o-transition: color .25s ease;
  transition: color .25s ease;
  content: counter(list-count);
  height: 36px;
  width: 36px;
  line-height: 36px;
  vertical-align: middle;
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.accordion__q::after {
  content: '';
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  height: 17px;
  width: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  background-repeat: no-repeat;
  background-image: url(../img/icon__plus.svg);
}

.accordion__q-text {
  display: inline-block;
  padding-left: 30px;
  padding-right: 10px;
  border-left: 1px solid #302F2E;
  line-height: 35px;
}

.accordion__a {
  display: none;
  font-size: 16px;
  padding: 20px 0;
}

.city {
  display: block;
  position: relative;
  z-index: 5;
}

.city__text {
  margin: 0;
  color: #ffffff;
  cursor: pointer;
  padding-bottom: 30px;
  display: inline-block;
}

.city__list {
  background: -o-linear-gradient(307.79deg, #1A1112 0.2%, #251416 102.47%);
  background: linear-gradient(142.21deg, #1A1112 0.2%, #251416 102.47%);
  -webkit-border-radius: 3px;
          border-radius: 3px;
  padding: 20px;
  display: none;
  list-style-type: none;
  position: absolute;
  z-index: 5;
  margin-top: 30px;
  top: 0;
}

.city__item {
  padding: 10px 0;
  border-bottom: 1px solid #462E31;
}

.city__item:last-child {
  border-bottom: none;
}

.city__item small {
  font-size: 12px;
  color: #8A7577;
}

.communication {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
}

.communication--top {
  margin-left: auto;
}

.communication__link {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin-right: 50px;
  color: #B5B5B5;
}

.communication__link span {
  border-bottom: 1px solid #A49694;
}

.communication__link:hover {
  color: #F65036;
}

.communication__link:hover span {
  border: none;
}

.communication__link:hover .communication__icon {
  border: 1px solid #F65036;
}

.communication__icon {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  height: 34px;
  width: 34px;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  border: 1px solid #A49694;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 15px;
}

/* Header */

.header {
  background-color: transparent;
  position: absolute;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  z-index: 3;
  overflow: hidden;
}

.header__content {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__content .communication {
  margin-left: none;
}

.header__content .callback {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
}

.logo {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
}

/* Hero */

.hero {
  position: relative;
}

.hero__fire1 {
  z-index: 2;
  height: 100px;
  width: 100px;
  right: 10%;
  top: 45%;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
}

.hero__fire2 {
  left: 45%;
  height: 150px;
  width: 150px;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.hero__fire3 {
  z-index: 2;
  height: 50px;
  width: 50px;
  right: 15%;
  top: 20%;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.hero--main {
  padding-top: 170px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 880px;
}

.hero--main__img {
  position: absolute;
  top: -40px;
  right: -5%;
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.hero--inner {
  background-size: cover;
  background-position: bottom center;
  padding-top: 170px;
  height: 950px;
}

.hero--inner__fire1 {
  height: 75px;
  width: 75px;
  right: 5%;
  top: 30%;
  z-index: 3;
}

.hero--inner__fire2 {
  top: 35%;
  left: 20%;
  height: 150px;
  width: 150px;
}

.hero--inner__fire3 {
  top: 40%;
  height: 50px;
  width: 50px;
  right: 30%;
  z-index: 3;
}

.hero--inner2 {
  background-size: cover;
  background-position: bottom center;
  padding-top: 170px;
  height: 950px;
}

.hero__bg {
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  z-index: -1;
}

.hero__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
}

.hero__img--inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
}

.hero__img--inner img {
  position: absolute;
  top: 0;
  right: -160px;
  z-index: 0;
  max-width: 80%;
}

.hero__img--inner2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
}

.hero__img--inner2 img {
  position: absolute;
  top: 0;
  right: -150px;
  z-index: 0;
}

.hero__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  z-index: 2;
}

.hero__content--inner {
  z-index: 2;
}

.hero__content--inner2 {
  z-index: 2;
}

.hero__content--inner2 p {
  color: #BBCFF3;
}

.hero__title {
  margin: 0;
  color: #ffffff;
  display: block;
  padding-bottom: 30px;
}

.hero__title span {
  color: #F65036;
}

.hero__subtitle {
  color: #D9B1A9;
  margin-bottom: 75px;
}

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

.hero__buttons .btn {
  margin-right: 20px;
}

/* category */

.category {
  position: relative;
  margin-top: -150px;
}

.category::after {
  content: '';
  position: absolute;
  width: 1161px;
  height: 1161px;
  right: 0;
  top: 0;
  z-index: 2;
  background: -o-radial-gradient(50% 50%, 580.5px, #0F3F4E 0%, rgba(16, 15, 13, 0) 100%);
  background: radial-gradient(580.5px at 50% 50%, #0F3F4E 0%, rgba(16, 15, 13, 0) 100%);
}

.category__list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 100px;
  position: relative;
  z-index: 3;
}

.category__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 30px;
  box-sizing: border-box;
  padding-top: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.category__img {
  position: absolute;
  top: -12%;
}

.category__img--mod {
  left: -5%;
  max-width: 90%;
}

.category__img--mod::before {
  content: '';
  position: absolute;
  height: 200px;
  width: 200px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 1px solid #ffffff;
}

.category__title {
  z-index: 2;
  font-size: 32px;
  font-family: "Montserrat-SemiBold", sans-serif;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.category__desc {
  z-index: 2;
  color: #999E9F;
  margin-bottom: 50px;
}

.category .btn {
  z-index: 2;
}

.category__smoke {
  position: absolute;
  height: 600px;
  width: 600px;
  top: 100px;
  background-image: url(../img/catalouge__smoke.png);
  background-repeat: no-repeat;
  z-index: 1;
}

.category__smoke--1 {
  right: -180px;
  -webkit-transform: rotate(-125deg);
      -ms-transform: rotate(-125deg);
          transform: rotate(-125deg);
  top: 200px;
}

.category__smoke--2 {
  left: -180px;
  top: 375px;
  -webkit-transform: rotate(55deg);
      -ms-transform: rotate(55deg);
          transform: rotate(55deg);
}

.category__fire {
  position: absolute;
  z-index: 2;
  height: 250px;
  width: 250px;
  background-image: url(../img/fire__small.png);
}

.category__fire--1 {
  top: 50px;
}

.category__fire--2 {
  right: 50px;
  bottom: -150px;
}

/* Product */

.product {
  position: relative;
  z-index: 2;
  top: -100px;
  padding-bottom: 0;
}

.product__item {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.product__item-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 50px 30px;
}

.product__item-content .btn {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  margin-top: auto;
}

.product__title {
  font-size: 32px;
  margin: 0;
}

.product__desc {
  padding: 30px 0;
  margin: 0;
  font-size: 16px;
  color: #B9B9B9;
}

.product__img {
  background-position: right center;
  background-repeat: no-repeat;
}

/* Catalogue */

.catalogue {
  background-repeat: no-repeat;
  position: relative;
}

.catalogue__content {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.catalogue__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
}

.catalogue__img img {
  position: relative;
  left: -300px;
  z-index: 1;
}

.catalogue__form {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
}

.catalogue__form .form {
  display: inline-block;
  background: -o-linear-gradient(224.53deg, #552B35 0%, #37201E 50%);
  background: linear-gradient(225.47deg, #552B35 0%, #37201E 50%);
  -webkit-box-shadow: 0px -106px 164px rgba(255, 187, 177, 0.2);
          box-shadow: 0px -106px 164px rgba(255, 187, 177, 0.2);
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 25px 35px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 330px;
  z-index: 2;
  position: relative;
}

.catalogue__form h3 {
  font-size: 27px;
  white-space: nowrap;
  margin: 0;
}

.catalogue__form p {
  font-size: 16px;
  color: #D5B1B6;
}

.catalogue__form input {
  padding: 15px 10px 15px 30px;
  border: 1px solid #7C5250;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  font-size: 12px;
  background-repeat: no-repeat;
  background-position: 10px center;
}

.catalogue__form input::-webkit-input-placeholder {
  font-size: 12px;
}

.catalogue__form input::-moz-placeholder {
  font-size: 12px;
}

.catalogue__form input:-ms-input-placeholder {
  font-size: 12px;
}

.catalogue__form input::-ms-input-placeholder {
  font-size: 12px;
}

.catalogue__form input::placeholder {
  font-size: 12px;
}

.policy {
  display: block;
  padding-top: 20px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.policy::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 9px;
  width: 9px;
  background-image: url(../img/icon__lock.svg);
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* koplektuyushiye */

.koplektuyushiye {
  position: relative;
  margin-top: -300px;
}

.koplektuyushiye__list {
  padding: 50px 0;
}

.koplektuyushiye__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  padding: 30px;
  margin-bottom: 20px;
}

.koplektuyushiye__title {
  font-size: 21px;
  font-family: "Montserrat-SemiBold", sans-serif;
  letter-spacing: 1px;
}

.koplektuyushiye__subtitle {
  font-size: 21px;
  color: #D3D3D3;
}

/* Calltoaction */

.calltoaction {
  position: relative;
  margin-top: -15%;
  margin-bottom: 50px;
}

.calltoaction img {
  position: relative;
  width: 100%;
  z-index: -1;
}

.calltoaction__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 2;
}

.calltoaction__form {
  background-color: #432427;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  width: 680px;
}

.calltoaction__form-title {
  font-size: 42px;
  text-align: center;
  padding: 20px;
}

.calltoaction__form-desc {
  color: #B9B9B9;
  text-align: center;
  padding: 0 20px 20px;
}

.calltoaction__form-field {
  background-color: #624447;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-bottom-left-radius: 4px;
          border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
          border-bottom-right-radius: 4px;
  padding: 30px;
}

.calltoaction__form-field input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 12px;
  border-width: 0 0 1px 0;
  border-color: #7C5250;
  box-sizing: border-box;
  display: inline-block;
}

.calltoaction__form-field input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.calltoaction__form-field input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.calltoaction__form-field input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.calltoaction__form-field input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.calltoaction__form-field input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.calltoaction__form-field .btn {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.lock {
  height: 100px;
  width: 100px;
  margin-bottom: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-border-radius: 50px;
          border-radius: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F34C09), color-stop(51.04%, #FF5653), to(#FF9453));
  background: -o-linear-gradient(top, #F34C09 0%, #FF5653 51.04%, #FF9453 100%);
  background: linear-gradient(180deg, #F34C09 0%, #FF5653 51.04%, #FF9453 100%);
  position: relative;
}

.lock::after {
  content: '';
  height: -webkit-calc(100% * 0.9);
  height: calc(100% * 0.9);
  width: -webkit-calc(100% * 0.9);
  width: calc(100% * 0.9);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 50px;
          border-radius: 50px;
  border: 3px solid #ffffff;
  position: absolute;
}

.lock::before {
  content: '';
  background-image: url(../img/icon__lock.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  height: 20px;
  width: 20px;
  background-size: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.lock span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.lock span:nth-child(1) {
  border: 2px solid rgba(246, 80, 54, 0.7);
  height: -webkit-calc(100% + 42px);
  height: calc(100% + 42px);
  width: -webkit-calc(100% + 42px);
  width: calc(100% + 42px);
}

.lock span:nth-child(2) {
  width: -webkit-calc(100% + 88px);
  width: calc(100% + 88px);
  height: -webkit-calc(100% + 88px);
  height: calc(100% + 88px);
  border: 1px solid rgba(255, 170, 168, 0.9);
}

.lock span:nth-child(3) {
  width: -webkit-calc(100% + 136px);
  width: calc(100% + 136px);
  height: -webkit-calc(100% + 136px);
  height: calc(100% + 136px);
  border: 0.5px solid rgba(255, 208, 199, 0.5);
}

/* Faq */

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

.faq__list {
  z-index: 5;
  position: relative;
}

.faq__smoke1 {
  margin-top: -7%;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 1;
}

.faq__smoke2 {
  right: -10%;
  top: -10px;
  -webkit-transform: rotate(-120deg);
      -ms-transform: rotate(-120deg);
          transform: rotate(-120deg);
  z-index: 3;
}

.faq__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  z-index: 2;
  width: 100%;
  background: -o-linear-gradient(346.46deg, #1C1B19 -1.78%, #0A0909 113.87%);
  background: linear-gradient(103.54deg, #1C1B19 -1.78%, #0A0909 113.87%);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 40px 60px;
}

/* Works */

.works {
  position: relative;
}

.works::after {
  content: '';
  position: absolute;
  width: 997px;
  height: 997px;
  z-index: 1;
  background: -o-radial-gradient(50% 50%, 498.5px, #4E220F 0%, rgba(16, 15, 13, 0) 100%);
  background: radial-gradient(498.5px at 50% 50%, #4E220F 0%, rgba(16, 15, 13, 0) 100%);
  opacity: 0.5;
  top: 10%;
  left: -10%;
}

.works::before {
  content: '';
  position: absolute;
  width: 997px;
  height: 997px;
  right: 5%;
  margin-top: -5%;
  z-index: 1;
  background: -o-radial-gradient(50% 50%, 498.5px, #4E0F25 0%, rgba(16, 15, 13, 0) 100%);
  background: radial-gradient(498.5px at 50% 50%, #4E0F25 0%, rgba(16, 15, 13, 0) 100%);
}

.works__smoke {
  position: absolute;
  height: 1200px;
  width: 600px;
  z-index: 1;
  -webkit-transform: rotate(55deg);
      -ms-transform: rotate(55deg);
          transform: rotate(55deg);
  background-image: url(../img/works__smoke.png);
  left: -260pxt;
  bottom: 0px;
}

.works__fire.fire__small {
  height: 250px;
  width: 250px;
  left: 20px;
  top: 15%;
}

.works__fire.fire__big {
  height: 250px;
  width: 250px;
  left: 35%;
}

.works__content {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.works__info {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: -webkit-calc(33.33333% - 20px);
  width: calc(33.33333% - 20px);
  padding-bottom: 100px;
  z-index: 1;
  position: relative;
}

.works__info h3 {
  font-size: 27px;
  text-shadow: 0px 0px 54px rgba(255, 255, 255, 0.75);
}

.works__info p {
  color: #AA9C97;
}

.works__info p span {
  color: #ffffff;
  font-weight: bold;
}

.works__list {
  width: 100%;
  z-index: 3;
  position: relative;
}

.works__item {
  margin-right: 20px;
}

.works__controll {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.works__controll-separator {
  height: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin: 0 30px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}

.works__arr {
  height: 40px;
  width: 40px;
  background-image: url(../img/icon__arr.svg);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.works__arr:hover {
  opacity: 0.7;
}

.works__arr--left {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.works center {
  background-color: #080703;
}

.slick-hidden {
  display: block !important;
}

/* Contacts */

.contacts {
  padding-top: 0;
}

.contacts__fire1 {
  z-index: 2;
  height: 100px;
  width: 100px;
  top: 10%;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.contacts__fire2 {
  z-index: 2;
  height: 150px;
  width: 150px;
  top: -10%;
  left: 50%;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.contacts__fire3 {
  z-index: 2;
  height: 50px;
  width: 50px;
  bottom: 10%;
  left: 50%;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
}

.contacts__fire4 {
  z-index: 2;
  height: 150px;
  width: 150px;
  top: -10%;
  right: 10%;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.contacts__fire5 {
  z-index: 2;
  height: 100px;
  width: 100px;
  bottom: 15%;
  right: 5%;
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.contacts__content {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contacts__info {
  position: relative;
  z-index: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: -webkit-calc(33.33333% - 20px);
  width: calc(33.33333% - 20px);
}

.contacts__info::before {
  content: '';
  position: absolute;
  height: 1000px;
  width: 1000px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  background: -o-radial-gradient(50% 50%, 498.5px, #FFFFFF 0%, rgba(16, 15, 13, 0) 100%);
  background: radial-gradient(498.5px at 50% 50%, #FFFFFF 0%, rgba(16, 15, 13, 0) 100%);
  opacity: 0.1;
}

.contacts__info h2 {
  color: #F65036;
}

.contacts__form {
  position: relative;
  z-index: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
}

.contacts__form select,
.contacts__form input {
  background-color: rgba(62, 63, 65, 0.3);
  border: none;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 16px;
}

.contacts__form-filed {
  position: relative;
}

.contacts__form-filed--select::after {
  content: '';
  height: 8px;
  width: 8px;
  position: absolute;
  top: 17px;
  right: 20px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  pointer-events: none;
}

.contacts__form-filed--2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.contacts__form-input {
  margin-right: 20px;
  margin-bottom: 24px;
}

.contacts__form-input::-webkit-input-placeholder {
  color: #ffffff;
}

.contacts__form-input::-moz-placeholder {
  color: #ffffff;
}

.contacts__form-input:-ms-input-placeholder {
  color: #ffffff;
}

.contacts__form-input::-ms-input-placeholder {
  color: #ffffff;
}

.contacts__form-input::placeholder {
  color: #ffffff;
}

.contacts__form-input:last-child {
  margin-right: 0px;
}

.contacts p {
  color: #AA9C97;
}

option {
  background-color: #271D20;
  outline: none;
  opacity: 0.3;
}

/* Footer */

.footer {
  margin-top: auto;
  background-color: #0E0807;
  padding: 10px 0;
  width: 100%;
}

.footer__content {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}

.footer .developer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
}

/* Callback-form*/

.callback-form {
  position: relative;
  margin: 20px auto;
  max-width: 350px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.callback-form .form {
  max-width: inherit;
  position: relative;
  width: 100%;
}

.callback-form .mfp-close {
  display: inline-block;
  color: #ffffff;
  right: 0;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.callback-thanks {
  position: relative;
  margin: 20px auto;
  max-width: 350px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  text-align: center;
  padding: 20px;
  background: -o-linear-gradient(224.53deg, #552B35 0%, #37201E 50%);
  background: linear-gradient(225.47deg, #552B35 0%, #37201E 50%);
}

.callback-thanks h3 {
  font-size: 23px;
}

.callback-thanks img {
  max-width: 75px;
}

.callback-thanks .mfp-close {
  color: #ffffff;
}

/* product-popup */

.product-popup {
  position: relative;
  max-width: 1060px;
  margin: 30px auto;
  font-size: 16px;
}

.product-popup .mfp-close {
  -webkit-border-radius: 3px;
          border-radius: 3px;
  border: none;
  position: absolute;
  right: 10px;
  top: 10px;
  line-height: 33px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.48);
          box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.48);
  height: 32px;
  width: 32px;
  cursor: pointer;
}

.product-popup__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-popup h3 {
  margin-top: 0;
  position: relative;
  z-index: 3;
  font-size: 26px;
  font-family: "Montserrat-Bold", sans-serif;
}

.product-popup__info {
  width: 60%;
}

.product-popup__info-top {
  background-color: #222426;
  padding: 40px;
}

.product-popup__info-bottom {
  background-color: #ffffff;
  padding: 40px;
  -webkit-box-shadow: 0px 0px 36px rgba(255, 255, 255, 0.57);
          box-shadow: 0px 0px 36px rgba(255, 255, 255, 0.57);
}

.product-popup__slider {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #242424;
  width: 40%;
}

.product-popup__form {
  width: 100%;
  padding: 40px;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #232428;
  background-image: url(../img/product-popup__bg.jpg);
}

.product-popup__form p {
  font-size: 16px;
  padding-bottom: 30px;
  color: #D1D1D1;
  z-index: 3;
  position: relative;
}

.product-popup__form img {
  display: none;
  width: -webkit-calc(100% + 20px);
  width: calc(100% + 20px);
  margin: 30px 0 -10px -10px;
}

.info-top__list {
  font-size: 12px;
  color: #C8C8C8;
  padding: 0;
}

.info-top__item {
  display: inline-block;
}

.info-top__item:last-child::after {
  display: none;
}

.info-top__item::after {
  content: '/';
  display: inline-block;
  color: #F65036;
}

.info-bottom__title {
  color: #F65036;
}

.info-bottom__list {
  color: #000000;
  padding: 0;
  list-style-type: none;
}

.info-bottom__item {
  padding: 10px 0;
  border-bottom: 1px solid #DDDDDD;
}

.info-bottom__item:last-child {
  border-bottom: none;
}

.product-form__field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product-form__field input {
  width: auto;
  margin-right: 20px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background-color: #757677;
  border: none;
}

.product-form__field input::-webkit-input-placeholder {
  color: #ffffff;
}

.product-form__field input::-moz-placeholder {
  color: #ffffff;
}

.product-form__field input:-ms-input-placeholder {
  color: #ffffff;
}

.product-form__field input::-ms-input-placeholder {
  color: #ffffff;
}

.product-form__field input::placeholder {
  color: #ffffff;
}

.product-form__field .btn {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.product-slider {
  position: relative;
  background-color: #242424;
  height: 100%;
  width: 100%;
}

.product-slider__item {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  background-color: #fff;
}

.product-slider .slick-list,
.product-slider .slick-track {
  height: 100%;
}

.product-slider .slick-arrow {
  outline: none;
  position: absolute;
  z-index: 4;
  bottom: 70px;
  height: 40px;
  width: 40px;
  color: transparent;
  font-size: 0;
  background-image: url(../img/icon__arr.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.product-slider .slick-arrow.slick-prev {
  -webkit-transform: rotate(180deg) translate(0%);
      -ms-transform: rotate(180deg) translate(0%);
          transform: rotate(180deg) translate(0%);
  left: 35%;
}

.product-slider .slick-arrow.slick-next {
  right: 35%;
  -webkit-transform: translate(0%);
      -ms-transform: translate(0%);
          transform: translate(0%);
}

.product-slider .slick-arrow.slick-next::after {
  content: '';
  height: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  left: -50%;
  bottom: 0px;
  position: absolute;
  -webkit-transform: rotate(30deg) translateX(-50%);
      -ms-transform: rotate(30deg) translateX(-50%);
          transform: rotate(30deg) translateX(-50%);
}

.product-slider .slick-dots {
  z-index: 4;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-slider .slick-dots li {
  margin-right: 5px;
  height: 14px;
  width: 14px;
  background-color: #E9E9E9;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  cursor: pointer;
}

.product-slider .slick-dots li:last-child {
  margin-right: 0px;
}

.product-slider .slick-dots li.slick-active {
  border: 1px solid #E9E9E9;
  background-color: #29282F;
}

.product-slider .slick-dots li button {
  overflow: hidden;
  text-indent: -999px;
  border: none;
  background-color: transparent;
  height: 14px;
  width: 14px;
  outline: none;
}

@media screen and (max-width: 1440px) {
  .product {
    margin-top: -300px;
  }
}

@media screen and (max-width: 1400px) {
  .hero--main__img {
    right: -webkit-calc(-15% / .6);
    right: calc(-15% / .6);
  }
}

@media screen and (max-width: 1100px) {
  .hero__content--inner .btn--bd {
    color: #F65036;
  }

  .hero__content--inner2 .btn--bd {
    color: #F65036;
  }

  .product {
    margin-top: -400px;
  }

  .catalogue__img img {
    left: -50%;
    max-width: 800px;
  }
}

@media screen and (max-width: 1024px) {
  .hero--main {
    height: 800px;
  }
}

@media screen and (max-width: 960px) {
  .communication__link {
    margin-right: 20px;
  }

  .communication__link span {
    display: none;
  }

  .communication__icon {
    margin-right: 0;
  }

  .hero--main__img {
    right: -webkit-calc(-15% / .3);
    right: calc(-15% / .3);
  }

  .hero--inner {
    padding: 150px 0 100px 0;
    background-image: url(../img/hero-bg2.jpg);
    height: auto;
  }

  .hero--inner2 {
    padding: 150px 0 100px 0;
    background-image: url(../img/hero-bg3.jpg);
    height: auto;
  }

  .hero__img--inner {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .hero__img--inner {
    overflow: hidden;
  }

  .hero__img--inner img {
    max-width: 100%;
    top: 50px;
  }

  .hero__img--inner2 {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .hero__img--inner2 {
    overflow: hidden;
  }

  .hero__img--inner2 img {
    right: -120px;
    max-width: 100%;
    top: 50px;
  }

  .category__item {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
  }

  .product {
    margin-top: -50px;
  }

  .koplektuyushiye {
    margin-top: -50px;
  }

  .koplektuyushiye__item {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 780px) and (max-width: 560px) {
  .product-popup__form::before {
    display: none;
  }
}

@media screen and (max-width: 780px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section {
    padding: 30px 0;
  }

  .section__title {
    margin-bottom: 60px;
  }

  .communication__link {
    margin-right: 20px;
  }

  .communication__link:last-child {
    margin-right: 0px;
  }

  .hero {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero--main {
    background-position: center bottom;
    height: 600px;
  }

  .hero--main__img {
    right: -270px;
    max-width: 900px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero__content {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .category__list {
    padding-top: 0;
  }

  .category__item {
    width: -webkit-calc(83.33333% - 20px);
    width: calc(83.33333% - 20px);
  }

  .category__item {
    margin-top: 100px;
  }

  .category__img {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 130%;
  }

  .category__desc {
    color: #ffffff;
  }

  .product {
    margin-top: 0;
  }

  .product__list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product__item {
    width: -webkit-calc(83.33333% - 20px);
    width: calc(83.33333% - 20px);
  }

  .product__item {
    margin-bottom: 20px;
  }

  .catalogue {
    margin-top: -150px;
  }

  .catalogue__content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .catalogue__img {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .catalogue__img img {
    max-width: 150%;
    left: -30%;
    bottom: -160px;
  }

  .catalogue__form {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .catalogue__form {
    text-align: center;
  }

  .catalogue__form h3 {
    font-size: 22px;
  }

  .koplektuyushiye__item {
    padding: 20px;
  }

  .calltoaction__content {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-top: -30%;
  }

  .calltoaction__form {
    width: auto;
  }

  .calltoaction__form-field {
    padding: 30px 20px;
  }

  .lock {
    height: 80px;
    width: 80px;
    margin-bottom: 70px;
  }

  .faq__smoke2 {
    display: none;
  }

  .faq__content {
    padding: 20px 30px;
  }

  .works__content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .works__info {
    width: -webkit-calc(66.66667% - 20px);
    width: calc(66.66667% - 20px);
  }

  .works__info {
    margin-top: 50px;
    text-align: center;
    padding-bottom: 50px;
  }

  .contacts__info {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .contacts__info {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .contacts__info::before {
    display: none;
  }

  .contacts__form {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .contacts__form-filed--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contacts__form-input {
    margin-right: 0;
  }

  .product-popup__info {
    width: 100%;
  }

  .product-popup__info-top {
    padding: 20px;
  }

  .product-popup__info-bottom {
    padding: 20px;
  }

  .product-popup__slider {
    width: 50%;
    min-height: 400px;
  }

  .product-popup__form {
    width: 50%;
    position: relative;
    padding: 50px 20px;
    background-size: cover;
  }

  .product-popup__form::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    z-index: 0;
    left: 0;
  }

  .product-form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .product-form__field input {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

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

  .calltoaction__form-field input {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .product-popup__slider {
    width: 100%;
  }

  .product-popup__form {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  h1 {
    font-size: 22px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .btn {
    font-size: 13px;
  }

  .section {
    padding: 15px 0;
  }

  .section__title {
    margin-bottom: 20px;
    text-align: center;
  }

  .section__subtitle p {
    font-size: 16px;
  }

  .fire__xl {
    display: none;
  }

  .fire__big {
    display: none;
  }

  .fire__small {
    display: none;
  }

  .notfound {
    padding-bottom: 50px;
  }

  .accordion__item {
    padding: 10px 5px;
  }

  .accordion__q::before {
    width: 20px;
  }

  .accordion__q-text {
    font-size: 16px;
    line-height: 24px;
    margin-left: 0px;
    padding: 0 5px 0 10px;
  }

  .accordion__a {
    font-size: 14px;
  }

  .city__text {
    font-size: 14px;
  }

  .city__item {
    font-size: 14px;
  }

  .communication__link:first-child {
    display: inline-block;
  }

  .header__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .hero {
    overflow: hidden;
  }

  .hero--main {
    background-image: url(../img/hero__bg.png);
  }

  .hero--main__img {
    top: 15%;
    max-width: 520px;
    right: -250px;
  }

  .hero__img--inner img {
    top: 25%;
    right: -50px;
  }

  .hero__img--inner2 img {
    top: 25%;
    right: -70px;
  }

  .hero__content {
    width: -webkit-calc(91.66667% - 20px);
    width: calc(91.66667% - 20px);
  }

  .hero__title {
    padding-bottom: 10px;
  }

  .hero__subtitle {
    color: #ffffff;
  }

  .hero__buttons .btn {
    width: 250px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 20px;
  }

  .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .category {
    margin-top: -100px;
  }

  .category__list {
    padding-top: 50px;
  }

  .category__item {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .category__img {
    top: -30%;
  }

  .category__img--mod {
    left: 40%;
  }

  .category__title {
    font-size: 22px;
    margin-top: 50px;
  }

  .category__desc {
    font-size: 16px;
  }

  .product__item {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .product__title {
    font-size: 24px;
  }

  .catalogue__img img {
    max-width: 180%;
    left: -40%;
    bottom: -100px;
  }

  .koplektuyushiye__title {
    font-size: 18px;
    margin-bottom: 0;
  }

  .koplektuyushiye__subtitle {
    font-size: 18px;
    margin-bottom: 0;
  }

  .calltoaction {
    margin-top: -17%;
  }

  .calltoaction img {
    width: 110%;
    left: -5%;
  }

  .calltoaction__form-title {
    font-size: 20px;
  }

  .calltoaction__form-desc {
    font-size: 16px;
  }

  .lock {
    height: 60px;
    width: 60px;
  }

  .faq__content {
    padding: 20px 10px;
  }

  .works__info {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer .developer {
    margin-top: 20px;
  }

  .callback-form .form {
    padding: 20px 15px;
  }

  .product-popup h3 {
    font-size: 22px;
  }

  .product-popup__form {
    padding: 20px 10px 0px 10px;
    background-image: none;
  }

  .product-popup__form p {
    font-size: 14px;
  }

  .product-popup__form img {
    display: block;
  }
}

@media screen and (max-width: 505px) {
  .header__content .callback {
    margin-left: auto;
  }

  .logo img {
    max-width: 100px;
  }
}

@media screen and (max-width: 475px) {
  .header__content .communication {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 410px) {
  .header__content .communication {
    margin-top: 20px;
  }
}

@media screen and (max-width: 320px) {
  .product-slider .slick-arrow.slick-prev {
    left: 30%;
  }

  .product-slider .slick-arrow.slick-next {
    right: 30%;
  }
}