.flex-box {
  display: -webkit-box;
  display: -ms-box;
  display: box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .flex-box > .flex-align--auto {
    -ms-flex-item-align: auto;
    flex-item-align: auto;
    -webkit-align-self: auto;
    -ms-align-self: auto;
    align-self: auto; }
  .flex-box > .flex-align--start {
    -ms-flex-item-align: flex-start;
    flex-item-align: flex-start;
    -webkit-align-self: flex-start;
    -ms-align-self: flex-start;
    align-self: flex-start; }
  .flex-box > .flex-align--end {
    -ms-flex-item-align: flex-end;
    flex-item-align: flex-end;
    -webkit-align-self: flex-end;
    -ms-align-self: flex-end;
    align-self: flex-end; }
  .flex-box > .flex-align--center {
    -ms-flex-item-align: center;
    flex-item-align: center;
    -webkit-align-self: center;
    -ms-align-self: center;
    align-self: center; }
  .flex-box > .flex-align--baseline {
    -ms-flex-item-align: baseline;
    flex-item-align: baseline;
    -webkit-align-self: baseline;
    -ms-align-self: baseline;
    align-self: baseline; }
  .flex-box > .flex-align--stretch {
    -ms-flex-item-align: stretch;
    flex-item-align: stretch;
    -webkit-align-self: stretch;
    -ms-align-self: stretch;
    align-self: stretch; }

.flex-order--n-1 {
  -webkit-box-ordinal-group: 0;
  -ms-box-ordinal-group: 0;
  box-ordinal-group: 0;
  -ms-flex-order: -1;
  -webkit-order: -1;
  -ms-order: -1;
  order: -1; }
.flex-order--n0 {
  -webkit-box-ordinal-group: 1;
  -ms-box-ordinal-group: 1;
  box-ordinal-group: 1;
  -ms-flex-order: 0;
  -webkit-order: 0;
  -ms-order: 0;
  order: 0; }
.flex-order--n1 {
  -webkit-box-ordinal-group: 2;
  -ms-box-ordinal-group: 2;
  box-ordinal-group: 2;
  -ms-flex-order: 1;
  -webkit-order: 1;
  -ms-order: 1;
  order: 1; }
.flex-order--n2 {
  -webkit-box-ordinal-group: 3;
  -ms-box-ordinal-group: 3;
  box-ordinal-group: 3;
  -ms-flex-order: 2;
  -webkit-order: 2;
  -ms-order: 2;
  order: 2; }
.flex-order--n3 {
  -webkit-box-ordinal-group: 4;
  -ms-box-ordinal-group: 4;
  box-ordinal-group: 4;
  -ms-flex-order: 3;
  -webkit-order: 3;
  -ms-order: 3;
  order: 3; }
.flex-order--n4 {
  -webkit-box-ordinal-group: 5;
  -ms-box-ordinal-group: 5;
  box-ordinal-group: 5;
  -ms-flex-order: 4;
  -webkit-order: 4;
  -ms-order: 4;
  order: 4; }
.flex-order--n5 {
  -webkit-box-ordinal-group: 6;
  -ms-box-ordinal-group: 6;
  box-ordinal-group: 6;
  -ms-flex-order: 5;
  -webkit-order: 5;
  -ms-order: 5;
  order: 5; }

.flex-direction--row {
  -ms-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
.flex-direction--row-reverse {
  -ms-box-orient: horizontal;
  box-orient: horizontal;
  -ms-box-direction: reverse;
  box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }
.flex-direction--column {
  -ms-box-orient: vertical;
  box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
.flex-direction--column-reverse {
  -ms-box-orient: vertical;
  box-orient: vertical;
  -ms-box-direction: reverse;
  box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.flex-h-align--start {
  -ms-box-pack: start;
  box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start; }
.flex-h-align--end {
  -ms-box-pack: end;
  box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end; }
.flex-h-align--center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }
.flex-h-align--between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; }
.flex-h-align--around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around; }

.flex-wrap--nowrap {
  -ms-box-lines: single;
  box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
.flex-wrap--wrap {
  -ms-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-v-align--start {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start; }
.flex-v-align--end {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end; }
.flex-v-align--center {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center; }
.flex-v-align--between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between; }
.flex-v-align--around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around; }
.flex-v-align--stretch {
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  align-content: stretch; }

.flex-v-align-items--start {
  -ms-box-align: start;
  box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start; }
.flex-v-align-items--end {
  -ms-box-align: end;
  box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end; }
.flex-v-align-items--center {
  -ms-box-align: center;
  box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center; }
.flex-v-align-items--baseline {
  -ms-box-align: baseline;
  box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline; }
.flex-v-align-items--stretch {
  -ms-box-align: stretch;
  box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch; }

@media (min-width: 960px) {
  .flex_between-md {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_between-md_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_between-md_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 768px) {
  .flex_between-sm {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_between-sm_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_between-sm_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 420px) {
  .flex_between-xs {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_between-xs_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_between-xs_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 319px) {
  .flex_between-min {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_between-min_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_between-min_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }

@media (min-width: 960px) {
  .flex_around-md {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_around-md_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
      justify-content: space-around;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_around-md_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
      justify-content: space-around;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 768px) {
  .flex_around-sm {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_around-sm_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
      justify-content: space-around;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_around-sm_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
      justify-content: space-around;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 420px) {
  .flex_around-xs {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_around-xs_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
      justify-content: space-around;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_around-xs_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
      justify-content: space-around;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 319px) {
  .flex_around-min {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_around-min_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
      justify-content: space-around;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_around-min_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
      justify-content: space-around;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }

@media (min-width: 960px) {
  .flex_start-md {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-pack: start;
    box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_start-md_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: start;
      box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_start-md_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: start;
      box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 768px) {
  .flex_start-sm {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-pack: start;
    box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_start-sm_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: start;
      box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_start-sm_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: start;
      box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 420px) {
  .flex_start-xs {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-pack: start;
    box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_start-xs_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: start;
      box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_start-xs_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: start;
      box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 319px) {
  .flex_start-min {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-pack: start;
    box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_start-min_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: start;
      box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_start-min_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: start;
      box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }

@media (min-width: 960px) {
  .flex_end-md {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-pack: end;
    box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_end-md_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: end;
      box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_end-md_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: end;
      box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 768px) {
  .flex_end-sm {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-pack: end;
    box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_end-sm_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: end;
      box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_end-sm_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: end;
      box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 420px) {
  .flex_end-xs {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-pack: end;
    box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_end-xs_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: end;
      box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_end-xs_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: end;
      box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }
@media (min-width: 319px) {
  .flex_end-min {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-pack: end;
    box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    .flex_end-min_top {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: end;
      box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-box-align: start;
      box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
    .flex_end-min_bottom {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-pack: end;
      box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-box-align: end;
      box-align: end;
      -ms-flex-align: end;
      -webkit-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end; } }

.block-center {
  margin: 0 auto 0 auto;
  display: block; }
.block-left {
  margin: 0 0 0 0;
  display: block; }
.block-right {
  margin: 0 0 0 auto;
  display: block; }
@media (max-width: 960px) {
  .block_md-center {
    margin: 0 auto 0 auto;
    display: block; }
  .block_md-left {
    margin: 0 0 0 0;
    display: block; }
  .block_md-right {
    margin: 0 0 0 auto;
    display: block; } }
@media (max-width: 768px) {
  .block_sm-center {
    margin: 0 auto 0 auto;
    display: block; }
  .block_sm-left {
    margin: 0 0 0 0;
    display: block; }
  .block_sm-right {
    margin: 0 0 0 auto;
    display: block; } }
@media (max-width: 420px) {
  .block_xs-center {
    margin: 0 auto 0 auto;
    display: block; }
  .block_xs-left {
    margin: 0 0 0 0;
    display: block; }
  .block_xs-right {
    margin: 0 0 0 auto;
    display: block; } }
@media (max-width: 319px) {
  .block_min-center {
    margin: 0 auto 0 auto;
    display: block; }
  .block_min-left {
    margin: 0 0 0 0;
    display: block; }
  .block_min-right {
    margin: 0 0 0 auto;
    display: block; } }

@font-face {
  font-family: impact;
  src: url("../fonts/ofont-ru-impact.woff");
  font-weight: 700; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-Bold.woff");
  font-weight: 700; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-BoldItalic.woff");
  font-weight: 700;
  font-style: italic; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-ExtraBold.woff");
  font-weight: 900; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-ExtraBoldItalic.woff");
  font-weight: 900;
  font-style: italic; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-Italic.woff");
  font-weight: 400;
  font-style: italic; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-Light.woff");
  font-weight: 300; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-LightItalic.woff");
  font-weight: 300;
  font-style: italic; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-Regular.woff");
  font-weight: 400; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-Semibold.woff");
  font-weight: 600; }
@font-face {
  font-family: open sans;
  src: url("../fonts/OpenSans-SemiboldItalic.woff");
  font-weight: 600;
  font-style: italic; }
.input::-webkit-input-placeholder {
  color: inherit; }
.input::-moz-placeholder {
  color: inherit; }
.input:-moz-placeholder {
  color: inherit; }
.input:-ms-input-placeholder {
  color: inherit; }
.input_error {
  color: red !important;
  border-color: red !important; }

.skrew, .catalog .item-heading, .catalog-items .title, .action-items .title, .lizing .s1 .title a, .lizing .s2 .form-title {
  position: relative;
  z-index: 1;
  padding: 0 19px;
  line-height: 40px;
  display: block;
  background-color: #232323;
  text-align: center;
  color: #FFFFFF;
  font-weight: 400; }
  .skrew span, .catalog .item-heading span, .catalog-items .title span, .action-items .title span, .lizing .s1 .title a span, .lizing .s2 .form-title span {
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: 2;
    background-image: url("../image/skrew.png");
    background-position: center;
    background-repeat: no-repeat; }
    .skrew span:nth-of-type(1), .catalog .item-heading span:nth-of-type(1), .catalog-items .title span:nth-of-type(1), .action-items .title span:nth-of-type(1), .lizing .s1 .title a span:nth-of-type(1), .lizing .s2 .form-title span:nth-of-type(1) {
      top: 2px;
      left: 2px; }
    .skrew span:nth-of-type(2), .catalog .item-heading span:nth-of-type(2), .catalog-items .title span:nth-of-type(2), .action-items .title span:nth-of-type(2), .lizing .s1 .title a span:nth-of-type(2), .lizing .s2 .form-title span:nth-of-type(2) {
      bottom: 2px;
      left: 2px; }
    .skrew span:nth-of-type(3), .catalog .item-heading span:nth-of-type(3), .catalog-items .title span:nth-of-type(3), .action-items .title span:nth-of-type(3), .lizing .s1 .title a span:nth-of-type(3), .lizing .s2 .form-title span:nth-of-type(3) {
      top: 2px;
      right: 2px; }
    .skrew span:nth-of-type(4), .catalog .item-heading span:nth-of-type(4), .catalog-items .title span:nth-of-type(4), .action-items .title span:nth-of-type(4), .lizing .s1 .title a span:nth-of-type(4), .lizing .s2 .form-title span:nth-of-type(4) {
      bottom: 2px;
      right: 2px; }

.modal {
  width: 100%;
  min-width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 1000; }
  .modal-enter, .modal-leave-to {
    opacity: 0;
    transform: scale(1.1); }
  .modal-enter-active, .modal-leave-active {
    transition: 0.3s all;
    -webkit-transition: 0.3s all; }
  .modal .layout {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0; }
  .modal .close {
    position: absolute;
    top: -40px;
    right: -4px;
    cursor: pointer;
    width: 26px;
    height: 26px; }
    .modal .close:after, .modal .close:before {
      content: '';
      display: block;
      width: 100%;
      height: 3px;
      background-color: white;
      position: absolute;
      bottom: 50%;
      left: 0; }
    .modal .close:after {
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg); }
    .modal .close:before {
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg); }
  .modal .popup {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    background-color: white;
    width: 400px;
    height: 400px; }
    .modal .popup_lg {
      position: absolute;
      z-index: 1;
      top: 50px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      width: 600px;
      background-color: white; }
    .modal .popup_thanks {
      z-index: 1;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate3d(-50%, -50%, 0);
      -webkit-transform: translate3d(-50%, -50%, 0);
      background-color: white;
      width: 400px;
      height: 400px; }
  .modal .fade-enter, .modal .fade-leave-to {
    opacity: 0; }
  .modal .fade-enter-active, .modal .fade-leave-active {
    transition: 0.3s all;
    -webkit-transition: 0.3s all; }

.header {
  color: #504F4F;
  z-index: 100; }
  .header .wrapper {
    padding: 10px 0;
    background-color: white; }
  .header .container {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center; }
  .header .logo {
    display: block;
    max-width: 220px; }
    @media (max-width: 960px) {
      .header .logo {
        width: 200px; } }
    @media (max-width: 768px) {
      .header .logo {
        width: 160px; } }
    .header .logo img {
      width: 100%; }
  .header-phone {
    text-align: center; }
    @media (max-width: 960px) {
      .header-phone {
        display: none; } }
    .header-phone a {
      display: block;
      font-size: 24px;
      line-height: 18px; }
    .header-phone span {
      display: block;
      font-size: 10px; }
  .header .nav {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-box-align: start;
    box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -ms-box-pack: end;
    box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end; }
    @media (max-width: 768px) {
      .header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 9;
        background-color: white; } }
    .header .nav-link {
      border-radius: 0;
      border: solid 1px #cccccc;
      font-size: 12px;
      color: #8B8A8A;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
      margin: 0 0 0 10px;
      transition: 0.25s all;
      -webkit-transition: 0.25s all; }
      .header .nav-link > a {
        padding: 6px 8px;
        display: block; }
      .header .nav-link:hover {
        background-color: #504F4F;
        color: white;
        z-index: 2; }
        .header .nav-link:hover .nav-sub {
          pointer-events: auto;
          opacity: 1;
          z-index: 10; }
    .header .nav-sub {
      position: absolute;
      top: 100%;
      right: 0;
      width: 200px;
      z-index: 10;
      background-color: #504F4F;
      border: solid 1px #cccccc;
      padding: 10px;
      opacity: 0;
      pointer-events: none;
      transition: 0.25s all;
      -webkit-transition: 0.25s all; }
      @media (max-width: 768px) {
        .header .nav-sub {
          width: 100%;
          z-index: 20; } }
      .header .nav-sub-link {
        text-align: center;
        font-size: 14px;
        color: #8B8A8A;
        text-transform: uppercase;
        margin: 5px 0; }
        .header .nav-sub-link:hover {
          color: white; }
  .header .menu-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 10;
    padding: 0;
    width: 30px;
    display: none;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%); }
    @media (max-width: 768px) {
      .header .menu-btn {
        display: block; } }
    .header .menu-btn span {
      display: block;
      width: 100%;
      height: 3px;
      margin: 3px auto;
      background-color: #504F4F;
      transition: 0.25s all;
      -webkit-transition: 0.25s all; }
    .header .menu-btn.active span:nth-of-type(1) {
      transform: translateY(6px) rotate(45deg);
      -webkit-transform: translateY(6px) rotate(45deg); }
    .header .menu-btn.active span:nth-of-type(2) {
      opacity: 0; }
    .header .menu-btn.active span:nth-of-type(3) {
      transform: translateY(-6px) rotate(-45deg);
      -webkit-transform: translateY(-6px) rotate(-45deg); }
  @media (max-width: 768px) {
    .header .active + .nav {
      display: block; } }

.footer {
  background-color: #2f2e2e;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  margin: 40px 0 0 0; }
  @media (max-width: 768px) {
    .footer {
      position: relative; } }
  .footer .text {
    color: #8b8a8a;
    font-size: 10px;
    text-align: center; }
  .footer .phone {
    color: #FFFFFF;
    font-size: 16px;
    position: absolute;
    top: -8px;
    right: 0;
    z-index: 1; }
    @media (max-width: 768px) {
      .footer .phone {
        position: relative;
        top: 0;
        text-align: center;
        display: block;
        margin: 10px 0 0 0; } }
    .footer .phone img {
      width: 64px;
      display: inline-block;
      vertical-align: middle; }

.index .s1 {
  background-image: url("../image/bg.jpg");
  padding: 0 0 50px 0; }
  .index .s1 .heading-container {
    position: relative;
    z-index: 1;
    min-height: 360px;
    padding: 60px 0 0 0; }
    @media (max-width: 980px) {
      .index .s1 .heading-container {
        min-height: 300px; } }
    @media (max-width: 768px) {
      .index .s1 .heading-container {
        padding: 30px 0 0 0;
        min-height: 240px; } }
    @media (max-width: 420px) {
      .index .s1 .heading-container {
        min-height: 200px; } }
    .index .s1 .heading-container:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 120px;
      background: rgba(255, 243, 23, 0.95); }
    .index .s1 .heading-container:after {
      content: '';
      position: absolute;
      border-top: 240px solid rgba(255, 243, 23, 0.95);
      border-right: 490px solid transparent;
      border-left: 490px solid transparent;
      top: 120px;
      left: 0;
      z-index: 1; }
      @media (max-width: 980px) {
        .index .s1 .heading-container:after {
          border-top: 180px solid rgba(255, 243, 23, 0.95);
          border-right: 50vw solid transparent;
          border-left: 50vw solid transparent; } }
      @media (max-width: 980px) {
        .index .s1 .heading-container:after {
          border-top: 120px solid rgba(255, 243, 23, 0.95); } }
      @media (max-width: 420px) {
        .index .s1 .heading-container:after {
          border-top: 80px solid rgba(255, 243, 23, 0.95); } }
  .index .s1 .heading {
    position: relative;
    z-index: 2;
    font-size: 56px;
    text-align: center;
    font-weight: 900;
    font-family: impact; }
    @media (max-width: 960px) {
      .index .s1 .heading {
        font-size: 48px; } }
    @media (max-width: 768px) {
      .index .s1 .heading {
        font-size: 36px; } }
    @media (max-width: 420px) {
      .index .s1 .heading {
        font-size: 30px; } }
  .index .s1 .btn {
    font-size: 18px;
    color: white;
    background-color: rgba(0, 0, 0, 0.27);
    border: 2px solid #c7b56f;
    display: block;
    margin: 45px auto 0 auto;
    height: 52px;
    padding: 0 50px;
    transition: 0.25s all;
    -webkit-transition: 0.25s all; }
    .index .s1 .btn:hover {
      background-color: #e3d9b1;
      border-color: #e3d9b1; }
.index .s2 .items {
  padding: 30px 0;
  background-color: white;
  display: -webkit-box;
  display: -ms-box;
  display: box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-box-align: start;
  box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -ms-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
@media (max-width: 900px) {
  .index .s2 .item {
    width: 48%;
    margin-bottom: 30px; } }
@media (max-width: 768px) {
  .index .s2 .item {
    width: 100%; } }
.index .s2 .item-heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  color: #504F4F;
  display: block; }
.index .s2 .item-pic {
  display: block;
  margin: 0 auto;
  max-width: 240px;
  height: 130px;
  position: relative;
  z-index: 1; }
  .index .s2 .item-pic img {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    max-height: 100%; }
.index .s2 .item:nth-of-type(4) .item-pic img {
  max-height: 92px; }

.catalog .wrapper {
  background-color: white; }
.catalog .items {
  display: -webkit-box;
  display: -ms-box;
  display: box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 700px;
  padding: 40px 0 0 0; }
  @media (max-width: 768px) {
    .catalog .items {
      display: block;
      padding: 0 0 1px 0; } }
.catalog .item {
  display: block;
  width: 300px;
  margin-bottom: 80px; }
  @media (max-width: 768px) {
    .catalog .item {
      margin: 0 auto 40px auto; } }
  .catalog .item-pic {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    height: 160px;
    position: relative;
    z-index: 1; }
    .catalog .item-pic img {
      z-index: 1;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate3d(-50%, -50%, 0);
      -webkit-transform: translate3d(-50%, -50%, 0);
      max-width: 100%; }
  .catalog .item-heading {
    width: 100%;
    transition: 0.25s all;
    -webkit-transition: 0.25s all; }
    .catalog .item-heading:hover {
      background-color: #5f5f5f; }
.catalog-items {
  background-color: #d9d9d9;
  padding: 0 55px 1px 55px; }
  @media (max-width: 768px) {
    .catalog-items {
      padding: 0 10px 1px 10px; } }
  .catalog-items .title {
    color: #FFFFFF;
    width: auto;
    display: block;
    margin: 0 auto 32px auto; }
.catalog-item {
  margin-bottom: 40px; }
  .catalog-item__title {
    text-align: center;
    overflow: hidden;
    margin-bottom: 16px; }
    .catalog-item__title a {
      color: #000000;
      border: solid #504f4f 1px;
      font-weight: 900;
      font-family: impact;
      text-transform: uppercase;
      margin: 0 auto 0 auto;
      display: inline-block;
      padding: 0 20px;
      position: relative;
      z-index: 1; }
      .catalog-item__title a:before {
        content: '';
        top: 50%;
        left: calc(100% + 15px);
        width: 100vw;
        height: 1px;
        background-color: black;
        position: absolute;
        z-index: 1; }
      .catalog-item__title a:after {
        content: '';
        top: 50%;
        right: calc(100% + 15px);
        width: 100vw;
        height: 1px;
        background-color: black;
        position: absolute;
        z-index: 1; }
  .catalog-item__container {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: start;
    box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    background-color: #ebebeb;
    padding: 14px; }
    @media (max-width: 768px) {
      .catalog-item__container {
        display: block; } }
  .catalog-item__pic {
    width: 100%;
    max-width: 275px;
    display: block; }
    @media (max-width: 768px) {
      .catalog-item__pic {
        margin: 0 auto 20px auto; } }
  .catalog-item__block {
    padding: 0 0 0 15px; }
    .catalog-item__block .text {
      font-size: 14px;
      text-align: justify;
      color: black;
      margin-bottom: 15px; }
      .catalog-item__block .text span {
        font-weight: 700; }
  .catalog-item__container table {
    width: calc(100% - 290px);
    border-collapse: collapse;
     }
    @media (max-width: 768px) {
      .catalog-item__container table {
        width: 100%;
        padding: 0; } }
    .catalog-item__container table tr {
      color: #000000; }
      .catalog-item__container table tr td:nth-of-type(1) {
        font-size: 14px;
        font-weight: 700;
        padding: 0 0 5px 0; }
        @media (max-width: 768px) {
          .catalog-item__container table tr td:nth-of-type(1) {
            font-size: 10px; } }
      .catalog-item__container table tr td:nth-of-type(2) {
        font-size: 14px;
        font-weight: 400;
        padding: 0 0 5px 0;
        text-align: right; }
        @media (max-width: 768px) {
          .catalog-item__container table tr td:nth-of-type(2) {
            font-size: 10px; } }
  .catalog-item__btn {
    font-size: 14px;
    height: 28px;
    width: 150px;
    display: block;
    margin: 0 0 0 auto;
    background-color: #fff317;
    border: 1px solid #fff317;
    color: #000000;
    text-transform: uppercase;
    transition: 0.25s all;
    -webkit-transition: 0.25s all; }
    .catalog-item__btn:hover {
      background-color: #e3d9b1;
      border-color: #e3d9b1;
      color: #FFFFFF; }

.action-items {
  padding: 50px 0 30px 0; }
  .action-items .title {
    color: #FFFFFF;
    width: 230px;
    display: block;
    margin: 0 auto 32px auto; }
.action-item {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 40px auto; }
  .action-item__title {
    overflow: hidden;
    margin-bottom: 16px; }
    .action-item__title a {
      color: #000000;
      border: solid #504f4f 1px;
      font-weight: 900;
      font-family: impact;
      text-transform: uppercase;
      display: inline-block;
      padding: 0 20px;
      position: relative;
      z-index: 1; }
  .action-item__container {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: start;
    box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    background-color: #ebebeb;
    padding: 14px; }
    @media (max-width: 768px) {
      .action-item__container {
        display: block;
        text-align: center; } }
  .action-item__pic {
    width: 100%;
    max-width: 275px;
    display: block; }
    @media (max-width: 768px) {
      .action-item__pic {
        margin: 0 auto 20px auto; } }
  .action-item__block {
    padding: 0 0 0 15px; }
    @media (max-width: 768px) {
      .action-item__block {
        padding: 0; } }
    .action-item__block .text {
      font-size: 14px;
      text-align: left;
      color: black;
      margin-bottom: 15px;
      word-break: break-word; }
      .action-item__block .text span {
        font-weight: 700;
        text-align: left; }
  .action-item__table {
    width: calc(100% - 275px);
    border-collapse: collapse;
    padding: 0 0 0 15px; }
    .action-item__table tr {
      color: #000000; }
      .action-item__table tr td:nth-of-type(1) {
        font-size: 14px;
        font-weight: 700;
        padding: 0 0 5px 0; }
      .action-item__table tr td:nth-of-type(2) {
        font-size: 14px;
        font-weight: 400;
        padding: 0 0 5px 0; }
  .action-item__btn {
    font-size: 14px;
    height: 28px;
    width: 150px;
    display: block;
    margin: 0 0 0 auto;
    background-color: #fff317;
    border: 1px solid #fff317;
    color: #000000;
    text-transform: uppercase;
    transition: 0.25s all;
    -webkit-transition: 0.25s all; }
    .action-item__btn:hover {
      background-color: #e3d9b1;
      border-color: #e3d9b1;
      color: #FFFFFF; }
.action .s1 {
  background-image: url("../image/bg.jpg"); }

.lizing .s1 .wrapper {
  padding: 0 0 40px 0;
  background-color: white; }
.lizing .s1 .title {
  color: #FFFFFF;
  display: block;
  margin: 0 auto 32px auto;
  font-weight: 400;
  text-align: center; }
  .lizing .s1 .title a {
    display: inline-block;
    vertical-align: top; }
.lizing .s1 .text {
  font-size: 16px;
  width: 100%;
  max-width: 740px;
  margin: 0 auto 0 auto;
  text-align: justify }
.lizing .s1 .text p{
    padding-top: 4px;
    padding-bottom: 4px
}

  .lizing .s1 .text span {
    font-weight: 700; }
.lizing .s2 {
  background-image: url("../image/bg.jpg"); }
  .lizing .s2 .wrapper {
  	display: flex;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 80px 0; }
  .lizing .s2 .form {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 10px auto 0 auto;
    width: 450px;
    max-width: 870px; }
    @media (max-width: 768px) {
      .lizing .s2 .form {
        display: block;
        padding: 0 10px; } }
    .lizing .s2 .form-col {
      width: 90%;
      border: 0px solid black;
      background-color: #ebebeb; }
      @media (max-width: 768px) {
        .lizing .s2 .form-col {
          width: 100%; } }
    .lizing .s2 .form-container {
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-box-lines: multiple;
      box-lines: multiple;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 20px 20px 10px 20px; }
    .lizing .s2 .form .input-table {
      width: 100%;
      margin: 16px 0 18px 0;
      display: -webkit-box;
      display: -ms-box;
      display: box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-box-align: center;
      box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -ms-align-items: center;
      align-items: center;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between; }
      .lizing .s2 .form .input-table .input {
        width: 100px;
        text-align: right; }
    .lizing .s2 .form-group {
      margin-bottom: 10px;
      width: 100%; }
      .lizing .s2 .form-group.small {
        width: 49%; }
    .lizing .s2 .form-label {
      font-size: 16px;
      color: #000000; }
      @media (max-width: 768px) {
        .lizing .s2 .form-label {
          font-size: 12px; } }
    .lizing .s2 .form .input {
      display: block;
      border: 1px solid black;
      background-color: #fff317;
      border-radius: 0;
      width: 100%;
      height: 25px;
      padding: 0 10px; }
    .lizing .s2 .form .btn {
      font-size: 14px;
      height: 28px;
      width: 150px;
      display: block;
      margin: 0 0 0 auto;
      background-color: #fff317;
      border: 1px solid #fff317;
      color: #000000;
      text-transform: uppercase;
      transition: 0.25s all;
      -webkit-transition: 0.25s all; }
      .lizing .s2 .form .btn:hover {
        background-color: #e3d9b1;
        border-color: #e3d9b1;
        color: #FFFFFF; }

.contacts .s1 {
  background-image: url("../image/bg.jpg"); }
.contacts .wrapper {
  padding: 100px 0 200px 0; }
  @media (max-width: 768px) {
    .contacts .wrapper {
      padding: 50px 0; } }
.contacts .container {
  border: 2px solid #fff317;
  background-color: rgba(47, 46, 46, 0.82);
  padding: 40px 0; }
  .contacts .container .text {
    font-size: 18px;
    line-height: 32px;
    color: white;
    text-align: center; }
    .contacts .container .text img {
      display: inline-block;
      vertical-align: middle;
      width: 30px; }

.about p {
    padding: 6px 0 6px 0; }

  .about .truck {
    width: 100%; }
  .about .head-pic {
    display: block;
    margin: 0 auto;
    max-width: 290px; }
  .about .wrapper {
    background-color: #ebebeb;
    padding: 0 0 20px 0; }
  .about .head {
    padding: 15px 0;
    margin-bottom: 40px; }
  .about .text {
    width: 100%;
    max-width: 840px;
    margin: 0 auto 25px auto;
    font-size: 16px;
    color: #000000; }

.description .wrapper {
  background-color: #d9d9d9;
  padding: 40px 0; }
.description .items {
  display: -webkit-box;
  display: -ms-box;
  display: box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 800px; }
.description .table {
  width: 100%;
  max-width: 870px;
  display: block;
  margin: 0 auto 0 auto; }
.description-items {
  padding: 0 55px 1px 55px; }
  @media (max-width: 768px) {
    .description-items {
      padding: 0 10px 1px 10px; } }
.description-item {
  margin-bottom: 10px; }
  .description-item .text {
    font-size: 14px;
    color: black;
    margin: 20px 0 0 0;
    display: block; }
    .description-item .text p{
        padding-top: 4px;
        padding-bottom: 4px
    }
  .description-item__container {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
  /*  display: -webkit-flex;
    display: flex; */
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: end;
    box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
    -ms-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #ebebeb;
    padding: 14px; }
    @media (max-width: 768px) {
      .description-item__container {
        display: block; } }

  .description-item__container2 {
    display: -webkit-box;
    display: -ms-box;
    display: box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-box-align: end;
    box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
    -ms-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #F7F7F7;
    padding: 14px;
    margin-top: 15px }
  .description-item__container2 .text{
    margin-top: 0 }

  .description-item__container2 .text {
    width: 100%;
     }
  .description-item__container2 .text table {
    width: 100%;
    border-collapse: collapse;
     }
     .description-item__container2 .text table td{
         border: 1px solid #D9D9D9;
         padding: 5px 14px 5px 14px
     }
    @media (max-width: 768px) {
      .description-item__container2 .text table {
        width: 100%;
        padding: 0; } }
    .description-item__container2 .text table tr {
      color: #000000; }
      .description-item__container2 .text table tr td:nth-of-type(1) {
        font-size: 14px;
        font-weight: 700; }
        @media (max-width: 768px) {
          .description-item__container2 .text table tr td:nth-of-type(1) {
            font-size: 10px; } }
      .description-item__container2 .text table tr td:nth-of-type(2) {
        font-size: 14px;
        font-weight: 400;
        text-align: right; }
        @media (max-width: 768px) {
          .description-item__container2 .text table tr td:nth-of-type(2) {
            font-size: 10px; } }

  .description-item__block table {
    width: 100%;
    border-collapse: collapse;
     }
     .description-item__block table td{
     }
    @media (max-width: 768px) {
      .description-item__block table {
        width: 100%;
        padding: 0; } }
    .description-item__block table tr {
      color: #000000; }
      .description-item__block table tr td:nth-of-type(1) {
        font-size: 14px;
        font-weight: 700; }
        @media (max-width: 768px) {
          .description-item__block table tr td:nth-of-type(1) {
            font-size: 10px;
        padding: 0 0 5px 0; } }
      .description-item__block table tr td:nth-of-type(2) {
        font-size: 14px;
        font-weight: 400;
        text-align: right;
        padding: 0 0 5px 0; }
        @media (max-width: 768px) {
          .description-item__block table tr td:nth-of-type(2) {
            font-size: 10px; } }


  .description-item__pic {
    width: 50%;
    max-width: 430px;
    display: block; }
  .description-item__pic img {
    width: 90%;
  }
    @media (max-width: 768px) {
      .description-item__pic {
        width: 100%;
        margin: 0 auto 10px auto; } }
  .description-item__block {
    width: 50%;
    padding: 0 0 0 15px; }
    @media (max-width: 768px) {
      .description-item__block {
        width: 100%; } }
  .description-item__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px; }
    .description-item__table tr {
      color: #000000; }
      .description-item__table tr td:nth-of-type(1) {
        font-size: 14px;
        font-weight: 700; }
        @media (max-width: 960px) {
          .description-item__table tr td:nth-of-type(1) {
            font-size: 10px; } }
      .description-item__table tr td:nth-of-type(2) {
        font-size: 14px;
        font-weight: 400;
        padding: 0 0 5px 0;
        text-align: right }
        @media (max-width: 960px) {
          .description-item__table tr td:nth-of-type(2) {
            font-size: 10px; } }
  .description-item__btn {
    font-size: 14px;
    height: 28px;
    width: 100%;
    display: block;
    margin: 10px 0 0 auto;
    background-color: #fff317;
    border: 1px solid #fff317;
    color: #000000;
    text-transform: uppercase;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
    transition: 0.25s all;
    -webkit-transition: 0.25s all; }
    .description-item__btn:hover {
      background-color: #e3d9b1;
      border-color: #e3d9b1;
      color: #FFFFFF; }

body {
  padding: 0 0 0 0;
  margin: 0;
  font-family: open sans,sans-serif;
  background-image: url("../image/pattern.png");
  opacity: 1 !important;
  transition: opacity 0.5s; }
  @media (max-width: 768px) {
    body {
      padding: 0; } }

.wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative; }

.wrapper-all {
  width: 100%;
  overflow: hidden;
  min-width: 319px; }

* {
  box-sizing: border-box; }

h1, h2, h3, h4, p, a, img, ul, li {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style-type: none;
  color: inherit; }

header, section, footer {
  width: 100%;
  min-width: 319px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; }

textarea,
button,
input {
  position: relative;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  outline: none;
  border-radius: 0;
  font-family: inherit; }

button {
  cursor: pointer; }

.col {
  display: inline-block;
  vertical-align: top; }

.col-m {
  display: inline-block;
  vertical-align: middle; }

.head {
  background-color: #fff317;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  font-size: 0; }
  .head-line {
    width: 100%; }
  .head .heading {
    color: #504F4F;
    font-size: 26px;
    text-align: center;
    font-weight: 400;
    padding: 5px 0;
    border: 1px solid rgba(214, 214, 214, 0.54); }

/*# sourceMappingURL=style.css.map */



.review, .contact, .bron {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2999;
  justify-content: center;
  align-items: center;
}

.bron button{
  overflow: visible;
  width: auto;
  height: 50px;
  border: 1px #c10c0f solid;
  padding: 10px 20px;
  color: #c10c0f;
  font-size: 0.9em;
  font-weight: bold;
  background: #fff;
  text-align: center;
  line-height: initial;
  text-transform: uppercase !important;
  float: right;
}

.contact p{
	text-align: left;
}

.review__bg, .contact__bg, .bron__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.review__modal {
  position: relative;
  width: 680px;
  max-width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  background-color: #fff;
}

.review__title {
  font-size: 24px;
  text-align: center;
  color: #000;
}
.btn-pust img, .btn-poln img{
    width: 20px;
    margin: -4px 0px 0px 5px;
}
.btn-pust:hover img{
	filter: sepia(1);
}

.checkbox, .checkbox a {
	color: #000 !important;
}

label{
	text-align: left;
    float: left;
    color: #000;
    margin-top: 10px;
	padding-left: 10px !important;
}

 .bron .bron__close-btn {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: initial;
}

.review .form-wrap-select:nth-child(3) {
  text-align: left;
  color: #000;
}

.review .form-input::placeholder {
  color: #000 !important;
  opacity: 1;
}

.review .form-wrap-select .select2{
  border: 1px solid #e1e1e1;
}
.contacts-holly li:first-child {
    min-height: 60px;
}

.home .rd-navbar-collapse {
	visibility: hidden;
}

