

/* Start:/local/templates/template/fonts/roboto.css?16213521913419*/
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Thin'), local('Roboto-Thin'), url('/local/templates/template/fonts/Robotothin.woff2') format('woff2'), url('/local/templates/template/fonts/Robotothin.woff') format('woff'), url('/local/templates/template/fonts/Robotothin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url('/local/templates/template/fonts/Robotothinitalic.woff2') format('woff2'), url('/local/templates/template/fonts/Robotothinitalic.woff') format('woff'), url('/local/templates/template/fonts/Robotothinitalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Light'), local('Roboto-Light'), url('/local/templates/template/fonts/Robotolight.woff2') format('woff2'), url('/local/templates/template/fonts/Robotolight.woff') format('woff'), url('/local/templates/template/fonts/Robotolight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url('/local/templates/template/fonts/Robotolightitalic.woff2') format('woff2'), url('/local/templates/template/fonts/Robotolightitalic.woff') format('woff'), url('/local/templates/template/fonts/Robotolightitalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'), url('/local/templates/template/fonts/Roboto.woff2') format('woff2'), url('/local/templates/template/fonts/Roboto.woff') format('woff'), url('/local/templates/template/fonts/Roboto.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Italic'), local('Roboto-Italic'), url('/local/templates/template/fonts/Robotoitalic.woff2') format('woff2'), url('/local/templates/template/fonts/Robotoitalic.woff') format('woff'), url('/local/templates/template/fonts/Robotoitalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local('Roboto-Medium'), url('/local/templates/template/fonts/Robotomedium.woff2') format('woff2'), url('/local/templates/template/fonts/Robotomedium.woff') format('woff'), url('/local/templates/template/fonts/Robotomedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url('/local/templates/template/fonts/Robotomediumitalic.woff2') format('woff2'), url('/local/templates/template/fonts/Robotomediumitalic.woff') format('woff'), url('/local/templates/template/fonts/Robotomediumitalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold'), local('Roboto-Bold'), url('/local/templates/template/fonts/Robotobold.woff2') format('woff2'), url('/local/templates/template/fonts/Robotobold.woff') format('woff'), url('/local/templates/template/fonts/Robotobold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'), url('/local/templates/template/fonts/Robotobolditalic.woff2') format('woff2'), url('/local/templates/template/fonts/Robotobolditalic.woff') format('woff'), url('/local/templates/template/fonts/Robotobolditalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Black'), local('Roboto-Black'), url('/local/templates/template/fonts/Robotoblack.woff2') format('woff2'), url('/local/templates/template/fonts/Robotoblack.woff') format('woff'), url('/local/templates/template/fonts/Robotoblack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Black Italic'), local('Roboto-BlackItalic'), url('/local/templates/template/fonts/Robotoblackitalic.woff2') format('woff2'), url('/local/templates/template/fonts/Robotoblackitalic.woff') format('woff'), url('/local/templates/template/fonts/Robotoblackitalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* End */


/* Start:/local/templates/template/css/pages/perfect-scrollbar.css?16213521912714*/
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

/* End */


/* Start:/local/templates/template/css/pages/selectric.css?16213521914543*/
/*======================================
  Selectric v1.13.0
======================================*/

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 38px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: #F8f8f8;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #c4c4c4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}

.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}

.selectric-items li:hover {
  background: #D5D5D5;
  color: #444;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

/* End */


/* Start:/local/templates/template/css/pages/main.css?163248962890357*/
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

a,
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}
.footer .footer-blok,
.footer .footer-blok-contact {
  display: -ms-flexbox;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
}
body {
  overflow-x: hidden;
  margin: 0;
  font-size: 16px;
  position: relative;
}
a {
  color: inherit;
}
ul li {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1299px;
  margin: 0 auto;
}
.footer {
  background: #0c0c0c;
  padding: 23px 0 32px;
}
.footer .footer-blok {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.footer .footer-blok-menu ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  min-width: 250px;
}
.footer .footer-blok-menu ul li a {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 28px;
  color: hsla(0, 0%, 100%, 0.7);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer-blok-menu ul li a:hover {
  color: #ff6647;
}
.footer .footer-blok-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.footer .footer-blok-contact-tel {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: right;
  color: #fff;
}
.footer .footer-blok-contact-mail,
.footer .footer-blok-contact p {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  text-align: right;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-style: normal;
}
.footer .footer-blok-contact-mail {
  margin-bottom: 8px;
}
.footer .footer-blok-contact p {
  margin-bottom: 13px;
}
.footer .footer-blok-contact-btn {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6647;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 14px 41px;
}
header .header-menu ul li a,
header .header-right-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  white-space: nowrap;
}
.footer .footer-blok-contact-btn:hover {
  color: #fff;
  background: #ff6647;
}
.footer-bottom {
  background: #1c1c1c;
  padding: 10px 0;
}
.footer-bottom-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 800px) {
  .footer-bottom-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }  
}

.footer-bottom-container a,
.footer-bottom-container p {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  color: hsla(0, 0%, 100%, 0.5);
}

.footer-bottom-container a:nth-child(2) {
  -ms-grid-column-align: center;
      justify-self: center;
}

.footer-bottom-container p:nth-child(3) {
  -ms-grid-column-align: end;
      justify-self: end;
}

.footer-bottom-container a {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

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

.footer .footer-blok-contact-tel,
.footer .footer-blok-contact-mail {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.footer .footer-blok-contact-tel:hover,
.footer .footer-blok-contact-mail:hover {
  color: #FF6647;
}

.footer .footer-blok-contact-mail {
  display: inline-block;
}

@media screen and (min-width: 612px) {
  .footer .footer-blok-contact {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (min-width: 612px) {
  .line {
    display: none;
  }
}
header .header,
header .header-menu {
  display: -ms-flexbox;
}
@media (max-width: 612px) {
  .footer {
    padding: 14px 0 28px;
  }
  .footer .line {
    height: 1px;
    width: 100%;
    background: hsla(0, 0%, 100%, 0.2);
    margin: 20px 0;
  }
  .footer .footer-blok {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
  .footer .footer-blok-menu ul {
    -webkit-column-count: unset;
       -moz-column-count: unset;
            column-count: unset;
    min-width: unset;
    text-align: center;
  }
  .footer .footer-blok-menu ul li a {
    font-size: 13px;
    line-height: 32px;
  }
  .footer .footer-blok-contact {
    text-align: center;
    margin-top: 20px;
  }
  .footer .footer-blok-contact-tel {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 8px;
    text-align: center;
  }
  .footer .footer-blok-contact-mail,
  .footer .footer-blok-contact p {
    text-align: center;
  }
  .footer-bottom {
    padding: 15px 0;
  }
  .footer-bottom-container {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .footer-bottom-container a:first-child {
    margin-bottom: 4px;
  }
}
header .header-menu .form-input input,
header .header-menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  font-style: normal;
}
.open_body {
  width: 100%;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
}
header {
  background-color: #0c0c0c;
  padding: 15px 0;
}
header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
header .header-logo {
  margin-right: 128px;
}
header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 275px;
}
header .header-menu ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
header .header-menu ul li:not(:last-child) {
  margin-right: 32px;
}
header .header-menu ul li a {
  font-family: Roboto, sans-serif;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header .header-menu ul li a:hover {
  color: #ff6647;
}
header .header-menu .form {
  margin-left: 20px;
  position: relative;
}
header .header-menu .form .icon {
  fill: red;
}
header .header-menu .form-search-btn:hover g {
  opacity: 1;
}
header .header-menu .form svg {
  cursor: pointer;
}
header .header-menu .form-input {
  background: #242424;
  display: none;
  position: absolute;
  top: -23px;
  right: -22px;
  z-index: 1004;
}
header .header-right,
header .header-right-contact {
  display: -ms-flexbox;
}
header .header-menu .form-input button {
  position: absolute;
  top: 47%;
  left: 28px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  background: 0 0;
}
header .header-menu .form-input .svg-search path {
  fill: #757575;
}
header .header-menu .form-input .svg-close {
  position: absolute;
  top: 46%;
  right: 5px;
  padding: 15px 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
header .header-menu .form-input input {
  background: hsla(0, 0%, 100%, 0.1);
  width: 638px;
  padding: 24px 65px 27px 63px;
  color: #fff;
  border: none;
  font-family: Roboto, sans-serif;
  -webkit-transition: outline 0.3s;
  -o-transition: outline 0.3s;
  transition: outline 0.3s;
}
header .header-menu .form-input input:focus:invalid {
  outline: 1px solid #FF6647;
  outline-offset: -1px;
}

/* it's my styles */

.burger,
.svg-menu-close {
  cursor: pointer;
}

/*End of it's my styles */
header .header-menu .form-input input:valid {
  border: none;
}
header .header-menu .form-input input:placeholder {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: hsla(0, 0%, 100%, 0.3);
}
header .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
header .header-right-btn {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ff6647;
  padding: 13px 15px;
  border: 1px solid #ff6647;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 7px;
  margin-right: 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.help-blok form button,
.main-blok a {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
header .header-right-btn:hover {
  background: #ff6647;
  color: #0c0c0c;
}
header .header-right-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  margin-right: 17px;
}
.main-bottom,
header .header-right-social {
  display: -ms-flexbox;
}
header .header-right-contact a {
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header .header-right-contact a:first-child {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}
header .header-right-contact a:hover {
  color: #ff6647;
}
header .header-right-contact a:nth-child(2) {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.main-blok a,
header .header-right-social a svg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
}
header .header-right-contact a:nth-child(2):hover {
  color: #ff6647;
}
.main-blok a,
.main-blok h1 {
  font-family: Roboto, sans-serif;
  font-style: normal;
  color: #fff;
  font-weight: 700;
}
header .header-right-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-right-social a:not(:last-child) {
  margin-right: 6px;
}
header .header-right-social a svg path {
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

header .header-right-social a svg circle {
  -webkit-transition: stroke-opacity 0.3s;
  -o-transition: stroke-opacity 0.3s;
  transition: stroke-opacity 0.3s;
}

header .header-right-social a svg:hover path {
  fill: #fff;
}

header .header-right-social a svg .w-c {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

header .header-right-social a svg:hover .w-c {
  fill: unset;
  stroke: #fff;
}

header .header-right-social a svg:hover circle {
  stroke-opacity: 0.5;
}
.main {
  position: relative;
  padding-top: 96px;
  background-image: url(/local/templates/template/css/pages/../../img/bg.jpg) 50% no-repeat #191919;
  background-image: -webkit-image-set( url(/local/templates/template/css/pages/../../img/bg.jpg) 1x, url(/local/templates/template/css/pages/../../img/main-bg-x2.png) 2x);
  background-image: image-set( url(/local/templates/template/css/pages/../../img/bg.jpg) 1x, url(/local/templates/template/css/pages/../../img/main-bg-x2.png) 2x);
  background-size: cover;
  background-color: #0c0c0c;
}

.main-img-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-blok,
.main-bottom {
  position: relative;
  z-index: 2;
}

.main-blok {
  text-align: center;
  margin-bottom: 148px;
}
.main-blok h1 {
  font-size: 75px;
  line-height: 80px;
  max-width: 896px;
  text-align: center;
  margin: 0 auto 38px;
}
.main-blok a {
  font-size: 13px;
  line-height: 15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 24px 53px;
  background: #ff6647;
  border-radius: 7px;
  display: inline-block;
}
.catalog-blok a,
.our_projects .pug svg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
}
.main-blok a:hover {
  color: #ff6647;
  background: #fff;
}
.main-bottom-item p,
.main-bottom-item span {
  line-height: 23px;
  text-align: center;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-style: normal;
}
.main-bottom {
  border-top: 1px solid #ff6647;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 29px;
  padding-bottom: 26px;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.catalog-blok,
.catalog-blok a {
  display: -ms-flexbox;
}
.main-bottom-item {
  max-width: 480px;
  text-align: center;
  width: 100%;
}
.main-bottom-item p {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 8px;
}
.main-bottom-item span {
  font-weight: 300;
  font-size: 16px;
}
.main-bottom-item:nth-child(2) {
  position: relative;
}
.main-bottom-item:nth-child(2):after,
.main-bottom-item:nth-child(2):before {
  content: "";
  position: absolute;
  height: 110px;
  width: 1px;
  background: #ff6647;
  top: -30px;
}
.main-bottom-item:nth-child(2):before {
  right: 0;
}
.main-bottom-item:nth-child(2):after {
  left: 0;
}
.catalog-blok a,
.services {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
.catalog {
  padding-top: 73px;
  margin-bottom: 112px;
}
.catalog h2 {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  color: #383838;
  margin-bottom: 34px;
}
.catalog-blok {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog-blok a {
  max-width: 244px;
  min-width: 244px;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 38px 0 21px 22px;
  max-height: 345px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.catalog-blok a .catalog-blok-item,
.our_projects .pug {
  width: 100%;
  display: -ms-flexbox;
}
.catalog-blok img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.catalog-blok a:hover {
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
}
.catalog-blok a:hover img {
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
}
.catalog-blok a .catalog-blok-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
}
.catalog-blok a:not(:last-child) {
  margin-right: 19px;
}
.catalog-blok a p {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  text-align: left;
  margin-top: auto;
  max-width: 175px;
  margin-right: auto;
}
.catalog-blok a:nth-child(4) img {
  position: relative;
  top: -39px;
}
.catalog-blok a:nth-child(5) {
  padding-top: 0;
}
.catalog-blok a:nth-child(5) p {
  max-width: 112px;
}
.catalog-blok a:nth-child(5) img {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.our_projects {
  background-color: #faf9f6;
  padding-top: 30px;
  padding-bottom: 113px;
}
.our_projects .pug {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.our_projects_slider_blok,
.services-blok {
  display: -ms-flexbox;
}
.our_projects .pug svg {
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1075px) {
  .our_projects .pug .svg-block {
    -webkit-transform: translateY(42px);
        -ms-transform: translateY(42px);
            transform: translateY(42px);
  }
}
@media screen and (min-width: 1076px) {
  .our_projects .pug {
    -webkit-transform: translateY(-116%);
        -ms-transform: translateY(-116%);
            transform: translateY(-116%);
  }
}
.our_projects .pug svg path {
  fill: #6d6d6d;
  fill-opacity: 0.3;
}
.our_projects .pug svg:hover path {
  fill: #ff6647;
  fill-opacity: 1;
}
.our_projects .swiper-slide {
  margin-bottom: 60px;
}
.our_projects .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
}
.our_projects .swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child) {
  margin-right: 18px;
}
.our_projects .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #ff6647;
}
.our_projects h2 {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  color: #383838;
  margin-bottom: 40px;
  text-align: center;
}
.our_projects_slider_blok {
  max-width: 1112px;
  background: hsla(0, 0%, 100%, 0.8);
  border-radius: 15px;
  padding: 47px 53px 54px 45px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
.our_projects_slider_blok img {
  margin-right: 40px;
}
.our_projects_slider_blok_text-bg {
  background: #fff;
}
.our_projects_slider_blok_text-bg .our_projects_slider_blok-title {
  background: url(/local/templates/template/css/pages/../../img/text_bg.png) no-repeat;
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.help,
.services {
  background-repeat: no-repeat;
  background-position: 50%;
}
.our_projects_slider_blok_text-bg h3 {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 65px;
  color: #383838;
}
.our_projects_slider_blok_text p,
.our_projects_slider_blok_text p:nth-child(3) {
  font-size: 16px;
  line-height: 27px;
  color: #383838;
  font-family: Roboto, sans-serif;
  font-style: normal;
}
.our_projects_slider_blok_text p {
  font-weight: 300;
  max-width: 503px;
}
.our_projects_slider_blok_text p:nth-child(3) {
  font-weight: 500;
  margin-top: 30px;
  display: block;
}
.our_projects_slider_blok_text p:nth-child(3) span {
  margin: 0 9px;
  color: #d9d9d9;
}
.services {
  background-image: url(/local/templates/template/css/pages/../../img/service_bg.png);
  background-size: cover;
}
.services-container {
  padding-bottom: 84px;
}
.services h2 {
  padding-top: 68px;
  margin-bottom: 84px;
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  max-width: 919px;
}
.services-blok-item p,
.services-blok-item span {
  line-height: 23px;
  font-family: Roboto, sans-serif;
  font-style: normal;
}
.services-blok {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
}
.help-blok form,
.partners-blok-item {
  display: -ms-flexbox;
}
.services-blok:after {
  content: url(/local/templates/template/css/pages/../../img/line.svg);
  position: absolute;
  top: 30px;
  z-index: 0;
}
.services-blok-item {
  max-width: 255px;
  position: relative;
  z-index: 1;
}
.services-blok-item svg {
  margin-bottom: 33px;
}
.services-blok-item p {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}
.services-blok-item span {
  font-weight: 300;
  font-size: 16px;
  color: hsla(0, 0%, 100%, 0.9);
}
.help-blok h2,
.partners h2 {
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
}
.partners {
  padding-top: 67px;
}
.partners h2 {
  color: #383838;
  margin-bottom: 45px;
}
.help-blok h2,
.help-blok p,
.partners h2 {
  font-family: Roboto, sans-serif;
  font-style: normal;
}
.help-blok h2,
.help-blok p {
  color: #0f0d0d;
  text-align: center;
}
.partners-blok-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 64px;
}
.help {
  padding: 93px 0 135px;
  background-image: url(/local/templates/template/css/pages/../../img/help_blok.png);
  background-size: cover;
}
.help-blok {
  max-width: 782px;
  margin: 0 auto;
}
.help-blok h2 {
  margin-bottom: 23px;
}
.help-blok p {
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
}
.help-blok form .form-item input,
.help-blok form .form-item label {
  font-weight: 400;
  color: #1c1c1c;
  font-family: Roboto, sans-serif;
  font-style: normal;
}
.help-blok form {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.help-blok form .form-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.help-blok form .form-item label {
  font-size: 11px;
  line-height: 13px;
  opacity: 0.7;
  margin-bottom: 12px;
}
.help-blok form .form-item input {
  font-size: 16px;
  line-height: 19px;
  border: none;
  background: 0 0;
  border-bottom: 1px solid #b7a7a4;
  padding-bottom: 12px;
  margin-right: 24px;
  min-width: 234px;
}
.help-blok form .form-item input:placeholder {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1c1c1c;
  opacity: 0.2;
}
.help-blok form button {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  border: none;
  color: #fff;
  background: #ff6647;
  border-radius: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  padding: 23px 53px;
  margin-left: 12px;
  white-space: nowrap;
}
.help-blok form button:hover {
  color: #ff6647;
  background: #fff;
}
@media (max-width: 1299px) {
  .container {
    padding: 0 20px;
  }
  header .header {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  header .header-logo,
  header .header-menu {
    margin-right: 0;
  }
  .catalog-blok {
    /*overflow-x: scroll;*/
  }
}
@media (min-width: 1035px) {
  .burger,
  .header-mobile {
    display: none;
  }
}
.search-btn {
  width: 20px;
  min-width: 20px;
}
@media (max-width: 1035px) {
  header .header-menu .form .form-input button {
    position: absolute;
    left: calc(100% - 50px);
    top: 50%;
    z-index: 10;
    -webkit-transform: translateY(-61%);
        -ms-transform: translateY(-61%);
            transform: translateY(-61%);
  }

  header .header-menu ul {
    display: none;
  }
  header .header-menu {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  header .header-menu .form {
    margin-left: 0;
    position: unset;
  }
  header .header-menu .form .search-btn g {
    opacity: 1;
  }
  header .header-menu .form .form-input {
    background: #0c0c0c;
    right: 0;
    width: 100%;
    top: 0;
  }
  header .header-menu .form .form-input input {
    width: 100%;
    background: #0c0c0c;
  }
  header .header-menu .form .form-input .svg-close {
    right: calc(100% - 65px);
  }
  header .header-mobile-main {
    z-index: 1000;
    position: absolute;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    height: 100vh;
    right: 0px;
    top: 0px;
  }
  header .header-mobile {
    z-index: 1000;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background-image: url(/local/templates/template/css/pages/../../img/menu_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    padding: 15px 20px 20px;
  }
  header .header-mobile .svg-menu-close {
    position: absolute;
    top: 24px;
    right: 20px;
  }
  header .header-mobile .header-right {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  header .header-mobile .header-right .header-right-contact {
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
  }
  header .header-mobile ul {
    /*margin-bottom: 197px;*/
  }
  header .header-mobile ul li {
    margin-bottom: 15px;
  }
  header .header-mobile ul li a {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 45px;
    color: #fff;
  }
  header .header-right {
    display: none;
  }
}
@media (max-width: 960px) {
  .main {
    padding-top: 61px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-blok {
    margin-bottom: 86px;
  }
  .main-blok h1 {
    font-size: 35px;
    line-height: 40px;
    max-width: 320px;
    margin-bottom: 26px;
  }
  .main-bottom {
    border-top: none;
    padding-top: 0;
  }
  .main-bottom-item p {
    font-size: 25px;
    line-height: 23px;
    margin-bottom: 10px;
  }
  .main-bottom-item span {
    font-size: 13px;
    line-height: 18px;
  }
  .main-bottom-item:nth-child(2):after,
  .main-bottom-item:nth-child(2):before {
    content: none;
  }
  .catalog {
    padding-top: 35px;
    margin-bottom: 48px;
  }
  .catalog h2 {
    font-size: 35px;
    line-height: 41px;
    margin-bottom: 17px;
  }
}
@media (max-width: 460px) {
  .main-blok a {
    width: 100%;
  }
}
@media (max-width: 1075px) {
  .our_projects {
    padding-top: 30px;
    padding-bottom: 39px;
  }
  .our_projects .pug {
    top: unset;
    bottom: 0;
  }
  .our_projects .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .our_projects .swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child) {
    margin-right: 9px;
  }
  .our_projects h2 {
    font-size: 35px;
    line-height: 41px;
    margin-bottom: 20px;
    text-align: center;
    padding-left: 20px;
  }
  .our_projects_slider_blok {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    padding: 0 26px;
    background: 0 0;
  }
  .our_projects_slider_blok img {
    margin-right: 25px;
    width: 300px;
  }
  .our_projects_slider_blok_text-bg {
    background: 0 0;
  }
  .our_projects_slider_blok_text-bg h3 {
    font-size: 23px;
    line-height: 65px;
  }
  .our_projects_slider_blok_text p {
    font-size: 13px;
    line-height: 21px;
    max-width: 471px;
  }
  .our_projects_slider_blok_text p:nth-child(3) {
    font-size: 13px;
    line-height: 27px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e2e2;
  }
}
@media (max-width: 1260px) {
  .services-blok:after {
    content: none;
  }
}
@media (min-width: 966px) and (max-width: 1200px) {
  header {
    position: fixed;
    width: 100%;
    z-index: 10005;
  }
  .main {
    /*height: 100vh;*/
    /*position: relative;*/
    padding-top: 160px;
    padding-bottom: 111px;
  }
}
@media screen and (max-width: 1200px) {
  .main {
    padding-bottom: 111px;
  }

  .main-bottom {
    position: absolute;
    overflow: hidden;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}



/* i'm anoter*/

/* full-meal */

.full-meal {
  padding: 68px 0 84px;
  background: #070707;
  background: url(/local/templates/template/css/pages/../../img/full-meal-bg.jpg) center / cover no-repeat;
}

.full-meal__title {
  margin-bottom: 84px;
  max-width: 919px;
  font-family: Roboto, sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
}

.full-meal__list {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-gap: 40px;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.full-meal__list::before {
  content: url(/local/templates/template/css/pages/../../img/full-meal-svg-line.svg);
  position: absolute;
  top: 29px;
  left: 46px;
  overflow: hidden;
  z-index: 1;
  width: calc(720px + (1067 - 720) * ((100vw - 992px) / ( 1320 - 992)));
}

.full-meal__item {
  /*max-width: 253px;*/
  position: relative;
  z-index: 2;
}

.full-meal__img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin-bottom: 33px;
  width: 109px;
  height: 109px;
  background: #FF6647;
}

.full-meal__item-title {
  margin-bottom: 14px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
}

.full-meal__item-subtitle {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 992px) {
  .full-meal__title {
    font-size: 35px;
    line-height: 41px;
  }

  .full-meal__list {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .full-meal__list::before {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .full-meal__title {
    margin-bottom: 39px;
  }

  .full-meal__list {
    grid-gap: 33px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .full-meal__item {
    display: -ms-grid;
    display: grid;
    grid-column-gap: 18px;
    -ms-grid-columns: auto 18px 1fr;
    grid-template-columns: auto 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }

  .full-meal__item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .full-meal__item > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .full-meal__item > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .full-meal__item > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }

  .full-meal__img-block {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    margin: 0;
    width: 68px;
    height: 68px;
  }

  .full-meal__img {
    width: 32px;
  }

  .full-meal__item-title {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 23px;
  }

  .full-meal__item-subtitle {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    max-width: 250px;
    font-size: 13px;
    line-height: 21px;
  }
}

/* End full-meal */


/* partner */

.partner {
  padding: 67px 0 53px;
}

.partner__title {
  margin-bottom: 45px;
  font-family: Roboto, sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #383838;
}

.partner__list {
  display: -ms-grid;
  display: grid;
  grid-gap: 50px;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(6, 1fr);
}

.partner__item {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media screen and (max-width: 768px) {
  .partner__title {
    font-size: 35px;
    line-height: 41px;
  }

  .partner__list {
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* End partner */


/* cta */

.cta {
  padding: 93px 0 135px;
  /*background: conic-gradient(from 203.84deg at 67.39% 60.64%, #F9F9F9 0deg, #F9F9F9 360deg);*/
  background: #F9F8F8;
  background: url(/local/templates/template/css/pages/../../img/cta-bg.png) center / cover no-repeat;
}

.cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta__title {
  margin-bottom: 23px;
  font-family: Roboto, sans-serif;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  color: #0F0D0D;
}

.cta__subtitle {
  margin-bottom: 65px;
  max-width: 751px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 23px;
  text-align: center;
  color: #0F0D0D;
}

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

.cta__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 36px;
}

.cta__label--margin {
  margin-right: 24px;
}

.cta__label-text {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 13px;
  color: #1C1C1C;
}

.cta__input {
  border: 0;
  border-radius: 0;
  opacity: 0.9;
  border-bottom: 1.5px solid #1C1C1C;
  outline: 0;
  padding: 12px 0;
  width: 234px;
  font-size: 15px;
  background: transparent;
  -webkit-transition: border-bottom-color 0.3s;
  -o-transition: border-bottom-color 0.3s;
  transition: border-bottom-color 0.3s;
}

.cta__input-hinted {
  opacity: 0;
  color: #ff6647;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.cta__input.cta__input-hint {
  border-bottom-color: #ff6647;
}

.cta__input.cta__input-hint ~ .cta__input-hinted {
  opacity: 1;
}

.cta__input:focus {
  border-bottom-color: #FF6647;
}

.cta__button {
  border: 0;
  outline: 0;
  border-radius: 7px;
  padding: 3px 51px;
  height: 62px;
  font-family: Roboto;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #FF6647;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}

.cta__dop-text {
  max-width: 781px;
  margin: 0 auto;
}

.cta__dop-text a {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.cta__dop-text a:hover {
  color: #ff6647;
}

.cta__button:hover {
  background: #EA5133;
}

@media screen and (max-width: 860px) {
  .cta__title {
    font-size: 35px;
    line-height: 41px;
  }

  .cta__subtile {
    font-size: 16px;
    line-height: 24px;
  }

  .cta__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    max-width: 500px;
  }

  .cta__label {
    margin: 0;
    margin-bottom: 6px;
  }

  .cta__input {
    width: 100%;
  }
}

@media screen and (max-width: 675px) {
  .cta__title {
    margin-bottom: 12px;
  }

  .cta__subtitle {
    margin-bottom: 30px;
    line-height: 29px;
  }
}

@media screen and (max-width: 1270px) {
  .cta__subtitle {
    line-height: 33px;
  }
}

/* End cta */


/* main-catalog */

.section-main {
  padding-bottom: 137px;
  background: #f9f9f9;
}

.main-catalog {
  padding: 127px 0 17px;
}

.main-catalog__title {
  margin-bottom: 43px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: #383838;
}

.main-catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 21px;
}

.main-catalog__item {
  position: relative;
  padding: 0 10px 20px;
  cursor: pointer;
}

.main-catalog__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 1px;
  background: #ff6647;
  -webkit-transition: width 0.4s;
  -o-transition: width 0.4s;
  transition: width 0.4s;
}

.main-catalog__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 21px;
}

.main-catalog__item-svg {
  margin-right: 6px;
  min-width: 17px;
  min-height: 17px;
  fill: #353535;
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.main-catalog__item-text {
  display: inline-block;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #353535;
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}

@media screen and (min-width: 769px) {
  .main-catalog__item:hover::after,
  .main-catalog__item_current::after {
    width: 100%;
  }

  .main-catalog__item:hover .main-catalog__item-svg,
  .main-catalog__item_current .main-catalog__item-svg {
    fill: #FF6647;
  }

  .main-catalog__item:hover .main-catalog__item-text,
  .main-catalog__item_current .main-catalog__item-text {
    color: #ff6647;
  }
}

.main-catalog__slider {
  position: relative;
  margin-bottom: 47px;
}

.main-catalog__slider-item {
  position: relative;
  display: inline-block;
  border-radius: 7px;
  margin: 0 2px 10px 0;
  padding: 5.5px 12px 7.5px;
  width: auto !important;
  background: #eeeeef;
  -webkit-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  transition: all 0.3s !important;
}

.main-catalog__slider-img {
  position: absolute;
  top: 50%;
  left: 11px;
  opacity: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}

.main-catalog__slider-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-catalog__slider-text {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  color: #7A8492;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

/*.main-catalog__slider-item:hover .main-catalog__slider-img,*/
.main-catalog__slider-item--current .main-catalog__slider-img {
  opacity: 1;
}

/*.main-catalog__slider-item:hover .main-catalog__slider-text,*/
.main-catalog__slider-item--current .main-catalog__slider-text {
  color: #fff;
}

/*.main-catalog__slider-item:hover,*/
.main-catalog__slider-item--current {
  padding-left: 28px;
  background: #ff6647;
}

.main-catalog__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 17px;
}

.main-catalog__bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-catalog__bottom-menu {
  position: relative;
}

.main-catalog__bottom-menu:nth-child(1) {
  margin-right: 28px;
}

.main-catalog__bottom-text {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 15px;
  color: #A1A8B3;
}

.main-catalog__bottom-text span {
  margin-right: 3px;
  color: #383838;
}

.main-catalog__bottom-menu .main-catalog__bottom-text {
  cursor: pointer;
}

.main-catalog__bottom-dropmenu-container {
  position: relative;
  padding-top: 12px;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.main-catalog__bottom-dropmenu-container--active {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  pointer-events: auto;
}

.main-catalog__bottom-dropmenu-container::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 6px;
  z-index: 10;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.main-catalog__bottom-dropmenu {
  position: absolute;
  left: 0;
  top: 100%;
  border-radius: 7px;
  padding: 15px 16px;
  width: 174px;
  -webkit-box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.15);
  background: #FFFFFF;
}

.main-catalog__bottom-dropmenu-item:not(:last-child) {
  margin-bottom: 2px;
}

.main-catalog__bottom-dropmenu-link {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #3a3a3a;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.main-catalog__bottom-dropmenu-link:hover,
.main-catalog__bottom-dropmenu-link--current {
  color: #ff6647;
}

.main-catalog__bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-catalog__catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-catalog__catalog-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 26px 23px;
  -ms-grid-columns: 1fr 23px 1fr 23px 1fr 23px 1fr;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 60px;
  width: 100%;
}

.main-catalog__catalog-item {
  border-radius: 10px;
  padding: 19px 22px;
  background: #FFFFFF;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.main-catalog__catalog-item:hover {
  -webkit-box-shadow: 0 0 20px #00000014;
          box-shadow: 0 0 20px #00000014;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.main-catalog__catalog-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
  padding: 0 15px;
}

.main-catalog__catalog-img {
  max-width: 134px;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-catalog__catalog-text {
  display: block;
  margin-bottom: 7px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 15px;
  color: #c1c1c1;
}

.main-catalog__catalog-title {
  margin-bottom: 14px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 19px;
  color: #383838;
}

.main-catalog__catalog-button {
  display: block;
  border: 1px solid rgba(255, 102, 71, 0.25);
  border-radius: 124px;
  padding: 13px;
  width: 100%;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FF6647;
  -webkit-transition: color 0.3s, background 0.3s;
  -o-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}

.main-catalog__catalog-button:hover {
  color: #fff;
  background: #ff6647;
}

.main-catalog__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 65px;
}

.main-catalog__pagination-left,
.main-catalog__pagination-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 27px;
  background: #f0f0f0;
}

.main-catalog__pagination-left {
  border-right: 1px solid #f9f9f9;
  border-radius: 10px 0 0 10px;
}

.main-catalog__pagination-right {
  border-left: 1px solid #f9f9f9;
  border-radius: 0 10px 10px 0;
}

.main-catalog__pagination-right svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-catalog__pagination-left svg path,
.main-catalog__pagination-right svg path {
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.main-catalog__pagination-left:hover svg path,
.main-catalog__pagination-right:hover svg path {
  fill: #ff6647;
}

.main-catalog__pagination-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 29px;
  background: #f0f0f0;
}

.main-catalog__pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-catalog__pagination-item:not(:last-child) {
  margin-right: 20px;
}

.main-catalog__pagination-link {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 19px;
  color: #9B9A9A;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.main-catalog__pagination-link:hover,
.main-catalog__pagination-link--current {
  color: #ff6647;
}

.main-catalog__bottom-item {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  color: #A1A8B2;
}

.selectric-main-catalog_selectric {
  margin-left: 5px;
  margin-right: 5px;
}

.selectric-main-catalog_selectric .selectric {
  border: 0;
}

.selectric-main-catalog_selectric .selectric .label {
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 20px;
}

.selectric-main-catalog_selectric .selectric .main-catalog__bottom-dropmenu-link {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  letter-spacing: 0em;
  color: #383838;
}

.selectric-main-catalog_selectric .selectric .button {
  display: none;
}

.selectric-main-catalog_selectric .selectric-items {
  top: calc(100% + 12px);
  border: 0;
  border-radius: 7px;
  padding: 15px 17px;
  min-width: 174px;
  -webkit-box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.15);
  background: #FFFFFF;
}

.main-catalog__bottom-menu-idk_first .selectric-main-catalog_selectric .selectric-items {
  left: -88px;
  height: 250px;
}

.selectric-main-catalog_selectric .selectric-items::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 31px;
  width: 15px;
  height: 15px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.selectric-main-catalog_selectric .selectric-items ul {
  overflow-x: hidden;
}

.selectric-main-catalog_selectric .selectric-items li {
  position: relative;
  padding: 0;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.main-catalog__bottom-menu-idk_first .selectric-main-catalog_selectric .selectric-items li::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-left: 7px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80% 80%;
  background-color: #fff;
  border-color: #fff;
  opacity: 0;
  -webkit-transform: translate(5px, -50%);
      -ms-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
  -webkit-transition: opacity 0.3s, background 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, background 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s, background 0.3s;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  transition: opacity 0.3s, transform 0.3s, background 0.3s, -webkit-transform 0.3s;
}

.main-catalog__bottom-menu-idk_first .selectric-main-catalog_selectric .selectric-items li.selected::after {
  opacity: 1;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23ff6647' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e") center / cover no-repeat;
  background-size: 80% 80%;
  background-color: #fff;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (max-width: 768px) {
  .main-catalog__bottom-menu-idk_first .selectric-main-catalog_selectric .selectric-items li::after {
    right: 12px;
  }
}

.main-catalog__select-img-close {
  width: 7px;
  cursor: pointer;
}

.selectric-main-catalog_selectric .selectric-items li:not(:last-child) {
  margin-bottom: 15px;
}

.selectric-main-catalog_selectric .selectric-items li.highlighted {
  color: #ff6647;
  background: transparent;
}

.selectric-main-catalog_selectric .selectric-items li.highlighted a {
  color: #ff6647;
}

.selectric-main-catalog_selectric .selectric-items li:hover { 
  color: #ff6647;
  background: transparent;
}

@media screen and (max-width: 1200px) {
  .main-catalog__item-svg {
    margin-right: 12px;
  }

  .main-catalog__item-text {
    font-size: 12px;
    line-height: 15px;
  }
}

@media screen and (max-width: 992px) {
  .main-catalog__catalog-list {
    -ms-grid-columns: 1fr 23px 1fr 23px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 870px) {
  .main-catalog {
    padding: 40px 0 17px;
  }

  .main-catalog__title {
    font-size: 45px;
    line-height: 41px;
  }

  .main-catalog__item-text {
    font-size: 10px;
    line-height: 14px;
  }
}

@media screen and (max-width: 768px) {
  .main-catalog__item::after {
    display: none;
  }

  .main-catalog__item-link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .selectric-main-catalog__list .selectric {
    position: relative;
    border: 1px solid #DFDFDF;
    border-radius: 7px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .selectric-main-catalog__list .selectric span {
    color: #ff6647;
  }

  .selectric-main-catalog__list .selectric svg path {
    fill: #ff6647;
  }

  .selectric-main-catalog__list .selectric::after {
    content: url(/local/templates/template/css/pages/../../img/main-catalog-arrow-svg.svg);
    position: absolute;
    right: 16px;
    top: 16%;
    width: 9px;
    height: 7px;
  }

  .selectric-main-catalog__list .button {
    display: none;
  }

  .selectric-main-catalog__list {
    margin-bottom: 21px;
  }

  .selectric-main-catalog__list .label {
    margin: 0;
    padding: 13px 33px 13px 13px;
    height: auto;
  }

  .selectric-main-catalog__list .selectric-items li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
  }

  .selectric-main-catalog__list .selectric-items li:hover {
    background: transparent;
  }

  .selectric-main-catalog__list .selectric-items li.highlighted {
    background: transparent;
    color: #ff6647;
  }

  .selectric-main-catalog__list .selectric-items li.highlighted span {
    color: #ff6647;
  }

  .selectric-main-catalog__list .selectric-items li.highlighted svg path {
    fill: #ff6647;
  }

  .selectric-main-catalog__list .selectric-items {
    display: none;
    z-index: 1;
    /*-webkit-transition: opacity 0.3s;*/
    /*-o-transition: opacity 0.3s;*/
    /*transition: opacity 0.3s;*/
    /*pointer-events: auto;*/
    /*-webkit-user-select: auto;*/
       /*-moz-user-select: auto;*/
        /*-ms-user-select: auto;*/
            /*user-select: auto;*/
  }

  /*.selectric-open {
    opacity: 1;
    z-index: 9999;
    pointer-events: auto;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }*/

/*  .selectric-main-catalog__list.selectric-open .selectric-items {
    pointer-events: auto;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }*/

  .main-catalog__item-text {
    font-size: 11px;
    line-height: 12px;
  }
}

@media screen and (max-width: 730px) {
  .main-catalog__catalog-list {
    -ms-grid-columns: 1fr 23px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .main-catalog {
    padding: 28px 0 17px;
  }

  .main-catalog__title {
    margin-bottom: 12px;
    font-size: 35px;
    line-height: 41px;
  }

  .main-catalog__slider {
    margin-bottom: 35px;
  }

  .main-catalog__list {
    margin-bottom: 16px;
  }

  .main-catalog__bottom-right {
    display: none;
  }

  .main-catalog__slider-item--current {
    padding-left: 28px;
  }

  .main-catalog__pagination-item:nth-child(5),
  .main-catalog__pagination-item:nth-child(6),
  .main-catalog__pagination-item:nth-child(7) {
    display: none;
  }

  .main-catalog__pagination-middle {
    padding: 0 15px;
  }

  .main-catalog__pagination-left,
  .main-catalog__pagination-right {
    padding: 0 13px;
  }
}

@media screen and (max-width: 540px) {
  .main-catalog__catalog-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .main-catalog__bottom-menu:nth-child(1) {
    margin-right: 20px;
  }

  .main-catalog__bottom-menu .main-catalog__bottom-text {
    font-size: 12px;
  }

  .main-catalog__bottom-menu:nth-child(2) .main-catalog__bottom-dropmenu {
    left: -20px;
  }
}

.main-catalog__bottom-menu-idk:nth-child(2) img {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

@media screen and (max-width: 480px) {
  .main-catalog__bottom-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .selectric-main-catalog_selectric .selectric .main-catalog__bottom-dropmenu-link {
    font-size: 10px;
  }

  .selectric-main-catalog_selectric .selectric-items {
    left: -80px;
  }
}

/* End main-catalog */

.modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  width: 100vw;
  height: 100vh;
}

.modal__dark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.7);
}

.modal__body {
  border-radius: 7px;
  padding: 44px 50px 50px;
  max-width: 353px;
  -webkit-box-shadow: 0px 4px 50px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 50px 15px rgba(0, 0, 0, 0.25);
  background: #0C0C0C;
}

.modal__title {
  margin-bottom: 34px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 31px;
  line-height: 45px;
  letter-spacing: -0.02em;
  color: #fff;
}

.modal__label {
  position: relative;
  display: block;
}

.modal__label:first-child .modal__input {
  margin-bottom: 7px;
}

.modal__label:nth-child(2) .modal__input {
  margin-bottom: 25px;
}

.modal__input {
  border: 0;
  outline: 0;
  border-radius: 6px;
  padding: 15px 17px;
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: margin 0.3s;
  -o-transition: margin 0.3s;
  transition: margin 0.3s;
}

.modal__input-hinted {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 253px;
  opacity: 0;
  color: #ff6647;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.modal__label:first-child .modal__input.modal__input-hint,
.modal__label:nth-child(2) .modal__input.modal__input-hint {
  margin-bottom: 45px;
}

.modal__input.modal__input-hint ~ .modal__input-hinted {
  opacity: 1;
}

.modal__label-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 33px;
}

.modal__checkbox-text {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #fff;
}

.custom-checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox>span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.custom-checkbox>span::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-right: 7px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox>input:not(:disabled):active+span::before {
  background-color: #ff6647;
}

.custom-checkbox>input:focus:not(:checked)+span::before {
  border-color: #ff6647;
}

.custom-checkbox>input:checked+span::before {
  background-color: #ff6647;
  border-color: #ff6647;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox>input:disabled+span::before {
  background-color: #e9ecef;
}

.modal__button {
  border: 0;
  outline: 0;
  border-radius: 7px;
  width: 100%;
  padding: 24px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #FF6647;
  cursor: pointer;
}

.modal__body {
  position: relative;
}

.modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.modal__close:hover {
  opacity: 1;
}

/* product */

.section-main-2 {
  padding: 37px 0 61px;
}

.section-main-2__first-block {
  margin-bottom: 41px;
}

.section-main-2__first-block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  color: #ff6647;
}

.section-main-2__first-block a span {
  margin-left: 9px;
}

.product {
  padding-bottom: 122px;
  background: #f9f9f9;
}

.product__content {
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
}

.product__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product__left-img {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  max-width: 334px;
  max-height: 415px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product h1 {
  margin-bottom: 17px;
  max-width: 526px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  color: #383838;
}

.product__right-span {
  display: inline-block;
  margin-bottom: 22px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 27px;
  color: #ff6647;
}

.product p {
  margin-bottom: 39px;
  max-width: 451px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: #000;
}

.product__list {
  margin-bottom: 48px;
}

.product__item {
  max-width: 350px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 30px;
  color: #000;
}

.product__item-title {
  margin-bottom: 13px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000;
}

.product__link {
  display: inline-block;
  border: 1px solid #ff6647;
  border-radius: 7px;
  padding: 24px 73px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #ff6647;
}

@media screen and (max-width: 1199px) {
  .section-main-2 {
    padding: 107px 0 55px;
  }
}

@media screen and (max-width: 966px) {
  .section-main-2 {
    padding: 37px 0 55px;
  }
}

/* End product */


/* 404 */

.section-main-3 {
  height: 100vh;
  background: url(/local/templates/template/css/pages/../../img/404__bg.jpg) center / cover no-repeat #000;
}

@media screen and (max-width: 450px) and (max-height: 813px) {
  .section-main-3 {
    height: calc(100vh - 56px);
  }
}

.section-main-3 header {
  background: transparent;
}

.error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.error__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 64px;
}

@media screen and (min-width: 1199px) {
  .error {
    height: calc(100% - 64px);
  }

  .error__content {
    padding-top: 0;
  }
}

@media screen and (max-width: 966px) {
  .error {
    height: calc(100% - 71px);
  }

  .error__content {
    padding-top: 0;
  }
}

.error__title {
  margin-bottom: 60px;
  height: 185px;
  font-family: Intro, sans-serif;
  font-size: 250px;
  line-height: 190px;
  color: #ff6647;
}

.error__text {
  margin-bottom: 65px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
}

.error__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.error__link-img {
  margin-right: 9px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.error__link-text {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff6647;
}

.error__link:hover .error__link-img {
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
}

@media screen and (max-width: 768px) {
  .error__title {
    margin-bottom: 35px;
  }

  .error__text {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 600px) {
  .error__title {
    margin-bottom: 25px;
    height: 136px;
    font-size: 180px;
    line-height: 143px;
  }

  .error__text {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 380px) {
  .error__title {
    font-size: 150px;
    margin-bottom: 25px;
  }
}

/* End 404 */


/* fitter */

.main-section-4 {
  padding: 97px 0 248px;
}

.fitter-heading {
  border-bottom: 1px solid #d3d3d3;
  padding: 0 0 21px;
  width: calc(100% - 40px);
}

.main-section-4 h1 {
  margin: 0 auto;
  max-width: 636px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  color: #383838;
}

.fitter__content {
  margin: 0 auto;
  padding-top: 40px;
  max-width: 636px;
}

.fitter p {
  margin-bottom: 30px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 300;
  line-height: 27px;
  color: #000;
}

.fitter img {
  border-radius: 10px;
  margin-bottom: 40px;
}

.fitter__link {
  display: inline-block;
  border: 1px solid #ff6647;
  border-radius: 7px;
  margin-top: 15px;
  padding: 24px 72px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #FF6647;
  -webkit-transition: color 0.3s, background 0.3s;
  -o-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}

.fitter__link:hover {
  color: #ff6647;
  background: #fff;
}

@media screen and (max-width: 1200px) {
  .main-section-4 {
    padding-bottom: 180px;
  }
}

@media (min-width: 966px) and (max-width: 1200px) {
  .main-section-4 {
    padding-top: 168px;
  }
}

@media screen and (max-width: 768px) {
  .main-section-4 {
    padding-top: 27px;
    padding-bottom: 80px;
  }

  .main-section-4 h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .fitter p {
    font-size: 14px;
    line-height: 25px;
  }

  .fitter__text--margin {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 575px) {
  .main-section-4 h1 {
    font-size: 40px;
    line-height: 45px;
  }

  .fitter__content {
    padding-top: 20px;
  }
}

/* End fiter */


/* Company */

.section-main-3--dop {
  background: #000;
}

.section-main-3--dop__svg-block {
  position: fixed;
  right: 0;
  bottom: -8px;
  z-index: 1;
}

.section-main-3--dop header {
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 966px) and (max-width: 1200px) {
  .section-main-3--dop header {
    position: fixed;
    z-index: 3;
  }
}

.company {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 64px;
}

@media screen and (min-width: 1199px) {
  .company {
    height: calc(100% - 64px);
  }

  .company__content {
    padding-top: 0;
  }
}

@media screen and (max-width: 996px) {
  .company {
    height: calc(100% - 71px);
  }

  .company__content {
    padding-top: 0;
  }
}

.company__content {
  max-width: 1136px;
  margin: 0 auto;
}

.company h1 {
  margin-bottom: 24px;
  max-width: 723px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  color: #fff;
}

.company p {
  max-width: 649px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
}

.company h1 span {
  color: #ff6647;
}

@media screen and (max-width: 768px) {
  .company h1 {
    font-size: 25px;
    line-height: 40px;
  }
}

@media screen and (max-width: 455px) {
  .company h1 {
    font-size: 18px;
    line-height: 28px;
  }

  .company p {
    font-size: 14px;
    line-height: 21px;
  }
}

/* End Company */


/* product slider */

.product-slider {
  padding-top: 52px;
}

.product-slider__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 26px;
}

.product-slider__title {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 41px;
  color: #383838;
}

@media screen and (max-width: 480px) {
  .product-slider__title {
    font-size: 20px;
    line-height: 30px;
  }
}

.product-slider__list .main-catalog__catalog-item {
  /*max-width: 307px;*/
  border: 1px solid #E1E1E1;
}

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

.product-slider__button--next {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product-slider__button-container:first-child {
  margin-right: 16px;
}

.product-slider__button-container {
  cursor: pointer;
}

.product-slider__button path {
  -webkit-transition: fill 0.3s, fill-opacity 0.3s;
  -o-transition: fill 0.3s, fill-opacity 0.3s;
  transition: fill 0.3s, fill-opacity 0.3s;
}

.product-slider__button-container:hover svg path {
  fill: #ff6647;
  fill-opacity: 1;
}

.product-slider__button-container:focus svg path {
  fill: #d5d5d5;
  fill-opacity: 1;
}

.section-main-2 {
  background: #f9f9f9;
}

.product-slider {
  background: #fff;
}

@media screen and (max-width: 911px) {
  .product__right-title {
    font-size: 45px;
    line-height: 55px;
  }
}

@media screen and (max-width: 768px) {
  .product__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .product__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .product h1,
  .product p,
  .product__item {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .product h1 {
    font-size: 30px;
    line-height: 45px;
  }
}

/* End product slider */


/* map */

.map-page__header,
.map-page__footer {
  position: relative;
  z-index: 3;
}

.map {
  padding: 124px 0;
}

.map::after {
  content: url(/local/templates/template/css/pages/../../img/map-page-bg-svg-1.svg);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.map__content {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
  -ms-grid-columns: 419px 24px 1fr;
  grid-template-columns: 419px 1fr;
}

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

.map__left-subtitle {
  margin-bottom: 19px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: #000;
}

.map__left-title {
  margin-bottom: 39px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  color: #383838;
}

.map__left-tel {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  color: #000;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.map__left-tel:hover {
  color: #ff6647;
}

.map__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.map__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.07);
}

@media screen and (min-width: 993px) and (min-height: 1000px) {
  .map {
    padding: 200px 0;
  }
}

@media screen and (max-width: 992px) {
  .map {
    padding: 95px 0;
  }

  .map__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .map__left-subtitle {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 27px;
  }

  .map__left-title {
    margin-bottom: 20px;
    font-size: 45px;
    line-height: 53px;
  }

  .map__left-tel {
    font-size: 30px;
    line-height: 27px;
  }
}

@media screen and (max-width: 575px) {
  .map__left-subtitle {
    font-size: 16px;
    line-height: 27px;
  }

  .map__left-title {
    font-size: 30px;
    line-height: 40px;
  }

  .map__left-tel {
    font-size: 23px;
    line-height: 20px;
  }
}

@media screen and (max-width: 390px) {
  .map__left-title {
    font-size: 24px;
    line-height: 25px;
  }
}

/* End map */


/* Fixes */

.svg-block {
  position: absolute;
  top: 50%;
  z-index: 99;
  padding: 20px;
  cursor: pointer;
  -webkit-transform: translateY(-116%);
      -ms-transform: translateY(-116%);
          transform: translateY(-116%);
}

.svg-block svg path {
  fill: #dad9d7;
  fill-opacity: 1;
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.svg-block:hover .svg-block svg path {
  fill: #ff6647;
}

.svg-block-prev {
  left: 0;
}

.svg-block-next {
  right: 0;
}

@media screen and (max-width: 1075px) {
  .svg-block {
    top: unset;
    bottom: 0;
    -webkit-transform: translateY(15%);
        -ms-transform: translateY(15%);
            transform: translateY(15%);
  }
}

.svg-block:hover svg path {
  fill: #fe8168;
  fill-opacity: 1;
}

.header .header-right-social a {
  min-width: 32px;
}

@media screen and (min-width: 1300px) {
  header .header-menu .form-input {
    top: -20px;
  }

  .header .header-menu .form-input input {
    padding: 21px 65px 24px 63px;
  }
}

.cta__input::-webkit-input-placeholder {
 color: #383838;
}

.cta__input::-moz-placeholder {
 color: #383838;
}

.cta__input:-ms-input-placeholder {
 color: #383838;
}

.cta__input::-ms-input-placeholder {
 color: #383838;
}

.cta__input::placeholder {
  color: #383838;
}

.burger--active {
  display: none;
}

@media screen and (max-width: 799px) and (min-width: 640px) {
  .footer-bottom-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-bottom-container a,
  .footer-bottom-container p {
    font-size: 11px;
  }
}

.catalog-blok-item-1 {
  background-color: #030303;
  background-image: url("/local/templates/template/css/pages/../../img/shape.jpg");
  background-image: -webkit-image-set( url("/local/templates/template/css/pages/../../img/shape.jpg") 1x,
                                     url("/local/templates/template/css/pages/../../img/shape-x2.jpg") 2x);
  background-image: -webkit-image-set( url("/local/templates/template/css/pages/../../img/shape.jpg") 1x,   
                             url("/local/templates/template/css/pages/../../img/shape-x2.jpg") 2x);
  background-image: image-set( url("/local/templates/template/css/pages/../../img/shape.jpg") 1x,   
                             url("/local/templates/template/css/pages/../../img/shape-x2.jpg") 2x);
}

.catalog-blok-item-2 {
  background-color: #fb6445;
  background-image: url("/local/templates/template/css/pages/../../img/shape_red.jpg");
  background-image: -webkit-image-set( url("/local/templates/template/css/pages/../../img/shape_red.jpg") 1x,
                                     url("/local/templates/template/css/pages/../../img/shape_red-x2.jpg") 2x);
  background-image: -webkit-image-set( url("/local/templates/template/css/pages/../../img/shape_red.jpg") 1x,   
                             url("/local/templates/template/css/pages/../../img/shape_red-x2.jpg") 2x);
  background-image: image-set( url("/local/templates/template/css/pages/../../img/shape_red.jpg") 1x,   
                             url("/local/templates/template/css/pages/../../img/shape_red-x2.jpg") 2x);
}

.catalog h2 {
  margin: 0;
}

.catalog-swiper {
  margin: 0 !important;
  padding-top: 34px !important;
}

.catalog-blok a {
  min-height: 345px;
}

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

@media screen and (max-width: 880px) {
  .cta {
    padding-bottom: 63px;
  }

  .cta__content {
    max-width: 540px;
  }

  .cta__title {
    width: 100%;
    text-align: left;
  }

  .cta__subtitle {
    margin-bottom: 26px;
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  .cta__title {
    font-size: 33px;
  }

  .cta__subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}

@media screen and (max-height: 1100px) {
  .main-blok {
    margin-bottom: 115px;
  }

  .main-blok h1 {
    font-size: 55px;
    line-height: 68px;
  }  
}

@media screen and (max-height: 900px) {
  .main-blok h1 {
    max-width: 800px;
    font-size: 48px;
    line-height: 65px;
  }  
}


@media screen and (max-height: 700px) {
  .main-blok h1 {
    max-width: 600px;
    font-size: 39px;
    line-height: 55px;
  }  
}

@media screen and (max-height: 600px) {
  .main-blok {
    margin-bottom: 95px;
  }

  .main-blok h1 {
    font-size: 34px;
    line-height: 47px;
  }  
}

@media screen and (max-width: 1000px) and (min-height: 900px) {
  .main-blok h1 {
    max-width: 500px;
    font-size: 39px;
    line-height: 55px;
  }
}

@media screen and (max-width: 530px) and (min-height: 600px) {
  .main-blok h1 {
    max-width: 500px;
    font-size: 35px;
    line-height: 40px;
  }
}

.swiper-button-disabled,
.swiper-button-disabled svg path {
  pointer-events: none;
  fill: #dbdbdb;
  fill-opacity: 0.5;
}

@media screen and (min-height: 450px) and (max-height: 1200px) {
  .main {
    padding-top: calc(50px + (370 - 50) * ((100vh - 600px) / (1200 - 600)));
    height: calc(100vh - 64px);
  }

  .main-bottom {
    position: absolute;
    overflow: hidden;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}

@media screen and (min-width: 966px) and (max-width: 1200px) {
  .main {
    height: 100vh;
    padding-top: calc(150px + (295 - 150) * ((100vh - 600px) / (1200 - 600)));
  }
}

@media screen and (max-width: 450px) and (max-height: 813px) {
  .main {
    height: calc(100vh - (64px + 60px));
  }

  header .header-mobile {
    height: calc(100vh - 53px);
  }
}

.modal__checkbox-text {
  display: block;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.modal__checkbox-text a {
  display: inline;
}

.modal__checkbox-text::before {
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.modal__input-hinted--checkbox-hinted {
  color: #ff6647;
}

.custom-checkbox > .modal__input-hinted--checkbox-hinted::before {
  border-color: #ff6647;
}

.custom-checkbox > span {
  position: relative;
  display: block;
  padding-left: 35px;
  cursor: pointer;
}

.custom-checkbox > span::before {
  position: absolute;
  left: 0;
  top: 0;
}

.custom-checkbox > span a {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.custom-checkbox > span a:hover {
  color: #ff6647;
}


/* buttons hover */

.modal__button,
.product__link,
.main-blok a,
.fitter__link {
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.modal__button:hover,
.product__link:hover,
.main-blok a:hover,
.fitter__link:hover {
  background: #EA5133;
  color: #fff;
}

/* End buttons hover */

@media screen and (min-width: 1340px) {
  .catalog .product-slider__buttons {
    display: none;
  }
}

@media screen and (max-width: 1035px) {
  .header .header-right-social a {
    min-width: 42px;
    min-height: 42px;
    max-width: 42px;
    max-height: 42px;
  }

  header .header-right-social a svg {
    width: 100%;
    height: 100%;
  }

  header .header-right-social a svg path {
    fill: #fff;
  }

  header .header-right-social a svg circle {
    stroke-opacity: 0.5;
  }

  header .header-right-social a .header-right-social-whatsapp path {
    fill: none;
    stroke-opacity: 0.8;
    stroke: #fff;
  }

  header .header-right-social a .header-right-social-whatsapp:hover path {
    fill: none;
    stroke-opacity: 0.8;
    stroke: #fff;
  }
}

@media screen and (max-width: 768px) {
  .our_projects_slider_blok {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }

  .our_projects_slider_blok img {
    margin-right: 0;
    width: auto;
  }
}

@media screen and (max-width: 575px) {
  .header .header-right-social a {
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
  }

  .our_projects h2 {
    text-align: left;
  }

  .main-blok {
    margin-bottom: 45px;
  }

  .main-bottom-item span {
    display: block;
    line-height: 17px;
  }
}

.header_ul_active {
  color: #ff6647 !important;
}

@media screen and (min-width: 768px) and (max-width: 1074px) {
  .svg-block {
    top: 39%;
    bottom: unset;
    -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
            transform: translateY(-30%);
    padding: 0;
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .svg-block {
    top: 23%;
    bottom: unset;
    /*-webkit-transform: translateY(-53%);*/
        /*-ms-transform: translateY(-53%);*/
            /*transform: translateY(-53%);*/
    padding: 0;
  }
}

@media screen and (max-width: 945px) and (min-height: 450px) and (max-height: 900px) {
  .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 29px;
  }

  .main-blok {
    margin: 0;
  }
}

.cookie-message {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 60px 20px 20px;
  max-width: 1299px;
  width: calc(100% - 30px);
  -webkit-box-shadow: 0px 9px 20px #00000033;
          box-shadow: 0px 9px 20px #00000033;
  background: #fff;
  opacity: 0;
  -webkit-transform: translate(-50%, 200%);
      -ms-transform: translate(-50%, 200%);
          transform: translate(-50%, 200%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.4s;
  transition: opacity 0.3s, -webkit-transform 0.4s;
  -o-transition: opacity 0.3s, transform 0.4s;
  transition: opacity 0.3s, transform 0.4s;
  transition: opacity 0.3s, transform 0.4s, -webkit-transform 0.4s;
}

.cookie-message_open {
  opacity: 1;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  pointer-events: auto;
}

.cookie-message p {
  color: #000;
}

.cookie-message a {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.cookie-message a:hover {
  color: #ff6647;
}

.cookie-message__close {
  position: absolute;
  right: 0;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px;
  width: 64px;
  height: 64px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}

.cookie-message__close:hover {
  background: #ff6647;
}

@media screen and (max-width: 785px) {
  .cookie-message p {
    font-size: 14px;
  }
}

.selectric-items li.selected {
  background: transparent;
}

.selectric-items li.selected a {
  color: #ff6647;
}

@media screen and (max-width: 600px) {
  .our_projects_slider {
    margin: 0 auto;
    max-width: 471px;
  }

  .svg-block {
    padding: 20px 0;
  }
}

.selectric-img-rotate {
  transition: transform 0.3s;
}

.selectric-img-rotate.rotate {
  transform: rotate(-180deg) translateY(0px) !important;
}

@media screen and (max-width: 1035px) {
  .search-btn {
    position: relative;
    z-index: 1000;
    transform: translateY(-3px);
  }
}

.main-catalog_select-img {
  position: relative;
}

.main-catalog__select-img-close {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}

.main-catalog__select-img-close-1 {
  position: relative;
  z-index: 2;
  transition: opacity 0.3s;
  cursor: pointer;
  transform: translateY(0.5px);
}

.main-catalog__select-img-close.active {
  z-index: 3;
  opacity: 1;
}

.main-catalog__select-img-close-1.active {
  z-index: 1;
  opacity: 0;
}

.selectric .label {
  font-size: 13px;
}

@media screen and (max-width: 480px) {
  .selectric-main-catalog_selectric .selectric .label {
    /*font-size: 10px;*/
  }
}

.body-404 {
  overflow: hidden;
}

.main-catalog__bottom-menu-idk_first .main-catalog_selectric {
  display: none;
}

@media screen and (min-width: 1300px) {
  .catalog-slider .product-slider__buttons {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .main-catalog__select-img-close {
    top: 54%;
  }
}

@media screen and (max-width: 575px) {
  .cta__dop-text {
    line-height: 25px;
  }
}


/* scroll-bar */
/* ========== */

.selectric-main-catalog_selectric .selectric-items .selectric-scroll::-webkit-scrollbar {
  width: 5px;
}
 
.selectric-main-catalog_selectric .selectric-items .selectric-scroll::-webkit-scrollbar-track {
  border-radius: 40px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.selectric-main-catalog_selectric .selectric-items .selectric-scroll::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 40px;
  outline: none;
  background-color: #ff6647;
}

/* End scroll-bar */
/* ============== */



/* catalog-slider */
/* ============== */

.catalog-slider {
  padding: 72px 0 112px;
}

.catalog__heading {
  margin-bottom: 20px;
}

.catalog__heading h2 {
  font-family: Roboto, sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #383838;
}

.catalog-slider__slider-block {
  padding-top: 15px !important;
}

@media screen and (max-width: 960px) {
  .catalog__heading h2 {
    font-size: 35px;
    line-height: 41px;
    margin-bottom: 0;
  }
}

/* End catalog-slider */
/* ================== */

/* Bad-catalog */
/* =========== */

.bad-catalog {
  position: relative;
  overflow: hidden;
  padding: 73px 0 112px;
}

.bad-catalog .swiper-container {
  overflow: unset;
}

.bad-catalog__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.bad-catalog__title {
  font-family: Roboto, sans-serif;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: 0em;
  color: #383838;
}

.bad-catalog__slider-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  border-radius: 10px;
  padding: 0 0 21px 0;
  max-width: 244px;
  max-height: 345px;
  min-height: 345px;
  text-decoration: none;
  background-color: #030303;
  background: #030303 url(/local/templates/template/css/pages/../../img/shape.jpg) center / cover no-repeat;
  background-image: -webkit-image-set( url(/local/templates/template/css/pages/../../img/shape.jpg) 1x, url(/local/templates/template/css/pages/../../img/shape-x2.jpg) 2x);
  background-image: -webkit-image-set( url(/local/templates/template/css/pages/../../img/shape.jpg) 1x, url(/local/templates/template/css/pages/../../img/shape-x2.jpg) 2x);
  background-image: image-set( url(/local/templates/template/css/pages/../../img/shape.jpg) 1x, url(/local/templates/template/css/pages/../../img/shape-x2.jpg) 2x);
  transition: transform 0.3s;
}

.bad-catalog__slider-slide:hover {
  text-decoration: none;
  transform: translateY(-10px);
}

.bad-catalog__slider-img {
  max-width: 150px;
  transition: transform 0.3s;
  margin: auto;
}

.bad-catalog__slider-slide:hover .bad-catalog__slider-img {
  transform: translateX(-5px);
}
.bad-catalog__slider-slide-2:hover .bad-catalog__slider-img {
  transform: translateX(-50%) rotate(360deg);
}

.bad-catalog__slider-text {
  margin-right: auto;
  max-width: 175px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0em;
margin-left: 21px;
  color: #fff;
}

.bad-catalog__slider-slide-2 {
  position: relative;
  justify-content: flex-end;
  background-color: #fb6445;
  background: #fb6445 url(/local/templates/template/css/pages/../../img/shape_red.jpg) center / cover no-repeat;
  background-image: -webkit-image-set( url(/local/templates/template/css/pages/../../img/shape_red.jpg) 1x, url(/local/templates/template/css/pages/../../img/shape_red-x2.jpg) 2x);
  background-image: -webkit-image-set( url(/local/templates/template/css/pages/../../img/shape_red.jpg) 1x, url(/local/templates/template/css/pages/../../img/shape_red-x2.jpg) 2x);
  background-image: image-set( url(/local/templates/template/css/pages/../../img/shape_red.jpg) 1x, url(/local/templates/template/css/pages/../../img/shape_red-x2.jpg) 2x);
}

.bad-catalog__slider-slide-2 img {
  position: absolute;
  top: 42px;
  left: 50%;
  max-height: 214px;
  transform: translateX(-50%);
}

.bad-catalog__slider-slide-2:hover .bad-catalog__slider-slide-2 img {
  transform: translateX(calc(-50% + 5px));
}

/* fixed img catalog */

.main-catalog__catalog-block {
  width: 100%;
  height: 176px;
}

.main-catalog__catalog-img {
  max-height: 100%;
}

/* fixed catalog list */

.main-catalog__list {
  position: relative;
  overflow: hidden;
}
/* End */


/* Start:/local/templates/template/css/pages/custom.css?16221302202059*/
.hide{
    display: none;
}
.title-search-all{
    display: none;
}

div.title-search-result{
    background: #fff;
    max-height: 500px;
    overflow-y: scroll !important;
    margin-top: -3px;
}
div.title-search-result::-webkit-scrollbar {
    width: 5px;
}
div.title-search-result::-webkit-scrollbar-button {
    background: transparent;
}
div.title-search-result::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 6px;
}
div.title-search-result::-webkit-scrollbar-thumb:hover {
    background: #666;
}
div.title-search-result::-webkit-scrollbar-track {
    background: transparent;
}
div.title-search-result::-webkit-scrollbar-track-piece {
    background: transparent;
}
div.title-search-result::-webkit-scrollbar-corner {
    background: transparent;
}
div.title-search-result::-webkit-resizer {
    background: transparent;
}
table.title-search-result td.title-search-item img{
    display: none !important;
}

.show-all{
    display: none;
}
.main-catalog__slider-list.minHeight{
    max-height: 200px;
    overflow: hidden;
    position: relative;
}
.main-catalog__slider-list.minHeight::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7399334733893557) 70%);
    bottom: 0;
    left: 0;
    z-index: 1;
}
.main-catalog__slider-list.minHeight .show-all{
    display: block;
    z-index: 10;
    position: absolute;
    max-width: 300px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.main-catalog__slider-list.active.minHeight{
    max-height: none;
}
.main-catalog__slider-list.minHeight.active::after{
    content: none;
}
.main-catalog__slider-list.minHeight.active .show-all{
    position: relative;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 100%;
    max-width: 100%;
}
.main-catalog__slider-list.minHeight.active .show-all a {
    max-width: 300px;
    margin: 0 auto;
}
/* End */


/* Start:/local/templates/template/components/bitrix/search.title/search/style.css?16213521902108*/
div.title-search-result {
	border:1px solid #c6c6c6;
	display:none;
	overflow:hidden;
	z-index:205;
}

table.title-search-result {
	border-collapse: collapse;
	border:none;
	width:10%;
}

table.title-search-result th {
	background-color:#F7F7F7;
	border-right:1px solid #e8e8e8;
	color:#949494;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
	padding-left:14px;
 	padding-right:12px;
	text-align:right;
	vertical-align:top;
	white-space:nowrap;
	width:1%;
}

table.title-search-result td {
	background-color:white;
	color:black;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
	text-align:left;
	white-space:nowrap;
}

table.title-search-result td.title-search-item {
	padding-left:8px;
	padding-right:15px;
}

table.title-search-result td.title-search-item a {
	padding-left:4px;
	padding-right:15px;
	text-decoration: none;
	color:black;
	vertical-align:top;
	display:block;
}

table.title-search-result td.title-search-item img {
	vertical-align:top;
}

table.title-search-result td.title-search-item b {
	color:#cf0000;
	font-weight:normal;
}

table.title-search-result tr.title-search-selected td
,table.title-search-result tr.title-search-selected a
,table.title-search-result tr.title-search-selected td.title-search-more a
{
	background-color:#fff2be;
}

table.title-search-result td.title-search-more {
	font-size:11px;
	font-weight:normal;
	padding-right:15px;
	padding-left:24px;
	padding-top:0px;
}

table.title-search-result td.title-search-more a
{
	padding-left:12px;
	padding-right:15px;
	text-decoration:none;
	color:#999999;
}

table.title-search-result td.title-search-all {
	padding-left:24px;
	padding-right:15px;
}

table.title-search-result td.title-search-all a
{
	padding-left:4px;
	text-decoration:none;
	color:#808080;
}

table.title-search-result td.title-search-separator
, table.title-search-result th.title-search-separator {
	padding-top:0px;
	padding-bottom:0px;
	font-size:4px;
}

div.title-search-fader {
	display:none;
	background-image: url('/local/templates/template/components/bitrix/search.title/search/images/fader.png');
	background-position: right top;
	background-repeat: repeat-y;
	position:absolute;
}
/* End */
/* /local/templates/template/fonts/roboto.css?16213521913419 */
/* /local/templates/template/css/pages/perfect-scrollbar.css?16213521912714 */
/* /local/templates/template/css/pages/selectric.css?16213521914543 */
/* /local/templates/template/css/pages/main.css?163248962890357 */
/* /local/templates/template/css/pages/custom.css?16221302202059 */
/* /local/templates/template/components/bitrix/search.title/search/style.css?16213521902108 */
