.modal,
.modal_screen {
  position: fixed;
  z-index: 1000;
}
.modal_screen {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.modal {
  visibility: hidden;
}
.modal-open {
  visibility: visible;
}
.modal-open + .modal_screen {
  display: block;
}
.modal-open {
  z-index: 1001;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5vh;
  top: 10vh;
  left: 10vw;
  height: 80vh;
  width: 80vw;
  overflow: auto;
}
.modal_close {
  position: absolute;
  top: 1vh;
  right: 1vh;
  border: none;
  cursor: pointer;
  background: transparent;
  margin: 0;
  font-size: 1.4rem;
  width: 1.4em;
  height: 1.4em;
  line-height: 1;
  overflow: hidden;
  text-indent: -999px;
}
.modal_close:after,
.modal_close:before {
  content: '';
  height: 1em;
  width: 0.1em;
  top: 0.2em;
  left: 0.65em;
  background: #777;
  position: absolute;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal_close:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
[inert] {
  pointer-events: none;
  cursor: default;
}
[inert],
[inert] * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Montserrat-Regular.woff) format('woff'),
    url(../fonts/Montserrat-Regular.woff2) format('woff2');
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Montserrat-SemiBold.woff) format('woff'),
    url(../fonts/Montserrat-SemiBold.woff2) format('woff2');
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Montserrat-Bold.woff) format('woff'),
    url(../fonts/Montserrat-Bold.woff2) format('woff2');
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Montserrat-ExtraBold.woff) format('woff'),
    url(../fonts/Montserrat-ExtraBold.woff2) format('woff2');
  font-display: swap;
}
@font-face {
  font-family: Cepra;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Cepra.woff) format('woff');
  font-display: swap;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  font-size: 16px;
}
@media (max-width: 1439px) {
  :root {
    font-size: 14px;
  }
}
html {
  scroll-behavior: smooth;
}
body,
html {
  margin: 0;
  padding: 0;
}
body {
  min-width: 320px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.2em;
  color: #1a3d60;
  overflow-x: hidden;
  background: #f8f8f8;
}
body.overflow {
  overflow: hidden;
  height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  font: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:focus,
  a:hover {
    outline: none;
    text-decoration: none;
  }
}
.content {
  padding: 0 20px;
  max-width: 1535px;
}
h1,
h2,
h3 {
  line-height: 1.3em;
  font-size: 33px;
}
@media (max-width: 999px) {
  h1,
  h2,
  h3 {
    font-size: 24px;
  }
}
abbr {
  font-family: Cepra, sans-serif;
}
abbr,
abbr[title] {
  text-decoration: none;
}
button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: transparent;
}
p {
  margin-top: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.green {
  color: #78b848;
}
.blue {
  color: #4581df;
}
.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}
.button {
  display: inline-block;
  text-decoration: none;
  background: #4581df;
  border-radius: 5px;
  border: none;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  padding: 17px;
  text-align: center;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media (hover: hover) and (pointer: fine) {
  .button:focus {
    outline: 2px solid #1a3d60;
  }
  .button:hover {
    -webkit-box-shadow: 0 0 30px #4581df;
    box-shadow: 0 0 30px #4581df;
  }
}
.button--second {
  background: #1a3d60;
}
input:not([type='number']):not([type='checkbox']):not([type='radio']) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 15px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #1a3d60;
  border: 2px solid #dadada;
  border-radius: 5px;
}
@media (max-width: 999px) {
  input:not([type='number']):not([type='checkbox']):not([type='radio']) {
    padding: 9px 13px;
  }
}
@media (max-width: 767px) {
  input:not([type='number']):not([type='checkbox']):not([type='radio']) {
    padding: 7px 11px;
  }
}
input:not([type='number']):not([type='checkbox']):not(
    [type='radio']
  )::-webkit-input-placeholder {
  font-weight: 500;
  font-family: inherit;
}
input:not([type='number']):not([type='checkbox']):not(
    [type='radio']
  )::-moz-placeholder {
  font-weight: 500;
  font-family: inherit;
}
input:not([type='number']):not([type='checkbox']):not(
    [type='radio']
  ):-ms-input-placeholder {
  font-weight: 500;
  font-family: inherit;
}
input:not([type='number']):not([type='checkbox']):not(
    [type='radio']
  )::-ms-input-placeholder {
  font-weight: 500;
  font-family: inherit;
}
input:not([type='number']):not([type='checkbox']):not(
    [type='radio']
  )::placeholder {
  font-weight: 500;
  font-family: inherit;
}
input[type='number'] {
  -moz-appearance: textfield;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='search'] {
  -webkit-appearance: searchfield;
}
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
.search {
  position: relative;
}
.search__input {
  width: 100%;
  background: #fff;
}
.search__submit {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  font-family: Cepra, sans-serif;
  font-size: 26px;
  line-height: 26px;
  color: inherit;
  padding: 0;
  background: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .search__submit:hover {
    color: #78b848;
  }
  .search__submit:focus {
    outline: 2px solid #4581df;
  }
}
.select-label {
  position: relative;
}
.select-label span {
  padding: 0 4px;
  position: absolute;
  color: #78b848;
  font-size: 14px;
  background: #fff;
  display: block;
  left: 12px;
  top: -7px;
  letter-spacing: 0.5px;
}
.select {
  border: 2px solid #4581df;
  border-radius: 5px;
  background: url(../img/icon.png) no-repeat 95%;
  -webkit-appearance: none;
}
.custom-select {
  min-width: 122px;
}
.custom-select,
.custom-select__label {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.custom-select__label {
  top: 10px;
  left: 12px;
  background: #fff;
  font-size: 14px;
  padding: 0 4px;
  margin-bottom: 0;
  margin-right: 50px;
  letter-spacing: -0.5px;
}
@media (max-width: 1280px) {
  .custom-select__label {
    font-size: 12px;
  }
}
@media (max-width: 999px) {
  .custom-select__label {
    font-size: 14px;
  }
}
.custom-select__title {
  border: 2px solid #4581df;
  border-radius: 5px;
  padding: 20px 16px;
  font-size: 14px;
  color: #b8b2b2;
  font-weight: 600;
  background: url(../img/icon.png) no-repeat 95% #fff;
  text-align: left;
  width: 100%;
}
@media (max-width: 1280px) {
  .custom-select__title {
    padding: 14px 16px;
  }
}
.custom-select__content {
  background: #fff;
  -webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 103%;
  left: 0;
  border-radius: 5px;
  padding: 13px;
  z-index: 99;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media (hover: hover) and (pointer: fine) {
  .custom-select__content[focus-within] {
    visibility: visible;
    opacity: 1;
  }
  .custom-select__content:focus-within {
    visibility: visible;
    opacity: 1;
  }
}
.custom-select[aria-expanded='true'] .custom-select__content {
  visibility: visible;
  opacity: 1;
}
.custom-select[aria-expanded='true'] .custom-select__label,
.custom-select[aria-expanded='true'] .custom-select__title {
  color: #78b848;
}
.checkbox__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.checkbox__title {
  position: relative;
  display: block;
  padding: 2px 22px;
  cursor: pointer;
  border-radius: 5px;
}
.checkbox__title:before {
  content: '';
  width: 1em;
  height: 1em;
  border-radius: 5px;
  position: absolute;
  left: 2px;
  border: 1px solid rgba(26, 61, 96, 0.47);
  background: #fff;
}
.checkbox__title:after {
  content: '\e907';
  font-family: Cepra, sans-serif;
  color: #4581df;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  top: 1px;
  left: 4px;
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
      transform: scale(2);
  opacity: 0;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media (hover: hover) and (pointer: fine) {
  .checkbox__input.focus-visible + .checkbox__title,
  .checkbox__title:hover {
    background: rgba(69, 129, 223, 0.55);
  }
  .checkbox__input:checked + .checkbox__title:before {
    border-color: #4581df;
  }
  .checkbox__input:checked + .checkbox__title:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
        transform: scale(1);
    opacity: 1;
  }
  .checkbox__input:checked + .checkbox__title {
    background: rgba(69, 129, 223, 0.35);
  }
}
.control {
  position: relative;
  display: block;
}
.control__title {
  display: inline-block;
  color: #4581df;
  padding: 0 4px;
  position: absolute;
  top: -8px;
  line-height: 16px;
  font-size: 14px;
  left: 12px;
  background: #fff;
}
.control__input,
.control__text {
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 8px 16px;
  width: 100%;
}
.control__text {
  resize: none;
  height: 133px;
  border-color: #dadada;
}
.control__file {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.control__file-title {
  padding-left: 28px;
  position: relative;
  font-weight: 700;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}
.control__file-title:before {
  content: '\e915';
  font-family: Cepra, sans-serif;
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  color: #4581df;
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .control__file-title:hover {
    text-decoration: none;
  }
  .control__file.focus-visible + .control__file-title {
    outline: 2px solid #1a3d60;
  }
}
.radio {
  position: relative;
}
.radio__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.radio__title {
  font-size: 14px;
  padding-left: 16px;
  position: relative;
  cursor: pointer;
}
.radio__title:before {
  content: '';
  width: 1em;
  height: 1em;
  border: 3px solid #dcdcdc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 0;
}
.radio__input:checked + .radio__title:before {
  border-color: #4581df;
}
@media (hover: hover) and (pointer: fine) {
  .radio__input:focus + .radio__title {
    color: #4581df;
  }
}
.form-tooltip {
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 10px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  display: block;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
      transform: translateY(10px);
}
.form-tooltip:before {
  content: '';
  width: 20px;
  height: 20px;
  border: 10px solid transparent;
  border-top-color: #fff;
  position: absolute;
  left: 15px;
  bottom: -20px;
}
.form-tooltip.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.5s ease-out;
  transition: opacity 0.3s linear, -webkit-transform 0.5s ease-out;
  -o-transition: opacity 0.3s linear, transform 0.5s ease-out;
  transition: opacity 0.3s linear, transform 0.5s ease-out;
  transition: opacity 0.3s linear, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.3s linear, transform 0.5s ease-out,
    -webkit-transform 0.5s ease-out;
}
input.invalid {
  border: 2px solid #f0302e !important;
}
input.valid {
  border: 2px solid #78b848 !important;
}
.site-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 999px) {
  .site-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.site-nav__item:first-child {
  margin-right: 30px;
}
@media (max-width: 999px) {
  .site-nav__item:first-child {
    margin-right: 0;
    margin-bottom: 7px;
  }
}
.site-nav__item:last-child {
  margin-left: 30px;
}
@media (max-width: 999px) {
  .site-nav__item:last-child {
    margin-left: 0;
    margin-top: 7px;
  }
}
.site-nav__item:not(:last-child):not(:first-child) {
  margin: 0 30px;
}
@media (max-width: 999px) {
  .site-nav__item:not(:last-child):not(:first-child) {
    margin: 7px 0;
  }
}
.site-nav__link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 1280px) {
  .site-nav__link {
    font-size: 13px;
  }
}
@media (max-width: 999px) {
  .site-nav__link {
    font-size: 14px;
    color: #1a3d60;
  }
}
@media (hover: hover) and (pointer: fine) {
  .site-nav__link:focus {
    outline: 2px solid #4581df;
  }
  .site-nav__link:hover {
    text-decoration: underline;
  }
}
.logo img {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media (hover: hover) and (pointer: fine) {
  .logo:focus {
    outline: 2px solid #4581df;
  }
  .logo:hover img {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
        transform: scale(1.01);
  }
}
.phone {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}
.phone:before {
  display: inline-block;
  content: '\e916';
  font-family: Cepra, sans-serif;
  color: #78b848;
  font-size: 32px;
  font-weight: 400;
  vertical-align: -7px;
}
.mail {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.mail:before {
  display: inline-block;
  content: '\e90a';
  font-family: Cepra, sans-serif;
  font-size: 29px;
  color: #78b848;
  vertical-align: -6px;
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .mail:hover {
    text-decoration: underline;
  }
}
.login {
  position: relative;
  color: #1a3d60;
  text-decoration: none;
  font-weight: 700;
}
.login:before {
  display: inline-block;
  content: '\e922';
  font-family: Cepra, sans-serif;
  color: #78b848;
  font-size: 27px;
  vertical-align: -5px;
  font-weight: 400;
}
.login__link {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .login__link:focus {
    outline: 2px solid #4581df;
  }
  .login__link:hover {
    text-decoration: underline;
  }
}
.login__sub {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 108%;
  background: #fff;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 150px;
  border-radius: 5px;
  z-index: 2;
}
.login__sub .login__link {
  margin-bottom: 6px;
  font-size: 16px;
}
.login:hover .login__sub,
.login[focus-within] .login__sub,
.login__sub:hover,
.login__sub[focus-within] {
  visibility: visible;
  opacity: 1;
}
.login:focus-within .login__sub,
.login:hover .login__sub,
.login__sub:focus-within,
.login__sub:hover {
  visibility: visible;
  opacity: 1;
}
.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.cart__icon {
  height: 45px;
  width: 53px;
  border-radius: 5px;
  position: relative;
  margin-right: 13px;
  border: 1px solid #78b848;
}
@media (max-width: 999px) {
  .cart__icon {
    height: 42px;
    width: 50px;
  }
}
@media (max-width: 767px) {
  .cart__icon {
    height: 38px;
    width: 42px;
  }
}
.cart__icon:before {
  content: '\e91c';
  font-family: Cepra, sans-serif;
  color: #78b848;
  font-size: 24px;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.cart__count {
  display: inline-block;
  position: absolute;
  top: -9px;
  left: 39px;
  width: 27px;
  height: 27px;
  border: 1px solid #78b848;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  vertical-align: center;
  font-weight: 600;
  line-height: 24px;
}
@media (max-width: 767px) {
  .cart__count {
    left: 30px;
  }
}
.cart__result {
  font-weight: 700;
  font-size: 15px;
}
@media (hover: hover) and (pointer: fine) {
  .cart:focus .cart__icon,
  .cart:hover .cart__icon {
    background: #78b848;
    outline: none;
  }
  .cart:focus .cart__icon:before,
  .cart:hover .cart__icon:before {
    color: #fff;
  }
}
.cart--full .cart__icon {
  background: #78b848;
  outline: none;
}
.cart--full .cart__icon:before {
  color: #fff;
}
.burger {
  width: 30px;
  height: 30px;
  position: relative;
  padding: 0;
}
.burger:before {
  -webkit-box-shadow: 0 -9px 0 #1a3d60, 0 9px 0 #1a3d60;
  box-shadow: 0 -9px 0 #1a3d60, 0 9px 0 #1a3d60;
}
.burger:after,
.burger:before {
  content: '';
  width: 100%;
  height: 2px;
  background: #1a3d60;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.cross:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg);
  -webkit-box-shadow: 0 0 #1a3d60, 0 0 #1a3d60;
  box-shadow: 0 0 #1a3d60, 0 0 #1a3d60;
}
.cross:after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
      transform: translateY(-50%) rotate(-45deg);
}
.sub-block {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-block__item:not(:last-child) {
  margin-bottom: 15px;
}
.sub-block__title {
  font-weight: 800;
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .sub-block__title:focus {
    outline: 2px solid #1a3d60;
  }
  .sub-block__title:hover {
    text-decoration: underline;
  }
}
.sub-block__link {
  text-decoration: none;
  color: rgba(26, 61, 96, 0.47);
  font-size: 14px;
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .sub-block__link:focus {
    outline: 2px solid #1a3d60;
  }
  .sub-block__link:hover {
    color: #4581df;
    text-decoration: underline;
  }
}
.sub-nav {
  padding: 30px 24px;
  background: #fff;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  grid-template-rows: repeat(4, -webkit-max-content);
  -ms-grid-rows: -webkit-max-content 50px -webkit-max-content 50px -webkit-max-content 50px -webkit-max-content;
  -ms-grid-rows: max-content 50px max-content 50px max-content 50px max-content;
  grid-template-rows: repeat(4, max-content);
  grid-row-gap: 50px;
}
@media (max-width: 1279px) {
  .sub-nav {
    padding: 15px 12px;
  }
}
.sub-nav__list {
  width: 230px;
}
.sub-nav__close {
  display: none;
}
@media (max-width: 999px) {
  .sub-nav__close {
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
  }
}
.catalog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #1a3d60;
  direction: ltr;
}
.catalog-list__item {
  margin-bottom: 8px;
}
.catalog-list__sub {
  position: absolute;
  left: 100%;
  bottom: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  pointer-events: none;
  top: 67px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
      transform: translateX(-100%);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;  
}
@media (max-width: 999px) {
  .catalog-list__sub {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    overflow-y: scroll;
  }
}
.catalog-list__sub--2 {
  min-width: 572px;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 999px) {
  .catalog-list__sub--2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.catalog-list__sub--3 {
  width: 834px;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1279px) {
  .catalog-list__sub--3 {
    width: calc(100vw - 294px);
  }
}
@media (max-width: 999px) {
  .catalog-list__sub--3 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.catalog-list__sub.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
      transform: translateX(0);
  pointer-events: auto;
  max-width:-webkit-max-content;
  max-width:max-content;
  }
  @-moz-document url-prefix() {
 .catalog-list__sub.active {
    width: 250%;
    max-width: 250%;
  }
}
@media (max-width: 999px) {
  .catalog-list__sub.active {
    top: 0;
    height: 93vh;
  }
}
.catalog-list__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-right: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 14px;
}
@media (hover: hover) and (pointer: fine) {
  .catalog-list__title:focus {
    outline: none;
  }
  .catalog-list__title.focus-visible {
    background: rgba(69, 129, 223, 0.55);
  }
  .catalog-list__title:hover {
    color: #4581df;
  }
}
.catalog-list__icon {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  display: inline-block;
  margin-right: 9px;
}
.catalog-nav {
  direction: rtl;
  scrollbar-color: rgba(26, 61, 96, 0.47) transparent;
  scrollbar-width: thin;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 999px) {
  .catalog-nav {
    direction: ltr;
  }
}
.catalog-nav::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.catalog-nav::-webkit-scrollbar-thumb {
  background-color: rgba(26, 61, 96, 0.47);
  border-radius: 9em;
}
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
@media (hover: hover) and (pointer: fine) {
  .swiper-button-next:focus,
  .swiper-button-prev:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.3);
  }
}
.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #b8b2b2;
  opacity: 1;
  margin: 0 7px !important;
}
.swiper-pagination-bullet-active {
  background: #1a3d60;
}
.swiper-controls {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.swiper-controls .swiper-button-next,
.swiper-controls .swiper-button-prev {
  position: relative;
  left: 0;
  right: 0;
}
.swiper-controls .swiper-button-next:after,
.swiper-controls .swiper-button-prev:after {
  font-size: 18px;
}
.swiper-controls .swiper-pagination {
  position: relative;
}
.main-slider {
  border-radius: 5px;
}
.main-slider .swiper-pagination-bullet {
  background: #fff;
}
.main-slider .swiper-pagination-bullet-active {
  background: #1a3d60;
}
.partners-slider {
  width: 90%;
  padding: 0 10px;
}
.partners-slider .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.partners-slider .swiper-button-next,
.partners-slider .swiper-button-prev {
  color: #fff;
}
.partners-slider .swiper-pagination-bullet-active {
  background: #fff;
}
.chip {
  position: relative;
  text-align: center;
}
.chip__logo {
  margin-top: 6px;
  margin-bottom: 54px;
}
@media (max-width: 1513px) {
  .chip__logo {
    margin-bottom: 72px;
  }
}
@media (max-width: 1439px) {
  .chip__logo {
    margin-bottom: 54px;
  }
}
.chip__img {
  position: absolute;
  left: 50%;
  top: 61%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 27%;
}
@media (max-width: 1200px) {
  .chip__img {
    top: 64%;
  }
}
.chip path.active {
  fill: #78b848;
  animation: neon 3s reverse none;
}
.chip svg {
  width: 100%;
  height: auto;
}
@media (max-width: 1439px) {
  .chip svg {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .chip svg {
    width: 80%;
  }
}
@-webkit-keyframes neon {
  0% {
    fill: #78b848;
  }
  50% {
    fill: #1a3d60;
  }
  51% {
    fill: #78b848;
  }
  52% {
    fill: #1a3d60;
  }
  53% {
    fill: #78b848;
  }
  54% {
    fill: #1a3d60;
  }
  55% {
    fill: #78b848;
  }
  75% {
    fill: #78b848;
  }
  78% {
    fill: #1a3d60;
  }
  79% {
    fill: #78b848;
  }
  80% {
    fill: #1a3d60;
  }
  81% {
    fill: #78b848;
  }
  82% {
    fill: #1a3d60;
  }
  83% {
    fill: #78b848;
  }
  84% {
    fill: #1a3d60;
  }
  85% {
    fill: #78b848;
  }
  to {
    fill: #1a3d60;
  }
}
@keyframes neon {
  0% {
    fill: #78b848;
  }
  50% {
    fill: #1a3d60;
  }
  51% {
    fill: #78b848;
  }
  52% {
    fill: #1a3d60;
  }
  53% {
    fill: #78b848;
  }
  54% {
    fill: #1a3d60;
  }
  55% {
    fill: #78b848;
  }
  75% {
    fill: #78b848;
  }
  78% {
    fill: #1a3d60;
  }
  79% {
    fill: #78b848;
  }
  80% {
    fill: #1a3d60;
  }
  81% {
    fill: #78b848;
  }
  82% {
    fill: #1a3d60;
  }
  83% {
    fill: #78b848;
  }
  84% {
    fill: #1a3d60;
  }
  85% {
    fill: #78b848;
  }
  to {
    fill: #1a3d60;
  }
}
.info {
  background: #1a3d60;
  color: #fff;
  padding: 21px 25px 0;
}
.info__title {
  overflow: hidden;
  font-size: 23px;
  font-weight: 700;
  width: 255px;
  border-radius: 5px;
  margin-bottom: 17px;
}
.info__title p {
  margin-left: -10px;
  width: 235px;
  border-radius: 5px;
  padding: 8px 26px;
  background: #78b848;
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
      transform: skewX(-25deg);
  margin-bottom: 0;
}
.info__title p span {
  display: block;
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
      transform: skewX(25deg);
}
.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  border-radius: 5px;
  background: #fff;
}
@media (max-width: 999px) {
  .news-item {
    overflow: visible;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-item:hover,
  .news-item[focus-within] {
    outline: none;
    -webkit-box-shadow: 0 0 30px #4581df;
    box-shadow: 0 0 30px #4581df;
  }
  .news-item:focus-within,
  .news-item:hover {
    outline: none;
    -webkit-box-shadow: 0 0 30px #4581df;
    box-shadow: 0 0 30px #4581df;
  }
  .news-item:hover .news-item__link:before,
  .news-item[focus-within] .news-item__link:before {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
  }
  .news-item:focus-within .news-item__link:before,
  .news-item:hover .news-item__link:before {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
  }
  .news-item:hover .news-item__link:after,
  .news-item[focus-within] .news-item__link:after {
    -webkit-animation: pulse_2 2s infinite;
    animation: pulse_2 2s infinite;
  }
  .news-item:focus-within .news-item__link:after,
  .news-item:hover .news-item__link:after {
    -webkit-animation: pulse_2 2s infinite;
    animation: pulse_2 2s infinite;
  }
  .news-item:hover .news-item__text,
  .news-item[focus-within] .news-item__text {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
  }
  .news-item:focus-within .news-item__text,
  .news-item:hover .news-item__text {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
  }
}
.news-item__side {
  padding: 80px 8px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .news-item__side {
    height: 100%;
  }
}
.news-item__link {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  text-align: center;
}
.news-item__link:before {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -49px;
  width: 29px;
  height: 29px;
  background: #fff;
  border: 7px solid #4581df;
  outline: 7px solid rgba(69, 129, 223, 0.35);
  border-radius: 50%;
  content: '';
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
@media (max-width: 999px) {
  .news-item__link:before {
    outline: none;
  }
}
.news-item__link:after {
  display: inline-block;
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  outline: 1px solid #4581df;
  outline-offset: 2px;
  left: 50%;
  top: -53px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  opacity: 0;
}
@media (max-width: 999px) {
  .news-item__link:after {
    outline: none;
  }
}
.news-item__date {
  font-weight: 700;
  font-size: 18px;
}
.news-item__content {
  position: relative;
  width: calc(100% - 104px);
}
@media (max-width: 999px) {
  .news-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.news-item__img {
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 999px) {
  .news-item__img {
    position: static;
    height: auto;
  }
}
.news-item__text {
  padding: 25px 15px;
  color: #fff;
  background: #1a3d60;
  border-radius: 5px;
  width: 100%;
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(105%);
  -ms-transform: translateY(105%);
      transform: translateY(105%);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media (max-width: 999px) {
  .news-item__text {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
    position: static;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    height: 100%;
  }
}
@-webkit-keyframes pulse {
  0% {
    outline-color: #4581df;
  }
  75% {
    outline-color: rgba(69, 129, 223, 0.35);
  }
}
@keyframes pulse {
  0% {
    outline-color: #4581df;
  }
  75% {
    outline-color: rgba(69, 129, 223, 0.35);
  }
}
@-webkit-keyframes pulse_2 {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateX(-50%) scale(2);
    transform: translateX(-50%) scale(2);
  }
  70% {
    opacity: 0;
  }
}
@keyframes pulse_2 {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateX(-50%) scale(2);
    transform: translateX(-50%) scale(2);
  }
  70% {
    opacity: 0;
  }
}
.intrid {
  width: 153px;
  color: #1a3d60;
  text-decoration: none;
  background: url(../img/intrid.png) no-repeat 50%;
  background-size: 92%;
  padding: 5px 10px 5px 30px;
  line-height: 16px;
  font-size: 14px;
}
@media (hover: hover) and (pointer: fine) {
  .intrid:focus,
  .intrid:hover {
    opacity: 0.5;
  }
}
.socials {
  margin: 10px;
  text-align: center;
}
@media (max-width: 999px) {
  .socials {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .socials {
    text-align: center;
  }
}
.socials__item {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: 32px;
  line-height: 32px;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media (hover: hover) and (pointer: fine) {
  .socials__item:focus,
  .socials__item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
        transform: translateY(-5px);
  }
}
.address {
  font-weight: 700;
  text-align: center;
}
@media (max-width: 999px) {
  .address {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .address {
    text-align: center;
  }
}
.address abbr {
  color: #78b848;
  font-weight: 400;
}
.address span {
  display: block;
  color: rgba(26, 61, 96, 0.47);
}
.address span,
.breadcrumbs {
  font-size: 14px;
  font-weight: 600;
}
.breadcrumbs {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 999px) {
  .breadcrumbs {
    width: 100%;
  }
}
.breadcrumbs__item {
  margin-right: 10px;
}
.breadcrumbs__link {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  position: relative;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.breadcrumbs__link:after {
  content: '\e928';
  font-family: Cepra, sans-serif;
  color: #78b848;
  margin-left: 10px;
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumbs__link:focus {
    outline: 2px solid #1a3d60;
  }
  .breadcrumbs__link:hover {
    opacity: 1;
  }
}
.breadcrumbs__link--home {
  opacity: 1;
}
.breadcrumbs abbr {
  color: #4581df;
}
.share {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  grid-gap: 15px;
  gap: 15px;
  font-size: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.card-buttons,
.share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card-buttons .button {
  width: 49%;
}
.price {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 800;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.price__old {
  font-size: 16px;
  color: rgba(26, 61, 96, 0.47);
  margin-bottom: 0;
  margin-right: 24px;
  text-decoration: line-through;
}
.price__new {
  font-size: 1.2em;
  margin-bottom: 0;
}
.calc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.calc__minus,
.calc__plus {
  position: relative;
  width: 16px;
  height: 16px;
}
.calc__minus:before,
.calc__plus:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.calc__minus:before,
.calc__plus:after,
.calc__plus:before {
  content: '';
  width: 14px;
  height: 3.5px;
  background: #1a3d60;
  position: absolute;
  top: 50%;
  left: 50%;
}
.calc__plus:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
      transform: translate(-50%, -50%) rotate(90deg);
}
.calc__input {
  border-radius: 5px;
  border: 1px solid rgba(120, 184, 72, 0.6);
  background: rgba(120, 184, 72, 0.07);
  color: #78b848;
  text-align: center;
  width: 32px;
}
@media (hover: hover) and (pointer: fine) {
  .calc__minus:focus:before,
  .calc__minus:hover:before,
  .calc__plus:focus:after,
  .calc__plus:focus:before,
  .calc__plus:hover:after,
  .calc__plus:hover:before {
    background: #78b848;
  }
}
.spec {
  margin: 0;
}
.spec__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 0.5px dashed rgba(0, 0, 0, 0.1);
}
.spec__item:not(:last-child) {
  margin-bottom: 16px;
}
.spec dd {
  font-weight: 600;
  margin-left: 0;
  text-align: right;
}
.spec dt {
  width: 100%;
}
.card-info__wrapper {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.card-info__item {
  margin-bottom: 0;
  font-weight: 700;
}
@media (max-width: 1561px) {
  .card-info__item {
    margin-top: 10px;
  }
}
.card-info__select .select {
  min-width: 245px;
  padding: 16px;
}
.card-benefits {
  list-style: none;
  margin: 0;
  padding: 0 18px 0 57px;
}
.card-benefits__item {
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 18px;
  font-size: 14px;
  position: relative;
}
.card-benefits__item:before {
  content: '';
  font-family: Cepra, sans-serif;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  background-size: contain;
}
.card-benefits__item--box:before {
  left: -51px;
  width: 31px;
  height: 31px;
  background: url(../img/dimensions.svg) 50%;
}
.card-benefits__item--shield:before {
  left: -54px;
  width: 35px;
  height: 35px;
  background: url(../img/shield-check.svg) 50%;
}
.card-benefits__item--gear:before {
  left: -51px;
  width: 30px;
  height: 30px;
  background: url(../img/settings.svg) 50%;
}
.card-benefits__item--house:before {
  left: -52px;
  width: 32px;
  height: 32px;
  background: url(../img/warehous.svg) 50%;
}
.card-benefits__item--deliv:before {
  left: -55px;
  width: 40px;
  height: 29px;
  background: url(../img/shipping.svg) 50%;
}
.video {
  position: relative;
  width: 276px;
  height: 153px;
  background: #000;
}
@media (max-width: 999px) {
  .video {
    width: 375px;
    height: 210px;
  }
}
@media (max-width: 767px) {
  .video {
    width: 300px;
    height: 190px;
  }
}
.video__media {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video__button,
.video__media {
  position: absolute;
  border: none;
}
.video__button {
  padding: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  display: none;
  background: transparent;
  opacity: 0.7;
}
.video__button:after {
  content: '\e926';
  font-family: Cepra, sans-serif;
  font-size: 50px;
  color: #000;
}
.video--enabled .video__button {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .video:hover .video__button,
  .video:hover .video__button:after {
    opacity: 1;
    color: red;
  }
}
.card {
  padding: 6px 11px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 311px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  -webkit-box-shadow: 0 0 10px #dcdcdc;
  box-shadow: 0 0 10px #dcdcdc;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  border-radius: 5px;
  background: #fff;
}
@media (max-width: 999px) {
  .card {
    height: auto;
  }
}
.card__img {
  display: block;
  position: relative;
  padding-top: 85%;
  margin-bottom: 17px;
}
.card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.card__title {
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 17px;
}
.card__link {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .card__link:focus {
    outline: 2px solid #1a3d60;
  }
}
.card__spec {
  font-size: 14px;
  line-height: 17px;
  margin-top: auto;
  margin-bottom: 16px;
}
.card__price {
  font-size: 20px;
  margin-bottom: 17px;
}
.card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -11px;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  background: #fff;
}
@media (max-width: 999px) {
  .card__buttons {
    height: auto;
  }
}
.card__one-click,
.card__to-cart {
  width: 50%;
  font-size: 14px;
  border-radius: 0;
}
.card__to-cart {
  background-color: #1a3d60;
}
.card__labels {
  position: absolute;
  top: 3px;
  left: 0;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .card[focus-within] {
    border: 3px solid #1a3d60;
  }
  .card:focus-within,
  .card:hover {
    border: 3px solid #1a3d60;
  }
  .card:hover .card__buttons,
  .card[focus-within] .card__buttons {
    height: 53px;
    overflow: visible;
  }
  .card:focus-within .card__buttons,
  .card:hover .card__buttons {
    overflow: visible;
  }
}
.card-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card-labels__item {
  background: #fff;
  padding: 4px;
}
.card-labels__item:not(:last-child) {
  margin-right: 3px;
}
.card-labels__icon {
  font-size: 24px;
  line-height: 24px;
}
.card-labels__icon--green {
  color: #78b848;
}
.card-labels__icon--red {
  color: #f0302e;
}
.card-labels__icon--blue {
  color: #4581df;
}
.card-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
@media (max-width: 580px) {
  .card-table {
    font-size: 14px;
  }
}
.card-table td,
.card-table th {
  text-align: left;
  padding: 9px 5px;
  width: 16.66667%;
}
@media (max-width: 580px) {
  .card-table td,
  .card-table th {
    padding: 5px 2px;
  }
}
.card-table td:first-child,
.card-table th:first-child {
  padding-left: 14px;
}
.card-table td:last-child,
.card-table th:last-child {
  padding-right: 14px;
}
.card-table tr:nth-child(odd) {
  background: #f8f8f8;
}
.card-table thead tr {
  background: transparent !important;
  font-weight: 400;
  color: rgba(49, 48, 61, 0.66);
}
.card-table td:first-child {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .card-table td:first-child:focus {
    outline: 2px solid #1a3d60;
  }
  .card-table td:first-child:hover {
    text-decoration: none;
  }
}
.card-table__link {
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .card-table__link:focus {
    outline: 2px solid #1a3d60;
  }
}
.card-table__td--no-select {
  padding-left: 12px;
  margin-bottom: 0;
}
.card-table > thead > tr > th:nth-child(5) {
  text-align: center;
}
.base-modal {
  width: 100%;
  padding: 15px 13px;
  border: 3px solid #78b848;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.base-modal__title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}
.base-modal .burger:after,
.base-modal .burger:before,
.base-modal .button {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.modal-spec {
  max-width: 430px;
  padding-top: 50px;
}
.base-modal__close {
  position: absolute;
  right: 13px;
  top: 10px;
  width: 25px;
  height: 25px;
}
.modal-login {
  max-width: 430px;
}
.modal-login__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal-login__item {
  margin-bottom: 20px;
}
.modal-login__reset {
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .modal-login__reset:focus {
    outline: 2px solid #1a3d60;
  }
}
.modal-login small {
  text-align: center;
}
.modal-login small a {
  color: #4581df;
}
@media (hover: hover) and (pointer: fine) {
  .modal-login small a:focus {
    outline: 2px solid #1a3d60;
  }
}
.modal-one-click {
  max-width: 700px;
}
.modal-one-click__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-one-click__input {
  width: 32%;
}
@media (max-width: 600px) {
  .modal-one-click__input {
    width: 100%;
    margin-bottom: 20px;
  }
}
.modal-one-click__text {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .modal-one-click__text {
    margin-top: 0;
  }
}
.modal-one-click__bottom {
  width: 100%;
}
.modal-one-click__submit {
  display: block;
  margin: 0 auto 10px;
  max-width: 220px;
  width: 100%;
}
.modal-one-click small {
  text-align: center;
  display: block;
}
.modal-one-click small a {
  color: #4581df;
}
.modal-open {
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.modal-content__title {
  font-weight: 700;
}
.modal-content__spec {
  margin-bottom: 16px;
}
.modal-content .price {
  margin-bottom: 20px;
}
.modal-message {
  max-width: 400px;
  padding-top: 50px;
  background: #fff;
}
.price-select {
  width: 251px;
}
.price-select__wrapper {
  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;
  width: 100%;
  margin-bottom: 15px;
}
.price-select .control {
  width: 100px;
}
.price-select__confirm {
  display: block;
  width: 112%;
  background: #4581df;
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  padding: 7px 0;
  margin-left: -13px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.price-select .custom-select__content {
  padding-bottom: 0;
}
.track-method__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1279px) {
  .track-method__controls {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.track-method__btn {
  position: relative;
  padding-left: 20px;
  text-align: left;
}
.track-method__btn:before {
  width: 14px;
  height: 14px;
  content: '';
  position: absolute;
  border: 3px solid #dcdcdc;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 0;
}
.track-method__btn.active:before {
  border-color: #4581df;
}
.track-method__select {
  min-width: 220px;
  padding: 16px;
  background-color: #fff;
}
.track-method__address,
.track-method__map {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: -100%;
  top: 0;
}
.track-method__address.active,
.track-method__map.active {
  visibility: visible;
  opacity: 1;
  position: static;
}
.track-method__address-input {
  margin-bottom: 20px;
}
.track-method__address-file {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.client-info {
  border-radius: 5px;
  background: #fff;
  padding: 23px 27px;
  position: relative;
}
.client-info__user-data {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.client-info__item {
  width: 49%;
  margin-bottom: 20px;
}
@media (max-width: 580px) {
  .client-info__item {
    width: 100%;
  }
}
.client-info__item.button {
  padding: 14px;
}
@media (max-width: 999px) {
  .client-info__item.button {
    padding: 13px;
  }
}
@media (max-width: 767px) {
  .client-info__item.button {
    padding: 11px;
  }
}
.filter--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
}
.order-card {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 147px repeat(2, 1fr) -webkit-max-content -webkit-min-content;
  -ms-grid-columns: 147px 16px 1fr 16px 1fr 16px -webkit-max-content 16px -webkit-min-content;
  -ms-grid-columns: 147px 16px 1fr 16px 1fr 16px max-content 16px min-content;
  grid-template-columns: 147px repeat(2, 1fr) max-content min-content;
  grid-gap: 16px;
  gap: 16px;
  grid-row-gap: 0;
}
@media (max-width: 1279px) {
  .order-card {
    grid-template-columns: 147px repeat(2, 1fr) -webkit-max-content -webkit-min-content;
    -ms-grid-columns: 147px 16px 1fr 16px 1fr 16px -webkit-max-content 16px -webkit-min-content;
    -ms-grid-columns: 147px 16px 1fr 16px 1fr 16px max-content 16px min-content;
    grid-template-columns: 147px repeat(2, 1fr) max-content min-content;
  }
}
@media (max-width: 580px) {
  .order-card {
    -ms-grid-columns: 147px 16px 1fr 16px 25px;
    grid-template-columns: 147px 1fr 25px;
  }
}
.order-card__img {
  display: block;
  position: relative;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.order-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 1279px) {
  .order-card__img {
    -ms-grid-row-span: 3;
    grid-row: span 3;
  }
}
@media (max-width: 580px) {
  .order-card__img {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    height: 120px;
  }
}
.order-card__title {
  font-weight: 700;
  font-size: 16px;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media (max-width: 580px) {
  .order-card__title {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    font-size: 14px;
  }
}
.order-card__art {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  font-size: 14px;
}
.order-card .spec {
  font-size: 14px;
}
@media (max-width: 1279px) {
  .order-card .spec {
    -ms-grid-column-span: 4;
    grid-column: span 4;
    margin-bottom: 16px;
  }
}
@media (max-width: 580px) {
  .order-card .spec {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
}
.order-card .price {
  font-size: 18px;
}
@media (max-width: 1279px) {
  .order-card .price {
    font-size: 15px;
  }
}
@media (max-width: 999px) {
  .order-card .price {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .order-card .price {
    font-size: 14px;
  }
}
.order-card__calc {
  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;
  border: 2px solid #78b848;
  border-radius: 5px;
  padding: 0 18px;
  position: relative;
}
.order-card__calc:after,
.order-card__calc:before {
  content: '';
  width: 90%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.order-card__calc:before {
  top: -2px;
}
.order-card__calc:after {
  bottom: -2px;
}
@media (max-width: 1279px) {
  .order-card__calc {
    padding: 10px 15px;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media (max-width: 580px) {
  .order-card__calc {
    -ms-grid-column-span: 3;
    grid-column: span 3;
    margin-bottom: 10px;
  }
}
.order-card__calc .price__new,
.order-card__calc .price__old {
  width: 100%;
}
.order-card__calc .calc {
  width: 80px;
}
.order-card__result {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 580px) {
  .order-card__result {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.order-card__delete {
  padding: 0;
}
@media (hover: hover) and (pointer: fine) {
  .order-card__delete:focus {
    outline: 2px solid #1a3d60;
  }
  .order-card__delete:hover:before {
    color: rgba(69, 129, 223, 0.35);
  }
}
.order-card__delete:before {
  content: '\e91f';
  font-family: Cepra, sans-serif;
  font-size: 25px;
  line-height: 25px;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.order-result {
  background: #fff;
  border: 2px solid #78b848;
  border-radius: 5px;
  padding: 27px 24px;
}
@media (max-width: 1600px) {
  .order-result {
    position: static;
  }
}
.order-result__sum {
  font-size: 20px;
  color: #4581df;
  font-weight: 700;
}
.order-result hr {
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.1);
}
.order-result fieldset {
  border: none;
  padding: 0;
  margin-top: 18px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.order-result legend {
  font-weight: 700;
  margin-bottom: 20px;
  width: 100%;
}
.order-result__submit {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.order-result small {
  text-align: center;
  display: block;
}
.order-result small a {
  color: #4581df;
}
@media (hover: hover) and (pointer: fine) {
  .order-result small a:focus {
    outline: 2px solid #1a3d60;
  }
}
.order-result__radio {
  width: 49%;
  position: relative;
  padding-top: 35px;
}
.order-result__radio:before {
  font-family: Cepra, sans-serif;
  font-size: 32px;
  line-height: 28px;
  color: #1a3d60;
  position: absolute;
  top: 0;
  left: 0;
}
.order-result__radio--receipt:before {
  content: '\e904';
}
.order-result__radio--bill:before {
  content: '\e90d';
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.loader svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.loader--active {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
}
.pagination__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination li {
  margin: 0 5px;
}
.pagination a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #000;
}
.pagination .active {
  font-weight: 700;
  font-size: 1.3rem;
}
.pagination span {
  vertical-align: text-bottom;
}
@media (hover: hover) and (pointer: fine) {
  .pagination a:hover {
    opacity: 0.6;
    text-decoration: underline;
  }
}
.wrapper {
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 374px calc(100% - 374px);
  grid-template-columns: 374px calc(100% - 374px);
  -ms-grid-rows: 67px;
  grid-template-rows: 67px;
  border-left: 34px solid rgba(39, 57, 87, 0.63);
  border-top: 34px solid #1a3d60;
  border-bottom: 34px solid #1a3d60;
}
.wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.wrapper > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media (max-width: 1439px) {
  .wrapper {
    -ms-grid-columns: 300px calc(100% - 300px);
    grid-template-columns: 300px calc(100% - 300px);
  }
}
@media (max-width: 1279px) {
  .wrapper {
    -ms-grid-columns: 270px calc(100% - 270px);
    grid-template-columns: 270px calc(100% - 270px);
    border-left: 24px solid rgba(39, 57, 87, 0.63);
    border-top: 24px solid #1a3d60;
    border-bottom: 24px solid #1a3d60;
  }
}
@media (max-width: 999px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: none;
    min-height: 100vh;
  }
}
.wrapper aside {
  -ms-grid-row-span: 3;
  grid-row: span 3;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
@media (max-width: 999px) {
  .wrapper footer {
    -ms-flex-item-align: normal;
    -ms-grid-row-align: normal;
        align-self: normal;
    -ms-grid-column-align: normal;
        justify-self: normal;
  }
}
.header {
  width: 100%;
  min-width: 0;
}
@media (max-width: 999px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 999;
  }
}
.header__top {
  position: absolute;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 100%;
  z-index: 11;
}
@media (max-width: 1439px) {
  .header__top {
    top: 7px;
  }
}
@media (max-width: 1279px) {
  .header__top {
    top: 3px;
  }
}
.header__bottom {
  background: #fff;
  padding: 11px 21px 8px;
  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;
  z-index: 11;
  width: 100%;
  max-width: calc(100vw - 408px);
}
@media (max-width: 1439px) {
  .header__bottom {
    max-width: calc(100vw - 334px);
    padding: 11px 15px 8px;
  }
}
@media (max-width: 1279px) {
  .header__bottom {
    max-width: calc(100vw - 294px);
  }
}
@media (max-width: 999px) {
  .header__bottom {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .header__bottom {
    padding: 11px 5px 8px;
  }
}
.header__logo,
.header__open-menu {
  display: none;
}
@media (max-width: 999px) {
  .header__logo,
  .header__open-menu {
    display: block;
  }
}
.header__search {
  width: 43.6%;
}
@media (max-width: 1359px) {
  .header__search {
    width: 70%;
  }
}
@media (max-width: 999px) {
  .header__search {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .header__search {
    width: 40%;
  }
}
@media (max-width: 579px) {
  .header__search {
    width: 38px;
  }
  .header__search input {
    font-size: 0;
  }
}
.header__search.open {
  width: 68%;
  position: absolute;
  z-index: 1;
}
.header__search.open input {
  font-size: 14px;
}
.header__login,
.header__mail,
.header__phone {
  color: #1a3d60;
  font-size: 18px;
}
@media (hover: hover) and (pointer: fine) {
  .header__login:focus,
  .header__mail:focus,
  .header__phone:focus {
    outline: 2px solid #4581df;
  }
  .header__login:hover,
  .header__mail:hover,
  .header__phone:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1599px) {
  .header__login,
  .header__mail,
  .header__phone {
    font-size: 15px;
  }
}
@media (max-width: 1439px) {
  .header__login,
  .header__mail,
  .header__phone {
    font-size: 14px;
  }
  .header__login:before,
  .header__mail:before,
  .header__phone:before {
    font-size: 24px;
    vertical-align: -6px;
  }
}
@media (max-width: 1359px) {
  .header__login,
  .header__mail,
  .header__phone {
    font-size: 0;
  }
  .header__login:before,
  .header__mail:before,
  .header__phone:before {
    font-size: 32px;
    line-height: 32px;
  }
}
.header__cart {
  font-size: 15px;
  color: #1a3d60;
}
@media (hover: hover) and (pointer: fine) {
  .header__cart:focus {
    outline: 2px solid #4581df;
  }
  .header__cart:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1439px) {
  .header__cart {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .header__cart .cart__result {
    display: none;
  }
}
@media (max-width: 999px) {
  .header__menu {
    display: none;
  }
}
.main {
  overflow-x: hidden;
  background: #f8f8f8;
  padding: 10px 20px;
  min-width: 0;
}
@media (max-width: 1439px) {
  .main {
    padding: 10px 15px;
  }
}
@media (max-width: 999px) {
  .main {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 10px;
  }
}
.main__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 999px) {
  .main__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.main--white {
  background: #fff;
}
.aside {
  background: #e1e5ea;
  padding-bottom: 33px;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 999px) {
  .aside {
    position: fixed;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    top: 58px;
    width: 100%;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
  }
}
.aside__inner {
  z-index: 11;
  padding: 0 15px;
  width: 100%;
  max-width: 374px;
}
@media (max-width: 1439px) {
  .aside__inner {
    max-width: 300px;
  }
}
@media (max-width: 1279px) {
  .aside__inner {
    max-width: 270px;
  }
}
@media (max-width: 999px) {
  .aside__inner {
    height: 91vh;
    overflow-y: scroll;
    padding-top: 13px;
  }
}
.aside__logo {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  height: 67px;
  margin: 0 -15px 10px;
}
@media (max-width: 1439px) {
  .aside__logo {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}
@media (max-width: 1279px) {
  .aside__logo {
    padding-top: 19px;
    padding-bottom: 18px;
  }
}
@media (max-width: 999px) {
  .aside__logo {
    display: none;
  }
}
.aside__logo img {
  width: 100%;
}
.aside__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  margin: 0 -11px 24px;
  padding-left: 12px;
}
.aside__nav {
  margin-right: -15px;
  margin-bottom: 20px;
}
.aside__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #4581df;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  padding: 0 33px 22px;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  direction: ltr;
  margin-right: 10px;
}
@media (max-width: 1439px) {
  .aside__link {
    width: 266px;
  }
}
@media (max-width: 1279px) {
  .aside__link {
    padding: 0 13px 12px;
    width: 226px;
  }
}
@media (max-width: 999px) {
  .aside__link {
    margin-right: auto;
  }
}
.aside__link img {
  margin-bottom: 4px;
}
@media (max-width: 1439px) {
  .aside__link img {
    width: 80%;
  }
}
.aside__link span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 999px) {
  .aside__link {
    width: 260px;
    padding: 0 13px 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .aside__link:focus,
  .aside__link:hover {
    -webkit-box-shadow: 0 0 30px #4581df;
    box-shadow: 0 0 30px #4581df;
  }
}
.aside.open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
      transform: translateX(0);
  opacity: 1;
  visibility: visible;
  z-index: 999;
  height: 100vh;
}
.partners {
  padding: 0 0 20px;
}
.partners__wrapper {
  background: url(../img/partners-slider.png) no-repeat 50%;
  background-size: 100% 95%;
  padding: 5px 20px;
}
@media (max-width: 1439px) {
  .partners__wrapper {
    background-size: auto;
  }
}
@media (max-width: 767px) {
  .partners__wrapper .swiper-pagination {
    bottom: 22px;
  }
}
.about {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .about {
    padding-top: 20px;
  }
}
.about__item {
  margin-bottom: 30px;
}
.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 994px;
  margin: 0 auto;
}
@media (max-width: 1359px) {
  .about__wrapper {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about__logo {
  width: 45%;
  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: #fff;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
@media (max-width: 1359px) {
  .about__logo {
    width: 100%;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.about__info {
  width: 55%;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
@media (max-width: 1359px) {
  .about__info {
    width: 100%;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
}
.services {
  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;
}
@media (max-width: 767px) {
  .services {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.services__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 24px;
}
@media (max-width: 1360px) {
  .services__title {
    font-size: 16px;
  }
}
.services__title a {
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .services__title a:focus {
    outline: 2px solid #4581df;
  }
}
.services__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
}
.services__list abbr {
  color: #4581df;
  font-weight: 400;
  font-size: 24px;
  display: inline-block;
  vertical-align: -5px;
}
.services__list:last-child {
  margin-top: auto;
}
.services__list-item {
  position: relative;
  margin-bottom: 11px;
  opacity: 0;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
      transform: scale(1.5);
}
.services__list-item svg {
  position: absolute;
  height: auto;
}
@media (max-width: 1200px) {
  .services__list-item svg {
    display: none;
  }
}
.services__left {
  width: 22%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .services__left {
    width: 24%;
  }
}
@media (max-width: 999px) {
  .services__left {
    width: 28%;
  }
}
@media (max-width: 767px) {
  .services__left {
    width: 100%;
    text-align: left;
  }
}
.services__left .services__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.services__left .services__list-item svg {
  left: 100%;
}
@media (max-width: 767px) {
  .services__left .services__list-item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .services__left .services__list-item abbr {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
.services__left .services__list:first-of-type {
  margin-bottom: 25px;
}
@media (max-width: 1511px) {
  .services__left .services__list:first-of-type {
    margin-bottom: 28px;
  }
}
@media (max-width: 1464px) {
  .services__left .services__list:first-of-type {
    margin-bottom: 12px;
  }
}
.services__right {
  width: 22%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .services__right {
    width: 24%;
  }
}
@media (max-width: 999px) {
  .services__right {
    width: 28%;
  }
}
@media (max-width: 767px) {
  .services__right {
    width: 100%;
  }
}
.services__right .services__list:first-of-type {
  margin-bottom: 95px;
}
@media (max-width: 1513px) {
  .services__right .services__list:first-of-type {
    margin-bottom: 86px;
  }
}
@media (max-width: 1439px) {
  .services__right .services__list:first-of-type {
    margin-bottom: 72px;
  }
}
@media (max-width: 1030px) {
  .services__right .services__list:first-of-type {
    margin-bottom: 67px;
  }
}
@media (max-width: 810px) {
  .services__right .services__list:first-of-type {
    margin-bottom: 89px;
  }
}
@media (max-width: 767px) {
  .services__right .services__list:first-of-type {
    margin-bottom: 12px;
  }
}
.services__right .services__list-item svg {
  right: 100%;
}
.services__center {
  margin: 0 80px;
}
@media (max-width: 1200px) {
  .services__center {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .services__center {
    display: none;
  }
}
.line1 {
  top: -8px;
}
.line2 {
  top: -16px;
}
.line3 {
  top: -24px;
}
.line4 {
  top: -32px;
}
.line5,
.line6,
.line7 {
  top: 8px;
}
#line1 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line1.active {
  -webkit-animation-name: line1;
  animation-name: line1;
}
#line2 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line2.active {
  -webkit-animation-name: line2;
  animation-name: line2;
}
#line3 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line3.active {
  -webkit-animation-name: line3;
  animation-name: line3;
}
#line4 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line4.active {
  -webkit-animation-name: line4;
  animation-name: line4;
}
#line5 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line5.active {
  -webkit-animation-name: line5;
  animation-name: line5;
}
#line6 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line6.active {
  -webkit-animation-name: line6;
  animation-name: line6;
}
#line7 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line7.active {
  -webkit-animation-name: line7;
  animation-name: line7;
}
#line8 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line8.active {
  -webkit-animation-name: line8;
  animation-name: line8;
}
#line9 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line9.active {
  -webkit-animation-name: line9;
  animation-name: line9;
}
#line10 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line10.active {
  -webkit-animation-name: line10;
  animation-name: line10;
}
#line11 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line11.active {
  -webkit-animation-name: line11;
  animation-name: line11;
}
#line12 {
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  stroke: #78b848 !important;
}
#line12.active {
  -webkit-animation-name: line12;
  animation-name: line12;
}
#line1 {
  stroke-dasharray: 149;
}
@-webkit-keyframes line1 {
  0% {
    opacity: 1;
    stroke-dashoffset: 149;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line1 {
  0% {
    opacity: 1;
    stroke-dashoffset: 149;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line2 {
  stroke-dasharray: 127;
}
@-webkit-keyframes line2 {
  0% {
    opacity: 1;
    stroke-dashoffset: 127;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line2 {
  0% {
    opacity: 1;
    stroke-dashoffset: 127;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line3 {
  stroke-dasharray: 103;
}
@-webkit-keyframes line3 {
  0% {
    opacity: 1;
    stroke-dashoffset: 103;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line3 {
  0% {
    opacity: 1;
    stroke-dashoffset: 103;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line4 {
  stroke-dasharray: 113;
}
@-webkit-keyframes line4 {
  0% {
    opacity: 1;
    stroke-dashoffset: 113;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line4 {
  0% {
    opacity: 1;
    stroke-dashoffset: 113;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line5 {
  stroke-dasharray: 118;
}
@-webkit-keyframes line5 {
  0% {
    opacity: 1;
    stroke-dashoffset: 118;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line5 {
  0% {
    opacity: 1;
    stroke-dashoffset: 118;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line6 {
  stroke-dasharray: 116;
}
@-webkit-keyframes line6 {
  0% {
    opacity: 1;
    stroke-dashoffset: 116;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line6 {
  0% {
    opacity: 1;
    stroke-dashoffset: 116;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line7 {
  stroke-dasharray: 147;
}
@-webkit-keyframes line7 {
  0% {
    opacity: 1;
    stroke-dashoffset: 147;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line7 {
  0% {
    opacity: 1;
    stroke-dashoffset: 147;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line8 {
  stroke-dasharray: 152;
}
@-webkit-keyframes line8 {
  0% {
    opacity: 1;
    stroke-dashoffset: 152;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line8 {
  0% {
    opacity: 1;
    stroke-dashoffset: 152;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line9 {
  stroke-dasharray: 131;
}
@-webkit-keyframes line9 {
  0% {
    opacity: 1;
    stroke-dashoffset: 131;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line9 {
  0% {
    opacity: 1;
    stroke-dashoffset: 131;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line10 {
  stroke-dasharray: 108;
}
@-webkit-keyframes line10 {
  0% {
    opacity: 1;
    stroke-dashoffset: 108;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line10 {
  0% {
    opacity: 1;
    stroke-dashoffset: 108;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line11 {
  stroke-dasharray: 127;
}
@-webkit-keyframes line11 {
  0% {
    opacity: 1;
    stroke-dashoffset: 127;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line11 {
  0% {
    opacity: 1;
    stroke-dashoffset: 127;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#line12 {
  stroke-dasharray: 120;
}
@-webkit-keyframes line12 {
  0% {
    opacity: 1;
    stroke-dashoffset: 120;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes line12 {
  0% {
    opacity: 1;
    stroke-dashoffset: 120;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
.advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  padding: 50px 46px 20px;
  border-radius: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1439px) {
  .advantages__wrapper {
    padding: 40px 36px 20px;
  }
}
.advantages__item {
  padding-top: 87px;
  position: relative;
  width: 22%;
}
@media (max-width: 1279px) {
  .advantages__item {
    width: 45%;
  }
}
@media (max-width: 580px) {
  .advantages__item {
    width: 100%;
  }
}
.advantages__item:not(:first-of-type):after,
.advantages__item:not(:first-of-type):before {
  position: absolute;
  content: '';
  width: 35px;
  height: 35px;
  background: url(../img/plus.svg) 50%;
  left: -46px;
}
.advantages__item:not(:first-of-type):before {
  top: -34px;
}
.advantages__item:not(:first-of-type):after {
  bottom: 0;
}
@media (max-width: 1279px) {
  .advantages__item:not(:first-of-type):nth-child(3):after,
  .advantages__item:not(:first-of-type):nth-child(3):before {
    content: none;
  }
}
@media (max-width: 579px) {
  .advantages__item:not(:first-of-type):last-child:after,
  .advantages__item:not(:first-of-type):last-child:before {
    content: none;
  }
  .advantages__item:not(:first-of-type):nth-child(3):after,
  .advantages__item:not(:first-of-type):nth-child(3):before {
    content: '';
  }
  .advantages__item:not(:first-of-type):after,
  .advantages__item:not(:first-of-type):before {
    left: 100%;
  }
}
.advantages__title {
  color: #78b848;
  font-weight: 600;
  margin-bottom: 0;
  height: 39px;
}
.advantages__title:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-family: Cepra, sans-serif;
  color: #1a3d60;
  font-weight: 400;
}
.advantages__title--hand:before {
  content: '\e932';
  font-size: 44px;
  line-height: 57px;
}
.advantages__title--disc:before {
  content: '\e930';
  font-size: 46px;
  line-height: 56px;
}
.advantages__title--brain:before {
  content: '\e92a';
  font-size: 57px;
  line-height: 60px;
}
.advantages__title--lamp:before {
  content: '\e933';
  font-size: 48px;
  line-height: 56px;
}
.news {
  padding: 0 0 60px;
}
.news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 30px;
  gap: 30px;
  margin-bottom: 44px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news__item {
  width: 31%;
  height: 231px;
  margin-bottom: 20px;
}
@media (max-width: 1359px) {
  .news__item {
    width: 48%;
  }
}
@media (max-width: 999px) {
  .news__item {
    height: auto;
  }
}
@media (max-width: 767px) {
  .news__item {
    width: 100%;
  }
}
.news__link {
  display: block;
  width: 217px;
  margin: 0 auto;
}
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  margin-bottom: -31px;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
      align-self: end;
}
.footer,
.footer__top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}
.footer__top {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, -webkit-max-content);
  -ms-grid-columns: -webkit-max-content 2vw -webkit-max-content 2vw -webkit-max-content 2vw -webkit-max-content;
  -ms-grid-columns: max-content 2vw max-content 2vw max-content 2vw max-content;
  grid-template-columns: repeat(4, max-content);
  grid-column-gap: 2vw;
  width: 100%;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  justify-items: center;
  padding-bottom: 15px;
  font-size: 16px;
}
@media (max-width: 1600px) {
  .footer__top {
    font-size: 14px;
    grid-column-gap: 1vw;
  }
}
.footer__bottom {
  color: #fff;
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer__nav {
  -ms-grid-column-span: 4;
  grid-column: span 4;
}
@media (max-width: 999px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer__nav .site-nav__link {
  color: #1a3d60;
}
@media (max-width: 999px) {
  .footer__nav .site-nav__link {
    color: #fff;
  }
}
@media (max-width: 1500px) {
  .footer__nav .site-nav__item:not(:last-child):not(:first-child) {
    margin: 0 10px;
  }
  .footer__nav .site-nav__item:first-child {
    margin-right: 10px;
  }
  .footer__nav .site-nav__item:last-child {
    margin-left: 10px;
  }
}
@media (max-width: 999px) {
  .footer__nav .site-nav__item:first-child {
    margin-bottom: 0;
  }
  .footer__nav .site-nav__item:last-child {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .footer__nav .site-nav__item:first-child {
    margin-left: 10px;
  }
  .footer__nav .site-nav__item:last-child {
    margin-right: 10px;
  }
}
.footer__address {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  text-align: left;
}
.footer__address abbr {
  color: #78b848;
  font-size: 25px;
  line-height: 25px;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  margin-right: 5px;
}
@media (max-width: 1279px) {
  .footer__address abbr {
    font-size: 20px;
    line-height: 20px;
  }
}
.footer__phone {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.footer__phone:before {
  color: #78b848;
  font-size: 25px;
  line-height: 25px;
  vertical-align: -4px;
}
@media (max-width: 1279px) {
  .footer__phone:before {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 1360px) {
  .footer__phone {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer__phone:hover {
    text-decoration: underline;
  }
}
.footer__login {
  text-decoration: none;
  font: inherit;
  color: inherit;
  font-weight: 700;
}
@media (max-width: 1360px) {
  .footer__login {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
        align-self: center;
  }
}
.footer__login abbr {
  color: #78b848;
  font-size: 25px;
  line-height: 20px;
  vertical-align: -4px;
  font-weight: 400;
}
@media (max-width: 1279px) {
  .footer__login abbr {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer__login:hover span {
    text-decoration: underline;
  }
}
.footer__mail:before {
  color: #78b848;
  font-size: 25px;
  line-height: 25px;
  vertical-align: -4px;
}
@media (max-width: 1279px) {
  .footer__mail:before {
    font-size: 20px;
    line-height: 20px;
  }
}
.footer__socials {
  text-align: left;
}
.footer__socials abbr {
  font-weight: 400;
}
@media (max-width: 1280px) {
  .footer__socials abbr {
    font-size: 24px;
  }
}
@media (max-width: 1279px) {
  .footer {
    margin-bottom: -24px;
  }
}
@media (max-width: 999px) {
  .footer {
    background: #1a3d60;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    padding: 10px;
    margin-top: auto;
    color: #fff;
  }
  .footer__address {
    text-align: center;
    display: block;
  }
  .footer__address span {
    color: #fff;
  }
  .footer__address abbr {
    vertical-align: -4px;
  }
}
@media (max-width: 767px) {
  .footer {
    width: 100%;
  }
  .footer__item {
    margin-bottom: 10px;
  }
  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 374px) {
  .footer__bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__bottom .intrid {
    margin-top: 10px;
  }
}
.products {
  padding: 10px 0 20px;
}
.products__wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  grid-auto-flow: dense;
  grid-gap: 20px;
  gap: 20px;
}
.products__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  border-radius: 5px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  padding: 10px 15px;
}
@media (max-width: 1600px) {
  .products__link {
    font-size: 16px;
  }
}
@media (max-width: 999px) {
  .products__link {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .products__link {
    font-size: 14px;
  }
}
.products__link span {
  max-width: 278px;
}
@media (hover: hover) and (pointer: fine) {
  .products__link:focus {
    outline: 2px solid #1a3d60;
  }
  .products__link:hover {
    background: #4581df;
    color: #fff;
  }
}
.products__link:first-child,
.products__link:nth-child(5),
.products__link:nth-child(6),
.products__link:nth-child(7) {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.products__link--first {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.products__link--first img {
  width: 48%;
}
@media (max-width: 1608px) {
  .products__link:first-child {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media (max-width: 1233px) {
  .products__link:first-child {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.big-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 284px;
  grid-template-columns: 1fr 1fr 284px;
  grid-template-rows: 80px 310px -webkit-min-content;
  -ms-grid-rows: 80px 10px 310px 10px -webkit-min-content;
  -ms-grid-rows: 80px 10px 310px 10px min-content;
  grid-template-rows: 80px 310px min-content;
  grid-column-gap: 40px;
  grid-row-gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.big-card > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.big-card > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.big-card > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.big-card > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.big-card > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.big-card > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.big-card > *:nth-child(7) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.big-card > *:nth-child(8) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.big-card > *:nth-child(9) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
@media (max-width: 1439px) {
  .big-card {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .big-card {
    -ms-grid-columns: none;
    grid-template-columns: none;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .big-card > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.big-card__slider {
  min-width: 0;
  -ms-grid-row-span: 3;
  grid-row: span 3;
}
.big-card__slider .card-slider {
  margin-bottom: 26px;
}
.big-card__slider .swiper-slide {
  cursor: pointer;
}
.big-card__slider picture {
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .big-card__slider .card-slider-sm .swiper-slide {
    text-align: center;
  }
}
.big-card__title {
  font-size: 22px;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media (max-width: 1439px) {
  .big-card__title {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
@media (max-width: 1200px) {
  .big-card__title {
    font-size: 20px;
  }
}
.big-card__info {
  border-bottom: 2px solid #78b848;
  padding-bottom: 20px;
  height: 100%;
}
@media (max-width: 1599px) {
  .big-card__info {
    border-bottom: none;
    padding-bottom: 10px;
  }
}
@media (max-width: 1360px) {
  .big-card__info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media (max-width: 999px) {
  .big-card__info {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.big-card__info .spec {
  margin-bottom: 16px;
}
.big-card__calc {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .big-card__calc {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.big-card__price {
  font-size: 20px;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .big-card__price {
    font-size: 16px;
  }
}
@media (max-width: 999px) {
  .big-card__price {
    font-size: 20px;
  }
}
@media (max-width: 413px) {
  .big-card__price {
    font-size: 16px;
  }
}
.big-card__count {
  width: 100px;
  margin-right: 60px;
}
@media (max-width: 480px) {
  .big-card__count {
    margin-right: 0;
  }
}
.big-card__buttons {
  margin-left: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 356px;
}
@media (max-width: 767px) {
  .big-card__buttons {
    margin: 10px 0 0;
  }
}
@media (max-width: 374px) {
  .big-card__buttons {
    width: 340px;
  }
}
.big-card__benefits {
  height: 100%;
  border: 2px solid #78b848;
  border-radius: 5px;
  padding: 12px 18px;
  position: relative;
}
.big-card__benefits:after,
.big-card__benefits:before {
  content: '';
  width: 90%;
  height: 2px;
  background: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  position: absolute;
}
.big-card__benefits:before {
  top: -2px;
}
.big-card__benefits:after {
  bottom: -2px;
}
@media (max-width: 999px) {
  .big-card__benefits {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .big-card__benefits {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.big-card-table {
  -ms-grid-columns: 1.3fr 2fr;
  grid-template-columns: 1.3fr 2fr;
  grid-template-rows: 80px 370px -webkit-min-content;
  -ms-grid-rows: 80px 370px -webkit-min-content;
  -ms-grid-rows: 80px 370px min-content;
  grid-template-rows: 80px 370px min-content;
}
.big-card-table > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.big-card-table > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.big-card-table > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.big-card-table > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.big-card-table > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.big-card-table > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
@media (max-width: 1500px) {
  .big-card-table {
    grid-template-rows: 80px -webkit-min-content -webkit-min-content;
    -ms-grid-rows: 80px -webkit-min-content -webkit-min-content;
    -ms-grid-rows: 80px min-content min-content;
    grid-template-rows: 80px min-content min-content;
  }
}
.big-card-table__img {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.big-card-table .big-card__title {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.big-card-table .big-card__table {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.big-card-table .big-card__benefits {
  height: auto;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
      align-self: start;
}
@media (max-width: 580px) {
  .big-card-table__price {
    padding: 0 10px;
  }
}
@media (max-width: 1500px) {
  .big-card-table .big-card__benefits {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: 2/2;
  }
  .big-card-table .big-card__table {
    -ms-grid-row-span: 1;
    grid-row: span 1;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.big-card-table .select {
  max-width: 104px;
  width: 100%;
  padding: 7px 10px;
}
.big-card-table__price .price__old {
  margin-right: 0;
}
.big-card-table .calc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.big-card-table .calc__input {
  margin: 0 5px;
}
@media (max-width: 767px) {
  .big-card-table {
    -ms-grid-columns: none;
    grid-template-columns: none;
  }
  .big-card-table .big-card__title {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .big-card-table .big-card-table__img {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
  .big-card-table .big-card__benefits {
    grid-area: auto;
  }
  .big-card-table .big-card__table {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
@media (max-width: 580px) {
  .big-card-table {
    font-size: 16px;
  }
  .big-card-table .big-card__table {
    overflow-x: scroll;
  }
  .big-card-table .big-card__table table {
    width: 600px;
  }
}
.big-card-table-2 {
  -ms-grid-columns: 1.3fr 2fr;
  grid-template-columns: 1.3fr 2fr;
  grid-template-rows: 80px 370px -webkit-min-content;
  -ms-grid-rows: 80px 370px -webkit-min-content;
  -ms-grid-rows: 80px 370px min-content;
  grid-template-rows: 80px 370px min-content;
}
.big-card-table-2 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.big-card-table-2 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.big-card-table-2 > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.big-card-table-2 > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.big-card-table-2 > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.big-card-table-2 > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
@media (max-width: 1500px) {
  .big-card-table-2 {
    grid-template-rows: 80px -webkit-min-content -webkit-min-content;
    -ms-grid-rows: 80px -webkit-min-content -webkit-min-content;
    -ms-grid-rows: 80px min-content min-content;
    grid-template-rows: 80px min-content min-content;
  }
}
.big-card-table-2__img {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.big-card-table-2 .big-card__title {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.big-card-table-2 .big-card__table {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.big-card-table-2 .big-card__benefits {
  height: auto;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
      align-self: start;
}
@media (max-width: 580px) {
  .big-card-table-2__price {
    padding: 0 10px;
  }
}
.big-card-table-2 .big-card__benefits {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: 2/2;
}
.big-card-table-2 .big-card__table {
  -ms-grid-row-span: 1;
  grid-row: span 1;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.big-card-table-2 .select {
  max-width: 104px;
  width: 100%;
  padding: 7px 10px;
}
.big-card-table-2__price .price__old {
  margin-right: 0;
}
.big-card-table-2__price .price__new {
  margin-left: auto;
}
.big-card-table-2 .calc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.big-card-table-2 .calc__input {
  margin: 0 5px;
}
@media (max-width: 767px) {
  .big-card-table-2 {
    -ms-grid-columns: none;
    grid-template-columns: none;
  }
  .big-card-table-2 .big-card__title {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .big-card-table-2 .big-card-table__img {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
  .big-card-table-2 .big-card__benefits {
    grid-area: auto;
  }
  .big-card-table-2 .big-card__table {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
@media (max-width: 580px) {
  .big-card-table-2 {
    font-size: 16px;
  }
  .big-card-table-2 .big-card__table {
    overflow-x: scroll;
  }
  .big-card-table-2 .big-card__table table {
    width: 600px;
  }
}
.big-card__benefits {
  -ms-grid-column-align: center;
      justify-self: center;
  width: 0;
  overflow: hidden;
  -webkit-animation: benefit 1.5s forwards;
  animation: benefit 1.5s forwards;
  padding: 0;
}
.big-card__benefits .card-benefits {
  opacity: 0;
  height: 188px;
  -webkit-animation: benefitList 1s 1s forwards;
  animation: benefitList 1s 1s forwards;
}
@-webkit-keyframes benefit {
  to {
    width: 100%;
    overflow: visible;
    padding: 12px 18px;
  }
}
@keyframes benefit {
  to {
    width: 100%;
    overflow: visible;
    padding: 12px 18px;
  }
}
@-webkit-keyframes benefitList {
  50%,
  to {
    opacity: 1;
    height: auto;
  }
}
@keyframes benefitList {
  50%,
  to {
    opacity: 1;
    height: auto;
  }
}
.big-card-tabs {
  padding: 20px 0;
}
.big-card-tabs__controls {
  background: #f8f8f8;
  padding: 0 20px;
  margin: 0 -20px;
}
@media (max-width: 1439px) {
  .big-card-tabs__controls {
    margin: 0 -15px;
  }
}
@media (max-width: 999px) {
  .big-card-tabs__controls {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.big-card-tabs__button {
  font-weight: 600;
  padding: 27px 0;
  margin-right: 56px;
}
@media (max-width: 1100px) {
  .big-card-tabs__button {
    margin-right: 20px;
  }
}
@media (max-width: 999px) {
  .big-card-tabs__button {
    margin-right: 0;
  }
}
.big-card-tabs__button.active {
  color: #4581df;
  border-bottom: 3px solid #4581df;
}
.big-card-tabs__item {
  visibility: hidden;
  opacity: 0;
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  line-height: 24px;
}
.big-card-tabs__item.active {
  visibility: visible;
  opacity: 1;
  position: static;
}
.big-card-tabs__item--video {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, 276px);
  grid-gap: 10px;
  gap: 10px;
}
@media (max-width: 999px) {
  .big-card-tabs__item--video {
    grid-template-columns: repeat(auto-fit, 375px);
  }
}
@media (max-width: 767px) {
  .big-card-tabs__item--video {
    grid-template-columns: repeat(auto-fit, 1fr);
    justify-items: center;
  }
}
.big-card-tabs__spec {
  max-width: 575px;
}
.previously .swiper {
  margin-bottom: 10px;
}
.previously .swiper-slide {
  height: 521px;
}
.categories {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, -webkit-max-content));
  grid-template-columns: repeat(auto-fit, minmax(232px, max-content));
  grid-gap: 8px;
  gap: 8px;
}
.categories__item {
  background: #fff;
  color: #1a3d60;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
@media (hover: hover) and (pointer: fine) {
  .categories__item:focus {
    outline: 2px solid #1a3d60;
  }
  .categories__item:hover {
    border-color: #4581df;
  }
}
.categories__item.active {
  background: #4581df;
  color: #fff;
}
.catalog {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(311px, 1fr));
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  grid-column-gap: 40px;
  grid-row-gap: 10px;
  padding-top: 20px;
}
.catalog__item {
  position: relative;
  height: 471px;
}
@media (max-width: 999px) {
  .catalog__item {
    height: auto;
  }
}
.catalog .card {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.catalog .card:hover {
  z-index: 1;
}
@media (max-width: 999px) {
  .catalog .card {
    position: static;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
    margin: 0 auto;
  }
}
.catalog__pagination {
  margin-top: 10px;
  -ms-grid-column-span: 4;
  grid-column: span 4;
  -ms-grid-column-align: center;
      justify-self: center;
}
@media (max-width: 1805px) {
  .catalog__pagination {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
}
@media (max-width: 1393px) {
  .catalog__pagination {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media (max-width: 698px) {
  .catalog__pagination {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.form-group {
  position: relative;
}
.filter__switch {
  display: none;
}
@media (max-width: 810px) {
  .filter__switch {
    display: block;
    margin-top: 10px;
  }
  .filter__switch abbr {
    font-weight: 400;
    display: inline-block;
    font-size: 16px;
    vertical-align: -1px;
  }
}
.filter__switch.active abbr {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
      transform: scaleX(-1);
}
.filter__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1784px) {
  .filter__form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 810px) {
  .filter__form {
    visibility: hidden;
    position: absolute;
    opacity: 0;
  }
}
.filter__form.active {
  visibility: visible;
  position: static;
  opacity: 1;
}
.filter__selects {
  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;
}
@media (max-width: 1784px) {
  .filter__selects {
    margin-bottom: 20px;
  }
}
.filter__select {
  margin-right: 10px;
}
@media (max-width: 580px) {
  .filter__select {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.filter__buttons {
  width: 153px;
  margin-right: 32px;
}
.filter__reset,
.filter__submit {
  display: block;
  padding: 8px 11px 8px 43px;
  position: relative;
  width: 100%;
}
.filter__submit:before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  left: 14px;
}
.filter__submit:after,
.filter__submit:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.filter__submit:after {
  content: '\e907';
  font-family: Cepra, sans-serif;
  font-size: 6px;
  left: 18px;
  font-weight: 400;
}
.filter__reset {
  padding-right: 28px;
  background: #fff;
  color: #1a3d60;
  margin-top: 8px;
}
.filter__reset:after,
.filter__reset:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 1px;
  border-radius: 2px;
  background: #1a3d60;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg);
  left: 14px;
}
.filter__reset:after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
      transform: translateY(-50%) rotate(-45deg);
}
.filter__sort {
  width: 115px;
  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: 22px;
  border-left: 2px solid #78b848;
  border-right: 2px solid #78b848;
}
.filter__sort-name,
.filter__sort-price {
  text-decoration: none;
  font-weight: 600;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .filter__sort-name:hover,
  .filter__sort-price:hover {
    color: #78b848;
  }
  .filter__sort-name:focus,
  .filter__sort-price:focus {
    outline: 2px solid #1a3d60;
  }
}
.filter__sort-price abbr {
  font-size: 24px;
  line-height: 24px;
}
.filter__sort-name {
  font-size: 14px;
  line-height: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.filter__sort-name abbr {
  font-size: 24px;
  line-height: 24px;
}
.order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1600px) {
  .order {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.order h2,
.order h3 {
  font-size: 21px;
  line-height: 27px;
  margin-top: 0;
}
.order__cards {
  margin-bottom: 22px;
}
.order__result {
  width: 27%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1600px) {
  .order__result {
    width: 50%;
    margin-top: 22px;
    min-width: 350px;
  }
}
@media (max-width: 580px) {
  .order__result {
    width: 100%;
  }
}
.order__info {
  margin-right: 20px;
}
@media (max-width: 1600px) {
  .order__info {
    margin-right: 0;
  }
}
@media (max-width: 999px) {
  .order__info {
    width: 100%;
  }
}
.order-cards {
  background: #fff;
  padding: 22px 27px;
  border-radius: 5px;
}
.order-cards__item:not(:last-child) {
  margin-bottom: 44px;
}
@media (max-width: 767px) {
  .order-cards {
    padding: 11px 13px;
  }
}
.lk__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 20px;
  gap: 20px;
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid;
}
.lk__tabs-btn.active {
  border-bottom: 2px solid #4581df;
}
.lk__tab-panel {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -1;
}
.lk__tab-panel.active {
  opacity: 1;
  visibility: visible;
  position: static;
}
.lk__title {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}
.lk__order-header {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  padding: 5px;
  grid-gap: 10px;
  gap: 10px;
  overflow-x: visible;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(7, 1fr);
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  justify-content: normal;
}
.lk__order-header p {
  text-align: center;
}
@media (max-width: 767px) {
  .lk__order-header {
    grid-template-columns: repeat(7, -webkit-max-content);
    -ms-grid-columns: -webkit-max-content 10px -webkit-max-content 10px -webkit-max-content 10px -webkit-max-content 10px -webkit-max-content 10px -webkit-max-content 10px -webkit-max-content;
    -ms-grid-columns: max-content 10px max-content 10px max-content 10px max-content 10px max-content 10px max-content 10px max-content;
    grid-template-columns: repeat(7, max-content);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow-x: scroll;
  }
}
.lk__order-header--main {
  padding: 10px 5px;
  margin-bottom: 12px;
  border: 1px solid;
  border-radius: 5px;
}
.lk__order-header--main p {
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .lk__order-header--main {
    display: none;
  }
}
.lk__order-item {
  border: 1px solid;
  border-radius: 5px;
}
.lk__order-item:not(:last-child) {
  margin-bottom: 10px;
}
.lk__order-item .lk__order-header {
  cursor: pointer;
}
.lk__order-details {
  padding: 0 10px;
}
.lk__order-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 20px 1fr 20px 40px 20px 70px;
  grid-template-columns: 20px 1fr 40px 70px;
  grid-gap: 20px;
  gap: 20px;
}
.lk__order-name {
  color: inherit;
  font-weight: 700;
}
.lk__order-sum {
  text-align: right;
}
.lk__repeat {
  color: inherit;
}
.lk__user-data {
  max-width: 500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 20px;
  gap: 20px;
}
.search__sublist {
  display: none;
  position: absolute;
  background-color: #fff;
  z-index: 100;
  list-style: none;
  width: 100%;
  border-radius: 5px;
  padding: 15px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.27);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.27);
}
.search__sublist_active {
  display: block;
}
.search__sublist-link {
  text-decoration: none;
  color: #1a3d60;
  cursor: pointer;
  margin: 0;
}
.search__sublist-link:hover {
  color: #4581df;
}
.icon-rotate {
  display: block;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.new-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 25px;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0 20px;
}
.new-card-img {
  width: calc(25% - 10px);
}
.new-card-tabs {
  width: calc(75% - 10px);
  padding: 0;
}
.new-card-tabs-item {
  height: 170px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.new-card-tabs-item:first-child {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.new-big-card,
.new-card-tabs-item:first-child {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.new-big-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.new-big-card-table {
  width: 100%;
}
.new-big-card-text {
  height: 100px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.new-mega-link {
  text-decoration: none;
  color: #1a3d60;
}
.new-mega-about {
  display: block;
  font-weight: 600;
  margin-bottom: 20px;
}
.new-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.new-modal_opened {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.new-card-modal-button {
  padding: 0;
  color: #4581df;
}
.new-modal-container {
  position: relative;
  border: 3px solid #78b848;
  border-radius: 5px;
  background: #fff;
  width: 70%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px 15px 15px;
}
.new-video {
  width: calc(33.33333% - 10px);
  height: 100%;
}
@media screen and (max-width: 768px) {
  .new-card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .new-card-img {
    width: 50%;
  }
  .new-card-tabs {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 530px) {
  .new-video {
    width: calc(50% - 10px);
    height: 100%;
  }
  .new-card-tabs-item:last-child {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
