@charset "UTF-8";
@font-face {
  font-family: 'main';
  src: url("../fonts/nv-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'main';
  src: url("../fonts/nv.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'main';
  src: url("../fonts/nv-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'main2';
  src: url("../fonts/Druk_Wide_Medium_Cy.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

.grid-2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-gap: 16px; }
  @media screen and (max-width: 960px) {
    .grid-2 {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 750px) {
    .grid-2 {
      grid-template-columns: repeat(1, 1fr); } }

.grid-3 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-gap: 16px; }
  @media screen and (max-width: 960px) {
    .grid-3 {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 750px) {
    .grid-3 {
      grid-template-columns: repeat(1, 1fr); } }

.grid-4 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-gap: 16px; }
  @media screen and (max-width: 960px) {
    .grid-4 {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 750px) {
    .grid-4 {
      grid-template-columns: repeat(1, 1fr); } }

.x1 {
  grid-column-start: span 1; }

.x2 {
  grid-column-start: span 2; }
  @media screen and (max-width: 750px) {
    .x2 {
      grid-column-start: span 1; } }

.x3 {
  grid-column-start: span 3; }

.x4 {
  grid-column-start: span 4; }
  @media screen and (max-width: 750px) {
    .x4 {
      grid-column-start: span 1; } }

.x5 {
  grid-column-start: span 5; }
  @media screen and (max-width: 750px) {
    .x5 {
      grid-column-start: span 1; } }

.x6 {
  grid-column-start: span 6; }

.x7 {
  grid-column-start: span 7; }

.x8 {
  grid-column-start: span 8; }

.x9 {
  grid-column-start: span 9; }

.x10 {
  grid-column-start: span 10; }

.x11 {
  grid-column-start: span 11; }

.x12 {
  grid-column-start: span 12; }

/* HEADER -----------------------*/
body.body {
  background-color: black; }

.header {
  position: fixed;
  top: 28px;
  left: 0;
  width: 100%;
  z-index: 100; }
  .header .header-wrap {
    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; }
    .header .header-wrap .logo-wrap {
      width: 162px; }
    .header .header-wrap .top-nav {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .header .header-wrap .top-nav .top-nav-item {
        margin-right: 24px; }
        .header .header-wrap .top-nav .top-nav-item:last-child {
          margin-right: 0; }

.right-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 32px;
  width: 24px;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 100; }
  @media screen and (max-width: 750px) {
    .right-panel {
      display: none; } }
  .right-panel .side-paggination {
    position: absolute;
    top: 50%;
    right: 0%;
    -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    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: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .right-panel .side-paggination .paggination-line-link {
      display: block;
      padding-top: 7px;
      padding-bottom: 8px; }
      .right-panel .side-paggination .paggination-line-link .line {
        background-color: #fff;
        width: 16px;
        height: 1px;
        -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -o-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
      .right-panel .side-paggination .paggination-line-link:hover .line {
        width: 24px; }
      .right-panel .side-paggination .paggination-line-link.active .line {
        width: 24px; }

.fixed-footer {
  position: fixed;
  bottom: 24px;
  left: 0;
  width: 100%;
  z-index: 100; }
  .fixed-footer .footer-wrap {
    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; }
    .fixed-footer .footer-wrap .phone-wrap {
      font-size: 1.4rem; }
    .fixed-footer .footer-wrap .bc-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; }
      .fixed-footer .footer-wrap .bc-wrap .social-list .social-item {
        margin-right: 24px; }

.bc-btn {
  cursor: pointer;
  font-weight: 700;
  margin-right: 30px; }

.slick-dotted.slick-slider {
  margin-bottom: 20px; }

/* --------- TITLE ----------- */
.title-wrap {
  position: relative;
  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;
  margin-bottom: 10px; }
  @media screen and (max-width: 560px) {
    .title-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media screen and (max-width: 560px) {
    .title-wrap {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .title-wrap .title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1; }
  .title-wrap h1 {
    text-align: left;
    color: #222;
    font-size: 3.3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0px; }
    @media screen and (max-width: 750px) {
      .title-wrap h1 {
        font-size: 2.4rem; } }
  .title-wrap h2 {
    text-align: left;
    color: #000;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 28px; }
  .title-wrap p {
    font-family: "main2";
    text-align: left;
    color: #000;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 24px; }
  .title-wrap h3 {
    text-align: left;
    font-family: 'main', Arial, Helvetica, sans-serif;
    color: #000;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 8px; }
  .title-wrap .numeral {
    position: absolute;
    top: 0px;
    left: -30px;
    font-size: 14px;
    font-weight: 700;
    color: white; }
    @media screen and (max-width: 750px) {
      .title-wrap .numeral {
        top: -25px; } }
    @media screen and (max-width: 750px) {
      .title-wrap .numeral {
        left: 0px; } }
    @media screen and (max-width: 1170px) {
      .title-wrap .numeral {
        display: none; } }
    .title-wrap .numeral:before {
      content: "";
      position: absolute;
      top: -webkit-calc(50% - 1px);
      top: calc(50% - 1px);
      left: -100px;
      width: 80px;
      height: 1px;
      background-color: #eeeeee; }

/* ------ ЭФФЕКТ СТРЕЛОК -------------*/
.menu-arrow {
  position: relative;
  display: inline-block; }

.menu-arrow:before {
  content: "";
  position: absolute;
  top: 6px;
  right: -15px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.menu-arrow-active:before {
  content: "";
  position: absolute;
  top: 6px;
  right: -15px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  -webkit-transform: rotate(315deg);
      -ms-transform: rotate(315deg);
          transform: rotate(315deg);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

/* .menu-arrow:hover:before {
  transform: rotate(315deg);
  top: 11px;
} */
/*-------------------- BUTTONS------------------- */
.no-border-btn-wrap {
  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; }

.btn {
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0px 20px;
  line-height: 46px;
  text-align: center;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 160px; }

.btn + .btn {
  margin-left: 20px; }
  @media screen and (max-width: 560px) {
    .btn + .btn {
      margin-left: 0; } }
  @media screen and (max-width: 560px) {
    .btn + .btn {
      margin-top: 20px; } }

.empty-btn {
  cursor: pointer;
  color: #484540;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border: 1px solid #eaeeef;
  padding-right: 45px; }
  .empty-btn .svg {
    margin-right: 30px; }
  .empty-btn:hover {
    background-color: #eaeeef; }

.btn-ct {
  color: white;
  font-size: 1.2rem; }

.full-btn {
  -webkit-border-radius: 30px;
          border-radius: 30px;
  background-color: rgba(81, 218, 177, 0.8);
  border: 1px solid white;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  .full-btn:hover {
    color: #fff;
    background-color: white; }

.btn-arrow {
  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;
  color: white;
  text-transform: uppercase;
  padding: 0;
  max-width: 160px; }
  .btn-arrow span {
    margin-right: 16px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .btn-arrow .svg path {
    fill: white;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .btn-arrow:hover span {
    margin-right: 24px;
    color: rgba(81, 218, 177, 0.8); }
  .btn-arrow:hover .svg path {
    fill: rgba(81, 218, 177, 0.8); }

.btn-more {
  color: #f60000;
  font-size: 1.4rem; }

.ripple {
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.ripple-effect {
  position: absolute;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  padding: 0;
  margin: 0;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0); }

/* -------- ARRON IN CIRCLE -------------*/
.arrow-circle-wrap {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  height: 40px;
  cursor: pointer;
  position: relative; }
  .arrow-circle-wrap .arrow {
    position: absolute;
    top: 12px;
    left: 0px;
    -webkit-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s; }
  .arrow-circle-wrap .circle {
    position: absolute;
    top: 0px;
    left: 16px; }

/*  --------- SOCIAL-------------- */
.social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .social-list .social-item {
    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; }
    .social-list .social-item:last-child {
      margin-right: 0 !important; }
    .social-list .social-item .social-link {
      display: block; }

/* ------- STIKEY BTN TO TOP -------------- */
.go-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  border-right: 1px solid #E8E8E8;
  height: 100%; }
  .go-top .to-top-btn {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    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-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding-top: 24px; }
    .go-top .to-top-btn .to-top-arrow {
      margin-bottom: 16px; }
    .go-top .to-top-btn .to-top-text {
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 24px;
      color: #545454;
      opacity: .3; }

/* -------- SLICK SLIDER ARROWS ------------ */
.slick-arrows-wrap {
  height: 0;
  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;
  width: 100%; }
  .slick-arrows-wrap .arrow-prev, .slick-arrows-wrap .arrow-next {
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    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;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
    .slick-arrows-wrap .arrow-prev .svg, .slick-arrows-wrap .arrow-next .svg {
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
    .slick-arrows-wrap .arrow-prev:hover .svg, .slick-arrows-wrap .arrow-next:hover .svg {
      -webkit-transform: scale(1.5);
          -ms-transform: scale(1.5);
              transform: scale(1.5); }

/* ------------- SLICK DOTS -------------- */
.slick-dots {
  bottom: 10px;
  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; }
  @media screen and (max-width: 750px) {
    .slick-dots {
      bottom: -30px; } }
  .slick-dots li {
    background-color: #fff;
    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
    height: 10px;
    width: 10px;
    -webkit-border-radius: 50%;
            border-radius: 50%; }
    .slick-dots li button {
      display: none; }
  .slick-dots .slick-active {
    height: 10px;
    width: 10px;
    background-color: #f60000;
    -webkit-border-radius: 50%;
            border-radius: 50%; }

.hit {
  position: relative; }
  .hit:before {
    content: url(../img/offer-hit.svg);
    position: absolute;
    top: 24px;
    right: 24px; }

/* ------------- SLICK BASE ARROWS  END-------------- */
/*  READ MORE */
.toggle-text {
  font-weight: 700;
  padding-left: 0px;
  cursor: pointer; }

.hide-text {
  display: none; }

#map {
  position: absolute;
  width: 100%;
  margin-top: 0px;
  color: #000;
  height: 425px;
  position: relative;
  margin-bottom: 0px; }
  @media screen and (max-width: 750px) {
    #map {
      height: 200px; } }

/* ACTION ON PODUCTS */
/* COUNTER */
.product-counter {
  margin-right: 10px;
  padding: 0;
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 2px; }
  .product-counter .quantity {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, auto);
    grid-gap: 0px;
    border: 1px solid #eaeeef;
    -webkit-border-radius: 4px;
            border-radius: 4px; }
  .product-counter .quantity__button {
    -webkit-border-radius: 4px;
            border-radius: 4px;
    padding: 11px 15px;
    height: 100%;
    outline: none;
    border: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    background-color: #fff;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s; }
    .product-counter .quantity__button:hover:before {
      background-color: white; }
    .product-counter .quantity__button:hover:after {
      background-color: white; }
  .product-counter .quantity__button--sub {
    position: relative; }
    .product-counter .quantity__button--sub:before {
      content: "";
      width: 16px;
      height: 2px;
      background-color: #231F20;
      position: absolute;
      top: -webkit-calc(50% - 0px);
      top: calc(50% - 0px);
      left: -webkit-calc(50% - 8px);
      left: calc(50% - 8px); }
  .product-counter .quantity__button--add {
    position: relative; }
    .product-counter .quantity__button--add:before {
      content: "";
      width: 16px;
      height: 2px;
      background-color: #231F20;
      position: absolute;
      top: -webkit-calc(50% - 1px);
      top: calc(50% - 1px);
      left: -webkit-calc(50% - 8px);
      left: calc(50% - 8px); }
    .product-counter .quantity__button--add:after {
      content: "";
      width: 2px;
      height: 16px;
      background-color: #231F20;
      position: absolute;
      top: -webkit-calc(50% - 8px);
      top: calc(50% - 8px);
      left: -webkit-calc(50% - 1px);
      left: calc(50% - 1px); }
  .product-counter .quantity__value {
    outline: none;
    border: none;
    background-color: #fff;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 14px; }
  .product-counter .spc-ovw__row-grp {
    margin: 0;
    padding: 0; }

/* TAB  ---------------------------*/
.block-link {
  min-height: 304px;
  padding: 24px 24px 16px;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  display: grid;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  @media screen and (max-width: 960px) {
    .block-link {
      min-height: 192px; } }
  .block-link .block-header {
    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; }
    .block-link .block-header .block-time p {
      color: rgba(255, 255, 255, 0.7); }
    .block-link .block-header .block-header-icon-wrap .svg path {
      fill: rgba(255, 255, 255, 0.5); }
  .block-link .block-title p {
    font-size: 3.2em;
    line-height: 1.6;
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .block-link .block-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 20px; }
    .block-link .block-footer .from-whom {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      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: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      .block-link .block-footer .from-whom .from-whom-title {
        color: #fff;
        font-size: 1.2em;
        margin-right: 8px;
        -webkit-transition: color .3s;
        -o-transition: color .3s;
        transition: color .3s; }
      .block-link .block-footer .from-whom .from-whom-icon-wrap .svg path {
        fill: #fff;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
      .block-link .block-footer .from-whom:hover .from-whom-title {
        color: white; }
      .block-link .block-footer .from-whom:hover .from-whom-icon-wrap .svg path {
        fill: white; }
  .block-link:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05); }
    .block-link:hover .block-title p {
      color: white; }
  .block-link .number-of-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; }
  .block-link .number-of {
    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;
    cursor: pointer;
    margin-right: 24px; }
    .block-link .number-of .number-of-icon-wrap {
      max-height: 12px;
      margin-right: 8px; }
      .block-link .number-of .number-of-icon-wrap .svg path {
        fill: #fff;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
    .block-link .number-of .number-of-text {
      opacity: .7;
      color: #fff;
      font-size: 1.3em;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
    .block-link .number-of:hover .number-of-icon-wrap .svg path {
      fill: white; }
    .block-link .number-of:hover .number-of-text {
      color: white; }

.text {
  margin-bottom: 24px; }
  .text p {
    font-weight: 300;
    font-size: 1.7em;
    line-height: 1.8;
    margin-bottom: 16px; }
    @media screen and (max-width: 750px) {
      .text p {
        font-size: 1.4em; } }
    @media screen and (max-width: 750px) {
      .text p {
        line-height: 1.4; } }

/* --------------- PRODUCT LIST ------------------- */
.product-list {
  margin-bottom: 20px;
  border-top: 1px solid #eaeeef;
  border-left: 1px solid #eaeeef;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-gap: 0px; }
  @media screen and (max-width: 1170px) {
    .product-list {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 960px) {
    .product-list {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 750px) {
    .product-list {
      grid-template-columns: repeat(1, 1fr); } }
  .product-list .product-item {
    border-right: 1px solid #eaeeef;
    border-bottom: 1px solid #eaeeef;
    padding: 18px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative; }
    .product-list .product-item .product-top {
      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; }
      .product-list .product-item .product-top .like-btn {
        margin-right: 0; }
        .product-list .product-item .product-top .like-btn .svg path {
          fill: #C4C4C4;
          -webkit-transition: .3s;
          -o-transition: .3s;
          transition: .3s; }
        .product-list .product-item .product-top .like-btn:hover .svg path {
          fill: #f60000; }
    .product-list .product-item .product-img-wrap {
      padding: 0 30px;
      margin-bottom: 5px; }
      .product-list .product-item .product-img-wrap img {
        width: 100%;
        -o-object-fit: contain;
           object-fit: contain; }
    .product-list .product-item .product-title {
      font-size: 1.4rem;
      line-height: 1.2;
      margin-bottom: 5px; }
    .product-list .product-item .product-bottom {
      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; }
      .product-list .product-item .product-bottom .product-icons-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; }
        .product-list .product-item .product-bottom .product-icons-wrap .comparison-btn {
          margin-right: 20px; }
          .product-list .product-item .product-bottom .product-icons-wrap .comparison-btn .line {
            width: 2px;
            background-color: #C4C4C4;
            margin-right: 6px;
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s; }
            .product-list .product-item .product-bottom .product-icons-wrap .comparison-btn .line:nth-child(1) {
              height: 20px; }
            .product-list .product-item .product-bottom .product-icons-wrap .comparison-btn .line:nth-child(2) {
              height: 14px; }
            .product-list .product-item .product-bottom .product-icons-wrap .comparison-btn .line:nth-child(3) {
              height: 17px;
              margin-right: 0; }
          .product-list .product-item .product-bottom .product-icons-wrap .comparison-btn:hover .line {
            height: 25px; }
        .product-list .product-item .product-bottom .product-icons-wrap .cart-icon-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;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          width: 40px;
          height: 40px;
          -webkit-border-radius: 50%;
                  border-radius: 50%;
          border: 1px solid #eaeeef; }
          .product-list .product-item .product-bottom .product-icons-wrap .cart-icon-wrap .svg {
            width: 15px; }
            .product-list .product-item .product-bottom .product-icons-wrap .cart-icon-wrap .svg path {
              -webkit-transition: .3s;
              -o-transition: .3s;
              transition: .3s; }
          .product-list .product-item .product-bottom .product-icons-wrap .cart-icon-wrap:hover .svg path {
            fill: #f60000; }
        .product-list .product-item .product-bottom .product-icons-wrap .like-btn {
          margin-right: 0; }
          .product-list .product-item .product-bottom .product-icons-wrap .like-btn .svg path {
            fill: #C4C4C4;
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s; }
          .product-list .product-item .product-bottom .product-icons-wrap .like-btn:hover .svg path {
            fill: #f60000; }
    .product-list .product-item .fast-look-btn-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      opacity: 0;
      -webkit-transition: .1s;
      -o-transition: .1s;
      transition: .1s;
      position: absolute;
      bottom: -50px;
      z-index: -20;
      left: 0px;
      width: 100%;
      padding: 0px 20px 20px;
      background-color: #fff;
      -webkit-box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.15);
              box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.15); }
      .product-list .product-item .fast-look-btn-wrap .fast-look-btn {
        width: 100%;
        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-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: #EAEEEF;
        border: 1px solid #eaeeef;
        height: 40px;
        font-size: 1.4rem;
        -webkit-border-radius: 4px;
                border-radius: 4px;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
        .product-list .product-item .fast-look-btn-wrap .fast-look-btn .svg {
          margin-right: 10px; }
    .product-list .product-item:hover {
      -webkit-box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.15);
              box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.15); }
      @media screen and (max-width: 960px) {
        .product-list .product-item:hover {
          -webkit-box-shadow: none;
                  box-shadow: none; } }
      .product-list .product-item:hover .fast-look-btn-wrap {
        z-index: 20;
        opacity: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        @media screen and (max-width: 960px) {
          .product-list .product-item:hover .fast-look-btn-wrap {
            display: none; } }

.product-remainder {
  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;
  margin-bottom: 10px; }
  .product-remainder .svg {
    margin-right: 10px; }
  .product-remainder .remainder-text {
    font-size: 1.2rem; }
  .product-remainder.lot .svg path {
    stroke: #13aa2b; }
  .product-remainder.lot .remainder-text {
    color: #13aa2b; }
  .product-remainder.low .svg path {
    stroke: #f60000; }
  .product-remainder.low .remainder-text {
    color: #f60000; }
  .product-remainder.ended .svg path {
    stroke: #eaeeef; }
  .product-remainder.ended .remainder-text {
    color: #eaeeef; }

.product-counter-wrap {
  padding-top: 15px;
  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; }
  .product-counter-wrap .btn-wrap .full-btn {
    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-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .product-counter-wrap .btn-wrap .full-btn .svg {
      margin-right: 10px; }

.product-price-wrap .new-price {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  line-height: 1; }

.product-price-wrap .old-price {
  text-decoration: line-through;
  color: #8A9092;
  font-size: 1.2rem;
  line-height: 1; }

.product-color {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .product-color .color {
    cursor: pointer;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #eaeeef;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
    .product-color .color:hover {
      border: 4px solid #fff;
      -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05), 0px 8px 8px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05);
              box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05), 0px 8px 8px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05); }
    .product-color .color.active {
      border: 4px solid #fff;
      -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05), 0px 8px 8px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05);
              box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05), 0px 8px 8px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05); }

.action-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .action-wrap .action-item {
    height: 20px;
    padding: 0px 10px;
    margin-right: 10px;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    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; }
    .action-wrap .action-item:last-child {
      margin-right: 0; }
    .action-wrap .action-item.new {
      background-color: #13aa2b; }
    .action-wrap .action-item.action {
      background-color: #f60000; }

/* -------- NICE SELECT ------------ */
.nice-select {
  border: none;
  background-color: inherit;
  height: 40px;
  padding-left: 4px;
  padding-right: 16px;
  position: relative;
  z-index: 104; }
  .nice-select:after {
    right: 2px; }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  width: 0%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }
  .modal-overlay.active {
    opacity: 1;
    width: 100%; }

/* --- MODAL BC -------- */
.modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 99;
  background-color: #000;
  padding-top: 150px; }
  @media screen and (max-width: 1440px) {
    .modal {
      overflow-y: scroll; } }
  @media screen and (max-width: 750px) {
    .modal {
      padding-top: 110px; } }
  @media screen and (max-width: 750px) {
    .modal {
      padding-bottom: 50px; } }

.modal-bc-wrap {
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-gap: 16px; }
  @media screen and (max-width: 560px) {
    .modal-bc-wrap {
      grid-template-columns: repeat(12, 1fr); } }
  .modal-bc-wrap .modal-left {
    grid-column-start: span 2;
    padding-top: 14px; }
    @media screen and (max-width: 560px) {
      .modal-bc-wrap .modal-left {
        grid-column-start: span 2; } }
    .modal-bc-wrap .modal-left .modal-close {
      cursor: pointer;
      vertical-align: middle;
      display: inline-block;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
      .modal-bc-wrap .modal-left .modal-close .svg {
        margin-right: 8px; }
      .modal-bc-wrap .modal-left .modal-close .btn-text {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 700; }
        @media screen and (max-width: 750px) {
          .modal-bc-wrap .modal-left .modal-close .btn-text {
            display: none; } }
      .modal-bc-wrap .modal-left .modal-close:hover {
        opacity: 0.7; }
  .modal-bc-wrap .modal-center {
    grid-column-start: 3;
    grid-column-end: 10;
    /* @include xs(grid-column-start, span 1); */ }
    @media screen and (max-width: 960px) {
      .modal-bc-wrap .modal-center {
        grid-column-end: 13; } }
    .modal-bc-wrap .modal-center .modal-title {
      width: 50%;
      font-family: "main2";
      font-size: 4.8rem;
      line-height: 1;
      margin-bottom: 32px; }
      @media screen and (max-width: 960px) {
        .modal-bc-wrap .modal-center .modal-title {
          width: 100%; } }
      @media screen and (max-width: 1170px) {
        .modal-bc-wrap .modal-center .modal-title {
          font-size: 2.8rem; } }
      @media screen and (max-width: 750px) {
        .modal-bc-wrap .modal-center .modal-title {
          font-size: 2.4rem; } }
      @media screen and (max-width: 750px) {
        .modal-bc-wrap .modal-center .modal-title {
          margin-bottom: 16px; } }
    .modal-bc-wrap .modal-center .adress {
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 32px; }
      @media screen and (max-width: 750px) {
        .modal-bc-wrap .modal-center .adress {
          margin-bottom: 16px; } }
    .modal-bc-wrap .modal-center .form {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0; }
      .modal-bc-wrap .modal-center .form .form-block {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
        @media screen and (max-width: 750px) {
          .modal-bc-wrap .modal-center .form .form-block {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                -ms-flex-direction: column;
                    flex-direction: column; } }
        .modal-bc-wrap .modal-center .form .form-block .input-title {
          color: #fff;
          padding-top: 15px;
          width: 112px;
          margin-right: 30px;
          font-size: 1.2rem;
          font-weight: 700; }
          @media screen and (max-width: 960px) {
            .modal-bc-wrap .modal-center .form .form-block .input-title {
              width: 120px; } }
          @media screen and (max-width: 960px) {
            .modal-bc-wrap .modal-center .form .form-block .input-title {
              padding-top: 8px; } }
        .modal-bc-wrap .modal-center .form .form-block .form-control {
          width: 100%;
          margin-bottom: 0; }
          .modal-bc-wrap .modal-center .form .form-block .form-control textarea {
            min-height: 140px; }
            @media screen and (max-width: 1170px) {
              .modal-bc-wrap .modal-center .form .form-block .form-control textarea {
                min-height: 120px; } }
            @media screen and (max-width: 750px) {
              .modal-bc-wrap .modal-center .form .form-block .form-control textarea {
                min-height: 30px; } }
            @media screen and (max-width: 750px) {
              .modal-bc-wrap .modal-center .form .form-block .form-control textarea {
                max-height: 30px; } }
        .modal-bc-wrap .modal-center .form .form-block.last {
          margin-top: 28px;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          border-bottom: 0; }
          @media screen and (max-width: 750px) {
            .modal-bc-wrap .modal-center .form .form-block.last {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -webkit-flex-direction: column;
                  -ms-flex-direction: column;
                      flex-direction: column; } }
          @media screen and (max-width: 750px) {
            .modal-bc-wrap .modal-center .form .form-block.last {
              margin-top: 0; } }
          @media screen and (max-width: 750px) {
            .modal-bc-wrap .modal-center .form .form-block.last .checkbox {
              margin-bottom: 20px; } }
          .modal-bc-wrap .modal-center .form .form-block.last .btn-send {
            font-size: 2rem;
            font-weight: 700;
            background-color: inherit;
            border: none;
            color: #fff;
            cursor: pointer;
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s; }
            .modal-bc-wrap .modal-center .form .form-block.last .btn-send:hover {
              opacity: 0.7; }

.modal-text {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff; }

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

#slide02 {
  -webkit-filter: brightness(0);
          filter: brightness(0); }

.main-screen {
  background-color: #000; }
  .main-screen .container {
    padding-left: 0;
    padding-right: 0; }
    @media screen and (max-width: 750px) {
      .main-screen .container {
        padding-left: 0; } }
    @media screen and (max-width: 750px) {
      .main-screen .container {
        padding-right: 0; } }
  .main-screen .main-screen-wrap {
    position: relative;
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(1, auto);
    grid-gap: 16px;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center; }
    @media screen and (max-width: 960px) {
      .main-screen .main-screen-wrap {
        grid-template-columns: repeat(2, 1fr); } }
    @media screen and (max-width: 750px) {
      .main-screen .main-screen-wrap {
        grid-template-columns: repeat(1, 1fr); } }
    @media screen and (max-width: 750px) {
      .main-screen .main-screen-wrap {
        padding-left: 15px; } }
    @media screen and (max-width: 750px) {
      .main-screen .main-screen-wrap {
        padding-right: 15px; } }
    .main-screen .main-screen-wrap .video-wrap {
      overflow: hidden;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1; }
      .main-screen .main-screen-wrap .video-wrap .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.4); }
        @media screen and (max-width: 750px) {
          .main-screen .main-screen-wrap .video-wrap .video-overlay {
            width: 130%; } }
        @media screen and (max-width: 750px) {
          .main-screen .main-screen-wrap .video-wrap .video-overlay {
            background-color: rgba(0, 0, 0, 0.6); } }
      .main-screen .main-screen-wrap .video-wrap video {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .main-screen .main-screen-wrap .text-wrap {
      position: relative;
      z-index: 2;
      grid-column-start: 3;
      grid-column-end: 10; }
      @media screen and (max-width: 750px) {
        .main-screen .main-screen-wrap .text-wrap {
          grid-column-start: 1; } }
      @media screen and (max-width: 750px) {
        .main-screen .main-screen-wrap .text-wrap {
          grid-column-end: 12; } }
      .main-screen .main-screen-wrap .text-wrap .title {
        font-family: "main2";
        font-size: 6.4rem;
        line-height: 1.2;
        margin-bottom: 32px; }
        @media screen and (max-width: 750px) {
          .main-screen .main-screen-wrap .text-wrap .title {
            font-size: 2.9rem; } }
      .main-screen .main-screen-wrap .text-wrap .sub-title {
        font-weight: 700;
        font-size: 2rem; }

.porftolio {
  background-color: #000;
  padding-top: 140px;
  margin-bottom: 140px; }
  .porftolio .portfolio-list {
    margin-bottom: 100px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(14, 50px);
    grid-gap: 32px; }
    @media screen and (max-width: 960px) {
      .porftolio .portfolio-list {
        grid-template-columns: repeat(2, 1fr); } }
    @media screen and (max-width: 750px) {
      .porftolio .portfolio-list {
        grid-template-columns: repeat(1, 1fr); } }
    .porftolio .portfolio-list .portfolio-item {
      cursor: pointer;
      grid-row: span 4;
      grid-column: span 7;
      position: relative;
      border: 1px solid white;
      padding: 34px 40px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      background-color: black; }
      .porftolio .portfolio-list .portfolio-item .item-top {
        margin-bottom: 28px; }
        .porftolio .portfolio-list .portfolio-item .item-top .year {
          font-size: 1.4rem;
          font-weight: 700; }
      .porftolio .portfolio-list .portfolio-item .item-body {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        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: end;
        -webkit-align-items: flex-end;
            -ms-flex-align: end;
                align-items: flex-end; }
        .porftolio .portfolio-list .portfolio-item .item-body .item-logo {
          font-family: "main2";
          font-size: 5.6rem;
          line-height: 1.1; }
        .porftolio .portfolio-list .portfolio-item .item-body .item-name {
          font-weight: 700;
          font-size: 1.6rem; }
      .porftolio .portfolio-list .portfolio-item .item-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; }
        .porftolio .portfolio-list .portfolio-item .item-bottom .item-direction {
          font-weight: 700; }
        .porftolio .portfolio-list .portfolio-item .item-bottom .item-category {
          font-weight: 700; }
      .porftolio .portfolio-list .portfolio-item:nth-child(1) {
        z-index: 1;
        grid-row: 1 / span 4;
        grid-column: 3 / span 5; }
      .porftolio .portfolio-list .portfolio-item:nth-child(2) {
        grid-row: 2 / span 4;
        grid-column: 7 / span 4; }
      .porftolio .portfolio-list .portfolio-item:nth-child(3) {
        grid-row: 5 / span 5;
        grid-column: 2 / span 5; }
      .porftolio .portfolio-list .portfolio-item:nth-child(4) {
        grid-row: 6 / span 4;
        grid-column: 7 / span 5; }
      .porftolio .portfolio-list .portfolio-item:nth-child(5) {
        grid-row: 11 / span 4;
        grid-column: 3 / span 4; }
        .porftolio .portfolio-list .portfolio-item:nth-child(5) .item-body {
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start; }
      .porftolio .portfolio-list .portfolio-item:nth-child(6) {
        grid-row: 10 / span 4;
        grid-column: 6 / span 5; }
  .porftolio .last-projects {
    padding-bottom: 70px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 32px; }
    @media screen and (max-width: 960px) {
      .porftolio .last-projects {
        grid-template-columns: repeat(2, 1fr); } }
    @media screen and (max-width: 750px) {
      .porftolio .last-projects {
        grid-template-columns: repeat(1, 1fr); } }
    .porftolio .last-projects .ls-title-wrap {
      grid-column-start: 3;
      grid-column-end: 7; }
      .porftolio .last-projects .ls-title-wrap .title {
        font-family: "main2";
        font-size: 2rem;
        line-height: 1.4; }
    .porftolio .last-projects .last-projects-list {
      grid-column-start: span 2; }
      .porftolio .last-projects .last-projects-list .last-projects-item {
        margin-bottom: 24px; }
        .porftolio .last-projects .last-projects-list .last-projects-item .lp-link {
          font-size: 1.6rem; }

.footer .footer-top {
  margin-bottom: 140px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 32px; }
  @media screen and (max-width: 960px) {
    .footer .footer-top {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 750px) {
    .footer .footer-top {
      grid-template-columns: repeat(1, 1fr); } }
  .footer .footer-top .footer-title-wrap {
    grid-column-start: 3;
    grid-column-end: 8; }
    .footer .footer-top .footer-title-wrap .title {
      font-family: "main2";
      font-size: 4.8rem;
      line-height: 1; }
  .footer .footer-top .footer-text {
    grid-column-start: 9;
    grid-column-end: 11; }
    .footer .footer-top .footer-text .text {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.1; }

.footer .footer-bottom {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 32px; }
  @media screen and (max-width: 960px) {
    .footer .footer-bottom {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 750px) {
    .footer .footer-bottom {
      grid-template-columns: repeat(1, 1fr); } }
  .footer .footer-bottom .bottom-left {
    grid-column-start: 3;
    grid-column-end: 6; }
    .footer .footer-bottom .bottom-left .numeral {
      line-height: 1;
      font-size: 26rem;
      font-weight: 700;
      opacity: 0;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
      .footer .footer-bottom .bottom-left .numeral.active {
        opacity: 1; }
  .footer .footer-bottom .bottom-services {
    grid-column-start: 9;
    grid-column-end: 12;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .footer .footer-bottom .bottom-services .bottom-services-list .bottom-services-item .bottom-services-link {
      color: #7E7E7E;
      font-size: 2.4rem;
      margin-bottom: 24px;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
      .footer .footer-bottom .bottom-services .bottom-services-list .bottom-services-item .bottom-services-link:hover {
        color: #fff;
        opacity: 1; }
      .footer .footer-bottom .bottom-services .bottom-services-list .bottom-services-item .bottom-services-link:last-child {
        margin-right: 0; }

.breadcrumbs {
  margin-bottom: 5px;
  padding-bottom: 0px; }
  @media screen and (max-width: 1170px) {
    .breadcrumbs {
      padding-bottom: 10px; } }
  @media screen and (max-width: 1170px) {
    .breadcrumbs {
      padding-top: 20px; } }
  .breadcrumbs .breadcrumbs-list {
    margin-bottom: 0px;
    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 screen and (max-width: 960px) {
      .breadcrumbs .breadcrumbs-list {
        white-space: nowrap; } }
    @media screen and (max-width: 960px) {
      .breadcrumbs .breadcrumbs-list {
        overflow-x: scroll; } }
    .breadcrumbs .breadcrumbs-list .breadcrumbs-item {
      position: relative;
      margin-right: 24px;
      display: inline-block; }
      .breadcrumbs .breadcrumbs-list .breadcrumbs-item:after {
        content: url(../img/breadcrumbs-icon.svg);
        position: absolute;
        right: -16px;
        top: 4px; }
      .breadcrumbs .breadcrumbs-list .breadcrumbs-item:last-child .breadcrumbs-text {
        color: #8a9092;
        cursor: default; }
        .breadcrumbs .breadcrumbs-list .breadcrumbs-item:last-child .breadcrumbs-text:hover:before {
          width: 0%; }
      .breadcrumbs .breadcrumbs-list .breadcrumbs-item .breadcrumbs-text {
        font-weight: 400;
        font-size: 1.2rem;
        color: #f60000; }
        .breadcrumbs .breadcrumbs-list .breadcrumbs-item .breadcrumbs-text:before {
          content: "";
          position: absolute;
          bottom: 0px;
          left: 0;
          width: 0%;
          height: 1px;
          background-color: white;
          -webkit-transition: width .3s;
          -o-transition: width .3s;
          transition: width .3s; }
        .breadcrumbs .breadcrumbs-list .breadcrumbs-item .breadcrumbs-text:hover:before {
          width: -webkit-calc(100% - 0px);
          width: calc(100% - 0px); }
    .breadcrumbs .breadcrumbs-list .breadcrumbs-item:last-child:after {
      content: none; }

.other-pages .breadcrumbs {
  margin-top: 12px;
  padding-bottom: 0px; }
  @media screen and (max-width: 1170px) {
    .other-pages .breadcrumbs {
      margin-top: 0; } }
  .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item {
    position: relative;
    margin-right: 24px;
    display: inline-block; }
    .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item:after {
      content: url(../img/breadcrumbs-icon-dark.svg);
      position: absolute;
      right: -16px;
      top: 5px; }
    .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item:first-child {
      padding-top: 6px; }
      .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item:first-child:after {
        top: 7px; }
    .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item:last-child .breadcrumbs-text {
      color: rgba(34, 34, 34, 0.5);
      cursor: default; }
      .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item:last-child .breadcrumbs-text:hover:before {
        width: 0%; }
    .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item .breadcrumbs-text {
      font-weight: 300;
      font-size: 14px;
      color: #222; }
      .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item .breadcrumbs-text:before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 0%;
        height: 1px;
        background-color: white;
        -webkit-transition: width .3s;
        -o-transition: width .3s;
        transition: width .3s; }
      .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item .breadcrumbs-text:hover:before {
        width: -webkit-calc(100% - 0px);
        width: calc(100% - 0px); }
  .other-pages .breadcrumbs .breadcrumbs-list .breadcrumbs-item:last-child:after {
    content: none; }

.pagination {
  width: 100%;
  padding: 20px 0px 24px; }
  @media screen and (max-width: 560px) {
    .pagination {
      padding: 20px 10px; } }
  @media screen and (max-width: 1170px) {
    .pagination {
      width: 100%; } }
  @media screen and (max-width: 1170px) {
    .pagination {
      margin-left: 0; } }
  .pagination .pagination-wrap {
    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; }
    @media screen and (max-width: 560px) {
      .pagination .pagination-wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .pagination .pagination-wrap .pagination-block {
      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: 7px 15px;
      border: 1px solid #eaeeef;
      -webkit-border-radius: 4px;
              border-radius: 4px; }
      @media screen and (max-width: 750px) {
        .pagination .pagination-wrap .pagination-block {
          padding: 10px; } }
      .pagination .pagination-wrap .pagination-block span {
        font-size: 1.4em;
        color: #000;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        padding-bottom: 3px; }
        @media screen and (max-width: 960px) {
          .pagination .pagination-wrap .pagination-block span {
            display: none; } }
      .pagination .pagination-wrap .pagination-block .svg path {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
      .pagination .pagination-wrap .pagination-block:hover span {
        color: white; }
      .pagination .pagination-wrap .pagination-block:hover .svg path {
        stroke: white; }
      .pagination .pagination-wrap .pagination-block.left {
        padding-right: 40px; }
        @media screen and (max-width: 750px) {
          .pagination .pagination-wrap .pagination-block.left {
            padding-right: inherit; } }
        .pagination .pagination-wrap .pagination-block.left .svg {
          margin-right: 12px; }
      .pagination .pagination-wrap .pagination-block.right {
        padding-left: 40px; }
        @media screen and (max-width: 750px) {
          .pagination .pagination-wrap .pagination-block.right {
            padding-left: inherit; } }
        .pagination .pagination-wrap .pagination-block.right .svg {
          margin-left: 12px; }
    .pagination .pagination-wrap .pagination-center {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      margin-left: 30px;
      margin-right: 30px; }
      @media screen and (max-width: 750px) {
        .pagination .pagination-wrap .pagination-center {
          margin: 0 15px; } }
      .pagination .pagination-wrap .pagination-center .pagination-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: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .pagination .pagination-wrap .pagination-center .pagination-list .pagination-item {
          margin-right: 8px; }
          @media screen and (max-width: 560px) {
            .pagination .pagination-wrap .pagination-center .pagination-list .pagination-item {
              margin-right: 0; } }
          .pagination .pagination-wrap .pagination-center .pagination-list .pagination-item .pagination-item-link {
            -webkit-border-radius: 4px;
                    border-radius: 4px;
            height: 40px;
            width: 40px;
            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-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            font-weight: 400;
            font-size: 1.4rem;
            color: #484540;
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s; }
            @media screen and (max-width: 750px) {
              .pagination .pagination-wrap .pagination-center .pagination-list .pagination-item .pagination-item-link {
                width: 30px; } }
            @media screen and (max-width: 750px) {
              .pagination .pagination-wrap .pagination-center .pagination-list .pagination-item .pagination-item-link {
                height: 30px; } }
            .pagination .pagination-wrap .pagination-center .pagination-list .pagination-item .pagination-item-link:hover {
              background-color: #3E4950;
              border: 1px solid #000;
              color: #fff; }
            .pagination .pagination-wrap .pagination-center .pagination-list .pagination-item .pagination-item-link.active {
              background-color: #eaeeef;
              border: 1px solid #eaeeef;
              font-weight: 400;
              color: #000; }
              .pagination .pagination-wrap .pagination-center .pagination-list .pagination-item .pagination-item-link.active:hover {
                color: #000; }

.catalog .catalog-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative; }
  .catalog .catalog-wrap .catalog-top {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 15px; }
    .catalog .catalog-wrap .catalog-top .filter-btn-open {
      display: none;
      width: 100%; }
      @media screen and (max-width: 960px) {
        .catalog .catalog-wrap .catalog-top .filter-btn-open {
          display: block; } }
    .catalog .catalog-wrap .catalog-top .sort-wrap {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      .catalog .catalog-wrap .catalog-top .sort-wrap .sort-title {
        margin-right: 30px;
        font-weight: 600;
        font-size: 1.4rem; }
        @media screen and (max-width: 750px) {
          .catalog .catalog-wrap .catalog-top .sort-wrap .sort-title {
            width: 100%; } }
      .catalog .catalog-wrap .catalog-top .sort-wrap .sort-by {
        font-size: 1.4rem;
        font-weight: 400;
        color: #f60000;
        margin-right: 30px;
        display: block;
        cursor: pointer; }
        @media screen and (max-width: 560px) {
          .catalog .catalog-wrap .catalog-top .sort-wrap .sort-by {
            margin-right: 20px; } }
        .catalog .catalog-wrap .catalog-top .sort-wrap .sort-by:last-child {
          margin-right: 0; }
        .catalog .catalog-wrap .catalog-top .sort-wrap .sort-by.active {
          color: #484540; }
    .catalog .catalog-wrap .catalog-top .product-display-wrap {
      -webkit-border-radius: 4px;
              border-radius: 4px;
      border: 1px solid #eaeeef;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      @media screen and (max-width: 750px) {
        .catalog .catalog-wrap .catalog-top .product-display-wrap {
          display: none; } }
      .catalog .catalog-wrap .catalog-top .product-display-wrap .product-display-btn {
        cursor: pointer;
        height: 25px;
        width: 35px;
        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;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
        .catalog .catalog-wrap .catalog-top .product-display-wrap .product-display-btn:first-child {
          border-right: 1px solid #eaeeef; }
        .catalog .catalog-wrap .catalog-top .product-display-wrap .product-display-btn.active {
          background-color: rgba(234, 238, 239, 0.5); }
        .catalog .catalog-wrap .catalog-top .product-display-wrap .product-display-btn:hover {
          background-color: rgba(234, 238, 239, 0.5); }
  .catalog .catalog-wrap .sort-by-wrap {
    border-bottom: 1px solid #eaeeef;
    padding-left: 32px; }
    @media screen and (max-width: 560px) {
      .catalog .catalog-wrap .sort-by-wrap {
        width: 100%; } }
    @media screen and (max-width: 560px) {
      .catalog .catalog-wrap .sort-by-wrap {
        padding-left: 0; } }
    @media screen and (max-width: 560px) {
      .catalog .catalog-wrap .sort-by-wrap {
        padding-top: 12px; } }
    @media screen and (max-width: 560px) {
      .catalog .catalog-wrap .sort-by-wrap {
        padding-bottom: 12px; } }
    .catalog .catalog-wrap .sort-by-wrap .filter-select-wrap {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .catalog .catalog-wrap .sort-by-wrap .filter-select-wrap .filter-select-title {
        color: #90989B;
        font-size: 12px; }
      .catalog .catalog-wrap .sort-by-wrap .filter-select-wrap .nice-select .current {
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 900; }
      .catalog .catalog-wrap .sort-by-wrap .filter-select-wrap .nice-select:after {
        content: url(../img/sort-icon.svg);
        top: 4px;
        -webkit-transform: rotate(0deg) !important;
            -ms-transform: rotate(0deg) !important;
                transform: rotate(0deg) !important;
        border: none; }
      .catalog .catalog-wrap .sort-by-wrap .filter-select-wrap .nice-select.open:after {
        -webkit-transform: rotate(0deg) !important;
            -ms-transform: rotate(0deg) !important;
                transform: rotate(0deg) !important; }
  .catalog .catalog-wrap .filter-wrap {
    position: relative;
    width: -webkit-calc(26% - 25px);
    width: calc(26% - 25px);
    background-color: #fff;
    margin-right: 25px; }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        position: fixed; } }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        top: 0px; } }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        left: -100%; } }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        padding: 60px 20px 20px; } }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        overflow-y: scroll; } }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        width: 50%; } }
    @media screen and (max-width: 560px) {
      .catalog .catalog-wrap .filter-wrap {
        width: 100%; } }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        height: 100%; } }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        z-index: 1200; } }
    @media screen and (max-width: 960px) {
      .catalog .catalog-wrap .filter-wrap {
        -webkit-box-shadow: 7px 0px 22px -2px rgba(0, 0, 0, 0.15);
                box-shadow: 7px 0px 22px -2px rgba(0, 0, 0, 0.15); } }
    .catalog .catalog-wrap .filter-wrap .filter-cross-wrap {
      display: none;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 24px;
      right: 24px; }
      @media screen and (max-width: 960px) {
        .catalog .catalog-wrap .filter-wrap .filter-cross-wrap {
          display: block; } }
      .catalog .catalog-wrap .filter-wrap .filter-cross-wrap .cross-line-left, .catalog .catalog-wrap .filter-wrap .filter-cross-wrap .cross-line-right {
        width: 20px;
        height: 2px;
        background-color: white;
        position: absolute;
        top: 10px; }
      .catalog .catalog-wrap .filter-wrap .filter-cross-wrap .cross-line-left {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        left: 0; }
      .catalog .catalog-wrap .filter-wrap .filter-cross-wrap .cross-line-right {
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
        right: 0; }
    .catalog .catalog-wrap .filter-wrap .filter-list-block {
      position: -webkit-sticky;
      position: sticky;
      top: 60px; }
      @media screen and (max-width: 960px) {
        .catalog .catalog-wrap .filter-wrap .filter-list-block {
          position: static; } }
      .catalog .catalog-wrap .filter-wrap .filter-list-block .reset-btn-wrap {
        padding-left: 0px; }
        .catalog .catalog-wrap .filter-wrap .filter-list-block .reset-btn-wrap .reset-btn {
          color: white;
          display: block;
          padding-top: 20px;
          font-weight: 400;
          padding-bottom: 20px;
          font-size: 1.4rem; }

/* ----  FILTERS -------- */
.price-slider-wrap {
  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;
  max-width: 100%;
  position: relative; }
  .price-slider-wrap:before {
    content: "";
    position: absolute;
    top: -webkit-calc(50% - 0px);
    top: calc(50% - 0px);
    left: -webkit-calc(50% - 7px);
    left: calc(50% - 7px);
    background-color: #3E4950;
    height: 1px;
    width: 14px; }
  .price-slider-wrap .price-from-wrap {
    padding: 8px 16px;
    border: 1px solid #eaeeef;
    width: 45%; }
    .price-slider-wrap .price-from-wrap .price-from {
      font-size: 16px; }
  .price-slider-wrap .price-to-wrap {
    padding: 8px 16px;
    border: 1px solid #eaeeef;
    width: 45%; }
    .price-slider-wrap .price-to-wrap .price-to {
      opacity: .3;
      font-size: 16px; }
  .price-slider-wrap .price-slider-block {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%; }
    .price-slider-wrap .price-slider-block .left-slider-part {
      width: 16px;
      height: 16px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      border: 3px solid white;
      position: absolute;
      top: -7px;
      background-color: #fff;
      left: 0; }
    .price-slider-wrap .price-slider-block .central-slider-part {
      width: 100%;
      height: 3px;
      background-color: white; }
    .price-slider-wrap .price-slider-block .right-slider-part {
      position: absolute;
      top: -7px;
      right: 0;
      width: 16px;
      height: 16px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background-color: white; }

.filter-block-wrap {
  border-top: 1px solid #eaeeef; }
  .filter-block-wrap .filter-title {
    padding-top: 15px;
    font-weight: 600;
    font-size: 2rem;
    padding-bottom: 20px;
    cursor: pointer;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #484540; }
    .filter-block-wrap .filter-title:after {
      content: url(../img/arrow-bottom.svg);
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg);
      position: absolute;
      top: 15px;
      right: 0; }
    .filter-block-wrap .filter-title.close {
      position: relative; }
      .filter-block-wrap .filter-title.close:after {
        content: url(../img/arrow-bottom.svg);
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg);
        position: absolute;
        top: 15px;
        right: 0; }
    .filter-block-wrap .filter-title:hover {
      color: #f60000; }
  .filter-block-wrap .filter-chekbox-list {
    margin-bottom: 20px;
    padding-left: 0px;
    display: none; }
    .filter-block-wrap .filter-chekbox-list .filter-chekbox-item {
      margin-bottom: 10px; }
      .filter-block-wrap .filter-chekbox-list .filter-chekbox-item .checkbox__text {
        font-size: 1.4rem; }
      .filter-block-wrap .filter-chekbox-list .filter-chekbox-item input[type="checkbox"] {
        display: none; }
        .filter-block-wrap .filter-chekbox-list .filter-chekbox-item input[type="checkbox"] + label {
          display: inline;
          position: relative; }
          .filter-block-wrap .filter-chekbox-list .filter-chekbox-item input[type="checkbox"] + label::before {
            border: 1px solid #eaeeef;
            -webkit-border-radius: 3px;
                    border-radius: 3px;
            display: inline-block;
            width: 20px;
            height: 20px;
            content: ' ';
            background-color: #fff;
            vertical-align: middle;
            margin-right: 12px;
            cursor: pointer;
            z-index: 10; }
        .filter-block-wrap .filter-chekbox-list .filter-chekbox-item input[type="checkbox"]:checked + label::after {
          width: 4px;
          height: 8px;
          border: 1px solid #f60000;
          border-left: none;
          border-top: none;
          content: ' ';
          position: absolute;
          left: 8px;
          bottom: 2px;
          -webkit-transform: rotatez(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotatez(45deg);
          cursor: pointer;
          z-index: 20; }

.filter-block-wrap:last-child {
  margin-bottom: 20px;
  border-bottom: 0; }

.catalog-block {
  width: 74%; }
  @media screen and (max-width: 960px) {
    .catalog-block {
      width: 100%; } }

.catalog-list .catalog-item {
  border-top: 1px solid #eaeeef;
  position: relative;
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  -o-transition: box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;
  border-right: 1px solid #F4F5F5; }
  .catalog-list .catalog-item:last-child {
    border-right: 0px solid #F4F5F5; }
  .catalog-list .catalog-item:hover {
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05), 0px 8px 8px rgba(0, 0, 0, 0.05), 0px 16px 16px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05), 0px 8px 8px rgba(0, 0, 0, 0.05), 0px 16px 16px rgba(0, 0, 0, 0.05); }
  .catalog-list .catalog-item .catalog-img-wrap {
    padding: 24px 24px 18px 24px;
    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;
    position: relative; }
    .catalog-list .catalog-item .catalog-img-wrap .fast-look {
      opacity: 0;
      cursor: pointer;
      position: absolute;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      top: -webkit-calc(50% - 32px);
      top: calc(50% - 32px);
      left: -webkit-calc(50% - 32px);
      left: calc(50% - 32px);
      width: 64px;
      height: 64px;
      border: 1px solid #fff;
      -webkit-transition: opacity .3s;
      -o-transition: opacity .3s;
      transition: opacity .3s; }
      @media screen and (max-width: 1170px) {
        .catalog-list .catalog-item .catalog-img-wrap .fast-look {
          display: none; } }
      .catalog-list .catalog-item .catalog-img-wrap .fast-look .fast-look-img {
        position: absolute;
        top: -webkit-calc(50% - 9px);
        top: calc(50% - 9px);
        left: -webkit-calc(50% - 16px);
        left: calc(50% - 16px); }
    .catalog-list .catalog-item .catalog-img-wrap .catalog-img {
      max-height: 256px;
      -o-object-fit: contain;
         object-fit: contain;
      position: relative; }
    .catalog-list .catalog-item .catalog-img-wrap:hover .fast-look {
      opacity: 1; }
  .catalog-list .catalog-item.hit {
    position: relative; }
    .catalog-list .catalog-item.hit:before {
      content: url(../img/offer-hit.svg);
      position: absolute;
      top: 24px;
      left: 24px;
      z-index: 100; }
  .catalog-list .catalog-item .discount {
    width: 56px;
    height: 56px;
    position: absolute;
    background-image: url(../img/discount-bg.svg);
    position: absolute;
    top: 24px;
    left: 24px; }
    .catalog-list .catalog-item .discount .discount-percent {
      position: absolute;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      top: 20px;
      left: 15px; }
  .catalog-list .catalog-item.violet {
    border: 1px solid #6100FF; }
  .catalog-list .catalog-item .catalog-item-icon-list {
    padding-top: 15px;
    position: absolute;
    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;
    height: 100%;
    z-index: 100;
    top: 0px;
    right: 15px; }
    .catalog-list .catalog-item .catalog-item-icon-list .catalog-item-icon-wrap {
      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;
      margin-bottom: 8px;
      background-color: #fff;
      width: 40px;
      height: 40px;
      border: 1px solid #eaeeef;
      -webkit-border-radius: 50%;
              border-radius: 50%; }
      .catalog-list .catalog-item .catalog-item-icon-list .catalog-item-icon-wrap .catalog-item-icon path, .catalog-list .catalog-item .catalog-item-icon-list .catalog-item-icon-wrap .catalog-item-icon rect, .catalog-list .catalog-item .catalog-item-icon-list .catalog-item-icon-wrap .catalog-item-icon stroke {
        fill: #161717;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
      .catalog-list .catalog-item .catalog-item-icon-list .catalog-item-icon-wrap:hover .catalog-item-icon path, .catalog-list .catalog-item .catalog-item-icon-list .catalog-item-icon-wrap:hover .catalog-item-icon rect, .catalog-list .catalog-item .catalog-item-icon-list .catalog-item-icon-wrap:hover .catalog-item-icon stroke {
        fill: white; }
    .catalog-list .catalog-item .catalog-item-icon-list .catalog-item-camparison {
      margin-bottom: 222px; }
    .catalog-list .catalog-item .catalog-item-icon-list .catalog-cart-icon-wrap {
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      background-color: white; }
      .catalog-list .catalog-item .catalog-item-icon-list .catalog-cart-icon-wrap .catalog-item-icon path, .catalog-list .catalog-item .catalog-item-icon-list .catalog-cart-icon-wrap .catalog-item-icon rect, .catalog-list .catalog-item .catalog-item-icon-list .catalog-cart-icon-wrap .catalog-item-icon stroke {
        fill: #fff;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
      .catalog-list .catalog-item .catalog-item-icon-list .catalog-cart-icon-wrap:hover {
        border: 1px solid white;
        background-color: #fff; }
        .catalog-list .catalog-item .catalog-item-icon-list .catalog-cart-icon-wrap:hover .catalog-item-icon path, .catalog-list .catalog-item .catalog-item-icon-list .catalog-cart-icon-wrap:hover .catalog-item-icon rect, .catalog-list .catalog-item .catalog-item-icon-list .catalog-cart-icon-wrap:hover .catalog-item-icon stroke {
          fill: white; }

.catalog-list .catalog-text-wrap {
  padding: 0 24px 24px 24px; }
  .catalog-list .catalog-text-wrap .catalog-title {
    width: 80%;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #161717;
    margin-bottom: 14px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
    .catalog-list .catalog-text-wrap .catalog-title:hover {
      color: white; }
  .catalog-list .catalog-text-wrap .catalog-old-price {
    color: #90989B;
    font-size: 12px;
    display: inline-block;
    position: relative; }
    .catalog-list .catalog-text-wrap .catalog-old-price:before {
      content: "";
      width: 100%;
      height: 1px;
      position: absolute;
      top: -webkit-calc(50% - 1px);
      top: calc(50% - 1px);
      left: 0;
      background-color: #90989B; }
  .catalog-list .catalog-text-wrap .catalog-price {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 900;
    margin-bottom: 8px; }
  .catalog-list .catalog-text-wrap .catalog-text-bottom {
    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; }
    .catalog-list .catalog-text-wrap .catalog-text-bottom .catalog-icon {
      margin-right: 8px; }
    .catalog-list .catalog-text-wrap .catalog-text-bottom .catalog-bottom-text {
      color: #90989B;
      font-size: 12px; }
  .catalog-list .catalog-text-wrap .catalog-text-bottom-2 {
    margin-top: 16px;
    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; }
    .catalog-list .catalog-text-wrap .catalog-text-bottom-2 .catalog-icon {
      margin-right: 8px; }
    .catalog-list .catalog-text-wrap .catalog-text-bottom-2 .catalog-bottom-text {
      color: #000;
      font-size: 12px; }

.catalog-screen2 {
  overflow: hidden; }

.form {
  padding: 0 24px; }
  .form .form-control {
    margin-bottom: 24px;
    position: relative; }
  .form .form-control label {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0%;
    background-color: white;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
  .form .form-control label.form-control__label--active {
    width: 100%; }
  .form .form-control input[type="text"],
  .form .form-control input[type="password"],
  .form .form-control input[type="date"],
  .form .form-control input[type="email"],
  .form .form-control input[type="tel"],
  .form .form-control input[type="number"],
  .form .form-control select,
  .form .form-control textarea,
  .form .form-control .select2-selection--single {
    background: inherit;
    border: 0;
    display: block;
    font-family: 'main', 'Arial', 'Helvetica', sans-serif;
    font-size: 14px;
    color: #fff;
    -webkit-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
    padding: 14px 0px 17px;
    position: relative;
    resize: vertical;
    width: 100%;
    -webkit-appearance: none;
    font-weight: 400;
    outline: none; }
    @media screen and (max-width: 750px) {
      .form .form-control input[type="text"],
      .form .form-control input[type="password"],
      .form .form-control input[type="date"],
      .form .form-control input[type="email"],
      .form .form-control input[type="tel"],
      .form .form-control input[type="number"],
      .form .form-control select,
      .form .form-control textarea,
      .form .form-control .select2-selection--single {
        padding: 10px 0 12px; } }
  .form .form-control input[type="text"]:focus + label,
  .form .form-control input[type="password"]:focus + label,
  .form .form-control input[type="date"]:focus + label,
  .form .form-control input[type="email"]:focus + label,
  .form .form-control input[type="tel"]:focus + label,
  .form .form-control input[type="number"]:focus + label,
  .form .form-control select:focus + label,
  .form .form-control textarea:focus + label,
  .form .form-control .select2-selection--single:focus + label {
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%; }
  .form .form-control textarea {
    height: 100%; }
  .form .form-control .select2-container--open + .form-control__icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .form .form-control--error input[type="text"],
  .form .form-control--error input[type="password"],
  .form .form-control--error input[type="date"],
  .form .form-control--error input[type="email"],
  .form .form-control--error input[type="tel"],
  .form .form-control--error input[type="number"],
  .form .form-control--error select,
  .form .form-control--error textarea,
  .form .form-control--error .select2-selection--single {
    border-color: red; }
  .form .form-control--error label {
    color: red; }
  .form .form-control--error .form-control__icon {
    color: red; }
  .form .btn-block .btn {
    line-height: 48px;
    background-color: #fff;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    color: white;
    border: none; }

.form-control-radio {
  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 screen and (max-width: 750px) {
    .form-control-radio {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media screen and (max-width: 750px) {
    .form-control-radio {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .form-control-radio.radio-vertical {
    -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;
    background-color: #fff;
    background-color: rgba(234, 238, 239, 0.5);
    border: 1px solid #eaeeef;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    padding: 25px 30px; }
    @media screen and (max-width: 960px) {
      .form-control-radio.radio-vertical {
        padding: 25px 10px; } }
  .form-control-radio .radio {
    margin-right: 32px; }
    @media screen and (max-width: 560px) {
      .form-control-radio .radio {
        margin-right: 0; } }
    .form-control-radio .radio .radio-label {
      font-size: 1.4rem;
      font-weight: 600;
      cursor: pointer; }
      .form-control-radio .radio .radio-label a {
        color: white; }
    .form-control-radio .radio input[type="radio"] {
      position: absolute;
      opacity: 0; }
      .form-control-radio .radio input[type="radio"] + .radio-label:before {
        content: '';
        background: #fff;
        -webkit-border-radius: 100%;
                border-radius: 100%;
        border: 1px solid #bfbfbf;
        display: inline-block;
        width: 16px;
        height: 16px;
        position: relative;
        top: 4px;
        margin-right: 1em;
        vertical-align: top;
        cursor: pointer;
        text-align: center;
        -webkit-transition: all 250ms ease;
        -o-transition: all 250ms ease;
        transition: all 250ms ease; }
        @media screen and (max-width: 750px) {
          .form-control-radio .radio input[type="radio"] + .radio-label:before {
            top: 0; } }
      .form-control-radio .radio input[type="radio"]:checked + .radio-label:before {
        background-color: #000;
        -webkit-box-shadow: inset 0 0 0 4px #fff;
                box-shadow: inset 0 0 0 4px #fff; }
      .form-control-radio .radio input[type="radio"]:focus + .radio-label:before {
        outline: none;
        border-color: #8A9092; }
      .form-control-radio .radio input[type="radio"]:disabled + .radio-label:before {
        -webkit-box-shadow: inset 0 0 0 4px #fff;
                box-shadow: inset 0 0 0 4px #fff;
        border-color: #bfbfbf;
        background: #bfbfbf; }
      .form-control-radio .radio input[type="radio"] + .radio-label:empty:before {
        margin-right: 0; }

/* -------------Стилизация CHEKBOX --------------------*/
.checkbox {
  margin-bottom: 20px;
  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 screen and (max-width: 960px) {
    .checkbox {
      margin-top: 18px; } }
  @media screen and (max-width: 750px) {
    .checkbox {
      margin-top: 18px; } }
  @media screen and (max-width: 750px) {
    .checkbox {
      margin-bottom: 26px; } }
  @media screen and (max-width: 750px) {
    .checkbox {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .checkbox .checkbox__text {
    cursor: pointer;
    margin-left: -6px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px; }
    .checkbox .checkbox__text a, .checkbox .checkbox__text span {
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      cursor: pointer;
      color: white;
      padding-bottom: 2px; }
      .checkbox .checkbox__text a:hover, .checkbox .checkbox__text span:hover {
        opacity: 0.7; }
  .checkbox input[type="checkbox"] {
    display: none; }
    .checkbox input[type="checkbox"] + label {
      display: inline;
      position: relative; }
      .checkbox input[type="checkbox"] + label::before {
        content: ' ';
        background-color: #fff;
        display: inline-block;
        width: 16px;
        height: 16px;
        vertical-align: middle;
        margin-right: 15px;
        cursor: pointer;
        z-index: 10; }
    .checkbox input[type="checkbox"]:checked + label::after {
      width: 4px;
      height: 8px;
      border: 1px solid #000;
      border-left: none;
      border-top: none;
      content: ' ';
      position: absolute;
      left: 6px;
      bottom: 2px;
      -webkit-transform: rotatez(45deg);
          -ms-transform: rotate(45deg);
              transform: rotatez(45deg);
      cursor: pointer;
      z-index: 20; }

.mail-me-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, auto);
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  grid-gap: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #222222; }
  .mail-me-form .form-control {
    grid-column: 1 / span 11; }
    @media screen and (max-width: 750px) {
      .mail-me-form .form-control {
        grid-column: 1/span 10; } }
    @media screen and (max-width: 560px) {
      .mail-me-form .form-control {
        grid-column: 1/span 10; } }
    .mail-me-form .form-control input {
      width: 100%;
      height: 100%;
      border: none;
      font-size: 1.6em;
      font-weight: 300; }
      .mail-me-form .form-control input::-moz-placeholder {
        color: #222222;
        font-weight: 700; }
      .mail-me-form .form-control input::-webkit-input-placeholder {
        color: #222222;
        font-weight: 700; }
  .mail-me-form .btn-wrap {
    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; }
    .mail-me-form .btn-wrap button {
      border: none;
      background-color: inherit; }
    .mail-me-form .btn-wrap .btn-to-look {
      cursor: pointer;
      padding: 0;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
      .mail-me-form .btn-wrap .btn-to-look .svg path {
        stroke: #aaa; }
      .mail-me-form .btn-wrap .btn-to-look .svg circle {
        stroke: #aaa; }
      .mail-me-form .btn-wrap .btn-to-look:hover {
        -webkit-transform: scale(1.3);
            -ms-transform: scale(1.3);
                transform: scale(1.3); }

.scroll-block {
  background-color: #000; }

div {
  outline: none; }

img {
  outline: none; }

a {
  text-decoration: none;
  outline: none;
  color: white;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  font-size: 1.2rem; }
  a:hover {
    opacity: .6; }

p {
  font-size: 1.4rem;
  color: white;
  line-height: 1.5; }
  @media screen and (max-width: 750px) {
    p {
      line-height: 22px; } }

input {
  outline: none; }

button {
  outline: none; }

.container {
  max-width: 100%;
  padding-left: 64px;
  padding-right: 64px;
  margin: 0 auto; }
  @media screen and (max-width: 1440px) {
    .container {
      padding-left: undefined;
      padding-right: undefined; } }
  @media screen and (max-width: 1170px) {
    .container {
      padding-left: undefined;
      padding-right: undefined; } }
  @media screen and (max-width: 960px) {
    .container {
      padding-left: undefined;
      padding-right: undefined; } }
  @media screen and (max-width: 750px) {
    .container {
      padding-left: 15px;
      padding-right: 15px; } }
  @media screen and (max-width: 560px) {
    .container {
      padding-left: undefined;
      padding-right: undefined; } }

/* УБИРАЕМ КРАСНОЙ РАМКИ В MOZILA */
:invalid {
  -webkit-box-shadow: none;
          box-shadow: none; }

:-moz-submit-invalid {
  box-shadow: none; }

:-moz-ui-invalid {
  box-shadow: none; }

sup {
  top: 1em;
  font-size: 50%;
  margin-left: 8px;
  color: #BBBBBB; }

.trigger-start {
  position: fixed;
  bottom: 90%; }

.trigger-end {
  position: fixed;
  bottom: 30%; }

@media screen and (max-width: 1170px) {
  .studio54 {
    margin-top: 50px; } }

.studio54 .section {
  padding-top: 32px;
  padding-bottom: 48px; }
  @media screen and (max-width: 960px) {
    .studio54 .section {
      padding-top: 20px; } }
  @media screen and (max-width: 960px) {
    .studio54 .section {
      padding-bottom: 10px; } }

.studio54.card-page-content {
  padding-top: 112px; }
  @media screen and (max-width: 960px) {
    .studio54.card-page-content {
      padding-top: 70px; } }

.dop-bg {
  background-color: #F4F5F5; }

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

body table {
  width: 100%;
  border-collapse: collapse; }

body table {
  font-size: 14px;
  line-height: 1.4;
  background-color: inherit; }
  body table thead tr th {
    padding: 10px 0px;
    border: none;
    font-weight: 600; }
  body table tbody tr {
    background-color: inherit; }
    body table tbody tr td {
      padding: 10px 10px;
      border: none; }
    body table tbody tr:nth-child(odd) {
      background-color: #eaeeef; }

body h1 {
  position: relative;
  font-family: 'main', serif;
  font-weight: 700;
  color: #111;
  font-size: 36px; }

body h2 {
  position: relative;
  font-family: 'main', serif;
  font-weight: 700;
  color: #111;
  font-size: 28px; }

body h3 {
  position: relative;
  font-family: 'main', serif;
  font-weight: 700;
  color: #111;
  font-size: 24px; }

body ol {
  padding-left: 20px; }

body h1, body h2, body h3 {
  display: block;
  margin-bottom: 32px; }

body ul li {
  list-style-type: circle;
  margin-left: 20px; }

.card .tabs-wrap {
  width: 100%; }
  .card .tabs-wrap .tabs-header {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eaeeef;
    margin-bottom: 32px; }
    .card .tabs-wrap .tabs-header .tab-btn {
      padding: 10px 20px;
      cursor: pointer;
      background-color: #fff;
      margin-bottom: -1px;
      border-bottom: 1px solid #eaeeef; }
      @media screen and (max-width: 750px) {
        .card .tabs-wrap .tabs-header .tab-btn {
          padding: 5px 10px; } }
      .card .tabs-wrap .tabs-header .tab-btn.active {
        border-left: 1px solid #eaeeef;
        border-top: 1px solid #eaeeef;
        border-right: 1px solid #eaeeef;
        border-bottom: 0px; }
      .card .tabs-wrap .tabs-header .tab-btn .tab-btn-text {
        line-height: 40px;
        font-size: 2rem;
        text-align: center;
        font-weight: 600;
        color: #484540; }
        @media screen and (max-width: 750px) {
          .card .tabs-wrap .tabs-header .tab-btn .tab-btn-text {
            font-size: 1.4rem; } }

.card .tabs-wrap {
  grid-column-start: span 4;
  width: 100%; }
  @media screen and (max-width: 960px) {
    .card .tabs-wrap {
      grid-column-start: span 2; } }
  @media screen and (max-width: 750px) {
    .card .tabs-wrap {
      grid-column-start: span 2; } }
  .card .tabs-wrap .tab {
    margin-bottom: 20px; }
    .card .tabs-wrap .tab table {
      width: 80%; }
      @media screen and (max-width: 960px) {
        .card .tabs-wrap .tab table {
          width: 100%; } }

.card-wrap {
  padding-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-gap: 0 30px; }
  @media screen and (max-width: 960px) {
    .card-wrap {
      padding-top: 0; } }
  @media screen and (max-width: 960px) {
    .card-wrap {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 750px) {
    .card-wrap {
      grid-template-columns: repeat(2, 1fr); } }
  .card-wrap .card-left {
    grid-column-start: span 2; }
    .card-wrap .card-left .slider-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      @media screen and (max-width: 560px) {
        .card-wrap .card-left .slider-wrap {
          -webkit-flex-wrap: wrap;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap; } }
  @media screen and (max-width: 750px) {
    .card-wrap .card-description {
      grid-column-start: span 2; } }
  .card-wrap .card-description .vendor-code-wrap {
    border-bottom: 1px solid #eaeeef;
    margin-bottom: 20px; }
    .card-wrap .card-description .vendor-code-wrap .vendor-code {
      font-weight: 600;
      font-size: 1.4rem;
      margin-bottom: 15px; }
  .card-wrap .card-description .description-text {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeeef; }
  .card-wrap .card-description .add-to-comparison {
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eaeeef;
    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; }
    .card-wrap .card-description .add-to-comparison .comparison-btn {
      margin-right: 15px;
      width: 20px;
      height: 20px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; }
      @media screen and (max-width: 750px) {
        .card-wrap .card-description .add-to-comparison .comparison-btn {
          display: none; } }
      .card-wrap .card-description .add-to-comparison .comparison-btn .line {
        width: 2px;
        background-color: #f60000;
        margin-right: 6px;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
        .card-wrap .card-description .add-to-comparison .comparison-btn .line:nth-child(1) {
          height: 25px; }
        .card-wrap .card-description .add-to-comparison .comparison-btn .line:nth-child(2) {
          height: 17px; }
        .card-wrap .card-description .add-to-comparison .comparison-btn .line:nth-child(3) {
          height: 22px;
          margin-right: 0; }
    .card-wrap .card-description .add-to-comparison .comparison-text {
      color: #f60000; }
    .card-wrap .card-description .add-to-comparison:hover .comparison-btn .line {
      height: 20px; }
  .card-wrap .card-description .like-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; }
    .card-wrap .card-description .like-wrap .like-btn {
      margin-right: 15px; }
      .card-wrap .card-description .like-wrap .like-btn .svg path {
        fill: #484540;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }
    .card-wrap .card-description .like-wrap:hover .like-btn .svg path {
      fill: #f60000; }
  @media screen and (max-width: 750px) {
    .card-wrap .card-purchased-block {
      grid-column-start: span 2; } }
  .card-wrap .card-purchased-block .purchased-top {
    padding: 20px;
    margin-bottom: 20px;
    background-color: rgba(234, 238, 239, 0.5); }
    .card-wrap .card-purchased-block .purchased-top .product-price-wrap .new-price {
      font-size: 3rem;
      margin-bottom: 10px; }
    .card-wrap .card-purchased-block .purchased-top .product-price-wrap .old-price {
      margin-bottom: 5px; }
    .card-wrap .card-purchased-block .purchased-top .product-remainder {
      margin-bottom: 7px; }
    .card-wrap .card-purchased-block .purchased-top .product-counter-wrap {
      padding-top: 0;
      margin-bottom: 10px; }
  .card-wrap .card-purchased-block .purchased-bottom .purchased-link-wrap {
    display: block;
    padding-left: 20px;
    margin-bottom: 10px; }
    .card-wrap .card-purchased-block .purchased-bottom .purchased-link-wrap .purcahsed-link {
      font-weight: 600;
      border-bottom: 1px solid #8A9092; }
    .card-wrap .card-purchased-block .purchased-bottom .purchased-link-wrap .purchased-text {
      color: #8A9092; }
    .card-wrap .card-purchased-block .purchased-bottom .purchased-link-wrap.last {
      border-top: 1px solid #eaeeef;
      padding-top: 15px;
      margin-top: 30px;
      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; }

.slider-big-wrap {
  width: 80%;
  margin-bottom: 0px; }
  @media screen and (max-width: 750px) {
    .slider-big-wrap {
      margin-bottom: 20px; } }
  @media screen and (max-width: 560px) {
    .slider-big-wrap {
      width: 100%; } }
  @media screen and (max-width: 560px) {
    .slider-big-wrap {
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
          -ms-flex-order: -1;
              order: -1; } }

.slider-big-item {
  background-color: #fff;
  margin-right: 20px;
  height: 420px; }
  @media screen and (max-width: 750px) {
    .slider-big-item {
      max-height: 250px; } }
  .slider-big-item .slider-big-img-wrap {
    height: 420px;
    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; }
    @media screen and (max-width: 750px) {
      .slider-big-item .slider-big-img-wrap {
        height: 250px; } }
    @media screen and (max-width: 750px) {
      .slider-big-item .slider-big-img-wrap {
        padding-top: 0; } }
  .slider-big-item .slider-big-img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain; }

.slider-little-wrap {
  width: 20%; }
  @media screen and (max-width: 750px) {
    .slider-little-wrap {
      padding-top: 0; } }
  @media screen and (max-width: 560px) {
    .slider-little-wrap {
      width: 100%; } }
  @media screen and (max-width: 560px) {
    .slider-little-wrap {
      padding: 0 20px; } }
  .slider-little-wrap .slick-current {
    border: 1px solid #8A9092;
    -webkit-border-radius: 4px;
            border-radius: 4px; }

.slider-little-list {
  margin-top: 30px;
  padding-top: 30px;
  padding-left: 20px; }
  @media screen and (max-width: 750px) {
    .slider-little-list {
      padding-left: 0; } }
  @media screen and (max-width: 560px) {
    .slider-little-list {
      margin-top: 0; } }
  @media screen and (max-width: 560px) {
    .slider-little-list {
      padding-top: 0; } }
  .slider-little-list .slick-prev {
    left: 38px;
    top: 0;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
    @media screen and (max-width: 560px) {
      .slider-little-list .slick-prev {
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg); } }
    @media screen and (max-width: 560px) {
      .slider-little-list .slick-prev {
        left: -30px; } }
    @media screen and (max-width: 560px) {
      .slider-little-list .slick-prev {
        top: 20px; } }
  .slider-little-list .slick-next {
    left: 38px;
    top: auto;
    bottom: -20px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
    @media screen and (max-width: 560px) {
      .slider-little-list .slick-next {
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg); } }
    @media screen and (max-width: 560px) {
      .slider-little-list .slick-next {
        right: -30px; } }
    @media screen and (max-width: 560px) {
      .slider-little-list .slick-next {
        left: auto; } }
    @media screen and (max-width: 560px) {
      .slider-little-list .slick-next {
        bottom: 20px; } }
  .slider-little-list .slick-prev, .slider-little-list .slick-next {
    z-index: 10;
    border: none;
    background-color: inherit;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    width: 25px;
    height: 25px; }
  .slider-little-list .slick-prev:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
    -webkit-transform: rotate(224deg);
        -ms-transform: rotate(224deg);
            transform: rotate(224deg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .slider-little-list .slick-next:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .slider-little-list .slick-prev:before, .slider-little-list .slick-next:before {
    position: absolute;
    top: 9px;
    right: 8px; }
  .slider-little-list .slick-prev:hover, .slider-little-list .slick-next:hover {
    opacity: .7; }

.slider-little-item {
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  max-width: 60px;
  padding: 5px; }
  @media screen and (max-width: 750px) {
    .slider-little-item {
      margin-right: 10px; } }
  @media screen and (max-width: 750px) {
    .slider-little-item {
      max-width: 75px; } }
  @media screen and (max-width: 750px) {
    .slider-little-item {
      max-height: 75px; } }
  @media screen and (max-width: 750px) {
    .slider-little-item {
      margin-bottom: 12px; } }
  .slider-little-item .slider-little-img-wrap {
    max-width: 48px;
    max-height: 48px;
    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; }
  .slider-little-item .slider-little-img {
    -o-object-fit: contain;
       object-fit: contain; }

.kit-wrap {
  border: 1px solid #f60000;
  padding: 20px 0 25px;
  margin-bottom: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, auto);
  grid-gap: 30px; }
  @media screen and (max-width: 960px) {
    .kit-wrap {
      grid-template-columns: repeat(5, 1fr); } }
  @media screen and (max-width: 750px) {
    .kit-wrap {
      grid-template-columns: repeat(1, 1fr); } }
  .kit-wrap .title-wrap {
    grid-column-start: span 12;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media screen and (max-width: 960px) {
      .kit-wrap .title-wrap {
        grid-column-start: span 5; } }
    @media screen and (max-width: 560px) {
      .kit-wrap .title-wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media screen and (max-width: 560px) {
      .kit-wrap .title-wrap {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }
    .kit-wrap .title-wrap p {
      font-size: 3.3rem; }
      @media screen and (max-width: 560px) {
        .kit-wrap .title-wrap p {
          text-align: center; } }
  .kit-wrap .kit-block {
    padding: 0 35px;
    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-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .kit-wrap .kit-block .action-wrap {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 30px; }
    .kit-wrap .kit-block .product-img-wrap {
      text-align: center; }
    .kit-wrap .kit-block .kit-product-title {
      text-align: center;
      font-size: 1.4rem; }
    .kit-wrap .kit-block .product-remainder {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .kit-wrap .kit-block .product-price-wrap {
      text-align: center;
      margin-bottom: 10px; }
    .kit-wrap .kit-block .btn-wrap .full-btn {
      margin-bottom: 15px;
      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-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .kit-wrap .kit-block .btn-wrap .full-btn .svg {
        margin-right: 10px; }
    .kit-wrap .kit-block .economy-block {
      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; }
      .kit-wrap .kit-block .economy-block .svg {
        margin-right: 10px; }
      .kit-wrap .kit-block .economy-block span {
        font-weight: 600;
        font-size: 1.2rem; }
    .kit-wrap .kit-block.kit-left {
      grid-column-start: 2;
      grid-column-end: 5; }
      @media screen and (max-width: 960px) {
        .kit-wrap .kit-block.kit-left {
          grid-column-start: 2; } }
      @media screen and (max-width: 960px) {
        .kit-wrap .kit-block.kit-left {
          grid-column-end: 5; } }
    .kit-wrap .kit-block.kit-center {
      grid-column-start: 6;
      grid-column-end: 8;
      padding: 0; }
      @media screen and (max-width: 960px) {
        .kit-wrap .kit-block.kit-center {
          grid-column-start: 2; } }
      @media screen and (max-width: 960px) {
        .kit-wrap .kit-block.kit-center {
          grid-column-end: 5; } }
    .kit-wrap .kit-block.kit-right {
      grid-column-start: 9;
      grid-column-end: 12;
      padding: 0;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding-bottom: 25px; }
      @media screen and (max-width: 960px) {
        .kit-wrap .kit-block.kit-right {
          grid-column-start: 2; } }
      @media screen and (max-width: 960px) {
        .kit-wrap .kit-block.kit-right {
          grid-column-end: 5; } }
  .kit-wrap .sign-block {
    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-bottom: 50px; }
    @media screen and (max-width: 960px) {
      .kit-wrap .sign-block {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media screen and (max-width: 960px) {
      .kit-wrap .sign-block {
        padding-bottom: 0; } }
    @media screen and (max-width: 960px) {
      .kit-wrap .sign-block {
        grid-column-start: 2; } }
    @media screen and (max-width: 960px) {
      .kit-wrap .sign-block {
        grid-column-end: 5; } }
    .kit-wrap .sign-block .sign-wrap {
      width: 30px;
      height: 30px;
      position: relative; }
      .kit-wrap .sign-block .sign-wrap .horisontal {
        position: absolute;
        top: -webkit-calc(50% - 1px);
        top: calc(50% - 1px);
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #8A9092; }
      .kit-wrap .sign-block .sign-wrap .vertical {
        position: absolute;
        left: -webkit-calc(50% - 1px);
        left: calc(50% - 1px);
        top: 0;
        background-color: #8A9092;
        width: 2px;
        height: 100%; }
      .kit-wrap .sign-block .sign-wrap.equally .horisontal {
        top: -webkit-calc(20% - 1px);
        top: calc(20% - 1px); }
        .kit-wrap .sign-block .sign-wrap.equally .horisontal:last-child {
          top: -webkit-calc(80% - 1px);
          top: calc(80% - 1px); }

/* 



@import "animate";
@import "mixins";

 */
.scrollover {
  overflow: hidden;
  margin-right: 14px; }

html {
  font-size: 10px;
  /*    @include xlg(font-size, 9px);
@include sm(font-size, 8px) */ }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body {
  background-color: #fff;
  font-family: 'main';
  line-height: 1.6;
  font-weight: 400;
  color: white;
  -webkit-font-smoothing: antialiased;
  outline: none;
  color: #484540;
  border-color: #eaeeef; }
  body body, body div, body dl, body dt, body dd, body ul, body li, body h1, body h2, body h3, body h4, body h5, body h6, body pre, body code, body form, body fieldset, body input, body textarea, body p, body blockquote, body th, body td {
    margin: 0;
    padding: 0; }
  body fieldset, body img, body abbr {
    border: 0; }
  body address, body caption, body cite, body code, body dfn, body em, body strong, body th, body var {
    font-style: normal;
    font-weight: normal; }
  body caption, body th {
    text-align: left; }
  body sup {
    vertical-align: text-top; }
  body sub {
    vertical-align: text-bottom; }
  body input, body textarea, body select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit; }
  body legend {
    color: #000; }
  body article, body aside, body details, body figcaption, body figure, body footer, body header, body hgroup, body menu, body nav, body section, body main {
    display: block; }
  body img {
    max-width: 100%;
    height: auto; }
