@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* remove the blue background of my button on click */
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* делаем рабочими ссылки с svg объектами */
object[type="image/svg+xml"] {
  pointer-events: none;
}

@font-face {
  font-family: 'Code Pro Demo';
  src: url(../font/Code_Pro_Demo.otf);
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Code Pro Demo';
  src: url(../font/Code_Pro_Light_Demo.otf);
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Code Pro';
  src: url(../font/Code_Pro.otf);
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Code Pro';
  src: url(../font/Code_Pro_Light.otf);
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Code Pro';
  src: url(../font/Code_Pro_Bold.otf);
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'Code Pro';
  src: url(../font/Code_Pro_Black.otf);
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: 'Code Pro LC';
  src: url(../font/Code_Pro_LC.otf);
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Code Pro LC';
  src: url(../font/Code_Pro_Light_LC.otf);
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Code Pro LC';
  src: url(../font/Code_Pro_Bold_LC.otf);
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'Code Pro LC';
  src: url(../font/Code_Pro_Black_LC.otf);
  font-style: normal;
  font-weight: 900;
}

.SumoSelect p {
  margin: 0;
}

.SumoSelect {
  width: 200px;
}

.SelectBox {
  padding: 5px 8px;
}

.sumoStopScroll {
  overflow: hidden;
}

/* Filtering style */
.SumoSelect .hidden {
  display: none;
}

.SumoSelect .search-txt {
  display: none;
  outline: none;
}

.SumoSelect .no-match {
  display: none;
  padding: 6px;
}

.SumoSelect.open .search-txt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
          border-radius: 5px;
}

.SumoSelect.open > .search > span, .SumoSelect.open > .search > label {
  visibility: hidden;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass, .SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.SelectClass {
  z-index: 1;
}

.SumoSelect > .optWrapper > .options li.opt label, .SumoSelect > .CaptionCont, .SumoSelect .select-all > label {
  -ms-user-select: none;
      user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none;
}

.SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont, .SumoSelect.open > .CaptionCont {
  -webkit-box-shadow: 0 0 2px #7799D0;
          box-shadow: 0 0 2px #7799D0;
  border-color: #7799D0;
}

.SumoSelect > .CaptionCont {
  position: relative;
  border: 1px solid #A4A4A4;
  min-height: 14px;
  background-color: #fff;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  margin: 0;
}

.SumoSelect > .CaptionCont > span {
  display: block;
  padding-right: 30px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
  color: #ccc;
  font-style: italic;
}

.SumoSelect > .CaptionCont > label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
}

.SumoSelect > .CaptionCont > label > i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=");
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.SumoSelect > .optWrapper {
  display: none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
          box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  -webkit-border-radius: 3px;
          border-radius: 3px;
  overflow: hidden;
}

.SumoSelect.open > .optWrapper {
  top: 35px;
  display: block;
}

.SumoSelect.open > .optWrapper.up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

.SumoSelect > .optWrapper ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.SumoSelect > .optWrapper > .options {
  -webkit-border-radius: 2px;
          border-radius: 2px;
  position: relative;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/
}

.SumoSelect > .optWrapper.okCancelInMulti > .options {
  -webkit-border-radius: 2px 2px 0 0;
          border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options {
  -webkit-border-radius: 0 0 2px 2px;
          border-radius: 0 0 2px 2px;
}

.SumoSelect > .optWrapper.selall.okCancelInMulti > .options {
  -webkit-border-radius: 0;
          border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.group.disabled > label {
  opacity: 0.5;
}

.SumoSelect > .optWrapper > .options li ul li.opt {
  padding-left: 22px;
}

.SumoSelect > .optWrapper.multiple > .options li ul li.opt {
  padding-left: 50px;
}

.SumoSelect > .optWrapper.isFloating > .options {
  max-height: 100%;
  -webkit-box-shadow: 0 0 100px #595959;
          box-shadow: 0 0 100px #595959;
}

.SumoSelect > .optWrapper > .options li.opt {
  padding: 6px 6px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.SumoSelect > .optWrapper > .options > li.opt:first-child {
  -webkit-border-radius: 2px 2px 0 0;
          border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options > li.opt:first-child {
  -webkit-border-radius: 0;
          border-radius: 0;
}

.SumoSelect > .optWrapper > .options > li.opt:last-child {
  -webkit-border-radius: 0 0 2px 2px;
          border-radius: 0 0 2px 2px;
  border-bottom: none;
}

.SumoSelect > .optWrapper.okCancelInMulti > .options > li.opt:last-child {
  -webkit-border-radius: 0;
          border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #E4E4E4;
}

.SumoSelect > .optWrapper > .options li.opt.sel, .SumoSelect .select-all.sel {
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper > .options li label {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.SumoSelect > .optWrapper > .options li span {
  display: none;
}

.SumoSelect > .optWrapper > .options li.group > label {
  cursor: default;
  padding: 8px 6px;
  font-weight: bold;
}

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  margin: auto;
  max-height: 90%;
}

/*disabled state*/
.SumoSelect > .optWrapper > .options li.opt.disabled {
  background-color: inherit;
  pointer-events: none;
}

.SumoSelect > .optWrapper > .options li.opt.disabled * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE 5-7 */
  filter: alpha(opacity=50);
  /* Netscape */
  -moz-opacity: 0.5;
  /* Safari 1.x */
  -khtml-opacity: 0.5;
  /* Good browsers */
  opacity: 0.5;
}

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options li.opt {
  padding-left: 35px;
  cursor: pointer;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span,
.SumoSelect .select-all > span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0;
  bottom: 0;
  margin-left: -35px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span i,
.SumoSelect .select-all > span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.SumoSelect > .optWrapper > .MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
  -webkit-border-radius: 0 0 3px 3px;
          border-radius: 0 0 3px 3px;
}

.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
  display: block;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
  padding: 6px;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p:focus {
  -webkit-box-shadow: 0 0 2px #a1c0e4;
          box-shadow: 0 0 2px #a1c0e4;
  border-color: #a1c0e4;
  outline: none;
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
  background-color: #f1f1f1;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  border-right: 1px solid #DBDBDB;
  -webkit-border-radius: 0 0 0 3px;
          border-radius: 0 0 0 3px;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  -webkit-border-radius: 0 0 3px 0;
          border-radius: 0 0 3px 0;
}

/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options li.opt {
  padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options li.opt {
  padding-left: 35px;
}

.SumoSelect > .optWrapper.multiple.isFloating {
  padding-bottom: 43px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i {
  background-color: #11a911;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center center;
}

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.SumoSelect.disabled > .CaptionCont {
  border-color: #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/**Select all button**/
.SumoSelect .select-all {
  -webkit-border-radius: 3px 3px 0 0;
          border-radius: 3px 3px 0 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0 3px 35px;
  height: 20px;
  cursor: pointer;
}

.SumoSelect .select-all > label, .SumoSelect .select-all > span i {
  cursor: pointer;
}

.SumoSelect .select-all.partial > span i {
  background-color: #ccc;
}

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options li.optGroup {
  padding-left: 5px;
  text-decoration: underline;
}

body {
  font-family: 'Code_Pro_Demo', sans-serif;
  font-size: 18px;
  color: #000;
}

@media (max-width: 960px) {
  body.lock {
    overflow: hidden;
  }
}

.main-frame {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  margin-top: 100px;
}

.main-frame .main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1550px) {
  .main-frame {
    margin-top: 72px;
  }
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
  font-family: Code Pro LC;
}

.btn {
  width: 220px;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-border-radius: 10px;
          border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Code Pro LC', sans-serif;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}

.btn.btn-light {
  position: relative;
  width: 218px;
  height: 48px;
  -webkit-border-radius: 9px;
          border-radius: 9px;
  background: #fff;
}

.btn.btn-light:before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 1;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
}

.btn.btn-light:after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0px;
  z-index: 2;
  -webkit-border-radius: 9px;
          border-radius: 9px;
  background: #fff;
}

.btn.btn-light span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-background-clip: text;
  /*-webkit-text-fill-color: transparent;*/
  color: #ee761b;
}

.btn.btn-light span img {
  margin-right: 7px;
}

.btn.btn-wide {
  width: auto;
  display: inline-block;
  padding: 0 20px;
}

.btn.btn-wide:before, .btn.btn-wide:after {
  width: auto;
}

.btn.btn-wide span {
  position: relative;
  z-index: 5;
}

.btn.btn-color-black span {
  color: #393C42;
  background: #fff;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

@media (max-width: 960px) {
  .btn {
    width: 150px;
    height: 35px;
    font-size: 12px;
    line-height: 14px;
  }
  .btn.btn-light {
    width: 148px;
    height: 33px;
  }
  .btn img {
    max-height: 22px;
  }
  .btn.btn-wide {
    width: auto;
  }
  .btn.btn-wide:before, .btn.btn-wide:after {
    width: auto;
  }
}

input[type="text"] {
  background: #F9F9F9;
  height: 44px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #383838;
}

input[type="text"]::-webkit-input-placeholder {
  /* Chrome */
  color: #383838;
}

input[type="text"]:-ms-input-placeholder {
  /* IE 10+ */
  color: #383838;
}

input[type="text"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #383838;
  opacity: 1;
}

input[type="text"]:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #383838;
  opacity: 1;
}

@media (max-width: 960px) {
  input[type="text"] {
    height: 34px;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
  }
}

textarea {
  background: #F9F9F9;
  height: 44px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: none;
  padding-top: 12px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #383838;
  width: 100%;
  height: 142px;
  resize: none;
}

textarea::-webkit-input-placeholder {
  /* Chrome */
  color: #383838;
}

textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #383838;
}

textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #383838;
  opacity: 1;
}

textarea:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #383838;
  opacity: 1;
}

input[type="submit"],
button[type="submit"] {
  color: #FFFFFF;
  background: #0E5BA5;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 37px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
}

select {
  background: #F9F9F9;
  height: 44px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: none;
  padding-left: 10px;
  padding-right: 30px;
}

button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}

button.light {
  background-color: transparent;
  border: 1px solid #eee;
  -webkit-transition: .5s ease 0s;
  -o-transition: .5s ease 0s;
  transition: .5s ease 0s;
}

button.light svg {
  margin-right: 10px;
}

button.light:hover {
  background: #eee;
  color: #fff;
}

button.light:hover .svg_obj {
  stroke: #fff;
}

.wrapper {
  width: 100%;
  min-height: 100%;
}

.container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 84px;
  padding-right: 84px;
}

@media (max-width: 960px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.upper {
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

.SumoSelect ::-webkit-scrollbar-button {
  background-image: url("");
  background-repeat: no-repeat;
  width: 6px;
  height: 0px;
}

.SumoSelect ::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.SumoSelect ::-webkit-scrollbar-thumb {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #eee;
}

.SumoSelect ::-webkit-resizer {
  background-image: url("");
  background-repeat: no-repeat;
  width: 7px;
  height: 0px;
}

.SumoSelect ::-webkit-scrollbar {
  width: 10px;
}

.page-title {
  font-weight: bold;
  font-size: 34px;
  line-height: 41px;
  letter-spacing: 0.015em;
  color: #000000;
  padding: 0;
  margin-bottom: 31px;
}

@media (max-width: 960px) {
  .page-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}

.gradient-orange {
  font-family: 'Code Pro LC';
  font-style: normal;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 960px) {
  .hide-in-mobile {
    display: none !important;
  }
}

@media (min-width: 961px) {
  .hide-in-desktop {
    display: none;
  }
}

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

.two-column__column {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(50% - 15px);
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
}

@media (max-width: 1200px) {
  .two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .two-column__column:first-child {
    margin-bottom: 20px;
  }
}

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

.three-column__column {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(33.333% - 30px);
      -ms-flex: 0 0 calc(33.333% - 30px);
          flex: 0 0 calc(33.333% - 30px);
}

@media (max-width: 1200px) {
  .three-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .three-column__column:first-child {
    margin-bottom: 20px;
  }
}

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

.imgs > * {
  margin-right: 20px;
}

@media (max-width: 960px) {
  .imgs img {
    max-width: -webkit-calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

.bold {
  font-weight: bold;
}

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

.with-menu__menu {
  width: 100%;
  max-width: 368px;
  margin-right: 40px;
}

.menu-services {
  background: #F8F8F8;
  -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 10px;
          border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.menu-services a {
  display: block;
  height: 89px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  font-family: 'Code Pro LC';
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #393C42;
  padding: 30px;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.menu-services a:last-child {
  border-bottom-color: transparent;
}

.menu-services a:first-child {
  border-top-color: transparent;
}

.menu-services a:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#FCFCFC), to(#EEEEEE));
  background: -webkit-linear-gradient(top, #FCFCFC 0%, #EEEEEE 100%);
  background: -o-linear-gradient(top, #FCFCFC 0%, #EEEEEE 100%);
  background: linear-gradient(180deg, #FCFCFC 0%, #EEEEEE 100%);
  border-color: #E4E4E4;
}

.menu-services a.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  color: #fff;
  font-weight: bold;
  border-color: transparent;
}

.header {
  position: fixed;
  background: #F8F8F8;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header .container {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1130px) {
  .header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 26px 0;
}

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

.header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 442px;
  margin-left: 25px;
}

@media (min-width: 1551px) {
  .header__menu {
    padding-top: 5px;
  }
  .header__menu ul.menu {
    padding: 0;
    margin: 0;
  }
  .header__menu ul.menu li {
    list-style-type: none;
    display: block;
    float: left;
    padding: 5px 0;
    text-align: center;
    white-space: nowrap;
  }
  .header__menu ul.menu li.dd_menu {
    float: right;
    position: relative;
    display: none;
    cursor: pointer;
  }
  .header__menu ul.menu li.dd_menu button {
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .header__menu ul.menu li.dd_menu button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
  }
  .header__menu ul.menu ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 45px;
    right: 0px;
    padding: 5px;
    z-index: 2;
    background: #F8F8F8;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 10px;
            border-radius: 10px;
  }
  .header__menu ul.menu ul.dropdown-menu li {
    float: none;
  }
  .header__menu ul.menu a {
    font-family: 'Code Pro LC';
    font-size: 24px;
    line-height: 29px;
    color: #393C42;
    display: inline-block;
    margin: 0 20px;
  }
  .header__menu ul.menu li.active > a, .header__menu ul.menu li:hover > a {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
  }
}

.header__phone {
  margin-right: 20px;
}

.header__phone a {
  font-size: 18px;
  line-height: 25px;
  color: #393C42;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__phone a span {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: #393C42;
  padding-bottom: 3px;
  margin-left: 10px;
}

.header__phone a::before {
  content: '';
  height: 28px;
  width: 28px;
  background: url(../img/icon/phone-top.png) no-repeat;
  margin-right: 20px;
  margin-bottom: 1px;
}

.header .burger {
  display: none;
}

@media (max-width: 1550px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
  }
  .header__wrapper {
    padding: 20px 0;
  }
  .header__wrapper::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #F8F8F8;
    z-index: 2;
  }
  .header__logo {
    width: 212px;
  }
  .header__logo,
  .header .burger {
    position: relative;
    z-index: 3;
  }
  .header .burger {
    display: block;
    position: relative;
    height: 30px;
    width: 30px;
  }
  .header .burger:before, .header .burger:after {
    content: '';
    display: block;
  }
  .header .burger span, .header .burger:before, .header .burger:after {
    position: absolute;
    height: 3px;
    width: 30px;
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-border-radius: 3px;
            border-radius: 3px;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    -webkit-transform: translate(0, 0) rotate(0deg);
        -ms-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  .header .burger:before {
    top: 5px;
  }
  .header .burger span {
    top: 15px;
  }
  .header .burger:after {
    top: 25px;
  }
  .header .burger.open:before {
    -webkit-transform: translate(0, 10px) rotate(45deg);
        -ms-transform: translate(0, 10px) rotate(45deg);
            transform: translate(0, 10px) rotate(45deg);
  }
  .header .burger.open span {
    opacity: 0;
  }
  .header .burger.open:after {
    -webkit-transform: translate(0, -10px) rotate(-45deg);
        -ms-transform: translate(0, -10px) rotate(-45deg);
            transform: translate(0, -10px) rotate(-45deg);
  }
  .header__mobile {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #F8F8F8;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
            transform: translate(0, -100%);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
  }
  .header__mobile.open {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .header__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: auto;
    margin-left: 0;
  }
  .header__menu {
    width: 100%;
    padding-top: 93px;
    padding-bottom: 31px;
  }
  .header__menu a {
    width: 100%;
    height: 63px;
    font-family: 'Code Pro LC';
    font-size: 19px;
    line-height: 23px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    color: #393C42;
    background: #F8F8F8;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  }
  .header__menu a span {
    width: 100%;
  }
  .header__menu .menu > li {
    position: relative;
  }
  .header__menu .menu > li:nth-child(1) {
    z-index: 8;
  }
  .header__menu .menu > li:nth-child(2) {
    z-index: 7;
  }
  .header__menu .menu > li:nth-child(3) {
    z-index: 6;
  }
  .header__menu .menu > li:nth-child(4) {
    z-index: 5;
  }
  .header__menu .menu > li:nth-child(5) {
    z-index: 4;
  }
  .header__menu .menu > li:nth-child(6) {
    z-index: 3;
  }
  .header__menu .menu > li:nth-child(7) {
    z-index: 2;
  }
  .header__menu .menu > li:nth-child(8) {
    z-index: 1;
  }
  .header__menu .menu > li.active, .header__menu .menu > li:hover {
    z-index: 10;
  }
  .header__menu .menu > li.active > a span, .header__menu .menu > li:hover > a span {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
  }
  .header__phone {
    margin-right: 0;
    margin-bottom: 21px;
  }
}

.footer {
  padding-top: 32px;
  background: #F8F8F8;
}

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

.footer__col1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 466px;
      -ms-flex: 1 1 466px;
          flex: 1 1 466px;
  border-right: 1px solid #E4E4E4;
  padding-right: 15px;
}

.footer__col1 > * {
  float: left;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

.footer__address::before {
  content: '';
  height: 18px;
  width: 18px;
  background: url(../img/icon/map-locator.png) center no-repeat;
  margin-right: 11px;
  margin-top: 3px;
}

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

.footer__phone::before {
  content: '';
  height: 18px;
  width: 18px;
  background: url(../img/icon/phone-footer.png) center no-repeat;
  margin-right: 11px;
  margin-top: 3px;
}

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

.footer__phone-mobile::before {
  content: '';
  height: 18px;
  width: 18px;
  background: url(../img/icon/phone-mob-footer.png) center no-repeat;
  margin-right: 11px;
  margin-top: 3px;
}

.footer__col2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 567px;
      -ms-flex: 1 1 567px;
          flex: 1 1 567px;
  border-right: 1px solid #E4E4E4;
  padding-left: 5%;
}

@media (max-width: 1500px) {
  .footer__col2 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 450px;
        -ms-flex: 1 1 450px;
            flex: 1 1 450px;
  }
}

.footer__title {
  font-family: 'Code Pro LC';
  font-size: 18px;
  line-height: 22px;
  color: #393C42;
  margin-top: 15px;
  margin-bottom: 40px;
}

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

.footer__menu > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media (max-width: 1500px) {
  .footer__menu > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .footer__menu > *:nth-child(3) {
    margin-bottom: 16px;
  }
}

.footer__menu > * a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 25px;
  color: #393C42;
}

.footer__menu > * a:before {
  content: '';
  height: 14px;
  width: 14px;
  background: url(../img/icon/footer-menu.png) no-repeat;
  margin-bottom: 4px;
  margin-right: 10px;
}

.footer__menu > *.active a, .footer__menu > *:hover a {
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__menu > *.active a:before, .footer__menu > *:hover a:before {
  background: url(../img/icon/footer-menu-h.png) no-repeat;
}

.footer__menu > *:nth-child(1), .footer__menu > *:nth-child(2) {
  margin-bottom: 16px;
}

.footer__col3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 707px;
      -ms-flex: 1 1 707px;
          flex: 1 1 707px;
  padding-left: 5%;
}

@media (max-width: 1500px) {
  .footer__col3 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 500px;
        -ms-flex: 1 1 500px;
            flex: 1 1 500px;
  }
}

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

@media (max-width: 1500px) {
  .footer__col_wrap {
    display: block;
  }
  .footer__col_wrap > * {
    margin-bottom: 15px;
    margin-right: 0 !important;
  }
}

.footer__text {
  margin-right: 70px;
}

.footer__get-price {
  min-width: 220px;
}

.footer__copyright {
  margin-top: 34px;
  padding-top: 19px;
  padding-bottom: 16px;
  background: #EDEDED;
}

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

.footer__copyright_name {
  font-family: 'Code Pro LC';
  font-size: 18px;
  line-height: 22px;
  color: #393C42;
  padding-top: 4px;
}

.footer__maptoggler {
  font-family: 'Code Pro';
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  display: none;
}

@media (max-width: 960px) {
  .footer {
    padding-top: 20px;
    background: #F8F8F8;
  }
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__col1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    border-right: none;
  }
  .footer__col1 > * {
    float: left;
  }
  .footer__logo {
    margin-bottom: 19px;
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__logo img {
    max-width: 212px;
    margin-right: 6px;
  }
  .footer__maptoggler {
    display: block;
  }
  .footer__address {
    font-size: 14px;
    line-height: 20px;
  }
  .footer__address::before {
    height: 18px;
    width: 18px;
    margin-right: 10px;
    margin-top: 0px;
  }
  .footer__phone {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 19px;
    width: 100%;
  }
  .footer__phone::before {
    content: '';
    height: 18px;
    width: 18px;
    background: url(../img/icon/phone-footer.png) center no-repeat;
    margin-right: 11px;
    margin-top: -2px;
  }
  .footer__phone-mobile {
    font-size: 14px;
    line-height: 17px;
    padding-bottom: 20px;
  }
  .footer__phone-mobile::before {
    content: '';
    height: 18px;
    width: 18px;
    background: url(../img/icon/phone-mob-footer.png) center no-repeat;
    margin-right: 11px;
    margin-top: -2px;
  }
  .footer__col2 {
    display: none;
  }
  .footer__title {
    display: none;
  }
  .footer__col3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-left: 0;
  }
  .footer__col_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer__text {
    font-size: 14px;
    line-height: 20px;
    margin-right: 0;
    padding-bottom: 20px;
  }
  .footer__get-price {
    min-width: 150px;
  }
  .footer__copyright {
    margin-top: 20px;
    padding-top: 19px;
    padding-bottom: 16px;
    background: #EDEDED;
  }
  .footer__copyright .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__copyright_name {
    font-size: 12px;
    line-height: 14px;
    padding-top: 0;
  }
}

.goods-teaser {
  position: relative;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.04);
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

@media (min-width: 961px) {
  .goods-teaser:hover {
    -webkit-box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
  }
}

.goods-teaser__discount {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 52px;
  height: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FF5656;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.goods-teaser__fav {
  height: 24px;
  width: 24px;
  background: url(../img/icon/heart.svg) no-repeat;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
}

.goods-teaser__fav.in-fav {
  background: url(../img/icon/heart-a.svg) no-repeat;
}

.goods-teaser__img {
  width: 100%;
  height: auto;
  margin-bottom: 19px;
}

.goods-teaser__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 18px;
  font-weight: 350;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.goods-teaser__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
  padding-bottom: 14px;
  border-bottom: .5px solid #ECECEC;
}

.goods-teaser__info_rating {
  margin-right: 20px;
  font-weight: 350;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.01em;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.goods-teaser__info_rating::before {
  content: '';
  height: 19px;
  width: 16px;
  display: block;
  background: url(../img/icon/star.svg) no-repeat;
  margin-right: 3px;
}

.goods-teaser__info_comments {
  font-weight: 350;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.01em;
  color: #9B9B9B;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.goods-teaser__info_comments::before {
  content: '';
  height: 19px;
  width: 16px;
  display: block;
  background: url(../img/icon/chat.svg) no-repeat;
  margin-right: 3px;
}

.goods-teaser__info .spacer {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.goods-teaser__info_weight {
  font-weight: 350;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.01em;
  color: #9B9B9B;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.goods-teaser__info_weight::before {
  content: '';
  height: 22px;
  width: 16px;
  display: block;
  background: url(../img/icon/weight.svg) no-repeat;
  margin-right: 3px;
}

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

.goods-teaser__price {
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.01em;
  color: #000000;
}

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

.goods-teaser__buy::before {
  content: '';
  height: 22px;
  width: 18px;
  display: block;
  background: url(../img/icon/buy_white.svg) no-repeat;
  margin-right: 7px;
}

@media (max-width: 960px) {
  .goods-teaser {
    -webkit-box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.04);
    padding: 8px 12px 15px;
  }
  .goods-teaser__discount {
    left: 12px;
    top: 8px;
    width: 28px;
    height: 14px;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    font-size: 8px;
    line-height: 10px;
  }
  .goods-teaser__fav {
    position: relative;
    height: 15px;
    width: 15px;
    background: url(../img/icon/heart.svg) no-repeat;
    margin-bottom: -3px;
    -webkit-background-size: contain;
            background-size: contain;
    z-index: 1;
  }
  .goods-teaser__fav.in-fav {
    background: url(../img/icon/heart-a.svg) no-repeat;
    -webkit-background-size: contain;
            background-size: contain;
  }
  .goods-teaser__img {
    margin-bottom: 11px;
  }
  .goods-teaser__title {
    font-size: 10px;
    line-height: 12px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
  }
  .goods-teaser__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 11px;
    padding-bottom: 8px;
    border-bottom: .5px solid #ECECEC;
  }
  .goods-teaser__info_rating {
    margin-right: 8px;
    font-size: 8px;
    line-height: 10px;
  }
  .goods-teaser__info_rating::before {
    height: 10px;
    width: 8px;
    -webkit-background-size: contain;
            background-size: contain;
    margin-right: 3px;
  }
  .goods-teaser__info_comments {
    font-size: 8px;
    line-height: 10px;
  }
  .goods-teaser__info_comments::before {
    height: 10px;
    width: 8px;
    -webkit-background-size: contain;
            background-size: contain;
    margin-right: 3px;
  }
  .goods-teaser__info .spacer {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .goods-teaser__info_weight {
    font-size: 8px;
    line-height: 10px;
  }
  .goods-teaser__info_weight::before {
    height: 11px;
    width: 8px;
    -webkit-background-size: contain;
            background-size: contain;
    margin-right: 3px;
  }
  .goods-teaser__price {
    font-size: 12px;
    line-height: 14px;
  }
  .goods-teaser__buy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0;
    background: transparent;
    padding: 0;
    height: auto;
  }
  .goods-teaser__buy::before {
    content: '';
    height: 15px;
    width: 15px;
    display: block;
    background: url(../img/icon/buy_blue.svg) no-repeat;
    margin-right: 0px;
  }
}

.goods_res__wrap {
  border: 1px solid #ebebeb;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background: #fff;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.goods_res__title {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  margin-bottom: 20px;
  height: 75px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.goods_res__actions {
  padding-top: 1px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

@media (min-width: 961px) {
  .goods_res:hover {
    position: relative;
    z-index: 2;
  }
  .goods_res:hover .goods_res__wrap {
    position: absolute;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  }
  .goods_res:hover .goods_res__actions {
    max-height: 100px;
    opacity: 1;
    padding-bottom: 20px;
  }
}

.goods_res__get-info {
  margin-left: 10px;
  width: 50px;
}

@media (max-width: 960px) {
  .goods_res__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 20px 22px 24px;
    border: none;
    border-bottom: 1px solid #ebebeb;
    -webkit-border-radius: 0;
            border-radius: 0;
  }
  .goods_res__mobile {
    margin-left: 12px;
  }
  .goods_res__img {
    min-width: 109px;
    width: 109px;
  }
  .goods_res__title {
    text-align: left;
    font-size: 12px;
    line-height: 17px;
    height: auto;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: initial;
    padding: 0;
  }
  .goods_res__actions {
    max-height: 100px;
    opacity: 1;
    padding-bottom: 0;
    padding-left: 1px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .goods_res__get-info {
    -webkit-border-radius: 3px;
            border-radius: 3px;
    height: 35px;
    width: 35px;
  }
  .goods_res__get-info img {
    height: 21px;
    width: 21px;
  }
}

.news-teaser {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  background: #F8F8F8;
  -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 10px;
          border-radius: 10px;
}

.news-teaser__img {
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 206px;
      -ms-flex: 0 0 206px;
          flex: 0 0 206px;
}

.news-teaser__time {
  font-size: 18px;
  line-height: 25px;
  color: #393C42;
  margin-bottom: 20px;
}

.news-teaser__title {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
}

.news-teaser__text {
  font-size: 18px;
  line-height: 25px;
  color: #393C42;
}

@media (max-width: 960px) {
  .news-teaser {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-border-radius: 0;
            border-radius: 0;
    padding: 15px 10px;
    background: #fff;
    border-bottom: 1px solid #F8F8F8;
  }
  .news-teaser__img {
    margin-right: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  .news-teaser__time {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .news-teaser__title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .news-teaser__text {
    font-size: 14px;
    line-height: 18px;
  }
}

.stock-teaser {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  background: #F8F8F8;
  -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 10px;
          border-radius: 10px;
}

.stock-teaser__img {
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 206px;
      -ms-flex: 0 0 206px;
          flex: 0 0 206px;
}

.stock-teaser__title {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
}

.stock-teaser__address {
  font-size: 18px;
  line-height: 25px;
  color: #393C42;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.stock-teaser__address::before {
  content: '';
  height: 18px;
  width: 18px;
  min-width: 18px;
  background: url(../img/icon/map-locator.png) center no-repeat;
  margin-right: 11px;
  margin-top: 3px;
}

.stock-teaser__text {
  font-size: 18px;
  line-height: 25px;
  color: #393C42;
}

@media (max-width: 960px) {
  .stock-teaser {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-border-radius: 0;
            border-radius: 0;
    padding: 15px 10px;
    background: #fff;
    border-bottom: 1px solid #F8F8F8;
  }
  .stock-teaser__img {
    margin-right: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  .stock-teaser__address {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .stock-teaser__title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .stock-teaser__text {
    font-size: 14px;
    line-height: 18px;
  }
}

.section-top {
  background: url(../img/bg/bg-section-top.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  padding: 162px 0;
}

.section-top__title {
  color: #FFFFFF;
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 48px;
  font-family: 'Code Pro LC', sans-serif;
}

.section-top__content {
  color: #E3E3E3;
  max-width: 792px;
  font-size: 18px;
  line-height: 25px;
}

.section-top__content p {
  padding-bottom: 10px;
}

.section-top__content .upper {
  color: #FFFFFF;
  padding-top: 20px;
  padding-bottom: 36px;
  font-size: 18px;
  line-height: 22px;
}

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

.section-top__icons > *:first-child {
  margin-right: 20px;
}

@media (max-width: 960px) {
  .section-top {
    padding: 50px 0;
  }
  .section-top__title {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 23px;
  }
  .section-top__content {
    font-size: 12px;
    line-height: 17px;
  }
  .section-top__content p {
    padding-bottom: 10px;
  }
  .section-top__content .upper {
    padding-top: 0;
    padding-bottom: 20px;
    font-size: 12px;
    line-height: 14px;
  }
  .section-top__icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .section-top__icons > * {
    max-width: -webkit-calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .section-top__icons > *:first-child {
    margin-right: 20px;
  }
}

.section-catalog {
  position: relative;
  padding-top: 35px;
  padding-bottom: 40px;
  background: url(../img/bg/bg-catalog.png) center no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
}

.section-catalog__down-arrow {
  position: absolute;
  left: -webkit-calc(50% - 15px);
  left: calc(50% - 15px);
  cursor: pointer;
}

.section-catalog__catalog-back {
  display: none;
}

.section-catalog__title {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 26px;
  line-height: 31px;
  color: #393C42;
}

.section-catalog:not(.front) .section-catalog__title {
  display: none;
}

.section-catalog__list {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin: 5px -32px 0;
}

.section-catalog__list_item {
  margin: 0 32px 39px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(25% - 64px);
      -ms-flex: 0 0 calc(25% - 64px);
          flex: 0 0 calc(25% - 64px);
  height: 88px;
}

@media (max-width: 1880px) {
  .section-catalog__list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-catalog__list_item {
    width: 388px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.section-catalog.front .section-catalog__list {
  margin-top: 75px;
}

.section-catalog__get-price {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .section-catalog {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .section-catalog.front .section-catalog__list {
    margin-top: 20px;
  }
  .section-catalog__down-arrow {
    display: none;
  }
  .section-catalog__catalog-back {
    position: absolute;
    top: -8px;
    left: 20px;
    padding: 10px 0;
  }
  .section-catalog__title {
    font-size: 19px;
    line-height: 23px;
    text-align: center;
  }
  .section-catalog:not(.front) .section-catalog__title {
    display: block;
  }
  .section-catalog__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 20px -20px;
    position: relative;
    z-index: 10;
  }
}

@media (max-width: 960px) and (max-width: 1810px) {
  .section-catalog__list {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (max-width: 960px) {
  .section-catalog__list_item {
    margin: 0;
    width: 50%;
    height: 79px;
  }
  .section-catalog__get-price {
    margin: 0 auto;
  }
}

.catalog-item {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 5px;
  background: #F8F8F8;
  -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 9px;
          border-radius: 9px;
  position: relative;
}

.catalog-item::before {
  position: absolute;
  left: -1px;
  top: -1px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  z-index: -1;
  content: '';
  height: -webkit-calc(100% + 2px);
  height: calc(100% + 2px);
  width: -webkit-calc(100% + 2px);
  width: calc(100% + 2px);
  background: #F8F8F8;
}

.catalog-item__icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 126px;
      -ms-flex: 0 0 126px;
          flex: 0 0 126px;
  position: relative;
  z-index: 2;
}

.catalog-item__icon svg {
  display: block;
  margin: 0 auto;
}

.catalog-item__title span {
  font-family: 'Code Pro LC';
  font-size: 18px;
  line-height: 22px;
  color: #393C42;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  z-index: 2;
}

.catalog-item__title .catalog-item__acative-title {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  font-size: 14px;
  line-height: 20px;
  color: #393C42;
  position: relative;
  z-index: 2;
}

@media (min-width: 961px) {
  .catalog-item.active::before {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  }
  .catalog-item.active svg.fill path {
    fill: url(#active-bg);
  }
  .catalog-item.active svg.stroke path {
    stroke: url(#active-bg);
  }
  .catalog-item.active .catalog-item__title span {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .catalog-item:hover::before {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  }
  .catalog-item:hover svg.fill path {
    fill: url(#active-bg);
  }
  .catalog-item:hover svg.stroke path {
    stroke: url(#active-bg);
  }
  .catalog-item:hover .catalog-item__title span {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.catalog-item__menu {
  left: -1px;
  top: -1px;
  padding: 85px 0 0;
}

.catalog-item__sub_menu {
  left: 100%;
  top: 0px;
  padding: 0;
}

.catalog-item.right-item .catalog-item__sub_menu {
  left: auto;
  right: 100%;
}

.catalog-item__menu, .catalog-item__sub_menu {
  position: absolute;
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  opacity: 0;
  z-index: 1;
  width: -webkit-calc(100% + 2px);
  width: calc(100% + 2px);
  background: #F8F8F8;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-border-radius: 10px;
          border-radius: 10px;
}

.catalog-item__menu > *, .catalog-item__sub_menu > * {
  position: relative;
  font-size: 18px;
  line-height: 25px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
}

.catalog-item__menu > * a, .catalog-item__sub_menu > * a {
  display: block;
  color: #393C42;
  padding: 13px 8px 11px 30px;
}

@media (min-width: 961px) {
  .catalog-item__menu > *:hover, .catalog-item__sub_menu > *:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  }
  .catalog-item__menu > *:hover > a, .catalog-item__sub_menu > *:hover > a {
    color: #FFFFFF;
  }
  .catalog-item__menu > *:hover .catalog-item__sub_menu, .catalog-item__sub_menu > *:hover .catalog-item__sub_menu {
    opacity: 1;
    z-index: 9;
    max-height: 500px;
    padding: 10px 0 10px;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  }
  .catalog-item__menu > *.active, .catalog-item__sub_menu > *.active {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  }
  .catalog-item__menu > *.active > a, .catalog-item__sub_menu > *.active > a {
    color: #FFFFFF;
  }
  .catalog-item__menu > *.active .catalog-item__sub_menu, .catalog-item__sub_menu > *.active .catalog-item__sub_menu {
    opacity: 1;
    z-index: 9;
    max-height: 500px;
    padding: 10px 0 10px;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  }
  .catalog-item__menu > *.active, .catalog-item__sub_menu > *.active {
    position: relative;
  }
  .catalog-item__menu > *.active::before, .catalog-item__sub_menu > *.active::before {
    content: '';
    height: 12px;
    width: 12px;
    background: #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    display: block;
    position: absolute;
    left: 10px;
    top: 18px;
  }
}

@media (min-width: 961px) {
  .catalog-item:hover .catalog-item__menu {
    opacity: 1;
    z-index: 9;
    max-height: 500px;
    padding: 95px 0 10px;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
    overflow: initial;
  }
  .catalog-item:hover .catalog-item__icon {
    z-index: 10;
  }
  .catalog-item:hover .catalog-item__title {
    z-index: 10;
  }
  .catalog-item:hover .catalog-item__title .catalog-item__acative-title {
    max-height: 50px;
  }
}

@media (max-width: 960px) {
  .catalog-item:not(.open) {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
    background: #F8F8F8;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 0px;
            border-radius: 0px;
    position: relative;
    z-index: 1;
  }
  .catalog-item span {
    font-size: 12px;
    line-height: 14px;
  }
  .catalog-item::before {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-border-radius: 0;
            border-radius: 0;
    z-index: 1;
    content: '';
    height: -webkit-calc(100% + 0px);
    height: calc(100% + 0px);
    width: -webkit-calc(100% + 0px);
    width: calc(100% + 0px);
    background: #F8F8F8;
  }
  .catalog-item::after {
    position: absolute;
    left: 1px;
    top: 1px;
    -webkit-border-radius: 0;
            border-radius: 0;
    z-index: 2;
    content: '';
    height: -webkit-calc(100% - 2px);
    height: calc(100% - 2px);
    width: -webkit-calc(100% - 2px);
    width: calc(100% - 2px);
    background: #F8F8F8;
  }
  .catalog-item__icon {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33px;
        -ms-flex: 0 0 33px;
            flex: 0 0 33px;
    z-index: 3;
  }
  .catalog-item__icon svg {
    height: 33px;
    display: block;
    margin: 11px auto;
  }
  .catalog-item__title {
    font-size: 12px;
    line-height: 14px;
    z-index: 3;
  }
  .catalog-item.active::before, .catalog-item.open::before {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  }
  .catalog-item.active svg.fill path, .catalog-item.open svg.fill path {
    fill: url(#active-bg);
  }
  .catalog-item.active svg.stroke path, .catalog-item.open svg.stroke path {
    stroke: url(#active-bg);
  }
  .catalog-item.active .catalog-item__title span, .catalog-item.open .catalog-item__title span {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .catalog-item.open {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    z-index: 10;
    padding-left: 0;
  }
  .catalog-item.open:before {
    background: #F8F8F8;
  }
  .catalog-item.open .catalog-item__icon {
    z-index: 10;
  }
  .catalog-item.open .catalog-item__icon svg {
    width: 74px;
  }
  .catalog-item.open .catalog-item__title {
    z-index: 10;
  }
  .catalog-item.open span {
    font-size: 19px;
    line-height: 23px;
  }
  .catalog-item.open .catalog-item__acative-title {
    max-height: 50px;
  }
  .catalog-item.open .catalog-item__menu {
    -webkit-border-radius: 0;
            border-radius: 0;
    opacity: 1;
    z-index: 6;
    max-height: 900px;
    padding: 75px 0 75px;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
    overflow: initial;
  }
  .catalog-item.open .catalog-item__menu > * {
    position: relative;
    -webkit-border-radius: 0;
            border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
  }
  .catalog-item.open .catalog-item__menu > * .sub_menu__toggler {
    position: absolute;
    height: 34px;
    width: 34px;
    background: url(../img/icon/sum-menu-toggler.png) center no-repeat;
    top: 2px;
    left: 12px;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
  }
  .catalog-item.open .catalog-item__menu > * .catalog-item__sub_menu {
    position: relative;
    left: 0;
    right: 0;
    -webkit-border-radius: 0;
            border-radius: 0;
    padding: 0px 40px 0px;
    margin-left: -40px;
    margin-right: -40px;
    width: -webkit-calc(100% + 80px);
    width: calc(100% + 80px);
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25) inset;
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25) inset;
  }
  .catalog-item.open .catalog-item__menu > *.open:before {
    display: block;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 36px;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  }
  .catalog-item.open .catalog-item__menu > *.open > a {
    position: relative;
    color: #FFFFFF;
  }
  .catalog-item.open .catalog-item__menu > *.open .catalog-item__sub_menu {
    opacity: 1;
    max-height: 900px;
    padding: 10px 40px 10px;
  }
  .catalog-item.open .catalog-item__menu > *.open .catalog-item__sub_menu::before {
    content: '';
    position: absolute;
    left: 68px;
    top: 20px;
    height: -webkit-calc(100% - 40px);
    height: calc(100% - 40px);
    width: 1px;
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  }
  .catalog-item.open .catalog-item__menu > *.open .catalog-item__sub_menu a {
    font-size: 14px;
    line-height: 20px;
    color: #585858;
  }
  .catalog-item.open .catalog-item__menu > *.open .sub_menu__toggler {
    background: url(../img/icon/sum-menu-toggler-a.png) center no-repeat;
  }
  .catalog-item.open .catalog-item__menu > * a {
    padding: 9px 8px 7px 44px;
  }
}

.section-services {
  background: url(../img/bg/bg-services.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  padding: 29px 0 48px;
}

.section-services__title {
  color: #FFFFFF;
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 48px;
  font-family: 'Code Pro LC', sans-serif;
}

.section-services__content {
  color: #E3E3E3;
  max-width: 720px;
  font-size: 18px;
  line-height: 25px;
}

.section-services__content p {
  padding-bottom: 10px;
}

.section-services__content .upper {
  color: #FFFFFF;
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 22px;
}

.section-services__content ul {
  margin: 0 0 10px;
}

.section-services__actions {
  padding-top: 20px;
}

@media (max-width: 960px) {
  .section-services {
    padding: 20px 0;
  }
  .section-services__title {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 23px;
  }
  .section-services__content {
    font-size: 12px;
    line-height: 17px;
  }
  .section-services__content p {
    padding-bottom: 10px;
  }
  .section-services__content .upper {
    color: #FFFFFF;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    line-height: 14px;
  }
  .section-services__content ul {
    margin: 0 0 10px;
    padding-left: 20px;
  }
  .section-services__actions {
    padding-top: 20px;
  }
}

.section-problems {
  padding-top: 40px;
  padding-bottom: 44px;
  background: url(../img/bg/bg-catalog.png) center no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
}

.section-problems__text {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 26px;
  line-height: 31px;
  text-align: center;
  max-width: 929px;
  margin: 0 auto 26px;
  color: #393C42;
}

.section-problems__text span {
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-problems__btn {
  margin: 0 auto;
}

@media (max-width: 960px) {
  .section-problems {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .section-problems__text {
    font-size: 19px;
    line-height: 23px;
    max-width: 929px;
    margin: 0 auto 13px;
  }
  .section-problems__text span {
    background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
    background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
    background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.section-map {
  height: 500px;
}

.section-map__close {
  display: none;
}

@media (max-width: 960px) {
  .section-map {
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    right: 0;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
  }
  .section-map__close {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background: #fff url(../img/icon/close.png) center no-repeat;
    -webkit-background-size: 20px 20px;
            background-size: 20px;
    z-index: 10;
    -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  }
  .section-map.open {
    opacity: 1;
    pointer-events: all;
  }
  .section-map > ymaps {
    height: 100vh !important;
  }
}

.section-breadcrumbs {
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: 'Code Pro LC';
  font-size: 18px;
  line-height: 22px;
  color: #393C42;
}

.section-breadcrumbs a, .section-breadcrumbs span {
  font-family: 'Code Pro LC';
  font-size: 18px;
  line-height: 22px;
  color: #393C42;
}

.section-breadcrumbs.width .container {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 960px) {
  .section-breadcrumbs {
    display: none;
  }
}

.section-goods {
  overflow: hidden;
}

.section-goods__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px;
}

.section-goods__list > * {
  margin: 0 10px 40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 390px;
      -ms-flex: 0 0 390px;
          flex: 0 0 390px;
  height: 485px;
}

@media (max-width: 1800px) {
  .section-goods__list {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (max-width: 960px) {
  .section-goods__list {
    display: block;
    margin: 0 -20px 20px;
  }
  .section-goods__list > * {
    margin: 0;
    height: auto;
  }
}

.section-news .container {
  padding-left: 30px;
  padding-right: 30px;
}

.section-news__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -15px;
}

.section-news__list > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(50% - 30px);
      -ms-flex: 0 0 calc(50% - 30px);
          flex: 0 0 calc(50% - 30px);
  margin: 0 15px 30px;
}

@media (max-width: 1400px) {
  .section-news__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0;
  }
  .section-news__list > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 0 30px;
  }
}

@media (max-width: 960px) {
  .section-news {
    padding-top: 30px;
  }
  .section-news .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-news__list {
    margin: 0 -15px 20px;
  }
  .section-news__list > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0;
  }
}

.section-stocks .container {
  padding-left: 30px;
  padding-right: 30px;
}

.section-stocks__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -15px;
}

.section-stocks__list > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(50% - 30px);
      -ms-flex: 0 0 calc(50% - 30px);
          flex: 0 0 calc(50% - 30px);
  margin: 0 15px 30px;
}

@media (max-width: 1400px) {
  .section-stocks__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0;
  }
  .section-stocks__list > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 0 30px;
  }
}

@media (max-width: 960px) {
  .section-stocks {
    padding-top: 30px;
  }
  .section-stocks .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-stocks__list {
    margin: 0 -15px 20px;
  }
  .section-stocks__list > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0;
  }
}

.section-get-price {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.section-get-price .container {
  padding-left: 30px;
  padding-right: 30px;
}

.section-get-price h1 {
  margin-bottom: 30px;
}

.section-get-price__content {
  margin-bottom: 50px;
}

.section-get-price__actions {
  margin-top: 30px;
}

.section-get-price__actions .btn {
  height: 70px;
}

.section-get-price__actions .btn span {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}

.section-get-price__actions .btn span img {
  margin-right: 13px;
  height: 50px;
}

@media (max-width: 960px) {
  .section-get-price .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

.section-content h1 {
  font-family: 'Code Pro LC';
  font-weight: normal;
  font-size: 40px;
  line-height: 48px;
  padding-bottom: 30px;
}

.section-content .container {
  padding-left: 30px;
  padding-right: 30px;
}

.section-content p {
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 25px;
}

.section-content .upper {
  padding: 20px 0 30px;
}

.section-content .imgs {
  padding: 10px 0;
}

.section-content ul {
  padding-left: 25px;
}

.section-content .two-column {
  padding-bottom: 20px;
}

.section-content .two-column p {
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 25px;
}

.section-content .two-column .upper {
  padding: 20px 0;
}

.section-content .two-column .imgs {
  padding: 10px 0;
}

@media (max-width: 960px) {
  .section-content {
    padding-top: 30px;
  }
  .section-content .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-content h1 {
    font-size: 19px;
    line-height: 23px;
  }
  .section-content .two-column {
    padding-bottom: 10px;
  }
  .section-content .two-column p {
    font-size: 12px;
    line-height: 17px;
  }
  .section-content .two-column .upper {
    padding: 10px 0;
  }
  .section-content p {
    font-size: 12px;
    line-height: 17px;
    padding-bottom: 10px;
  }
  .section-content .upper {
    padding: 10px 0 20px;
  }
}

.section-service h1 {
  margin-top: -9px;
  padding-bottom: 5px;
}

.section-service .two-column {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 10px;
}

.section-service .two-column .upper {
  padding: 5px 0;
}

.section-service p {
  padding-bottom: 10px;
}

.section-service .upper {
  padding: 10px 0 20px;
}

.section-service .bold {
  margin-bottom: 10px;
}

.pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 40px;
}

.pager > * {
  margin-right: 20px;
}

.pager > *:last-child {
  margin-right: 0;
}

.pager a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  padding-top: 3px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  color: #fff;
}

.pager span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  padding-top: 20px;
  overflow: hidden;
  font-size: 18px;
  line-height: 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0B2349;
}

.pager__prev {
    position: relative;
}

.pager__prev::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    background: url(../img/icon/pager_prev.png) center no-repeat;
}

.pager__last {
  position: relative;
}

.pager__last::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  background: url(../img/icon/pager_last.png) center no-repeat;
}

@media (max-width: 960px) {
  .pager {
    margin-bottom: 20px;
  }
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  right: 0;
  z-index: 50;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, #F8F8F8), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #F8F8F8 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #F8F8F8 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F8F8F8 50%, rgba(255, 255, 255, 0) 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.popup.open {
  opacity: 1;
  pointer-events: all;
}

.popup__wrap {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 10px;
          border-radius: 10px;
  overflow-y: scroll;
}

.popup__close {
  position: absolute;
  right: 48px;
  top: 48px;
  height: 35px;
  width: 35px;
  background: url(../img/icon/close.png) no-repeat center;
  cursor: pointer;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.popup__back {
  display: block;
  height: 32px;
  width: 32px;
  background: url(../img/icon/back.svg);
  -webkit-background-size: contain;
          background-size: contain;
}

.popup__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 135%;
  letter-spacing: 0.005em;
  color: #231F20;
  margin-bottom: 34px;
}

@media (max-width: 960px) {
  .popup__wrap {
    padding: 0;
    -webkit-border-radius: 0px;
            border-radius: 0px;
    max-width: none !important;
    max-height: none !important;
    width: 100vw !important;
    height: 100vh !important;
  }
  .popup__close {
    -webkit-background-size: cover;
            background-size: cover;
    margin-top: 0;
    width: 28px;
    height: 28px;
    top: 14px;
    right: 15px;
  }
  .popup__back {
    display: none;
  }
  .popup__title {
    padding-right: 30px;
    font-size: 17px;
  }
}

.popup-goods .popup__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  max-height: 90vh;
}

.popup-goods__img {
  -webkit-box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.03);
          box-shadow: 4px 4px 13px 2px rgba(0, 0, 0, 0.03);
  -webkit-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32%;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}

.popup-goods__img img {
  width: 100%;
}

.popup-goods__content {
  padding: 48px 110px 48px 53px;
  max-height: 100%;
  overflow-y: auto;
}

.popup-goods__title {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 26px;
  line-height: 31px;
  color: #000000;
  margin-bottom: 40px;
}

.popup-goods__text {
  margin-bottom: 40px;
}

.popup-goods__text p {
  padding-bottom: 10px;
}

.popup-goods__text ul li {
  margin-bottom: 7px;
}

.popup-goods__text ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .popup-goods .popup__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
    overflow-y: auto;
  }
  .popup-goods__img {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .popup-goods__img img {
    max-height: 70vw;
    width: initial;
    margin: 0 auto;
  }
  .popup-goods__content {
    padding: 15px 50px 50px 25px;
    max-height: none;
    overflow-y: initial;
  }
  .popup-goods__title {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 20px;
  }
  .popup-goods__text {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .popup-goods__text p {
    padding-bottom: 5px;
  }
  .popup-goods__text ul li {
    margin-bottom: 7px;
  }
  .popup-goods__text ul li:last-child {
    margin-bottom: 0;
  }
}

.form__field {
  background: #E4E4E4;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  padding: 1px;
  overflow: hidden;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.form__field input[type="text"], .form__field textarea {
  -webkit-border-radius: 9px;
          border-radius: 9px;
  background: #fff;
  width: 100%;
  font-family: 'Code_Pro_Demo', sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #393C42;
}

.form__field input[type="text"]::-webkit-input-placeholder, .form__field textarea::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #A4A4A4;
}

.form__field input[type="text"]:-ms-input-placeholder, .form__field textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #A4A4A4;
}

.form__field input[type="text"]::-ms-input-placeholder, .form__field textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #A4A4A4;
}

.form__field input[type="text"]::placeholder, .form__field textarea::placeholder {
  /* Most modern browsers support this now. */
  color: #A4A4A4;
}

.form__field input[type="text"] {
  padding: 4px 20px 0;
}

.form__field textarea {
  padding: 12px 20px;
  resize: none;
  overflow: hidden;
  margin: 0;
  vertical-align: top;
}

.form__field.focused {
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
}

.checkbox-single {
  margin-bottom: 15px;
}

.checkbox-single label {
  display: block;
  padding: 0px 6px;
  position: relative;
  padding-left: 45px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.checkbox-single label:before {
  content: '';
  position: absolute;
  margin: auto;
  left: 0;
  top: -webkit-calc(50% - 16px);
  top: calc(50% - 16px);
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
}

.checkbox-single label:after {
  content: '';
  position: absolute;
  margin: auto;
  left: 1px;
  top: -webkit-calc(50% - 15px);
  top: calc(50% - 15px);
  width: 28px;
  height: 28px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #E4E4E4;
  border: 5px solid linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
}

.checkbox-single label.checked:after {
  background-image: url(../img/icon/chb-a.png);
  background-repeat: no-repeat;
  background-position: center;
}

.checked a {
  white-space: nowrap;
}

.checkbox-single label input {
  display: none;
}

.popup-call .popup__wrap {
  padding: 40px;
  width: 915px;
  background: #F8F8F8;
  overflow-y: scroll;
}

.popup-call .popup__wrap .form__actions {
  margin-bottom: 40px;
}

.popup-call .popup__close {
  right: 33px;
  top: 33px;
}

.popup-call__content {
  max-width: 620px;
  margin: 0 auto;
}

.popup-call__title {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}

.popup-call__text {
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #393C42;
  margin-bottom: 40px;
}

.popup-call .two-column {
  margin-bottom: 40px;
}

.popup-call .two-column__column {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(50% - 20px);
      -ms-flex: 0 0 calc(50% - 20px);
          flex: 0 0 calc(50% - 20px);
}

.popup-call .form__policy {
  max-width: 592px;
  margin: 0 auto;
}

.popup-call .form__policy a {
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  border-bottom: 1px solid #E31F24;
}

.popup-call .form__policy .checkbox-single {
  margin-bottom: 40px;
}

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

.popup-request .popup__wrap {
  padding: 40px;
  width: 1060px;
  background: #F8F8F8;
}

.popup-request .popup__close {
  right: 33px;
  top: 33px;
}

.popup-request__content {
  max-width: 980px;
  margin: 0 auto;
}

.popup-request__title {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
  padding: 0 30px;
}

.popup-request__text {
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #393C42;
  max-width: 523px;
  margin: 0 auto 40px;
}

.popup-request .three-column {
  margin-bottom: 40px;
}

.popup-request .form__field.comment {
  margin-bottom: 40px;
}

.popup-request .form__policy {
  max-width: 592px;
  margin: 0 auto;
}

.popup-request .form__policy a {
  background: -webkit-gradient(linear, left top, left bottom, from(#EE761B), to(#E31F24));
  background: -webkit-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: -o-linear-gradient(top, #EE761B 0%, #E31F24 100%);
  background: linear-gradient(180deg, #EE761B 0%, #E31F24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  border-bottom: 1px solid #E31F24;
}

.popup-request .form__policy .checkbox-single {
  margin-bottom: 40px;
}

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

.popup-request-send .popup__wrap {
  padding: 40px;
  width: 1060px;
  background: #F8F8F8;
}

.popup-request-send .popup__close {
  right: 33px;
  top: 33px;
}

.popup-request-send__content {
  max-width: 980px;
  margin: 0 auto;
}

.popup-request-send__title {
  font-family: 'Code Pro LC';
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
  padding: 0 30px;
}

.popup-request-send__text {
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #393C42;
  max-width: 523px;
  margin: 0 auto;
}

/*

    @include adaptive-param('padding-right', 200, 0, 'px');

    @media (min-width: 600px) {
        flex: 0 0 100%;
        padding-right: 0;
    }

*/
/*# sourceMappingURL=style.css.map */

.news-teaser__title a {
    color: #000;
}

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

.form__recaptcha .g-recaptcha {
    display: inline-block;
}
