@charset "UTF-8";
@import url(normalize.css);
@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-Regular.eot");
  src: url("fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/OpenSans-Regular.woff") format("woff"), url("fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-SemiBold.eot");
  src: url("fonts/OpenSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/OpenSans-SemiBold.woff") format("woff"), url("fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-Bold.eot");
  src: url("fonts/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/OpenSans-Bold.woff") format("woff"), url("fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url("fonts/OpenSans-ExtraBold.eot");
  src: url("fonts/OpenSans-ExtraBold.eot?#iefix") format("embedded-opentype"), url("fonts/OpenSans-ExtraBold.woff") format("woff"), url("fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

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

html {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Open Sans';
  font-size: 18px;
  color: #171717;
  height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body * {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

b, strong {
  font-weight: 600;
}

input, button, textarea {
  font-family: 'Open Sans';
  font-weight: 400;
}

input[type="text"], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input[type="text"]::-ms-clear, textarea::-ms-clear {
  display: none;
}

input {
  outline: none;
}

button {
  border: 0;
  outline: none;
  cursor: pointer;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

.container {
  width: 100%;
  max-width: 1470px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.main {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.ov-hidden {
  overflow: hidden !important;
  height: 100%;
}

img {
  display: block;
  max-width: 100%;
}

img.img-overflow {
  max-width: none;
}

.row {
  width: calc(100% + 30px);
  margin-left: -15px;
}

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

.cover-img {
  display: none;
}

.btn {
  background-color: #1F67B3;
  border-radius: 2px;
  display: inline-block;
  padding: 16px 35px;
  letter-spacing: 0.01em;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn:hover {
  -webkit-box-shadow: 0px 0px 13px #1F67B3;
          box-shadow: 0px 0px 13px #1F67B3;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-title h2::before, .section-title h2::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(100% + 25px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  background-color: rgba(31, 103, 179, 0.7);
  width: 50vw;
}

.section-title h2::after {
  left: calc(100% + 25px);
}

.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #F4F4F4;
  background-image: url(../img/arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  width: 65px;
  height: 65px;
  -webkit-transform-origin: center;
          transform-origin: center;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.slider-prev:hover, .slider-next:hover {
  opacity: .65;
}

.slider-prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.slider-next {
  right: 0;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-count {
  width: 92px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.main-count input {
  display: block;
  width: 100%;
  border: 1px solid rgba(31, 103, 179, 0.35);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 0;
  text-align: center;
  padding-right: 33px;
  font-weight: 600;
  font-size: 15px;
}

.main-count__plus, .main-count__minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.main-count__plus:hover, .main-count__minus:hover {
  opacity: .65;
}

.main-count__plus span, .main-count__minus span {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid #1F67B3;
}

.main-count__control {
  position: absolute;
  right: 0;
  top: 1px;
  bottom: 1px;
  width: 33px;
  border-left: 1px solid rgba(31, 103, 179, 0.35);
}

.main-count__minus {
  border-top: 1px solid rgba(31, 103, 179, 0.35);
}

.main-count__minus span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-select {
  border: 1px solid rgba(31, 103, 179, 0.35) !important;
  float: none;
  padding-left: 20px;
  height: 45px;
  line-height: 43px;
  font-size: 15px;
  color: #171717;
  border-radius: 0;
  padding-right: 50px;
}

.main-select::after {
  border: 0;
  right: 20px;
  top: calc(50% + 1px);
  -webkit-transform: none;
          transform: none;
  width: 16px;
  height: 7px;
  background: url(../img/select-arr.svg) center center no-repeat;
  background-size: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.main-select.open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-select .list {
  width: 100%;
  border-radius: 0;
}

.main-select .option {
  padding-left: 20px;
  font-size: 15px;
  margin-bottom: 0;
}

.main-select .option::before {
  display: none;
}

.tmp-links-list a {
  -webkit-transition: .3s;
  transition: .3s;
  color: #1F67B3;
  text-decoration: underline;
}

.tmp-links-list a:hover {
  color: #171717;
  text-decoration: none;
}

.header {
  background-color: #fff;
  padding: 16px 0;
  padding-bottom: 20px;
  color: #1F67B3;
  z-index: 98;
}

.header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
}

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

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

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

.header__tel img {
  width: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
}

.header__tel a {
  display: inline-block;
  margin-right: 22px;
  font-size: 16px;
}

.header__tel a:last-child {
  margin-right: 0;
}

.header__tel a:hover {
  text-decoration: underline;
}

.header__email {
  margin-left: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__email img {
  width: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
}

.header__email a {
  font-size: 16px;
  text-decoration: underline;
}

.header__email a:hover {
  text-decoration: none;
}

.header__mob {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__mob-tel {
  padding-top: 7px;
}

.header__mob-tel img {
  width: 27px;
}

.header__mob-cart {
  position: relative;
  padding-right: 18px;
  padding-top: 7px;
  margin-left: 28px;
}

.header__mob-cart img {
  width: 30px;
}

.header__mob-cart span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #1F67B3;
  font-size: 12px;
  color: #1F67B3;
  font-weight: 700;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

.header__burger {
  display: none;
  cursor: pointer;
  margin-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__burger span {
  height: 3px;
  margin-bottom: 6px;
  border-radius: 4px;
  background-color: #1F67B3;
  display: block;
}

.header__burger span:nth-child(1) {
  width: 35px;
}

.header__burger span:nth-child(2) {
  width: 29px;
}

.header__burger span:nth-child(3) {
  margin-bottom: 0;
  width: 23px;
}

.header--blue {
  background-color: #1F67B3;
  color: #fff;
}

.header--blue .header-cart__icon {
  background: rgba(255, 255, 255, 0.2);
}

.header--blue .header-cart__icon:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header--blue .header__mob-cart span {
  border-color: #fff;
  background-color: #1F67B3;
  color: #fff;
}

.header--blue .header__burger span {
  background-color: #fff;
}

.header-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 94px;
}

.header-cart__icon {
  background: rgba(31, 103, 179, 0.15);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 14px;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-cart__icon:hover {
  background: rgba(31, 103, 179, 0.06);
}

.header-cart__icon img {
  width: 20px;
}

.header-cart__col {
  margin-left: 12px;
}

.header-cart span {
  font-size: 15px;
}

.header-cart b {
  font-size: 16px;
  font-weight: 600;
  margin-left: 7px;
}

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

.header-cart__item:last-child {
  margin-top: 3px;
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  border-top: 1px solid rgba(31, 103, 179, 0.8);
}

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

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 160px;
}

.nav__item {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1F67B3;
}

.nav__item a {
  -webkit-transition: .3s;
  transition: .3s;
}

.nav__item a:hover {
  color: #171717;
}

.nav__catalog {
  position: relative;
}

.nav__catalog:hover .nav__burger span {
  background-color: #171717;
}

.nav__catalog:hover .nav__sub {
  color: #171717;
}

.nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.nav__sub {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1F67B3;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.nav__burger {
  padding-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.nav__burger span {
  margin-bottom: 4px;
  height: 2px;
  background-color: #1F67B3;
  display: block;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.nav__burger span:nth-child(1) {
  width: 23px;
}

.nav__burger span:nth-child(2) {
  width: 20px;
}

.nav__burger span:nth-child(3) {
  width: 17px;
  margin-bottom: 0;
}

.nav__close {
  position: absolute;
  width: 27px;
  height: 27px;
  top: 18px;
  left: 15px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  background: url(../img/close.svg) center center no-repeat;
  background-size: contain;
  display: none;
}

.nav__close:hover {
  opacity: .65;
}

.nav__tel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  font-size: 16px;
  margin-top: 38px;
}

.nav__tel img {
  width: 18px;
}

.nav__tel a {
  margin-left: 16px;
  display: inline-block;
  color: #1F67B3;
  -webkit-transition: .3s;
  transition: .3s;
}

.nav__tel a:hover {
  color: #171717;
}

.nav__email {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-top: 18px;
}

.nav__email img {
  width: 18px;
}

.nav__email a {
  margin-left: 16px;
  display: inline-block;
  color: #1F67B3;
  text-decoration: underline;
}

.nav__email a:hover {
  text-decoration: none;
}

.footer {
  background-color: #1F67B3;
  padding: 44px 0;
  margin-top: 70px;
  color: #fff;
}

.footer__logo {
  padding-right: 113px;
}

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

.footer__main {
  letter-spacing: 0.01em;
  font-size: 16px;
  padding-top: 20px;
}

.footer__main a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.footer__main a:hover {
  text-decoration: none;
}

.footer__col {
  text-align: right;
  padding-top: 20px;
}

.footer__tel {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer__tel img {
  width: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__tel a {
  margin-left: 16px;
}

.footer__tel a:hover {
  text-decoration: underline;
}

.footer__email {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.footer__email img {
  width: 18px;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__email a {
  text-decoration: underline;
}

.footer__email a:hover {
  text-decoration: none;
}

.footer__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.footer__icon {
  margin-left: 12px;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__icon:hover {
  opacity: .65;
}

.footer__icon:first-child {
  margin-left: 0;
}

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

.footer__cop {
  letter-spacing: 0.01em;
  font-size: 16px;
}

.footer__cop span {
  padding-left: 30px;
  position: relative;
}

.footer__cop span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  background: url(../img/cop.png) center center no-repeat;
  width: 18px;
  height: 18px;
}

.footer__politic {
  margin-left: 90px;
  letter-spacing: 0.01em;
  font-size: 16px;
}

.footer__politic a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.footer__politic a:hover {
  text-decoration: none;
}

.footer__hide {
  display: none;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 46px;
  text-align: center;
}

.footer__hide a:hover {
  text-decoration: underline;
}

.top-section {
  height: 752px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.top-section h1 {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.55);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 48px;
  line-height: 65px;
  max-width: 838px;
  margin: 0 auto 0;
}

.top-section p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  max-width: 745px;
  margin: 0 auto 0;
  margin-top: 26px;
}

.top-section__content {
  text-align: center;
}

.top-section__btn {
  margin-top: 58px;
}

.sport-list {
  margin-top: 40px;
}

.sport-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(100% + 30px);
  margin-left: -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sport-list__item {
  width: 16.6666%;
  padding: 0 15px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sport-list__icon {
  height: 113px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sport-list__title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
}

.sport-list__content {
  display: inline-block;
}

.sport-list__content:hover .sport-list__title {
  color: #1F67B3;
}

.about {
  margin-top: 68px;
}

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

.about__slider {
  position: relative;
  margin-top: 52px;
}

.about__img {
  width: calc(50% - 15px);
}

.about__img img {
  width: 100%;
}

.about__content {
  width: calc(50% - 15px);
  padding-right: 90px;
}

.about__content p {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 29px;
}

.about__content p b {
  font-weight: 600;
}

.about__content p:last-child {
  margin-bottom: 0;
}

.about__banner {
  padding: 16px 15px;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  text-align: center;
  background-color: #1F67B3;
  margin-top: 46px;
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-top: 100px;
}

.about__col {
  width: 33.33333%;
  padding: 0 15px;
  margin-bottom: 30px;
  text-align: center;
  color: #1F67B3;
}

.about__num {
  font-weight: 800;
  font-size: 66px;
  line-height: 56px;
}

.about__desc {
  margin-top: 12px;
  font-weight: 600;
  font-size: 26px;
}

.projects {
  margin-top: 100px;
}

.projects__slider {
  position: relative;
  margin-top: 54px;
}

.projects__item {
  position: relative;
}

.projects__title {
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 48px;
  color: #fff;
}

.advantage {
  margin-top: 140px;
}

.advantage__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-top: 52px;
}

.advantage__col {
  width: 33.33333%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.advantage__item {
  background-color: #F4F4F4;
  padding: 44px 10px;
  -webkit-transition: .3s;
  transition: .3s;
  display: block;
}

.advantage__item:hover {
  background-color: #fff;
}

.advantage__icon {
  height: 91px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advantage__title {
  font-size: 18px;
  line-height: 27px;
  margin-top: 16px;
  text-align: center;
}

.product {
  margin-top: 120px;
}

.product__row {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: calc(100% + 30px);
  margin-left: -15px;
}

.product__col {
  width: 33.33333%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.product__col--large {
  width: 66.66666%;
}

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

.product__item:hover .product__title span {
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.product__img img {
  width: 100%;
}

.product__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.product__title span {
  display: inline-block;
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0);
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
}

.print-method {
  margin-top: 92px;
}

.print-method__slider {
  margin-top: 52px;
  position: relative;
}

.print-method__slider .slider-prev, .print-method__slider .slider-next {
  top: 18vw;
}

.print-method__item {
  border: 1px solid rgba(32, 80, 242, 0.2);
  border-radius: 2px;
  text-align: center;
  margin-top: 0 !important;
  height: auto !important;
  margin-bottom: 30px;
}

.print-method__title {
  padding: 15px 10px;
  font-weight: 600;
  font-size: 20px;
}

.print-method__desc {
  padding: 16px 10px;
  font-size: 18px;
  line-height: 28px;
}

.print-method__img img {
  width: 100%;
}

.equipment {
  margin-top: 100px;
}

.equipment__container {
  position: relative;
  padding: 0 92px;
  margin-top: 62px;
}

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

.equipment__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.equipment__content p {
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 20px;
}

.equipment__content p b {
  font-weight: 600;
}

.equipment__content p:last-child {
  margin-bottom: 0;
}

.equipment__desc {
  margin-top: 40px;
}

.equipment__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(100% / 10 * 6);
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.equipment__side {
  margin-top: 82px;
  font-size: 18px;
  line-height: 29px;
  text-align: center;
  padding: 22px 15px;
  background-color: #F4F4F4;
  border: 1px solid #1F67B3;
}

.equipment__side span {
  display: inline-block;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.index-form {
  background-color: #1F67B3;
  background-image: url(../img/index-form-bg.png);
  background-position-y: center;
  background-position-x: right;
  background-repeat: no-repeat;
  padding: 70px 0;
  color: #fff;
  margin-top: 100px;
}

.index-form__label {
  position: relative;
  display: block;
  width: calc(50% - 15px);
  margin-bottom: 28px;
}

.index-form__label > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 14px;
  -webkit-transition: .15s;
  transition: .15s;
}

.index-form__label > span span {
  color: #E3000B;
}

.index-form__input {
  background: transparent;
  border: 0;
  border-bottom: 2px solid #FFFFFF;
  padding: 12px 0;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #fff;
  display: block;
  width: 100%;
}

.index-form__input:focus + span, .index-form__input:not([value=""]) + span {
  opacity: 0;
  visibility: hidden;
}

.index-form__row {
  margin-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.index-form__form {
  display: block;
  max-width: 706px;
  margin-left: auto;
  margin-right: auto;
}

.index-form__title {
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
}

.index-form__btn {
  display: block;
  width: 216px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  background-color: #fff;
  color: #1F67B3;
}

.index-form__btn:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9);
          box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9);
}

.index-form__desc {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  font-size: 16px;
  line-height: 22px;
  margin-top: 60px;
  text-align: center;
}

.index-form__desc span {
  color: #E3000B;
}

.index-form__checkbox {
  margin-top: 16px;
  cursor: pointer;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.index-form__checkbox input {
  display: none;
}

.index-form__checkbox input:checked + span::after {
  opacity: 1;
  visibility: visible;
}

.index-form__checkbox span {
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 23px;
  position: relative;
  padding-left: 34px;
  display: inline-block;
}

.index-form__checkbox span a {
  text-decoration: underline;
}

.index-form__checkbox span a:hover {
  text-decoration: none;
}

.index-form__checkbox span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.index-form__checkbox span::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: 18px;
  height: 18px;
  background: url(../img/check.svg) center center no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .15s;
  transition: .15s;
  opacity: 0;
  visibility: hidden;
}

.documents {
  margin-top: 110px;
  padding-bottom: 50px;
}

.documents__slider {
  position: relative;
}

.documents__item img {
  width: 100%;
}

.post-header {
  padding-top: 20px;
}

.breadcrumbs {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #171717;
  margin-bottom: 40px;
}

.breadcrumbs span {
  padding: 0 5px;
  font-size: 15px;
}

.breadcrumbs span:last-child {
  padding: 0;
  color: #1F67B3;
  font-size: 14px;
}

.breadcrumbs span, .breadcrumbs a {
  margin-bottom: 8px;
}

.breadcrumbs a {
  color: #171717;
  -webkit-transition: .3s;
  transition: .3s;
}

.breadcrumbs a:hover {
  color: #1F67B3;
  text-decoration: underline;
}

.post-title {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 40px;
}

.gallery-slider {
  position: relative;
  margin-bottom: 38px;
}

.gallery-slider img {
  width: 100%;
}

.post-content p {
  margin-top: 30px;
  font-size: 18px;
  line-height: 28px;
}

.post-content ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.post-content ul li {
  position: relative;
  font-size: 18px;
  margin-bottom: 4px;
  padding-left: 24px;
}

.post-content ul li:last-child {
  margin-bottom: 0;
}

.post-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
}

.request-btn {
  display: block;
  width: 100%;
  max-width: 245px;
  margin: 50px auto 0;
  text-align: center;
}

.modal-form {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 520px;
  padding: 60px;
  display: none;
}

.modal-form .fancybox-close-small {
  display: none;
}

.modal-form__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: url(../img/form-close.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: .3s;
  transition: .3s;
}

.modal-form__close:hover {
  opacity: .6;
}

.modal-form__title {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}

.modal-form__form {
  margin-top: 38px;
}

.modal-form__col {
  margin-bottom: 16px;
}

.modal-form__label {
  position: relative;
  display: block;
}

.modal-form__label > span {
  position: absolute;
  left: 21px;
  top: 15px;
  font-size: 14px;
  -webkit-transition: .15s;
  transition: .15s;
}

.modal-form__label > span span {
  color: #E3000B;
}

.modal-form__input {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
  background: rgba(31, 103, 179, 0.02);
  border: 1px solid rgba(31, 103, 179, 0.35);
}
.modal-form__input.error {
  border-color: #f00;
}

.modal-form__input:focus + span, .modal-form__input:not([value=""]) + span {
  opacity: 0;
  visibility: hidden;
}

.modal-form__textarea {
  height: 122px;
  resize: none;
}

.modal-form__checkbox {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.modal-form__checkbox input {
  display: none;
}

.modal-form__checkbox input:checked + span::after {
  opacity: 1;
  visibility: visible;
}

.modal-form__checkbox span {
  position: relative;
  padding-left: 28px;
  display: inline-block;
  font-size: 14px;
}

.modal-form__checkbox span::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  background: rgba(31, 103, 179, 0.02);
  border: 1px solid rgba(31, 103, 179, 0.35);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal-form__checkbox input.error + span::before {
	border-color: #f00;
}

.modal-form__checkbox span::after {
  content: '';
  position: absolute;
  left: 1px;
  top: -2px;
  width: 18px;
  height: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../img/check-black.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px;
  -webkit-transition: .15s;
  transition: .15s;
  opacity: 0;
  visibility: hidden;
}

.modal-form__btn {
  margin-top: 26px;
  display: block;
  width: 100%;
  max-width: 265px;
  margin-left: auto;
  margin-right: auto;
}

.modal-form__meta {
  margin-top: 8px;
  font-size: 17px;
}

.modal-form__order {
  margin-top: 30px;
}

.modal-form__order + .modal-form__form {
  margin-top: 24px;
}

.catalog-category {
  margin-bottom: 16px;
}

.catalog-category__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 32px;
}

.catalog-category__row {
  width: calc(100% + 20px);
  margin-left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.catalog-category__col {
  width: 11.11111%;
  margin-bottom: 34px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.catalog-category__col:hover .catalog-category__sub {
  color: #1F67B3;
}

.catalog-category__item {
  display: inline-block;
}

.catalog-category__icon {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.catalog-category__sub {
  font-size: 15px;
  text-align: center;
  margin-top: 2px;
  -webkit-transition: .3s;
  transition: .3s;
}

.catalog-category--select .catalog-category__title {
  margin-bottom: 20px;
}

.catalog-category--select .catalog-category__col {
  position: relative;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  padding-top: 12px;
  padding-bottom: 16px;
  cursor: pointer;
  border-radius: 7px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.catalog-category--select .catalog-category__col:hover {
  background-color: #F4F4F4;
}

.catalog-category--select .catalog-category__col:hover .catalog-category__sub {
  color: #1F67B3;
}

.catalog-category--select .catalog-checkbox:checked + .catalog-category__col {
  background-color: #1F67B3;
}

.catalog-category--select .catalog-checkbox:checked + .catalog-category__col .catalog-category__sub {
  color: #fff;
}

.catalog-category--select .catalog-checkbox:checked + .catalog-category__col svg path {
  fill: #fff;
}

.catalog-category--select .catalog-checkbox:checked + .catalog-category__col svg.stroke path {
  stroke: #fff;
}

.catalog-category--select svg path {
  -webkit-transition: .3s;
  transition: .3s;
}

.catalog-list__title {
  font-weight: 600;
  font-size: 26px;
}

.catalog-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 34px;
}

.catalog-list__col {
  margin-bottom: 50px;
  width: 25%;
}

.catalog-list__item {
  border: 1px solid rgba(31, 103, 179, 0.35);
  padding: 10px 30px 112px;
  text-align: center;
  height: 100%;
  position: relative;
}

.catalog-list__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 300px;
}

.catalog-list__sub {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.catalog-list__desc {
  font-size: 15px;
  margin-top: 6px;
}

.catalog-list__price {
  font-weight: 600;
  font-size: 20px;
  margin-top: 14px;
}

.catalog-list__btn {
  display: block;
  text-align: center;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 34px;
}

.catalog-list__banner .catalog-list__item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: center;
  padding-bottom: 34px;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  border: 0;
}

.catalog-list__banner .catalog-list__item span {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
}

.catalog-list__zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: url(../img/zoom.svg) center center no-repeat;
  background-size: contain;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.catalog-list__zoom:hover {
  opacity: .6;
}

.main-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.main-pagination__arr img {
  height: 30px;
}

.main-pagination__arr:first-child {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-pagination__arr span img {
  opacity: .4;
}

.main-pagination__arr a, .main-pagination__arr span {
  display: inline-block;
  padding: 0 10px;
}

.main-pagination__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  margin: 0 30px;
}

.main-pagination__row span {
  color: #1F67B3;
  font-weight: 600;
}

.main-pagination__row span, .main-pagination__row a {
  display: inline-block;
  padding: 4px;
  margin-right: 20px;
}

.main-pagination__row span:last-child, .main-pagination__row a:last-child {
  margin-right: 0;
}

.category-correction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -8px;
  margin-bottom: 40px;
}

.category-correction__col {
  margin-right: 15px;
  margin-bottom: 15px;
}

.category-correction__col:last-child {
  margin-right: 0;
}

.category-correction__input {
  width: 140px;
  font-size: 15px;
  text-align: center;
  border: 1px solid rgba(31, 103, 179, 0.35);
  padding: 12px 15px;
}

.category-correction__block {
	padding: 13px 21px;
	font-size: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	border: 1px solid rgba(31, 103, 179, 0.35);
}
.catalog-checkbox:checked + .category-correction__block {
  background-color: #F4F4F4;
  border-color: #F4F4F4;
  color: #1F67B3;
}

.category-correction__block img {
  margin-left: 9px;
  margin-top: 2px;
  display: none;
}
.catalog-checkbox:checked + .category-correction__block img {
  display: inline-block;
}

.cart-header {
  background-color: #F4F4F4;
  padding: 17px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 140px;
}

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

.cart-header__row .cart-header__item {
  text-align: center;
}

.cart-header__row .cart-header__item:first-child, .cart-header__row .cart-header__item:last-child {
  width: 108px;
}

.cart-header__row .cart-header__item:nth-child(2) {
  width: 92px;
  margin: 0 60px;
}

.cart-header__item {
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cart-item {
  border-bottom: 1px solid #1F67B3;
  padding-bottom: 24px;
  padding-top: 24px;
}

.cart-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-right: 140px;
}

.cart-item__remove {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/form-close.svg) center center no-repeat;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 1;
}

.cart-item__remove:hover {
  opacity: .6;
}

.cart-item__desc {
  font-size: 14px;
  line-height: 20px;
  margin-top: 24px;
}

.cart-item__desc span {
  color: #E3000B;
}

.cart-item__table {
  margin-top: 8px;
}

.cart-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
}

.cart-meta__price {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  width: 108px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cart-meta__price span {
  color: #E3000B;
}

.cart-meta__count {
  margin: 0 60px;
}

.cart-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.cart-info__img {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 24px;
  border: 1px solid rgba(31, 103, 179, 0.35);
  min-height: 100%;
}

.cart-info__sub {
  font-weight: 600;
  font-size: 20px;
}

.cart-info__sub--hide {
  display: none;
}

.cart-info__desc {
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 32px;
}

.cart-info__col {
  padding-top: 10px;
}

.cart-info__col p {
  font-size: 14px;
  margin-top: 14px;
  line-height: normal;
  vertical-align: middle;
}

.cart-info__col p b {
  font-weight: 600;
  margin-right: 4px;
}

.cart-info__col p u {
  word-break: break-all;
}

.cart-info__color {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 10px;
}

.cart-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
}

.cart-count__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 58px;
}

.cart-count__sub {
  font-weight: 600;
  font-size: 24px;
}

.cart-count__col {
  margin-left: 12px;
  padding-top: 4px;
}

.cart-count__col p {
  margin-bottom: 7px;
  font-size: 18px;
  margin-top: 0 !important;
  line-height: normal !important;
  white-space: nowrap;
}

.cart-count__col p b {
  font-weight: 600;
}

.cart-count__col p:last-child {
  margin-bottom: 0;
}

.cart-count__btn {
  width: 100%;
  max-width: 283px;
  text-align: center;
}

.see-also {
  margin-top: 160px;
}

.goods-slider {
  position: relative;
  margin-top: 50px;
}

.goods-slider .slider-prev {
  left: 1px;
}

.goods-slider .slider-next {
  right: 1px;
}

.price-table {
  display: inline-block;
  position: relative;
  z-index: 97;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.price-table:hover .price-table__block {
  opacity: 1;
  visibility: visible;
}

.price-table a {
  font-size: 14px;
  border-bottom: 1px dashed #171717;
}

.price-table__block {
  width: 800px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.23);
          box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.23);
  padding: 20px 14px 15px;
  -webkit-transition: .2s;
  transition: .2s;
  opacity: 0;
  visibility: hidden;
}

.price-table__block::before {
  content: '';
  position: absolute;
  left: 14px;
  bottom: 100%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #fff;
}

.price-table__desc {
  font-size: 12px;
  margin-top: 14px;
}

.price-table__desc span {
  color: #E3000B;
}

.price-table__table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}

.price-table__table tr {
  border-bottom: 1px solid #f1f2f2;
}

.price-table__table tr:first-child {
  background-color: #f1f2f2;
}

.price-table__table tr:first-child td {
  font-weight: 700;
}

.price-table__table tr td {
  padding: 10px 8px;
  font-size: 13px;
}

.price-table__table tr td b {
  font-weight: 700;
}

.price-table__table tr td:first-child {
  font-weight: 700;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card-gallery {
  width: calc(100% / 12 * 5);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.card-gallery__thumbs {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 30px;
}

.card-gallery__item {
  width: 93px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  background-color: #fff;
  position: relative;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: border .2s;
  transition: border .2s;
}

.card-gallery__item img {
  width: 100%;
}

.card-gallery__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(196, 196, 196, 0.35);
  -webkit-transition: .2s;
  transition: .2s;
}

.card-gallery__item.swiper-slide-thumb-active {
  border: 1px solid #1F67B3;
}

.card-gallery__item.swiper-slide-thumb-active::before {
  opacity: 0;
  visibility: hidden;
}

.card-gallery__pic {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid rgba(31, 103, 179, 0.35);
}

.card-gallery__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  padding: 10px;
}

.card-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card-info__title {
  font-weight: 600;
  font-size: 40px;
}

.card-info__title--hide {
  display: none;
  margin-bottom: 20px;
}

.card-info__sub {
  font-size: 18px;
  margin-top: 16px;
}

.card-info__price {
  margin-top: 34px;
  font-size: 22px;
}

.card-info__price span {
  font-weight: 600;
  font-size: 26px;
  margin-right: 10px;
}

.card-info__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 26px;
}

.card-info__tags span, .card-info__tags a {
  border: 1px solid #E9E9E9;
  color: #8F8F8F;
  font-size: 14px;
  display: block;
  padding: 5px 7px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.card-info__tags a:hover {
	color: #171717;
	border-color: rgba(31, 103, 179, 0.35);
}

.card-info__tags span:last-child {
  margin-right: 0;
}

.card-info__size-table {
  margin-top: 15px;
}

.card-info__size-table a {
  font-size: 14px;
  border-bottom: 1px dashed #171717;
  display: inline-block;
}

.card-info__item {
  position: relative;
  padding-top: 23px;
  border-top: 1px solid rgba(31, 103, 179, 0.35);
  margin-top: 22px;
}

.card-info__item--clone {
    display: none;
}

.card-info__item .price-table {
  margin-bottom: 0;
}

.card-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.card-info__remove {
  position: absolute;
  right: 0;
  top: -1px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  width: 12px;
  height: 12px;
  background: url(../img/form-close.svg) center center no-repeat;
  background-size: 12px;
  border: 1px solid rgba(31, 103, 179, 0.35);
  border-top: 0;
  width: 24px;
  height: 24px;
}

.card-info__remove:hover {
  opacity: .65;
}

.card-info__file-select {
  margin-bottom: 14px;
}

.card-info__file-select .list .option:first-child {
  display: none;
}

.card-info__select .list {
  width: calc(100% + 2px);
  left: -1px;
}

.card-info__file-col {
  width: 185px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.card-info__file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    word-break: break-all;
    font-size: 12px;
    line-height: 16px;
    border: 1px solid rgba(31, 103, 179, 0.35) !important;
    padding: 12px 10px 11px 10px;
    cursor: pointer;
}

.card-info__file img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 5px;
}

.card-info__size {
  width: 145px;
}

.card-info__type {
  width: 244px;
}

.card-info__price-count {
  font-size: 18px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-info__price-count span {
  color: #E3000B;
}

.card-info__count input[type="text"] {
  font-weight: 400;
}

.card-info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 38px;
}

.card-info__wrap .card-info__it:last-child {
  margin-right: 0;
}

.card-info__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
}

.card-info__col > span {
  font-size: 16px;
  margin-bottom: 12px;
  display: block;
}

.card-info__gallery {
  border: 1px solid rgba(31, 103, 179, 0.35);
  padding: 16px 18px 32px;
  max-width: 120px;
  position: relative;
  margin-left: 0;
  margin-right: 0;
}

.card-info__arrows {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 8px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.card-info__prev {
  width: 16px;
  height: 16px;
  background: url(../img/select-arr.svg) center center no-repeat;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  cursor: pointer;
  margin-right: 12px;
}

.card-info__prev.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.card-info__next {
  width: 16px;
  height: 16px;
  background: url(../img/select-arr.svg) center center no-repeat;
  background-size: contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  cursor: pointer;
}

.card-info__next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.card-info__desc {
  margin-top: 14px;
  font-size: 14px;
  line-height: 20px;
}

.card-info__desc span {
  color: #E3000B;
}

.card-info__add {
  font-size: 17px;
  color: #1F67B3;
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 27px;
  -webkit-transition: .3s;
  transition: .3s;
  margin-top: 30px;
}

.card-info__add:hover {
  opacity: .65;
}

.card-info__add::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  background: url(../img/plus.svg) center center no-repeat;
  background-size: contain;
}

.card-info__add span, .card-info__add a {
  display: inline;
  border-bottom: 1px dashed rgba(31, 103, 179, 0.5);
}

.card-info__check-group .card-checkbox span {
  color: rgba(23, 23, 23, 0.6);
}

.card-info__check-group .card-checkbox span::before {
  border: 2px solid rgba(31, 103, 179, 0.35);
  border-radius: 2px;
  background: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.card-info__check-group .card-checkbox input:checked + span {
  color: #171717;
}

.card-info__it {
  margin-right: 30px;
}

.card-info__it--price {
  margin-right: 0;
  margin-left: 50px;
}

.card-info__it p {
  color: #8F8F8F;
  margin: 0;
  line-height: 1;
  font-size: 13px;
  margin-bottom: 8px;
}

.card-info__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
}

.card-info__colors label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: relative;
  padding: 4px;
}

.card-info__colors label input {
  display: none;
}

.card-info__colors label input:checked + span::before {
  background-color: #919191;
}

.card-info__colors label span {
  width: 20px;
  height: 20px;
  display: block;
  -webkit-transition: border-color .15s;
  transition: border-color .15s;
  border-radius: 50%;
}

.card-info__colors label span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  z-index: -1;
  border-radius: 50%;
}

.card-info__select .list {
  background: #e9f0f8;
}

.card-info__select .list .option {
  padding: 8px 15px;
  font-size: 15px;
  line-height: normal;
  height: auto;
  color: rgba(23, 23, 23, 0.7);
  background: none !important;
}

.card-info__select .list .option.selected {
  color: #171717;
}

.card-info__select .list .option:hover {
  color: #171717;
}

.card-checkbox {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.card-checkbox input {
  display: none;
}

.card-checkbox input:checked + span {
  color: #171717;
}

.card-checkbox input:checked + span::after {
  opacity: 1;
  visibility: visible;
}

.card-checkbox span {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  -webkit-transition: color .1s;
  transition: color .1s;
  color: rgba(23, 23, 23, 0.6);
}

.card-checkbox span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: url(../img/checkbox-1.svg) center center no-repeat;
  background-size: contain;
}

.card-checkbox span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: url(../img/checkbox-2.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: .1s;
  transition: .1s;
  opacity: 0;
  visibility: hidden;
}

.card-order {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card-order__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 283px;
}

.card-order__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 19px 10px;
}

.card-order__form-btn {
  margin-top: 25px;
  text-align: center;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #1F67B3;
  background-color: transparent;
  color: #1F67B3;
}

.card-order__form-btn:hover {
  background-color: #1F67B3;
  color: #fff;
}

.card-order__meta {
  margin-left: 24px;
  padding-top: 4px;
}

.card-order__item {
  font-size: 18px;
  margin-bottom: 6px;
}

.card-order__item:last-child {
  margin-bottom: 0;
}

.crad-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F4F4F4;
  margin-top: 40px;
  margin-bottom: 25px;
}

.crad-tabs__item {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  width: 215px;
  text-align: center;
  padding: 16px 15px 14px;
  border-bottom: 2px solid transparent;
  -webkit-transition: .3s;
  transition: .3s;
  margin-right: 30px;
}

.crad-tabs__item:last-child {
  margin-right: 0;
}

.crad-tabs__item:hover {
  color: #1F67B3;
}

.crad-tabs__item.active {
  border-bottom: 2px solid #1F67B3;
  color: #1F67B3;
}

.tab-block {
  display: none;
}

.tab-block p {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 0 !important;
  line-height: normal !important;
}

.tab-block p:last-child {
  margin-bottom: 0;
}

.tab-block ul {
  margin-bottom: 20px;
}

.tab-block ul:last-child {
  margin-bottom: 0;
}

.modal-table {
  display: none;
  padding: 20px 15px;
}

.modal-table__scroll {
  overflow-x: auto;
  padding-bottom: 20px;
}

.modal-table__scroll::-webkit-scrollbar {
  width: 6px;
  height: 12px;
  background-color: #e4e4e4;
  border-radius: 10px;
}

.modal-table__scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #1F67B3;
}

.modal-table .price-table__block {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

.modal-table .fancybox-close-small {
  display: none;
}

.file-wrap input {
  display: none;
}

@media (max-width: 1440px) {
  .price-table__block {
    width: 600px;
  }
  .card-gallery {
    width: calc(100% / 12 * 4);
  }
}

@media (max-width: 1300px) and (min-width: 992px) {
  .header__tel {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 180px;
  }
  .header__tel a {
    margin-right: 0;
    margin-bottom: 4px;
    display: inline-block;
  }
  .header__tel a:last-child {
    margin-bottom: 0;
  }
  .nav.fixed .nav__catalog {
    left: 230px !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .nav.fixed .nav-drop {
    left: -215px !important;
  }
  .nav.fixed .nav-drop::before {
    left: 213px !important;
  }
}

@media (max-width: 1199px) {
  .footer__politic {
    margin-left: 0;
  }
  .footer__logo {
    padding-right: 0;
  }
  .footer__bottom {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
  .header__email, .header-cart {
    margin-left: 30px;
  }
  .header__tel a, .header__email a {
    font-size: 14px;
  }
  .header-cart span {
    font-size: 13px;
  }
  .header-cart b {
    font-size: 14px;
  }
  .nav__list {
    margin-left: 40px;
  }
  .catalog-category__col {
    width: 16.6666%;
  }
  .catalog-category--select .catalog-category__col {
    width: calc(16.6666% - 5px);
  }
  .catalog-list__col {
    width: 33.3333%;
  }
  .cart-item__row {
    padding-right: 60px;
  }
  .cart-header {
    padding-right: 60px;
  }
  .cart-meta__count {
    margin: 0 30px;
  }
  .cart-header__row .cart-header__item:nth-child(2) {
    margin: 0 30px;
  }
  .card-gallery {
    display: block;
  }
  .card {
    display: block;
  }
  .card-gallery__thumbs {
    margin-top: 15px;
    margin-right: 0;
  }
  .card-info__it--price {
    margin-left: 0;
  }
  .card-info__title {
    font-size: 36px;
  }
  .price-table__block {
    width: 540px;
  }
  .card-info__title {
    display: none;
  }
  .card-info__title--hide {
    display: block;
  }
  .card-info {
    margin-top: 30px;
  }
  .card-info__price {
    margin-top: 16px;
  }
  .card-gallery {
    width: 100%;
    margin-right: 0;
    max-width: 400px;
  }
}

@media (min-width: 992px) {
  .print-method__slider .slider-prev, .print-method__slider .slider-next {
    display: none;
  }
  .nav__catalog:hover .nav-drop {
    opacity: 1;
    visibility: visible;
  }
  .nav-drop {
    padding: 44px 32px 14px;
    background-color: #fff;
    position: absolute;
    top: calc(100% + 15px);
    left: -15px;
    -webkit-box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.35);
            box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.35);
    -webkit-transition: .4s;
    transition: .4s;
    width: 940px;
    opacity: 0;
    visibility: hidden;
    z-index: 98;
  }
  .nav-drop::before {
    content: '';
    position: absolute;
    left: 14px;
    bottom: 100%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #fff;
  }
  .nav-drop__title {
    margin-bottom: 5px;
  }
  .nav-drop__title > span {
    display: block;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
  }
  .nav-drop__title:last-child {
    margin-bottom: 0;
  }
  .nav-drop__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .nav-drop__icon {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav-drop__sub {
    margin-top: 1px;
    font-size: 15px;
    line-height: 17px;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .nav-drop__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
    width: 16.66666%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .nav-drop__item {
    display: inline-block;
    text-align: center;
  }
  .nav-drop__item:hover .nav-drop__sub {
    color: #1F67B3;
  }
  .nav--blue {
    background-color: #1F67B3;
    border-top-color: #fff;
  }
  .nav--blue .nav__burger span {
    background-color: #fff !important;
  }
  .nav--blue .nav__item {
    color: #fff;
  }
  .nav--blue .nav__item a {
    color: #fff;
  }
  .nav--blue .nav__item a:hover {
    color: #fff;
  }
  .nav--blue .nav__sub {
    color: #fff !important;
  }
  .compensate-for-scrollbar .header.fixed {
    width: calc(100% - 17px);
  }
  .compensate-for-scrollbar .nav.fixed .nav__catalog {
    margin-left: -9px;
  }
  .nav.fixed .nav__catalog {
    position: fixed;
    left: calc(50% - 400px);
    top: 32px;
    z-index: 98;
  }
  .nav-drop {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }
  .nav-drop__list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    height: auto !important;
    overflow: visible !important;
  }
}

@media (max-width: 991px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 20px;
  }
  .footer__cop {
    margin-top: 36px;
    text-align: center;
  }
  .footer__main {
    display: none;
  }
  .footer__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__soc {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 0;
  }
  .footer__row {
    position: relative;
    padding-bottom: 88px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__tel, .footer__email {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__email {
    bottom: 0;
  }
  .footer__col {
    padding-top: 0;
  }
  .footer__hide {
    display: block;
  }
  .slider-prev, .slider-next {
    width: 38px;
    height: 38px;
    background-size: 10px;
  }
  .equipment__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .equipment__img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .equipment__container {
    padding: 0 42px;
    margin-top: 30px;
  }
  .print-method__col {
    width: 50%;
  }
  .print-method__item {
    margin-bottom: 0;
  }
  .product__col {
    width: 50%;
  }
  .product__col:nth-last-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .product__col--large {
    width: 100%;
  }
  .product {
    margin-top: 80px;
  }
  .advantage__col {
    width: 50%;
  }
  .advantage {
    margin-top: 100px;
  }
  .projects__title {
    font-size: 32px;
    bottom: 26px;
  }
  .about__item {
    display: block;
  }
  .about__content {
    padding-right: 0;
    width: 100%;
    margin-top: 20px;
  }
  .about__img {
    width: 100%;
  }
  .about__slider .slider-prev, .about__slider .slider-next {
    top: 25vw;
  }
  .about__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 70px;
  }
  .about__col {
    width: 50%;
  }
  .projects {
    margin-top: 70px;
  }
  .about__desc {
    font-size: 22px;
  }
  .sport-list__item {
    width: 33.3333%;
  }
  .top-section h1 {
    font-size: 38px;
    line-height: 54px;
  }
  .top-section p {
    font-size: 18px;
  }
  .top-section {
    height: auto;
    padding: 100px 0;
  }
  .header__col {
    display: none;
  }
  .nav__row {
    display: block;
  }
  .nav__list {
    margin-left: 0;
    display: block;
    margin-top: 20px;
  }
  .nav__burger {
    display: none;
  }
  .nav__item {
    margin-top: 17px;
  }
  .nav {
    padding-top: 70px;
    padding-bottom: 60px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border: 0;
    max-height: 100%;
    overflow-y: auto;
    -webkit-box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.35);
            box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.35);
    z-index: 98;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    margin-top: -22px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .nav.active {
    margin-top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .nav__wrap {
    background-color: #1F67B3;
    padding: 12px 15px;
    cursor: pointer;
    position: relative;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .nav__wrap::before, .nav__wrap::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #fff;
    top: calc(50% - 1px);
    right: 15px;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .nav__wrap::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .nav__wrap.active::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .nav__sub {
    color: #fff !important;
  }
  .nav-drop {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .nav-drop .nav-drop__icon {
    display: none;
  }
  .nav-drop__title > span {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    background-color: #D2D2D2;
    padding: 12px 15px;
    display: block;
    position: relative;
    cursor: pointer;
    padding-right: 45px;
  }
  .nav-drop__title > span::before, .nav-drop__title > span::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #171717;
    top: calc(50% - 1px);
    right: 15px;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .nav-drop__title > span::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .nav-drop__title > span.active::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .nav-drop__item {
    display: block;
    padding-left: 35px;
    padding-right: 15px;
    margin-top: 15px;
    margin-left: -15px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .nav-drop__col:last-child .nav-drop__item {
    margin-bottom: 0;
  }
  .nav-drop__title:last-child .nav-drop__list {
    margin-bottom: 0;
  }
  .nav-drop__list {
    display: none;
    margin-bottom: 15px;
  }
  .nav__close {
    display: block;
  }
  .nav__tel, .nav__email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
    max-width: none;
    width: auto;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__logo img {
    max-width: 134px;
  }
  .header__burger {
    display: block;
  }
  .header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
            box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
  }
  body {
    padding-top: 72px !important;
  }
  .catalog-category__col {
    width: 20%;
  }
  .catalog-category--select .catalog-category__col {
    width: calc(20% - 5px);
  }
  .catalog-list__col {
    width: 50%;
  }
  .cart-header {
    display: none;
  }
  .cart-item__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 40px;
    padding-left: 40px;
  }
  .cart-item__remove {
    -webkit-transform: none;
            transform: none;
    top: 5px;
  }
  .cart-meta {
    margin-left: 0;
    margin-top: 20px;
  }
  .cart-item {
    padding-top: 0;
    margin-bottom: 24px;
  }
  .see-also {
    margin-top: 100px;
  }
  .price-table__block {
    display: none !important;
  }
  .card {
    display: block;
  }
  .card-info__title {
    display: none;
  }
  .card-info__title--hide {
    display: block;
  }
  .card-info {
    margin-top: 30px;
  }
  .card-info__price {
    margin-top: 16px;
  }
  .card-gallery {
    width: 100%;
    margin-right: 0;
    max-width: 400px;
  }
  .modal-table .price-table__block {
    display: block !important;
    width: 760px;
  }
  .card-info__row, .card-info__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
  }
  .card-info__it {
    width: calc(50% - 30px);
    margin-right: 0;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .card-info__select {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .print-method__slider .slider-prev, .print-method__slider .slider-next {
    top: 33vw;
  }
  .catalog-category__col {
    width: 25%;
  }
  .catalog-category--select .catalog-category__col {
    width: calc(25% - 5px);
  }
  .catalog-list__item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cart-count {
    display: block;
  }
  .cart-count__meta {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .crad-tabs__item {
    width: 33.333%;
    font-size: 13px;
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .footer__logo {
    width: 120px;
  }
  .footer__icon {
    margin-left: 10px;
  }
  .footer__tel, .footer__email {
    font-size: 14px;
  }
  .footer__hide {
    font-size: 14px;
  }
  .footer__politic {
    font-size: 14px;
  }
  .footer__cop {
    font-size: 13px;
  }
  .footer {
    padding-top: 30px;
    padding-bottom: 26px;
  }
  .documents__slider {
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .documents {
    padding-bottom: 0;
    margin-top: 50px;
  }
  .footer {
    margin-top: 50px;
  }
  .index-form {
    padding: 55px 0;
    background-size: 190px;
    margin-top: 48px;
  }
  .index-form__title {
    letter-spacing: 0.02em;
    font-size: 20px;
    line-height: 30px;
  }
  .index-form__label {
    width: 100%;
  }
  .index-form__checkbox span {
    font-size: 13px;
    line-height: 18px;
  }
  .index-form__btn {
    margin-top: 40px;
    width: 100%;
  }
  .index-form__desc {
    font-size: 13px;
    line-height: 18px;
    margin-top: 46px;
  }
  .index-form__row {
    margin-top: 30px;
  }
  .section-title h2 {
    font-size: 23px;
  }
  .section-title h2::before {
    right: calc(100% + 10px);
  }
  .section-title h2::after {
    left: calc(100% + 10px);
  }
  .equipment__side {
    border-left: 0;
    border-right: 0;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 20px 15px;
    font-size: 15px;
    line-height: 22px;
    margin-top: 34px;
  }
  .equipment__container {
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .equipment__container .slider-prev, .equipment__container .slider-next {
    top: 20vw;
  }
  .equipment__content p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 22px;
  }
  .equipment__desc {
    margin-top: 15px;
  }
  .print-method__title {
    font-size: 16px;
  }
  .print-method__slider {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-top: 20px;
  }
  .equipment {
    margin-top: 64px;
  }
  .print-method__desc {
    font-size: 14px;
    line-height: 21px;
  }
  .print-method__slider .slider-prev, .print-method__slider .slider-next {
    top: 38vw;
  }
  .print-method {
    margin-top: 60px;
  }
  .product__row {
    display: block;
    margin-top: 20px;
  }
  .product__col {
    width: 100%;
    margin-bottom: 5px;
  }
  .product__col--large .product__item {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .product__item {
    position: static;
  }
  .product__col {
    position: relative;
  }
  .product__title span {
    border: 0 !important;
    padding: 0;
  }
  .product__col--large {
    padding-bottom: 55%;
  }
  .product__col--large .product__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 !important;
  }
  .product__col--large .product__img img {
    display: none;
  }
  .product__img {
    margin-left: -15px;
    margin-right: -15px;
  }
  .product__title {
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    font-size: 17px;
    line-height: 23px;
  }
  .advantage__row {
    margin-left: 0;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
  .advantage__col {
    padding: 0;
    width: calc(50% - 7px);
    margin-bottom: 14px;
  }
  .advantage__item {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .advantage__icon {
    height: 60px;
  }
  .advantage__icon img {
    max-width: none;
    max-height: 100%;
  }
  .advantage__title {
    font-size: 13px;
    line-height: 20px;
    margin-top: 8px;
  }
  .product {
    margin-top: 42px;
  }
  .projects__title {
    position: static;
    font-size: 16px;
    line-height: 32px;
    color: #171717;
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .projects__slider {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-top: 22px;
  }
  .projects__slider .slider-prev, .projects__slider .slider-next {
    top: 22vw;
  }
  .advantage {
    margin-top: 66px;
  }
  .about__slider {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-top: 22px;
  }
  .about__content {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 18px;
  }
  .about__content p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .about__banner {
    margin-top: 24px;
    font-size: 15px;
    line-height: 22px;
    padding: 26px 15px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .about__col {
    width: 100%;
    margin-bottom: 50px;
  }
  .about__row {
    margin-top: 52px;
  }
  .about__num {
    font-size: 47px;
    line-height: 35px;
  }
  .about__desc {
    font-size: 19px;
  }
  .projects {
    margin-top: 10px;
  }
  .sport-list__item {
    width: 50%;
    margin-bottom: 44px;
  }
  .sport-list__icon {
    height: 76px;
  }
  .sport-list__icon img {
    max-width: none;
    max-height: 100%;
  }
  .sport-list__title {
    font-size: 14px;
    margin-top: 12px;
  }
  .about {
    margin-top: 20px;
  }
  .sport-list {
    margin-top: 30px;
  }
  .top-section h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .top-section p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 14px;
  }
  .top-section__btn {
    width: 100%;
    margin-top: 34px;
  }
  .top-section {
    padding: 90px 0;
  }
  .nav__tel {
    font-size: 15px;
  }
  .nav__tel a {
    margin-left: 12px;
  }
  .header__mob-cart {
    margin-left: 15px;
  }
  .post-title {
    font-size: 27px;
  }
  .breadcrumbs {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .breadcrumbs a::before {
    font-size: 15px;
    bottom: 0;
  }
  .breadcrumbs span {
    font-size: 13px;
  }
  .breadcrumbs span:last-child {
    font-size: 12px;
  }
  .post-content p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 20px;
  }
  .gallery-slider {
    margin-bottom: 28px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .modal-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .modal-form__btn {
    max-width: 100%;
  }
  .catalog-category__col {
    width: 50%;
  }
  .catalog-category--select .catalog-category__col {
    width: calc(50% - 5px);
  }
  .catalog-list__col {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .catalog-list__btn {
    left: 15px;
    right: 15px;
  }
  .main-pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
  .main-pagination__row {
    margin: 0 10px;
  }
  .main-pagination__row span, .main-pagination__row a {
    margin-right: 15px;
  }
  .catalog-list__banner {
    display: none;
  }
  .cart-info {
    display: block;
  }
  .cart-info__sub {
    display: none;
  }
  .cart-info__sub--hide {
    display: block;
  }
  .cart-item__row {
    display: block;
    padding-left: 0;
  }
  .cart-info__img {
    margin-right: 0;
    margin-top: 18px;
  }
  .cart-meta .cart-meta__price:first-child {
    display: none;
  }
  .cart-meta__count {
    margin-left: 0;
    margin-right: 20px;
  }
  .post-content p {
    margin-top: 15px;
    line-height: 22px;
  }
  .cart-info__desc {
    margin-top: 16px;
    margin-bottom: 20px;
  }
  .cart-info__sub {
    font-size: 17px;
  }
  .cart-item__desc {
    font-size: 12px;
  }
  .cart-info__col {
    padding-top: 0;
  }
  .cart-count__btn {
    max-width: 100%;
  }
  .cart-count__sub {
    font-size: 20px;
  }
  .cart-count__col {
    padding-top: 3px;
  }
  .see-also {
    margin-top: 80px;
  }
  .cart-item__remove {
    top: 3px;
  }
  .card-info__select {
    margin-right: 0;
    margin-left: 0;
    width: calc(100% - 30px);
    min-width: calc(100% - 30px);
  }
  .card-info__price-count {
    font-size: 16px;
    margin-left: 15px;
  }
  .card-info__row {
    padding-right: 0;
  }
  .card-info__desc {
    font-size: 12px;
    line-height: 18px;
  }
  .card-info__price {
    font-size: 16px;
  }
  .card-info__price span {
    font-size: 18px;
  }
  .card-order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .card-order__meta {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .card-order__col {
    max-width: 100%;
  }
  .card-info__title {
    font-size: 24px;
  }
  .crad-tabs {
    display: block;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .crad-tabs__item {
    display: block;
    width: 100%;
    font-size: 15px;
  }
  .post-content ul li {
    font-size: 15px;
    line-height: 20px;
  }
  .card-info__it {
    width: 100%;
  }
  .card-info__it p {
    margin-top: 0;
  }
  .card-info__colors, .card-info__price-count {
    margin-left: 0;
    height: auto;
  }
  .card-info__select {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
  }
  .card-info__item {
    margin-top: 50px;
  }
}
