@charset "UTF-8";

body {
  background: url(../img/bgptrn.jpg);
  padding: 0;
  margin: 0;
  color: #333333;
  font-size: 0.95rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
h1,
h2,
h3,
h4,
a {
  color: #000;
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

h3{
  margin: 16px 0 8px;
}

.site-page {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.layout-frame {
  width: 100%;
  max-width: 1440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  width: 100%;
  color: #333;
}
table th,
table td {
  font-size: 13px;
  padding: 10px 10px 10px 20px;
  border: 1px solid #524e4e;
}

button {
  border: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
button:active {
  outline: none;
  opacity: 0.7;
}
button:focus {
  outline: none;
}

input,
textarea,
button,
select {
  font-family: Tahoma;
}

p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

span {
  font-size: 0.95rem;
}

a {
  /* font-size: 0.8125rem; */
  text-decoration: none;
  color: #476b83;
}

.section-title,
h2 {
  font-weight: bold;
  font-size: 20px;
  color: #00113e;
  margin-bottom: 10px;
}

.hidden-phone-field {
  display: none;
}

.text-strong {
  font-weight: bold;
}

.request-form {
  /* background: #f3f3f3; */
  padding: 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.mix-calculator__fields label select,
.mix-calculator__fields label input {
  background: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 9px 13px;
  border: 2px solid transparent;
  font-size: 14px;
  line-height: 14px;
}
.mix-calculator__fields label select:active,
.mix-calculator__fields label input:active {
  outline: none;
}
.mix-calculator__fields label select:focus,
.mix-calculator__fields label input:focus {
  outline: none;
}
.mix-calculator__fields label select:hover,
.mix-calculator__fields label input:hover {
  border: 2px solid #807a7a;
}

.mix-calculator__pump-option .choice-control__input:checked,
.mix-calculator__pump-option .choice-control__input:not(:checked) {
  position: absolute;
  display: none;
}

.mix-calculator__pump-option .choice-control__input:checked + label,
.mix-calculator__pump-option .choice-control__input:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.mix-calculator__pump-option .choice-control__input:checked + label:before,
.mix-calculator__pump-option .choice-control__input:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 1px;
  width: 17px;
  height: 17px;
  padding: 0;
  background: white;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  mix-blend-mode: normal;
}

.mix-calculator__pump-option .choice-control__input:checked + label:after,
.mix-calculator__pump-option .choice-control__input:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.mix-calculator__pump-option .choice-control__input:checked + label:after,
.mix-calculator__pump-option .choice-control__input:not(:checked) + label:after {
  left: 4px;
  top: 5px;
  width: 7px;
  height: 4px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  border-left: 3px solid #333333;
  border-bottom: 3px solid #333333;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mix-calculator__pump-option .choice-control__input:not(:checked) + label:after {
  opacity: 0;
}

.mix-calculator__pump-option .choice-control__input:checked + label:after {
  opacity: 1;
}

.catalog-rail {
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 275px;
  background-color: #00113e;
  border-radius: 8px;
}
.catalog-rail__more-button {
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 20px 8px 33px;
  width: 100%;
  cursor: pointer;
  text-decoration: underline;
  color: #fff;
}
.catalog-rail__more-button:hover {
  background: #2e4e8c;
}
.catalog-rail__extra-list {
  display: none;
}
.catalog-rail__extra-list.is-expanded {
  display: block;
}
.catalog-rail * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.catalog-rail__group:not(:last-child) {
  padding: 15px 0;
  border-bottom: 1px solid grey;
}
.catalog-rail__group:not(:first-of-type) {
  border-top: rgba(255, 255, 255, 0.2);
}
.catalog-rail__list {
  width: 100%;
}
.catalog-rail__heading {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-decoration: underline;
  padding: 10px 0;
  line-height: 100%;
  padding-left: 20px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog-rail__heading.is-active {
  background: #2e4e8c;
}
.catalog-rail__heading::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/menu-arrow.svg) no-repeat center;
  display: block;
  margin-right: 10px;
}
.catalog-rail__item {
  position: relative;
}
.catalog-rail__item-hidden {
  display: none;
}
.catalog-rail__item.is-active {
  background: #2e4e8c;
}
.catalog-rail__item a,
.catalog-rail__item span {
  /* text-transform: uppercase; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 20px 8px 33px;
  color: white;
  width: 100%;
}
.catalog-rail__item:hover {
  background: #2e4e8c;
}
.catalog-rail__item > .catalog-rail__list {
  z-index: 25;
  display: none;
  position: absolute;
  right: -100%;
  top: 0;
  /* width: 170px; */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2e4e8c),
    to(#2e4e8c)
  );
  background: -webkit-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -moz-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -o-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: linear-gradient(to bottom, #2e4e8c, #2e4e8c);
}
.catalog-rail__item > .catalog-rail__list .catalog-rail__item {
  line-height: 100%;
}
.catalog-rail__item > .catalog-rail__list .catalog-rail__item:hover {
  background: #2e4e8c;
}
.catalog-rail__item .catalog-rail__parent-link {
  padding-left: 20px;
}
.catalog-rail__parent-link::before {
  content: "";
  width: 8px;
  margin-right: 5px;
  height: 8px;
  background: url(../img/menu-arrow.svg) no-repeat center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
}
.catalog-rail .catalog-rail__item.catalog-rail__mobile-item {
  display: none;
}

.catalog-rail__download {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  margin-top: -10px;
}

.drawer-tree {
  z-index: 299;
  width: 100%;
  height: -webkit-calc(100vh - 50px);
  height: -moz-calc(100vh - 50px);
  height: calc(100vh - 50px);
  position: fixed;
  left: -100%;
  top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: scroll;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.83);
  -webkit-box-align: start;
  -webkit-align-items: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.drawer-tree__inner {
  min-height: 100%;
  background-color: #00113e;
}
.drawer-tree.is-active {
  left: 0;
  opacity: 1;
}
.drawer-tree .catalog-rail {
  padding-bottom: 70px;
}

.drawer-tree__top {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 275px;
}
.drawer-tree__top ul {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid grey;
}
.drawer-tree__top ul li {
  position: relative;
}
.drawer-tree__top ul li.is-active {
  background: #2e4e8c;
}
.drawer-tree__top ul li a {
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 20px 8px 33px;
  color: white;
  width: 100%;
}
.drawer-tree__top ul li:hover {
  background: #2e4e8c;
}

.menu-toggle {
  width: 35px;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  position: relative;
  z-index: 5;
}

.menu-toggle__icon {
  position: relative;
  width: 35px;
  top: 18px;
  height: 3px;
  background-color: #3e4041;
}

.menu-toggle__icon::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #3e4041;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  -o-transition: top 0.2s linear 0.2s, -o-transform 0.2s ease-in;
  -moz-transition: transform 0.2s ease-in, top 0.2s linear 0.2s,
    -moz-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s,
    -webkit-transform 0.2s ease-in, -moz-transform 0.2s ease-in,
    -o-transform 0.2s ease-in;
}

.menu-toggle__icon::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #3e4041;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  -o-transition: top 0.2s linear 0.2s, -o-transform 0.2s ease-in;
  -moz-transition: transform 0.2s ease-in, top 0.2s linear 0.2s,
    -moz-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s,
    -webkit-transform 0.2s ease-in, -moz-transform 0.2s ease-in,
    -o-transform 0.2s ease-in;
}

.menu-toggle__icon.menu-toggle__icon-active {
  background-color: transparent;
}

.menu-toggle__icon.menu-toggle__icon-active::before {
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  -o-transition: top 0.2s linear, -o-transform 0.2s ease-in 0.2s;
  -moz-transition: top 0.2s linear, transform 0.2s ease-in 0.2s,
    -moz-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s,
    -webkit-transform 0.2s ease-in 0.2s, -moz-transform 0.2s ease-in 0.2s,
    -o-transform 0.2s ease-in 0.2s;
}

.menu-toggle__icon.menu-toggle__icon-active::after {
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  -o-transition: top 0.2s linear, -o-transform 0.2s ease-in 0.2s;
  -moz-transition: top 0.2s linear, transform 0.2s ease-in 0.2s,
    -moz-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s,
    -webkit-transform 0.2s ease-in 0.2s, -moz-transform 0.2s ease-in 0.2s,
    -o-transform 0.2s ease-in 0.2s;
}

.rate-board__viewport {
  overflow-x: auto;
}

.request-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}
.request-form__inner {
  width: 100%;
  /* padding: 20px; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  border-top: 1px solid #f5f5f5;
  /* border-bottom: 1px solid #f5f5f5; */
}
.request-form__heading {
  text-align: center;
  font-weight: bold;
  color: #00113e;
  font-size: 16px;
  margin-bottom: 15px;
}

.callback-popup-anchor {
  display: none;
  min-width: 450px;
  padding: 25px !important;
  /* background: #f3f3f3; */
  border-radius: 8px;
}
.callback-popup-anchor svg {
  left: 5px;
  bottom: 5px;
}

.calculator-popup-anchor {
  display: none;
  width: 800px;
  padding: 57px 40px 30px 40px !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  border-radius: 6px !important;
}
.calculator-popup-anchor * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mix-calculator {
  margin: 0 auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 717px;
  background: -webkit-linear-gradient(
      156.48deg,
      rgba(51, 51, 51, 0.56) 30.88%,
      rgba(51, 51, 51, 0.27) 86.09%
    ),
    url(../img/calc-bg.png);
  background: -moz-linear-gradient(
      156.48deg,
      rgba(51, 51, 51, 0.56) 30.88%,
      rgba(51, 51, 51, 0.27) 86.09%
    ),
    url(../img/calc-bg.png);
  background: -o-linear-gradient(
      156.48deg,
      rgba(51, 51, 51, 0.56) 30.88%,
      rgba(51, 51, 51, 0.27) 86.09%
    ),
    url(../img/calc-bg.png);
  background: linear-gradient(
      293.52deg,
      rgba(51, 51, 51, 0.56) 30.88%,
      rgba(51, 51, 51, 0.27) 86.09%
    ),
    url(../img/calc-bg.png);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: white;
  padding: 17px 0;
}
.mix-calculator__heading {
  width: 100%;
  text-align: center;
}
.mix-calculator__heading + p {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.mix-calculator__body {
  width: 100%;
  border-top: 1px solid #f5f5f5;
  /* border-bottom: 1px solid #f5f5f5; */
  padding: 37px;
}
.mix-calculator__fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mix-calculator__fields label {
  font-size: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mix-calculator__fields label select {
  -webkit-appearance: none;
  margin-top: 7px;
  width: 173px;
  line-height: unset;
}
.mix-calculator__fields label input {
  width: 95px;
  margin-top: 7px;
}
.mix-calculator__summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 12px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 13px;
}
.mix-calculator__body-action {
  width: 180px;
  padding: 15px;
  font-size: 13px;
  text-transform: uppercase;
}
.mix-calculator__body-price {
  margin-right: 12px;
  margin-left: auto;
}
.mix-calculator__body-price span {
  font-weight: bold;
  font-size: 20px;
}

.crumbs {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.crumbs .crumbs__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
}
.crumbs .crumbs__item a {
  font-size: 11px;
  color: #00113e;
}
.crumbs .crumbs__item.is-active:after {
  display: none;
}
.crumbs .crumbs__item:after {
  display: block;
  content: "/";
  margin: 0 6px;
}

.rich-text .crumbs,
.rich-text .breadcrumb,
.crumbs,
.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.rich-text .crumbs > li,
.rich-text .breadcrumb > li,
.crumbs > li,
.breadcrumb > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  padding: 0;
  list-style: none;
  list-style-type: none;
  color: #3e4041;
  font-size: 12px;
  line-height: 1.3;
}

.rich-text .crumbs > li::marker,
.rich-text .breadcrumb > li::marker,
.crumbs > li::marker,
.breadcrumb > li::marker {
  content: "";
  font-size: 0;
}

.rich-text .crumbs > li a,
.rich-text .breadcrumb > li a,
.crumbs > li a,
.breadcrumb > li a {
  color: #315f86;
  font-size: 12px;
}

.rich-text .crumbs > li:not(:last-child)::after,
.rich-text .breadcrumb > li:not(:last-child)::after,
.crumbs > li:not(:last-child)::after,
.breadcrumb > li:not(:last-child)::after {
  content: "/";
  display: block;
  margin: 0 6px;
  color: #7a8795;
}

.rich-text .crumbs > li:last-child::after,
.rich-text .breadcrumb > li:last-child::after,
.crumbs > li:last-child::after,
.breadcrumb > li:last-child::after {
  display: none;
}

.contact-card__contact-list {
  list-style: none;
  list-style-type: none !important;
  font-size: 13px;
  margin-bottom: 16px;
  padding: 0 !important;
  color: #2f2f2f;
}
.contact-card__contact-list li {
  margin-bottom: 5px;
}
.contact-card__contact-list li::before {
  color: black;
  font-weight: 700;
  display: inline-block;
}
.contact-card__contact-list > * {
  position: relative;
  margin-left: 30px;
  line-height: 26px !important;
}
.contact-card__contact-list > *::after {
  top: 2px;
  position: absolute;
  content: "";
  background: url("../img/sprite.png") no-repeat;
}

.contact-card__action {
  position: absolute;
  right: 10px;
  top: 65px;
  width: 180px;
  padding: 14px;
}

.contact-detail__mail a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.contact-detail__mail::after {
  left: -30px;
  width: 20px;
  height: 26px;
  background-position: -15px -21px;
}

.contact-detail__phone::after {
  left: -25px;
  top: 3px;
  width: 16px;
  height: 26px;
  background-position: 0 0;
}

.contact-detail__region-phone::after {
  left: -25px;
  top: 3px;
  width: 16px;
  height: 26px;
  background-position: 0 0;
}

.contact-detail__hours::after {
  width: 20px;
  left: -30px;
  height: 26px;
  background-position: -35px 0;
}

.contact-detail__region-hours::after {
  top: 0;
  width: 23px;
  left: -30px;
  height: 26px;
  background-position: -56px 0;
}

.contact-detail__address::after {
  left: -25px;
  width: 16px;
  height: 26px;
  background-position: 0 -24px;
}

.contact-detail__text::after {
  width: 20px;
  left: -30px;
  height: 26px;
  background-position: -35px -21px;
}

.quick-contact-bar {
  width: 100%;
  z-index: 298;
  height: 45px;
  background: #383838;
  position: fixed;
  bottom: 0;
  -webkit-transition: bottom 0.2s ease;
  -o-transition: bottom 0.2s ease;
  -moz-transition: bottom 0.2s ease;
  transition: bottom 0.2s ease;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.quick-contact-bar.is-visible {
  display: none;
}
.quick-contact-bar > * {
  text-align: center;
  color: white;
  font-weight: 800;
  font-size: 15px;
  padding: 0 5px;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.quick-contact-bar > * a {
  font-size: 15px;
}
.quick-contact-bar > *:first-of-type {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00113e),
    to(#383838)
  );
  background: -webkit-linear-gradient(left, #00113e 0%, #383838 100%);
  background: -moz-linear-gradient(left, #00113e 0%, #383838 100%);
  background: -o-linear-gradient(left, #00113e 0%, #383838 100%);
  background: linear-gradient(to right, #00113e 0%, #383838 100%);
}
.quick-contact-bar > *:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2e4e8c),
    to(#2e4e8c)
  );
  background: -webkit-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -moz-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -o-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: linear-gradient(to bottom, #2e4e8c, #2e4e8c);
}
.quick-contact-phone {
  border-right: 1px solid white;
}
.quick-contact-request * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}
.quick-contact-bar .phone-link-label {
  color: #ffffff;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}
.quick-contact-active {
  bottom: 0;
}

.consent-line__label {
  font-size: 12px;
  margin-bottom: 0.5em;
}

.consent-line__foot-link {
  font-size: 12px;
  color: #70726c;
  margin-left: 1em;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
}
.consent-line__foot-link:hover {
  border-bottom-color: inherit;
}

.consent-line__link {
  font-size: 12px;
  border-bottom: 1px solid transparent;
}
.consent-line__link:hover {
  border-bottom-color: inherit;
}

input.consent-line__check {
  vertical-align: middle;
  margin: 0 0.3em 0 0;
  height: 1em;
  width: 1em;
}

.not-found__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.not-found__visual span {
  font-size: 228px;
}

.not-found__message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 270px;
}

.not-found__text {
  font-size: 14px;
  text-align: center;
  margin-bottom: 1em;
}

.not-found__action {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  background-color: #00113e;
  padding: 1em 2em;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  width: 100%;
}
.not-found__action:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2e4e8c),
    to(#2e4e8c)
  );
  background: -webkit-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -moz-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -o-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: linear-gradient(to bottom, #2e4e8c, #2e4e8c);
}
.not-found__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2em;
}

.rich-text h1.not-found__heading {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #3e4041;
  font-weight: normal;
  margin: 0;
}

.is-visible {
  display: block;
}

.is-rotated {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.scroll-top {
  display: block;
  background-color: #00113e;
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  bottom: 112px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  border: 3px solid transparent;
  right: 28px;
  border-radius: 4px;
}
.scroll-top:hover {
  background: #2e4e8c;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2e4e8c),
    to(#2e4e8c)
  );
  background: -webkit-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -moz-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -o-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: linear-gradient(to bottom, #2e4e8c, #2e4e8c);
}
.scroll-top::after {
  content: "";
  border: 5px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 19px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.contact-request {
  background: #ffffff;
  padding: 20px;
}
.contact-request__heading {
  color: #00113e;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-request form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-request form input {
  border: 1px solid #dfdfdf;
  border-bottom: 0;
  border-right: 0;
  line-height: 30px;
  height: 30px;
  margin-bottom: 10px;
  padding: 0 12px;
  font-size: 13px;
  background: whitesmoke;
}
.contact-request__action {
  background: #00113e;
  padding: 10px;
  font-size: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: white;
  max-width: 200px;
  margin: auto;
}
.contact-request__action:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2e4e8c),
    to(#2e4e8c)
  );
  background: -webkit-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -moz-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: -o-linear-gradient(top, #2e4e8c, #2e4e8c);
  background: linear-gradient(180deg, #2e4e8c, #2e4e8c);
}

.consent-line__label.contact-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.consent-line__label.contact-card input {
  margin-bottom: 0px !important;
}

.content-layout {
  width: 100%;
  background: #f5f5f5;
  -webkit-box-shadow: 0 0 15px #dcdcdc;
  -moz-box-shadow: 0 0 15px #dcdcdc;
  box-shadow: 0 0 15px #dcdcdc;
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.content-column {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  padding-right: 60px;
}

.rich-text {
  position: relative;
  color: #3e4041;
}
.rich-text h1 {
  font-size: 1.25rem;
  color: #00113e;
  margin: 20px 0;
}
.rich-text h2 {
  /* font-size: 0.9375rem; */
  margin: 10px 0;
}
.rich-text p,
.rich-text ol,
.rich-text ul,
.rich-text li {
  color: #3e4041;
  line-height: 1.25rem;
}
/* .rich-text ul,
.rich-text ol {
  margin: 16px 0;
} */
.rich-text ul {
  list-style-type: circle;
  padding-left: 24px;
}

.service-extra {
  margin: 34px 0 28px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  -moz-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.service-extra__header {
  max-width: 780px;
  margin-bottom: 20px;
}
.service-extra__title {
  margin: 0 0 10px;
  color: #00113e;
  font-size: 22px;
  line-height: 1.25;
}
.service-extra__lead {
  max-width: 760px;
  color: #3e4041;
  font-size: 15px;
  line-height: 1.55;
}
.service-extra__grid,
.service-extra__split {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-extra__split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-extra__card,
.service-extra__step {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.service-extra__card--accent {
  background: #00113e;
  border-color: #00113e;
}
.service-extra__card--accent .service-extra__card-title,
.service-extra__card--accent .service-extra__text {
  color: #ffffff;
}
.service-extra__number {
  display: block;
  margin-bottom: 12px;
  color: #476b83;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}
.service-extra__card-title {
  margin: 0 0 8px;
  color: #00113e;
  font-size: 16px;
  line-height: 1.25;
}
.service-extra__text {
  color: #3e4041;
  font-size: 14px;
  line-height: 1.5;
}
.service-extra__steps {
  counter-reset: service-step;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-extra__step {
  padding-left: 68px;
}
.service-extra__step::before {
  counter-increment: service-step;
  content: counter(service-step);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #00113e;
  color: #ffffff;
  font-weight: 700;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.service-extra__note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding: 16px 18px;
  background: #f5f5f5;
  border-left: 4px solid #00113e;
  color: #3e4041;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.service-extra__note strong {
  color: #00113e;
}

.product-grid {
  width: 100%;
}
.product-grid-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  color: #333333;
  border: 3px solid #333333;
  width: 100%;
  height: 20%;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.product-grid__lead {
  margin-top: 5px;
  color: #00113e;
}
.product-grid__items {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  grid-gap: 10px;
  width: 100%;
}
.product-grid__tile.catalog-card-name {
  background: none !important;
  height: -webkit-max-content !important;
  height: -moz-max-content !important;
  height: max-content !important;
}
.product-grid__tile {
  position: relative;
  width: 100%;
  height: 255px;
  background: url(../img/main-page-item1.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.product-grid__tile-title {
  background-color: rgba(0, 0, 0, 0.77);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: underline;
  padding: 0 20px;
  width: 100%;
  height: 20%;
}
.product-grid__tile-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.77);
  height: 80%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.product-grid__tile-overlay span::before {
  display: block;
  content: "Подробнее";
}
.product-grid__tile-overlay span {
  margin-top: 30px;
  text-transform: unset;
  max-width: 100px;
  padding: 10px;
  text-align: center;
}
.product-grid__tile:hover .product-grid__tile-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.product-grid__action {
  padding: 15px 10px;
  max-width: 250px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  text-transform: unset;
}

.home-template .product-grid__tile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-end;
  -webkit-align-items: self-end;
  -moz-box-align: self-end;
  -ms-flex-align: self-end;
  align-items: self-end;
}
.home-template .product-grid__tile-title {
  background-color: rgba(0, 0, 0, 0.77);
  color: #fff;
  border: none !important;
}

.raised-surface {
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25) !important;
  -moz-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25) !important;
}

.legal-note {
  margin-top: 40px;
  position: relative;
  color: #4c4c4c;
  font-size: 10px;
  background: url("../img/border.png");
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
}
.legal-note__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.legal-note .layout-frame {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 25px;
  padding-bottom: 25px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.legal-note span {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  text-transform: uppercase;
  color: #70726c;
}

.order-path {
  margin: 34px 0 44px;
  width: 100%;
}
.order-path__head {
  max-width: 760px;
  margin-bottom: 22px;
}
.order-path__title {
  margin: 0 0 10px;
}
.order-path__intro {
  color: #3e4041;
  font-size: 15px;
  line-height: 1.55;
}
.order-path__route {
  counter-reset: order-route;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.order-path__point {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-top: 4px solid #00113e;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  -moz-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
}
.order-path__index {
  display: block;
  margin-bottom: 16px;
  color: #476b83;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}
.order-path__name {
  margin: 0 0 8px;
  color: #00113e;
  font-size: 16px;
  line-height: 1.3;
}
.order-path__text {
  color: #3e4041;
  font-size: 14px;
  line-height: 1.5;
}
.order-path__contact {
  display: inline-block;
  max-width: 100%;
  color: #00113e;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  word-break: break-word;
}

.benefit-strip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.benefit-strip__tiles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.benefit-strip__tile {
  margin-right: 10px;
  background: white;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 350px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.benefit-strip__tile-icon {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
}
.benefit-strip__tile-text {
  margin-left: 20px;
  max-width: 200px;
  font-size: 18px;
}
.benefit-strip__tile::after {
  color: #f6f6f6;
  font-weight: bold;
  font-size: 70px;
  position: absolute;
  top: 45px;
  right: 0;
}
.benefit-strip__tile:nth-of-type(1)::after {
  content: "01";
}
.benefit-strip__tile:nth-of-type(2)::after {
  content: "02";
}
.benefit-strip__tile:nth-of-type(3)::after {
  content: "03";
}
.benefit-strip__tile:nth-of-type(4)::after {
  content: "04";
}
.benefit-strip__tile:nth-of-type(5)::after {
  content: "05";
}

.product-summary {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.product-summary__media {
  margin-bottom: 10px;
  margin-right: 15px;
}
/* .product-summary__image {
  max-width: 280px;
  float: right;
  margin-left: 24px;
  margin-bottom: 24px;
} */
.product-summary__body {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-summary__body .table-caption {
  margin-top: 0;
}

.front-stage,
.front-stage__inner {
  width: 100%;
}

.front-stage {
  display: block;
}

.front-page,
.front-page__section,
.front-workflow__order,
.front-workflow__fleet {
  display: block;
}

.front-lead {
  margin-bottom: 28px;
}

.front-lead__head {
  margin-bottom: 12px;
}

.front-lead__title {
  margin-bottom: 0;
}

.front-lead__copy {
  display: grid;
  gap: 12px;
}

.front-lead__intro:empty,
.front-lead__body:empty {
  display: none;
}

.front-pricing .rate-stack {
  margin-top: 0;
}

.front-catalog .catalog-tags {
  margin-bottom: 0;
}

.rich-text > h1,
.rich-text > h2,
.rich-text > h3,
.rich-text > p,
.rich-text > ul,
.rich-text > ol,
.rich-text > blockquote,
.rich-text > .catalog-tags,
.rich-text > .offer-intro,
.rich-text > .service-extra,
.rich-text > .order-path,
.rich-text > .payment-note,
.rich-text > .client-voices,
.rich-text > .answer-desk,
.rich-text > .location-panel,
.front-lead,
.front-workflow__order,
.front-help,
.front-logistics .payment-note,
.front-coverage,
.front-catalog {
  width: 90%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.shipping-brief,
.payment-note {
  width: 100%;
}
.shipping-brief__head,
.payment-note__head {
  max-width: 760px;
  margin-bottom: 18px;
}
.shipping-brief__title,
.payment-note__title {
  margin: 0 0 10px;
}
.shipping-brief__lead,
.payment-note__lead {
  color: #3e4041;
  font-size: 15px;
  line-height: 1.55;
}
.shipping-brief__matrix,
.payment-note__panel {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  -moz-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
}
.shipping-table__scroll {
  width: 100%;
  overflow-x: auto;
}
.shipping-table__grid {
  min-width: 620px;
  overflow: hidden;
  border-radius: 4px;
}
.shipping-table__cell {
  padding: 14px 10px;
  border: 1px solid #d4d4d4;
  text-align: center;
  line-height: 1.35;
}
.shipping-table__cell--head {
  background: #c4c4c4;
  color: #00113e;
  font-weight: 800;
}
.shipping-table__row:nth-child(even) .shipping-table__cell {
  background: #f5f5f5;
}
.shipping-table__action {
  margin-top: 14px;
}
.payment-note__body {
  display: grid;
  gap: 18px;
}
.payment-note__admin-text:empty {
  display: none;
}
.payment-note__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rich-text .payment-note__list {
  padding-left: 0;
  list-style: none;
}

.payment-note__item {
  position: relative;
  list-style: none;
  padding: 14px 14px 14px 38px;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  line-height: 1.45;
}

.payment-note__item::marker {
  content: "";
  font-size: 0;
}

.payment-note__item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: #00113e;
  border-radius: 50%;
}

.client-voices {
  width: 100%;
}
.client-voices__inner,
.answer-desk__inner,
.location-panel {
  width: 100%;
}
.client-voices__head,
.answer-desk__head,
.location-panel__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}
.client-voices__title,
.answer-desk__title,
.location-panel__title {
  margin: 0;
}
.client-voices__controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.client-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
}
.client-voices__card {
  min-width: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  -moz-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
}
.client-voices__card-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}
.client-voices__author {
  color: #00113e;
}
.client-voices__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  color: #62616b;
}
.client-voices__rating {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.client-voices__star::before {
  content: "\2605";
  color: #ffb641;
  font-size: 14px;
  line-height: 1;
}
.client-voices__copy {
  color: #3e4041;
  font-size: 14px;
  line-height: 1.55;
}

.service-extra__card--accent .ui-action {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 11px 18px;
  line-height: 1.2;
  white-space: normal;
}

.answer-desk__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.answer-desk__grid--single {
  grid-template-columns: 1fr;
}
.answer-desk__column {
  display: grid;
  gap: 12px;
}
.answer-desk__entry {
  min-width: 0;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -o-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -moz-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.answer-desk__entry:hover {
  border-color: #00113e;
  -webkit-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  -moz-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
}
.answer-desk__question {
  width: 100%;
  min-height: 58px;
  padding: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  color: #00113e;
  text-align: left;
}
.answer-desk__toggle {
  position: relative;
  width: 18px;
  height: 18px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.answer-desk__toggle::before,
.answer-desk__toggle::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: #00113e;
  border-radius: 2px;
}
.answer-desk__toggle::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.answer-desk__question.is-active .answer-desk__toggle::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.answer-desk__answer {
  height: 0;
  opacity: 0;
  padding: 0 16px;
  pointer-events: none;
  color: #3e4041;
  line-height: 1.55;
}
.answer-desk__answer.is-open {
  height: auto;
  opacity: 1;
  padding: 0 16px 16px;
  pointer-events: auto;
}

.location-panel__canvas {
  overflow: hidden;
  min-height: 400px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  -moz-box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
  box-shadow: 0 8px 20px rgba(0, 17, 62, 0.06);
}
.location-panel__canvas iframe {
  display: block;
  width: 100%;
}

.needs-grid {
  margin: 48px 0;
}
.needs-grid__body {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.needs-grid__tile {
  width: 230px;
  height: 175px;
  background: url(../img/main-page-item1.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  margin-bottom: 30px;
}
.needs-grid__tile-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  text-decoration: underline;
  padding-left: 20px;
  background-color: rgba(0, 0, 0, 0.77);
  width: 100%;
  height: 20%;
  font-weight: normal;
}
.needs-grid__tile-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.77);
  height: 80%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.needs-grid__tile-overlay span {
  margin-top: 30px;
  text-transform: unset;
  max-width: 100px;
  padding: 10px;
  text-align: center;
}
.needs-grid__tile:hover .needs-grid__tile-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.needs-grid__action {
  padding: 15px 10px;
  max-width: 250px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  text-transform: unset;
}

.rental-fleet__tables {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.machine-rate:nth-last-child(1) {
  margin-left: auto;
}

.machine-rate__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.machine-rate__media::after {
  content: "";
  display: block;
  width: 100%;
}

.machine-rate__image {
  max-width: 100%;
  height: auto;
  position: absolute;
}

.machine-rate__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.machine-rate__head-cell,
.machine-rate__cell {
  text-align: center;
}

.machine-rate__action {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.machine-rate__heading {
  text-align: center;
}

.machine-rate {
  -webkit-flex-basis: -webkit-calc(50% - 18px);
  -ms-flex-preferred-size: calc(50% - 18px);
  flex-basis: -moz-calc(50% - 18px);
  flex-basis: calc(50% - 18px);
  color: #000000;
  font-family: Tahoma, sans-serif;
}
.machine-rate__heading {
  color: #00113e;
  font-weight: bold;
  font-size: 20px;
  margin: 0 0 13px 0;
}
.machine-rate__media {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 40px;
}
.machine-rate__media::after {
  padding-top: 55.2%;
}
.machine-rate__table {
  border: 1px solid #524e4e;
}
.machine-rate__head-cell:nth-child(1),
.machine-rate__cell:nth-child(1) {
  border-right: 1px solid #524e4e;
}
.machine-rate__head-cell {
  font-weight: bold;
  padding: 8px 8px 12px 8px;
}
.machine-rate__cell {
  padding: 12px;
  color: #524e4e;
}
.machine-rate__row {
  border-top: 1px solid #524e4e;
}
.machine-rate__row:hover .machine-rate__cell {
  background: #cecdcd;
}
.machine-rate__body .machine-rate__row:nth-child(1) {
  border-top: 1px solid #524e4e;
}
.machine-rate__action {
  max-width: 256px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
  background: #00113e;
  color: #fff;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: bold;
}
.machine-rate__action:hover {
  background: #2e4e8c;
}

.review-date-meta {
  margin-top: 6px;
}

.trust-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 14px;
  max-width: 360px;
  margin-bottom: 10px;
}

.trust-line__stars,
.trust-line__stock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.trust-line__stars {
  gap: 2px;
}

.trust-line__star {
  width: 17px;
  height: 17px;
  background: #f0b429;
  -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.trust-line__score {
  margin-left: 6px;
  color: #00113e;
  font-weight: 700;
}

.trust-line__stock {
  color: #2e4e8c;
  font-size: 13px;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .catalog-rail__item:hover > .catalog-rail__list {
    display: block;
  }
  .quick-contact-bar {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .catalog-rail__item.is-expanded > .catalog-rail__list {
    display: block;
  }
  .catalog-rail .catalog-rail__item.catalog-rail__mobile-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .content-layout {
    background: #f4f4f4;
    margin-top: 2.5rem;
  }
  .content-layout .catalog-rail {
    display: none;
  }
  .content-column {
    padding-right: 20px;
  }
  .rich-text {
    background: #f4f4f4;
  }
}

@media screen and (max-width: 424px) {
  .request-form {
    max-width: 300px;
    padding: 20px;
    padding-top: 40px;
  }
  .callback-popup-anchor {
    min-width: 300px;
    padding: 25px 10px;
  }
  .calculator-popup-anchor {
    padding: 50px 15px 20px 15px !important;
  }
  .mix-calculator__body {
    padding: 20px;
  }
  .benefit-strip__tile {
    margin-right: 0;
  }
  .benefit-strip__tile-text {
    font-size: 15px;
  }
  /* .product-summary__image {
    width: 100%;
    max-width: 425px;
    float: initial;
    margin: 0;
  } */
  .shipping-table__cell {
    font-size: 12px;
    padding: 10px 8px;
  }
}

@media screen and (max-width: 767px) {
  .calculator-popup-anchor {
    width: unset;
  }
  .mix-calculator {
    max-width: 300px;
  }
  .mix-calculator__fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mix-calculator__fields label {
    margin-bottom: 10px;
  }
  .mix-calculator__fields label input {
    width: 170px;
  }
  .mix-calculator__summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mix-calculator__summary > * {
    margin-bottom: 10px;
  }
  .mix-calculator__body-price {
    margin: 0;
    margin-bottom: 15px;
  }
  .contact-card__action {
    margin-top: 15px;
    position: static;
  }

  .product-summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-extra {
    padding: 18px;
  }
  .service-extra__grid,
  .service-extra__split {
    grid-template-columns: 1fr;
  }
  .service-extra__note {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .order-path__route,
  .client-voices__grid,
  .answer-desk__grid,
  .payment-note__list {
    grid-template-columns: 1fr;
  }
  .client-voices__head,
  .answer-desk__head,
  .location-panel__head {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .shipping-brief__matrix,
  .payment-note__panel {
    padding: 16px;
  }
}

@media screen and (max-width: 780px) {
  .product-grid__items {
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  }
}

@media screen and (max-width: 1100px) {
  .product-grid__items {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .needs-grid__body {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media screen and (max-width: 500px) {
  .legal-note__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
  }
}

@media screen and (width: 1024px) {
  .benefit-strip__tile {
    max-width: 305px;
  }
}

@media only screen and (max-width: 580px) {
  .rental-fleet__tables {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .machine-rate__media::after {
    display: none;
  }
  .machine-rate__image {
    position: static;
  }
  .machine-rate:nth-child(1) {
    margin-bottom: 102px;
  }
  .machine-rate__heading {
    margin-bottom: 16px;
    text-align: left;
  }
  .machine-rate__media {
    margin-bottom: 16px;
  }
  .machine-rate__action {
    margin-top: 16px;
  }
  .machine-rate {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.pager {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
  margin-top: 8px;
}
@media (max-width: 516px) {
  .pager {
    justify-content: center;
  }
}
.pager li {
  margin: 0 5px;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.pager li.is-active {
  background-color: #00113e;
  color: #fff;
  pointer-events: none;
}
.pager li.is-hidden {
  display: none;
}

.site-page__header,
.site-page__content,
.site-page__footer,
.header-region,
.rate-stack {
  display: block;
}

button.catalog-tags__link {
  width: 100%;
  font: inherit;
  background: #fff;
}

.rate-board .section-title {
  margin: 0;
}

.answer-desk__question,
.ground-footer__nav-trigger,
.pocket-head__menu-button,
.mobile-drawer__catalog-action,
.mobile-drawer__back,
.catalog-gate__button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.answer-desk__question,
.ground-footer__nav-trigger,
.pocket-head__menu-button {
  background: transparent;
  text-align: left;
}

.answer-desk__question {
  width: 100%;
}

.request-form__heading,
.contact-request__heading,
.ground-footer__form-heading,
.needs-grid__heading,
.ground-footer__descriptor,
.ground-footer__legal {
  margin: 0;
}

.masthead {
  background: #ffffff;
  border-bottom: 1px solid #e7e7e7;
}

.masthead__frame {
  min-height: 84px;
}

.masthead__bar,
.masthead__brand,
.masthead__address,
.masthead__contacts,
.masthead__phones,
.nav-strip__frame,
.nav-strip__actions,
.main-menu__list,
.main-menu__link,
.pocket-head,
.pocket-head__logo,
.catalog-gate__button,
.quick-find__form,
.ground-footer__main,
.ground-footer__legal-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.masthead__bar {
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}

.masthead__brand {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.masthead .brand-mark,
.pocket-head .brand-mark,
.ground-footer .brand-mark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #00113e;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.05;
}

.brand-mark__lines {
  display: grid;
  gap: 4px;
}

.brand-mark__line {
  width: 27px;
  height: 4px;
  display: block;
  background: #00113e;
}

.masthead__descriptor {
  max-width: 280px;
  color: #476b83;
  font-size: 13px;
  line-height: 1.35;
}

.masthead__address {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 10px;
  max-width: 360px;
  color: #333333;
  line-height: 1.4;
}

.masthead__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #eef2f8;
  color: #00113e;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.masthead__hours {
  display: block;
  color: #7c8798;
  font-size: 12px;
}

.masthead__contacts {
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
}

.masthead__schedule {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #7c8798;
  white-space: nowrap;
}

.masthead__clock {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
  border: 2px solid #dbe3f0;
  border-radius: 50%;
  background: #f5f7fb;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.masthead__clock::before,
.masthead__clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #00113e;
  border-radius: 2px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.masthead__clock::before {
  width: 6px;
  height: 2px;
  -webkit-transform: translate(-1px, -1px) rotate(0deg);
  -moz-transform: translate(-1px, -1px) rotate(0deg);
  -ms-transform: translate(-1px, -1px) rotate(0deg);
  -o-transform: translate(-1px, -1px) rotate(0deg);
  transform: translate(-1px, -1px) rotate(0deg);
}

.masthead__clock::after {
  width: 2px;
  height: 7px;
  -webkit-transform: translate(-1px, -6px);
  -moz-transform: translate(-1px, -6px);
  -ms-transform: translate(-1px, -6px);
  -o-transform: translate(-1px, -6px);
  transform: translate(-1px, -6px);
}

.masthead__phones {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.masthead__phone,
.pocket-head__phone,
.ground-footer__phone {
  color: #00113e;
  font-weight: 800;
}

.masthead__mail,
.ground-footer__mail {
  color: #476b83;
  font-weight: 700;
}

.nav-strip {
  position: relative;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid #dcdfe5;
  -webkit-box-shadow: 0 10px 24px rgba(0, 17, 62, 0.08);
  -moz-box-shadow: 0 10px 24px rgba(0, 17, 62, 0.08);
  box-shadow: 0 10px 24px rgba(0, 17, 62, 0.08);
}

.nav-strip__frame {
  min-height: 64px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.main-menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}

.main-menu__list {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3px;
}

.main-menu__item {
  position: relative;
}

.main-menu__link {
  min-height: 42px;
  padding: 0 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00113e;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

.main-menu__link:hover,
.main-menu__item--parent:hover > .main-menu__link {
  background: #eef2f8;
  color: #00113e;
}

.main-menu__dropdown {
  position: absolute;
  top: -webkit-calc(100% + 8px);
  top: -moz-calc(100% + 8px);
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  display: none;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  -webkit-box-shadow: 0 16px 32px rgba(0, 17, 62, 0.18);
  -moz-box-shadow: 0 16px 32px rgba(0, 17, 62, 0.18);
  box-shadow: 0 16px 32px rgba(0, 17, 62, 0.18);
}

.main-menu__item--parent:hover > .main-menu__dropdown {
  display: block;
}

.nav-strip__actions {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.nav-strip__callback,
.nav-strip__telegram,
.offer-intro__action,
.ground-footer__action,
.ground-footer__telegram {
  min-height: 42px;
  padding: 11px 18px;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-strip__callback,
.offer-intro__action,
.ground-footer__action {
  background: #00113e;
  color: #ffffff;
}

.nav-strip__telegram,
.ground-footer__telegram {
  background: #eef2f8;
  color: #00113e;
}

.ground-footer__action,
.ground-footer__telegram {
  min-height: 46px;
  background: #2e4e8c;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nav-strip__callback,
.nav-strip__telegram {
  height: 46px;
  min-height: 46px;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-strip__telegram {
  background: #00113e;
  color: #ffffff;
}

.catalog-gate {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.catalog-gate__button {
  min-height: 46px;
  min-width: 150px;
  padding: 12px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin-right: 0;
  background: #00113e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  border-radius: 6px;
  -webkit-box-shadow: 0 10px 22px rgba(0, 17, 62, 0.22);
  -moz-box-shadow: 0 10px 22px rgba(0, 17, 62, 0.22);
  box-shadow: 0 10px 22px rgba(0, 17, 62, 0.22);
  -webkit-transition: background 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  -o-transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  -moz-transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, -moz-transform 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.catalog-gate__button:hover,
.catalog-gate__button.is-active {
  background: #2e4e8c;
  -webkit-box-shadow: 0 12px 28px rgba(0, 17, 62, 0.3);
  -moz-box-shadow: 0 12px 28px rgba(0, 17, 62, 0.3);
  box-shadow: 0 12px 28px rgba(0, 17, 62, 0.3);
}

.catalog-gate__button:active {
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
}

.catalog-gate__mark {
  width: 18px;
  display: grid;
  gap: 4px;
}

.catalog-gate__mark span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.catalog-gate__layer {
  display: none;
  position: absolute;
  top: -webkit-calc(100% + 12px);
  top: -moz-calc(100% + 12px);
  top: calc(100% + 12px);
  left: 0;
  width: auto;
  max-height: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  z-index: 1200;
  pointer-events: none;
}

.catalog-gate__layer.is-open {
  display: block;
  pointer-events: auto;
}

.catalog-gate__shade {
  position: fixed;
  inset: 0;
  display: block;
  background: transparent;
  z-index: 0;
}

.catalog-gate__panel {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

.catalog-gate__panel--rail {
  width: 320px;
  max-height: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.catalog-gate__panel--rail .catalog-rail {
  width: 320px;
  max-height: -webkit-calc(100vh - 155px);
  max-height: -moz-calc(100vh - 155px);
  max-height: calc(100vh - 155px);
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-box-shadow: 0 18px 36px rgba(0, 17, 62, 0.28);
  -moz-box-shadow: 0 18px 36px rgba(0, 17, 62, 0.28);
  box-shadow: 0 18px 36px rgba(0, 17, 62, 0.28);
}

.catalog-gate__panel--rail .catalog-rail__item > .catalog-rail__list {
  position: static;
  display: block;
  right: auto;
  left: auto;
  top: auto;
  width: 100%;
  min-width: 0;
  margin: 0;
  max-height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  background: #071b53;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition: max-height 0.28s ease, opacity 0.22s ease,
    padding 0.22s ease, -webkit-transform 0.22s ease;
  -o-transition: max-height 0.28s ease, opacity 0.22s ease,
    padding 0.22s ease, -o-transform 0.22s ease;
  -moz-transition: max-height 0.28s ease, opacity 0.22s ease,
    padding 0.22s ease, transform 0.22s ease, -moz-transform 0.22s ease;
  transition: max-height 0.28s ease, opacity 0.22s ease,
    padding 0.22s ease, transform 0.22s ease;
  transition: max-height 0.28s ease, opacity 0.22s ease,
    padding 0.22s ease, transform 0.22s ease, -webkit-transform 0.22s ease,
    -moz-transform 0.22s ease, -o-transform 0.22s ease;
}

.catalog-gate__panel--rail .catalog-rail__item.is-expanded > .catalog-rail__list {
  max-height: 900px;
  padding: 4px 0 8px;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.catalog-gate__panel--rail .catalog-rail__item > .catalog-rail__list .catalog-rail__link {
  padding-left: 46px;
  font-size: 14px;
}

.catalog-gate__panel--rail .catalog-rail__item > .catalog-rail__list .catalog-rail__list .catalog-rail__link {
  padding-left: 60px;
}

.catalog-gate__panel--rail .catalog-rail__item.is-expanded > .catalog-rail__parent-link {
  background: #2e4e8c;
}

.catalog-gate__panel .catalog-rail__list {
  max-height: none;
}

.catalog-gate__categories,
.catalog-gate__subcategories {
  display: inline-block;
  vertical-align: top;
  min-width: 280px;
}

.catalog-gate__items {
  display: grid;
  gap: 4px;
}

.catalog-gate__items-heading {
  padding: 12px 16px;
  color: #00113e;
  font-weight: 800;
}

.catalog-gate__items-row {
  max-height: -webkit-calc(100vh - 220px);
  max-height: -moz-calc(100vh - 220px);
  max-height: calc(100vh - 220px);
  overflow: auto;
}

.catalog-gate__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  color: #00113e;
}

.catalog-gate__item:hover > a,
.catalog-gate__item.has-children:hover > a {
  background: #eef2f8;
}

.catalog-gate__subcategories .catalog-gate__items {
  display: none;
}

.catalog-gate__subcategories .catalog-gate__items.is-open {
  display: block;
}

.quick-find__form {
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #dcdfe5;
  border-radius: 4px;
  padding: 6px 8px;
}

.quick-find__input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
}

.quick-find__action {
  padding: 7px 12px;
  background: #00113e;
  color: #ffffff;
  border-radius: 4px;
}

.pocket-head {
  display: none;
  min-height: 58px;
  padding: 8px 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  background: #ffffff;
  border-bottom: 1px solid #e1e1e1;
}

.pocket-head__menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.pocket-head__menu-icon,
.pocket-head__menu-icon::before,
.pocket-head__menu-icon::after {
  width: 22px;
  height: 2px;
  display: block;
  background: #00113e;
}

.pocket-head__menu-icon {
  position: relative;
}

.pocket-head__menu-icon::before,
.pocket-head__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.pocket-head__menu-icon::before {
  top: -7px;
}

.pocket-head__menu-icon::after {
  top: 7px;
}

.pocket-head__close-icon {
  display: none;
}

.pocket-head__logo {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 0;
}

.pocket-head .brand-mark__lines {
  display: none;
}

.pocket-head .brand-mark {
  gap: 0;
}

.offer-intro {
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 26px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.offer-intro__content {
  min-width: 0;
}

.offer-intro__text {
  margin-top: 12px;
  line-height: 1.55;
}

.offer-intro__action {
  margin-top: 22px;
}

.offer-intro__visual {
  margin: 0;
}

.offer-intro__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.rate-stack {
  margin-top: 26px;
}

.rate-stack,
.rate-board--dynamic {
  width: 80%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.rate-board {
  margin-bottom: 24px;
}

.rate-board__head {
  margin-bottom: 12px;
}

.rate-board__title {
  margin: 0;
}

.rate-board__summary,
.rate-board__notes {
  margin-top: 12px;
}

.rate-board__calculator {
  margin-top: 16px;
}

.ground-footer {
  margin-top: 42px;
  background: #00113e;
  color: #ffffff;
}

.ground-footer a {
  color: #ffffff;
}

.ground-footer .brand-mark,
.ground-footer .brand-mark__text {
  color: #ffffff;
}

.ground-footer .brand-mark__line {
  background: #ffffff;
}

.ground-footer__panel {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 16px 18px;
}

.ground-footer__main {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 28px;
}

.ground-footer__brand {
  max-width: 300px;
}

.ground-footer__logo {
  margin-bottom: 12px;
}

.ground-footer__descriptor,
.ground-footer__worktime,
.ground-footer__address,
.ground-footer__legal {
  color: #d7deea;
}

.ground-footer__menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 18px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.ground-footer__nav-trigger {
  width: 100%;
  padding: 0 0 10px;
  color: #ffffff;
  font-weight: 800;
}

.ground-footer__chevron {
  display: none;
}

.ground-footer__links {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.ground-footer__link-item {
  padding: 0;
  list-style: none;
}

.ground-footer__link-item::before,
.ground-footer__link-item::marker {
  display: none;
  content: "";
}

.ground-footer__link {
  color: #d7deea;
}

.ground-footer__actions,
.ground-footer__contacts {
  display: grid;
  gap: 10px;
}

.ground-footer__contacts {
  min-width: 220px;
}

.ground-footer__form-panel {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ground-footer__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  margin-top: 12px;
}

.ground-footer__form input {
  min-width: 0;
}

.ground-footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ground-footer__legal-row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}

@media screen and (max-width: 1180px) {
  .masthead__descriptor {
    display: none;
  }
  .nav-strip__actions {
    display: none;
  }
  .main-menu__link {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media screen and (max-width: 1023px) {
  .masthead__address {
    display: none;
  }
  .nav-strip__frame {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .main-menu {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .ground-footer__main {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ground-footer__menus {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
  .ground-footer__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rate-stack,
  .rate-board--dynamic {
    width: 100%;
  }
  .rich-text > h1,
  .rich-text > h2,
  .rich-text > h3,
  .rich-text > p,
  .rich-text > ul,
  .rich-text > ol,
  .rich-text > blockquote,
  .rich-text > .catalog-tags,
  .rich-text > .offer-intro,
  .rich-text > .service-extra,
  .rich-text > .order-path,
  .rich-text > .payment-note,
  .rich-text > .client-voices,
  .rich-text > .answer-desk,
  .rich-text > .location-panel,
  .front-lead,
  .front-workflow__order,
  .front-help,
  .front-logistics .payment-note,
  .front-coverage,
  .front-catalog {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .masthead,
  .nav-strip {
    display: none !important;
  }
  .pocket-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pocket-head .brand-mark {
    font-size: 14px;
  }
  .offer-intro {
    grid-template-columns: 1fr;
    margin-top: 24px;
    gap: 18px;
  }
  .offer-intro__visual {
    max-width: 360px;
  }
  .ground-footer__main,
  .ground-footer__legal-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ground-footer__menus,
  .ground-footer__form {
    grid-template-columns: 1fr;
  }
  .ground-footer__nav-trigger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
  }
  .ground-footer__chevron {
    display: inline-block;
  }
  .ground-footer__nav-body {
    display: none;
  }
  .ground-footer__nav-body.is-open {
    display: block;
  }
  .rate-board__viewport table {
    min-width: 620px;
  }
}

.content-layout .content-column {
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 767px) {
  .content-layout .content-column {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* ------------------------------------ */
/* Cookie consent
/* ------------------------------------ */
.cookie-banner-curtain {
    background-color: rgba(150,150,150,.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    display: block;
}

.cookie-banner {
    top: 50%;
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: 80%;
    width: 800px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    padding: 18px 22px;
    font-size: 14px;
    animation: cookieShow .35s ease;
    transform: translateY(-50%);
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-banner a:hover {
  text-decoration: none;
}

.cookie-banner__close {
    right: -36px;
    top: -36px;
    position: absolute;
    line-height: 1;
    border: 0;
    color: #000;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
}

.cookie-banner__button {
    padding: 11px 26px;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    background: #00113e;
    color: #ffffff;
}

.cookie-banner__button:hover {
    background: linear-gradient(to bottom, #2e4e8c, #2e4e8c);
}

@keyframes cookieShow {
    from {
        opacity: 0;
        transform: translateY(-20%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    @keyframes cookieShow {
        from {
            opacity: 0;
            transform: translateX(-10px) translateY(-20%);
        }
        to {
            opacity: 1;
            transform: translateX(-10px) translateY(-50%);
        }
    }

    .cookie-banner {
        max-width: 65%;
        transform: translateX(-10px) translateY(-50%);
    }
}