@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;
}

.wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.wrapper {
  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-header,
h2 {
  font-weight: bold;
  font-size: 20px;
  color: #00113e;
  margin-bottom: 10px;
}

.mobile-telefon {
  display: none;
}

.text-bold {
  font-weight: bold;
}

.callback-form {
  /* background: #f3f3f3; */
  padding: 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.calculator__content-top label select,
.calculator__content-top 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;
}
.calculator__content-top label select:active,
.calculator__content-top label input:active {
  outline: none;
}
.calculator__content-top label select:focus,
.calculator__content-top label input:focus {
  outline: none;
}
.calculator__content-top label select:hover,
.calculator__content-top label input:hover {
  border: 2px solid #807a7a;
}

.calculator__content-checkbox .checkbox__input:checked,
.calculator__content-checkbox .checkbox__input:not(:checked) {
  position: absolute;
  display: none;
}

.calculator__content-checkbox .checkbox__input:checked + label,
.calculator__content-checkbox .checkbox__input:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.calculator__content-checkbox .checkbox__input:checked + label:before,
.calculator__content-checkbox .checkbox__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;
}

.calculator__content-checkbox .checkbox__input:checked + label:after,
.calculator__content-checkbox .checkbox__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;
}

.calculator__content-checkbox .checkbox__input:checked + label:after,
.calculator__content-checkbox .checkbox__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);
}

.calculator__content-checkbox .checkbox__input:not(:checked) + label:after {
  opacity: 0;
}

.calculator__content-checkbox .checkbox__input:checked + label:after {
  opacity: 1;
}

.sidemenu {
  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;
}
.sidemenu__btn-more {
  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;
}
.sidemenu__btn-more:hover {
  background: #2e4e8c;
}
.sidemenu__more-items {
  display: none;
}
.sidemenu__more-items.open {
  display: block;
}
.sidemenu * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.sidemenu__block:not(:last-child) {
  padding: 15px 0;
  border-bottom: 1px solid grey;
}
.sidemenu__block:not(:first-of-type) {
  border-top: rgba(255, 255, 255, 0.2);
}
.sidemenu__list {
  width: 100%;
}
.sidemenu__list-title {
  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;
}
.sidemenu__list-title.active {
  background: #2e4e8c;
}
.sidemenu__list-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/menu-arrow.svg) no-repeat center;
  display: block;
  margin-right: 10px;
}
.sidemenu__list-item {
  position: relative;
}
.sidemenu__list-item_hidden {
  display: none;
}
.sidemenu__list-item.active {
  background: #2e4e8c;
}
.sidemenu__list-item a,
.sidemenu__list-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%;
}
.sidemenu__list-item:hover {
  background: #2e4e8c;
}
.sidemenu__list-item > .sidemenu__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);
}
.sidemenu__list-item > .sidemenu__list .sidemenu__list-item {
  line-height: 100%;
}
.sidemenu__list-item > .sidemenu__list .sidemenu__list-item:hover {
  background: #2e4e8c;
}
.sidemenu__list-item .sidemenu__list-link_with-children {
  padding-left: 20px;
}
.sidemenu__list-link_with-children::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;
}
.sidemenu .sidemenu__list-item.sidemenu__list-item_screen_mobile {
  display: none;
}

.sidemenu__download-prices {
  -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;
}

.mobilemenu {
  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;
}
.mobilemenu__inner {
  min-height: 100%;
  background-color: #00113e;
}
.mobilemenu.active {
  left: 0;
  opacity: 1;
}
.mobilemenu .sidemenu {
  padding-bottom: 70px;
}

.mobilemenu__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;
}
.mobilemenu__top ul {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid grey;
}
.mobilemenu__top ul li {
  position: relative;
}
.mobilemenu__top ul li.active {
  background: #2e4e8c;
}
.mobilemenu__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%;
}
.mobilemenu__top ul li:hover {
  background: #2e4e8c;
}

.burger {
  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;
}

.burger__icon {
  position: relative;
  width: 35px;
  top: 18px;
  height: 3px;
  background-color: #3e4041;
}

.burger__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;
}

.burger__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;
}

.burger__icon.burger__icon-active {
  background-color: transparent;
}

.burger__icon.burger__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;
}

.burger__icon.burger__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;
}

.table-scroll {
  overflow-x: auto;
}

.callback-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;
}
.callback-form__container2 {
  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; */
}
.callback-form__title {
  text-align: center;
  font-weight: bold;
  color: #00113e;
  font-size: 16px;
  margin-bottom: 15px;
}

.popup_calback {
  display: none;
  min-width: 450px;
  padding: 25px !important;
  /* background: #f3f3f3; */
  border-radius: 8px;
}
.popup_calback svg {
  left: 5px;
  bottom: 5px;
}

.popup_calc {
  display: none;
  width: 800px;
  padding: 57px 40px 30px 40px !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  border-radius: 6px !important;
}
.popup_calc * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.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;
}
.calculator__title {
  width: 100%;
  text-align: center;
}
.calculator__title + p {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.calculator__content {
  width: 100%;
  border-top: 1px solid #f5f5f5;
  /* border-bottom: 1px solid #f5f5f5; */
  padding: 37px;
}
.calculator__content-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;
}
.calculator__content-top 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;
}
.calculator__content-top label select {
  -webkit-appearance: none;
  margin-top: 7px;
  width: 173px;
  line-height: unset;
}
.calculator__content-top label input {
  width: 95px;
  margin-top: 7px;
}
.calculator__content-bottom {
  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;
}
.calculator__content-button {
  width: 180px;
  padding: 15px;
  font-size: 13px;
  text-transform: uppercase;
}
.calculator__content-price {
  margin-right: 12px;
  margin-left: auto;
}
.calculator__content-price span {
  font-weight: bold;
  font-size: 20px;
}

.breadcrumb {
  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;
}
.breadcrumb .breadcrumb-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
}
.breadcrumb .breadcrumb-item a {
  font-size: 11px;
  color: #00113e;
}
.breadcrumb .breadcrumb-item.active:after {
  display: none;
}
.breadcrumb .breadcrumb-item:after {
  display: block;
  content: "/";
  margin: 0 6px;
}

.contacts__contact-list {
  list-style: none;
  list-style-type: none !important;
  font-size: 13px;
  margin-bottom: 16px;
  padding: 0 !important;
  color: #2f2f2f;
}
.contacts__contact-list li {
  margin-bottom: 5px;
}
.contacts__contact-list li::before {
  color: black;
  font-weight: 700;
  display: inline-block;
}
.contacts__contact-list > * {
  position: relative;
  margin-left: 30px;
  line-height: 26px !important;
}
.contacts__contact-list > *::after {
  top: 2px;
  position: absolute;
  content: "";
  background: url("../img/sprite.png") no-repeat;
}

.contacts__button {
  position: absolute;
  right: 10px;
  top: 65px;
  width: 180px;
  padding: 14px;
}

.contact-list__mail a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.contact-list__mail::after {
  left: -30px;
  width: 20px;
  height: 26px;
  background-position: -15px -21px;
}

.contact-list__phone::after {
  left: -25px;
  top: 3px;
  width: 16px;
  height: 26px;
  background-position: 0 0;
}

.contact-list__regphone::after {
  left: -25px;
  top: 3px;
  width: 16px;
  height: 26px;
  background-position: 0 0;
}

.contact-list__calltime::after {
  width: 20px;
  left: -30px;
  height: 26px;
  background-position: -35px 0;
}

.contact-list__regcalltime::after {
  top: 0;
  width: 23px;
  left: -30px;
  height: 26px;
  background-position: -56px 0;
}

.contact-list__address::after {
  left: -25px;
  width: 16px;
  height: 26px;
  background-position: 0 -24px;
}

.contact-list__text::after {
  width: 20px;
  left: -30px;
  height: 26px;
  background-position: -35px -21px;
}

.mobile-footer {
  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;
}
.mobile-footer.show {
  display: none;
}
.mobile-footer > * {
  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;
}
.mobile-footer > * a {
  font-size: 15px;
}
.mobile-footer > *: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%);
}
.mobile-footer > *: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);
}
.mobile-footer-left {
  border-right: 1px solid white;
}
.mobile-footer-right * {
  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%;
}
.mobile-footer .phone {
  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%;
}
.mobile-footer-active {
  bottom: 0;
}

.policy-confirmation__label {
  font-size: 12px;
  margin-bottom: 0.5em;
}

.policy-confirmation__footer-link {
  font-size: 12px;
  color: #70726c;
  margin-left: 1em;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
}
.policy-confirmation__footer-link:hover {
  border-bottom-color: inherit;
}

.policy-confirmation__link {
  font-size: 12px;
  border-bottom: 1px solid transparent;
}
.policy-confirmation__link:hover {
  border-bottom-color: inherit;
}

input.policy-confirmation__checkbox {
  vertical-align: middle;
  margin: 0 0.3em 0 0;
  height: 1em;
  width: 1em;
}

.nf-page__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;
}

.nf-page__left-col span {
  font-size: 228px;
}

.nf-page__right-col {
  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;
}

.nf-page__text {
  font-size: 14px;
  text-align: center;
  margin-bottom: 1em;
}

.nf-page__btn {
  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%;
}
.nf-page__btn: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);
}
.nf-page__btn-wrapper {
  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;
}

.main-content h1.nf-page__header {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #3e4041;
  font-weight: normal;
  margin: 0;
}

.show {
  display: block;
}

.rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.to-top-btn {
  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;
}
.to-top-btn: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);
}
.to-top-btn::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);
}
.to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.contacts-form {
  background: #ffffff;
  padding: 20px;
}
.contacts-form__title {
  color: #00113e;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contacts-form 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;
}
.contacts-form 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;
}
.contacts-form__button {
  background: #c00;
  padding: 10px;
  font-size: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: white;
  max-width: 200px;
  margin: auto;
}
.contacts-form__button: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);
}

.policy-confirmation__label.contacts {
  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;
}
.policy-confirmation__label.contacts input {
  margin-bottom: 0px !important;
}

.main {
  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;
}
.main-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;
}

.main-content {
  position: relative;
  color: #3e4041;
}
.main-content h1 {
  font-size: 1.25rem;
  color: #00113e;
  margin: 20px 0;
}
.main-content h2 {
  /* font-size: 0.9375rem; */
  margin: 10px 0;
}
.main-content p,
.main-content ol,
.main-content ul,
.main-content li {
  color: #3e4041;
  line-height: 1.25rem;
}
/* .main-content ul,
.main-content ol {
  margin: 16px 0;
} */
.main-content ul {
  list-style-type: circle;
  padding-left: 24px;
}

.produce {
  width: 100%;
}
.produce-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;
  padding: 10px;
  color: #333333;
  border: 3px solid #333333;
  width: 100%;
  height: 20%;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.produce__subtitle {
  margin-top: 5px;
  color: #00113e;
}
.produce__content {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  grid-gap: 10px;
  width: 100%;
}
.produce__card.card-categorie {
  background: none !important;
  height: -webkit-max-content !important;
  height: -moz-max-content !important;
  height: max-content !important;
}
.produce__card {
  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;
}
.produce__card-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%;
}
.produce__card-hover {
  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;
}
.produce__card-hover span::before {
  display: block;
  content: "Подробнее";
}
.produce__card-hover span {
  margin-top: 30px;
  text-transform: unset;
  max-width: 100px;
  padding: 10px;
  text-align: center;
}
.produce__card:hover .produce__card-hover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.produce__button {
  padding: 15px 10px;
  max-width: 250px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  text-transform: unset;
}

.template-home .produce__card {
  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;
}
.template-home .produce__card-title {
  background-color: rgba(0, 0, 0, 0.77);
  color: #fff;
  border: none !important;
}

.box-shadow {
  -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;
}

.copyright {
  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;
}
.copyright__main {
  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;
}
.copyright .wrapper {
  -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;
}
.copyright span {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  text-transform: uppercase;
  color: #70726c;
}

.how-order {
  margin: 30px 0;
  margin-bottom: 40px;
  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;
}
.how-order__subtitle {
  font-size: 13px;
  margin-bottom: 15px;
}
.how-order__cards {
  margin-top: 30px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  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%;
}
.how-order__card {
  -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;
  -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;
  margin-bottom: 20px;
}
.how-order__card img {
  cursor: pointer;
}
.how-order__card-text {
  font-size: 18px;
  margin: 10px 0;
}

.how-order__card-phone::after,
.how-order__card .how-order__card-email {
  color: #333333;
  font-weight: bold;
  font-size: 18px;
}

.advantages {
  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%;
}
.advantages__cards {
  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;
}
.advantages__card {
  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;
}
.advantages__card-img {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
}
.advantages__card-text {
  margin-left: 20px;
  max-width: 200px;
  font-size: 18px;
}
.advantages__card::after {
  color: #f6f6f6;
  font-weight: bold;
  font-size: 70px;
  position: absolute;
  top: 45px;
  right: 0;
}
.advantages__card:nth-of-type(1)::after {
  content: "01";
}
.advantages__card:nth-of-type(2)::after {
  content: "02";
}
.advantages__card:nth-of-type(3)::after {
  content: "03";
}
.advantages__card:nth-of-type(4)::after {
  content: "04";
}
.advantages__card:nth-of-type(5)::after {
  content: "05";
}

.product-card {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.product-card__left {
  margin-bottom: 10px;
  margin-right: 15px;
}
/* .product-card__left-img {
  max-width: 280px;
  float: right;
  margin-left: 24px;
  margin-bottom: 24px;
} */
.product-card__right {
  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-card__right .caption {
  margin-top: 0;
}

.info-delivery__controls {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.info-delivery__controls input {
  display: none;
}
.info-delivery__controls input:checked + label {
  border: 3px solid #00113e;
}
.info-delivery__controls label {
  cursor: pointer;
  color: #333333;
  border: 3px solid #333333;
  width: 100%;
  padding: 8px;
  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-align: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background: transparent;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.info-delivery__controls label:first-of-type {
  margin-right: 5px;
}

.info-delivery__page {
  display: flex;
  width: 100%;
  -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-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.info-delivery__payment {
  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;
}
.info-delivery__payment-list {
  margin-top: 20px;
  -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;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 !important;
}
.info-delivery__payment-item {
  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;
}

.mb-need {
  margin: 48px 0;
}
.mb-need__content {
  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;
}
.mb-need__card {
  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;
}
.mb-need__card-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;
}
.mb-need__card-hover {
  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;
}
.mb-need__card-hover span {
  margin-top: 30px;
  text-transform: unset;
  max-width: 100px;
  padding: 10px;
  text-align: center;
}
.mb-need__card:hover .mb-need__card-hover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.mb-need__button {
  padding: 15px 10px;
  max-width: 250px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  text-transform: unset;
}

.bm-rental-tech__tables-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.bm-ctm-table:nth-last-child(1) {
  margin-left: auto;
}

.bm-ctm-table__img-wrap {
  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;
}
.bm-ctm-table__img-wrap::after {
  content: "";
  display: block;
  width: 100%;
}

.bm-ctm-table__img {
  max-width: 100%;
  height: auto;
  position: absolute;
}

.bm-ctm-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.bm-ctm-table__th,
.bm-ctm-table__td {
  text-align: center;
}

.bm-ctm-table__btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.bm-ctm-table__header {
  text-align: center;
}

.bm-ctm-table {
  -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;
}
.bm-ctm-table__header {
  color: #00113e;
  font-weight: bold;
  font-size: 20px;
  margin: 0 0 13px 0;
}
.bm-ctm-table__img-wrap {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 40px;
}
.bm-ctm-table__img-wrap::after {
  padding-top: 55.2%;
}
.bm-ctm-table__table {
  border: 1px solid #524e4e;
}
.bm-ctm-table__th:nth-child(1),
.bm-ctm-table__td:nth-child(1) {
  border-right: 1px solid #524e4e;
}
.bm-ctm-table__th {
  font-weight: bold;
  padding: 8px 8px 12px 8px;
}
.bm-ctm-table__td {
  padding: 12px;
  color: #524e4e;
}
.bm-ctm-table__row {
  border-top: 1px solid #524e4e;
}
.bm-ctm-table__row:hover .bm-ctm-table__td {
  background: #cecdcd;
}
.bm-ctm-table__tbody .bm-ctm-table__row:nth-child(1) {
  border-top: 1px solid #524e4e;
}
.bm-ctm-table__btn {
  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;
}
.bm-ctm-table__btn:hover {
  background: #a60000;
}

.datePublishedReview {
  margin-top: 6px;
}

.rating-container {
  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;
  max-width: 250px;
  margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  .sidemenu__list-item:hover > .sidemenu__list {
    display: block;
  }
  .mobile-footer {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .sidemenu__list-item.open > .sidemenu__list {
    display: block;
  }
  .sidemenu .sidemenu__list-item.sidemenu__list-item_screen_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .burger {
    display: block;
  }
  .header {
    margin-top: 2rem;
  }
  .header__content {
    -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-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__content-left {
    margin: 0;
  }
  .header__content-right-banner {
    display: none;
  }
  .header__logo {
    display: none;
  }
  .header__logo-name::before {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  .header__logo-name {
    font-size: 20px;
  }
  .header__logo span {
    font-size: 10px;
  }
  .header__contacts {
    display: none;
  }
  .header__contacts-time {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .header__contacts-email a {
    margin-bottom: 0px;
  }
  .header__search {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header__nav {
    display: none;
  }
  .main {
    background: #f4f4f4;
    margin-top: 2.5rem;
  }
  .main .sidemenu {
    display: none;
  }
  .main-column {
    padding-right: 20px;
  }
  .main-content {
    background: #f4f4f4;
  }
}

@media screen and (max-width: 424px) {
  .callback-form {
    max-width: 300px;
    padding: 20px;
    padding-top: 40px;
  }
  .popup_calback {
    min-width: 300px;
    padding: 25px 10px;
  }
  .popup_calc {
    padding: 50px 15px 20px 15px !important;
  }
  .calculator__content {
    padding: 20px;
  }

  .header__content::after {
    background-position-x: 0;
  }
  .advantages__card {
    margin-right: 0;
  }
  .advantages__card-text {
    font-size: 15px;
  }
  /* .product-card__left-img {
    width: 100%;
    max-width: 425px;
    float: initial;
    margin: 0;
  } */
  .info-delivery__controls label {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .popup_calc {
    width: unset;
  }
  .calculator {
    max-width: 300px;
  }
  .calculator__content-top {
    -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;
  }
  .calculator__content-top label {
    margin-bottom: 10px;
  }
  .calculator__content-top label input {
    width: 170px;
  }
  .calculator__content-bottom {
    -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;
  }
  .calculator__content-bottom > * {
    margin-bottom: 10px;
  }
  .calculator__content-price {
    margin: 0;
    margin-bottom: 15px;
  }
  .contacts__button {
    margin-top: 15px;
    position: static;
  }

  .product-card {
    -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;
  }
}

@media screen and (max-width: 780px) {
  .produce__content {
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  }
}

@media screen and (max-width: 1100px) {
  .produce__content {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .mb-need__content {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media screen and (max-width: 500px) {
  .copyright__main {
    -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) {
  .advantages__card {
    max-width: 305px;
  }
}

@media only screen and (max-width: 580px) {
  .bm-rental-tech__tables-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .bm-ctm-table__img-wrap::after {
    display: none;
  }
  .bm-ctm-table__img {
    position: static;
  }
  .bm-ctm-table:nth-child(1) {
    margin-bottom: 102px;
  }
  .bm-ctm-table__header {
    margin-bottom: 16px;
    text-align: left;
  }
  .bm-ctm-table__img-wrap {
    margin-bottom: 16px;
  }
  .bm-ctm-table__btn {
    margin-top: 16px;
  }
  .bm-ctm-table {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
  margin-top: 8px;
}
@media (max-width: 516px) {
  .pagination {
    justify-content: center;
  }
}
.pagination li {
  margin: 0 5px;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.pagination li.active {
  background-color: #00113e;
  color: #fff;
  pointer-events: none;
}
.pagination li.hidden {
  display: none;
}
