@charset "UTF-8";

.header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 101;
  overflow-y: auto;
}

@media only screen and (max-width: 767px) {
  .modal {
    padding: 24px;
  }
}

.modal__block {
  position: relative;
  background: #FFF;
  width: 100%;
  max-width: 400px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 40px 24px 24px;
  border-radius: 10px;
  overflow: hidden;
}

.modal__block:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #D62D2C;
}

.modal__title {
  color: var(--head, #262729);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.modal__text {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.modal__text:last-child {
  margin-bottom: 0;
}

.modal__text:before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D62D2C;
}

.modal__close {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  top: 8px;
  right: 15px;
  font-weight: 300;
  font-size: 32px;
  color: white;
}

* {
  font-family: 'Noto Sans', 'Arial', sans-serif;
}

.--hidden {
  display: none;
}

.dm-btn {
  display: inline-block;
  padding: 20px 40px;
  color: var(--white, #FFF);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50px;
  background: var(--akcent, #D62D2C);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.dm-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dm-btn.--w100 {
  width: 100%;
}

.dm-btn.--slim {
  color: #000;
  font-weight: 700;
  border: 1px solid #A15E55;
  background-color: #fff;
}

.dm-btn.--white {
  color: #333;
  background-color: #fff;
}

.dm-h2 {
  color: #000;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .dm-h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.tab__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #000;
  margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .tab__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .tab__header::-webkit-scrollbar {
    display: none;
  }
}

.tab__link {
  width: 25%;
  padding: 10px 30px 20px;
  color: #000;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: -1px;
}

@media only screen and (max-width: 767px) {
  .tab__link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 150px;
    font-size: 16px;
  }
}

.tab__link.--active {
  font-weight: 500;
  border-bottom: 3px solid #D62D2C;
}

.tab__block {
  display: none;
}

.tab__block.--active {
  display: block;
}

body {
  background: #fdfdfe;
  min-width: 320px;
  overflow-x: hidden;
}

.dm-wrap {
  position: relative;
  width: 100%;
  max-width: 1234px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .dm-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 991px) {
  .dm-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.dm-wrap-page {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .dm-wrap-page {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 991px) {
  .dm-wrap-page {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.dm-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.dm-arrow.--prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dm-arrow:last-child {
  margin-right: 0;
}

.dm-arrow:hover {
  background: #D62D2C;
}

.dm-arrow:hover svg path {
  stroke: white;
}

.dm-arrow svg {
  width: 16px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.dm-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1023px) {
  .dm-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

.dm-title.--left {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .dm-title.--left {
    text-align: center;
  }
}

.dm-read {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--gray-text, #9E9E9E);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.dm-read span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  margin-left: 10px;
}

.dm-read svg {
  width: 12px;
  height: 12px;
}

.dm-description {
  width: 100%;
  max-width: 970px;
  color: #9E9E9E;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 auto 50px;
}

.dm-description a {
  color: #000;
}

.dm-field,
.dm-textarea {
  height: 60px;
  padding: 0 20px;
  line-height: 60px;
  border-radius: 30px;
  background: rgba(191, 191, 191, 0.3);
  color: var(--bg, #F5F6FA);
  font-size: 16px;
  font-weight: 400;
}

.dm-field::-webkit-input-placeholder,
.dm-textarea::-webkit-input-placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

.dm-field::-moz-placeholder,
.dm-textarea::-moz-placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

.dm-field::-ms-input-placeholder,
.dm-textarea::-ms-input-placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

.dm-field::placeholder,
.dm-textarea::placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

.dm-field.--slim,
.dm-textarea.--slim {
  color: #000;
  border: 1px solid #CBCBCB;
  background-color: #fff;
}

.dm-textarea {
  width: 100%;
  margin-bottom: 60px;
}

.dm-submit {
  width: 100%;
  height: 60px;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  border-radius: 30px;
  background-color: white;
  margin-bottom: 20px;
}

.dm-checkbox {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dm-checkbox:before {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 15px;
  height: 15px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-align: center;
  color: #333;
  background: white;
}

.dm-checkbox__wrap {
  text-align: center;
}

.dm-checkbox__wrap input {
  display: none;
}

.dm-checkbox__wrap input:checked + label:before {
  content: '✓';
}

.dm-banner {
  position: relative;
  background: url("../images/pic/banner.png") no-repeat center bottom/cover;
  overflow: hidden;
}

.dm-banner.--catalog {
  background: url("../images/pic/banner_catalog.jpg") no-repeat center bottom/cover;
}

.dm-banner .dm-wrap {
  padding-top: 140px;
  padding-bottom: 190px;
}

.dm-banner__info {
  width: 100%;
  max-width: 800px;
}

.dm-banner__slogan {
  color: var(--akcent, #D62D2C);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .dm-banner__slogan {
    margin-bottom: 20px;
  }
}

.dm-banner .dm-banner__title {
  color: #262729;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) {
  .dm-banner .dm-banner__title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .dm-banner .dm-banner__title {
    font-size: 32px;
  }
}

.dm-banner .dm-banner__text {
  max-width: 585px;
  color: #676767;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
}

.dm-banner__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 70px;
}

@media only screen and (max-width: 767px) {
  .dm-banner__values {
    padding-top: 35px;
  }
}

.dm-banner__values-item {
  margin-right: 50px;
}

@media only screen and (max-width: 767px) {
  .dm-banner__values-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .dm-banner__values-item:last-child {
    margin-bottom: 0;
  }
}

.dm-banner__values-item:last-child {
  margin-right: 0;
}

.dm-banner__values-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #262729;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 10px;
}

.dm-banner__values-number span {
  color: #D62D2C;
  margin-left: 15px;
}

.dm-banner__values-text {
  color: var(--head, #262729);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.dm-banner .dm-banner__img {
  position: absolute;
  bottom: 100px;
  left: 44%;
  width: 835px;
  height: 80%;
}

@media only screen and (max-width: 1099px) {
  .dm-banner .dm-banner__img {
    width: 500px;
  }
}

@media only screen and (max-width: 1023px) {
  .dm-banner .dm-banner__img {
    right: 0;
  }
}

.dm-banner .dm-banner__img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media (max-width: 500px) {
  .dm-banner .dm-btn {
    font-size: 14px;
    padding: 20px;
  }

  .dm-banner .dm-banner__values-number {
    margin-bottom: 0;
  }

  .dm-banner .dm-banner__img {
    right: -190px;
    left: auto;
    bottom: -95px;
  }
}

.dm-banner__actions {
  position: absolute;
  bottom: 50px;
  right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .dm-banner__actions {
    right: 0;
    width: 100%;
    padding: 0 24px;
  }
}

.dm-banner__dots {
  margin-right: 40px;
}

.dm-banner__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd6ed;
  margin: 0 5px !important;
  opacity: 1;
}

.dm-banner__dots .swiper-pagination-bullet-active {
  background: #D62D2C;
}

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

.dm-why {
  margin-bottom: 150px;
}

@media only screen and (max-width: 767px) {
  .dm-why {
    margin-bottom: 60px;
  }
}

.dm-why__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 60px 30px;
  padding-top: 20px;
  margin-bottom: 50px;
}

.dm-why__item {
  height: 250px;
  padding: 0 45px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid var(--bg, #F5F6FA);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 767px) {
  .dm-why__item {
    height: initial;
    padding-bottom: 24px;
  }

  .dm-why__item .dm-why__ico {
    background-color: #D62D2C;
  }

  .dm-why__item .dm-why__ico svg path {
    fill: white;
  }

  .dm-why__item .dm-why__text {
    opacity: 1;
  }
}

.dm-why__item:hover {
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}

.dm-why__item:hover .dm-why__ico {
  background-color: #D62D2C;
}

.dm-why__item:hover .dm-why__ico svg path {
  fill: white;
}

.dm-why__item:hover .dm-why__title {
  color: #D62D2C;
}

.dm-why__item:hover .dm-why__text {
  opacity: 1;
}

.dm-why__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--bg, #F5F6FA);
  margin: -30px auto 50px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.dm-why__ico svg {
  width: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.dm-why__title {
  color: var(--head, #262729);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  margin-bottom: 10px;
}

.dm-why__text {
  color: var(--gray-text, #9E9E9E);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 0;
}

.dm-gradient {
  padding: 150px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f3f4f9), color-stop(50%, #fdfdfe), to(#f3f4f9));
  background: -webkit-linear-gradient(top, #f3f4f9 0%, #fdfdfe 50%, #f3f4f9 100%);
  background: -o-linear-gradient(top, #f3f4f9 0%, #fdfdfe 50%, #f3f4f9 100%);
  background: linear-gradient(180deg, #f3f4f9 0%, #fdfdfe 50%, #f3f4f9 100%);
  margin-bottom: 190px;
}

@media only screen and (max-width: 767px) {
  .dm-gradient {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}

.dm-tabs {
  margin-bottom: 150px;
  margin-bottom: 60px;
}

.dm-tabs__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 60px 30px;
}

.dm-tabs__item {
  position: relative;
  height: 430px;
  padding: 0 20px 80px;
  border-radius: 20px;
  border: 1px solid var(--light-gray, #E6E6E6);
}

@media only screen and (max-width: 767px) {
  .dm-tabs__item {
    height: initial;
  }
}

.dm-tabs__item:hover {
  background-color: white;
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}

.dm-tabs__item:hover .dm-tabs__ico {
  background-color: #D62D2C;
}

.dm-tabs__item:hover .dm-tabs__ico svg path {
  fill: white;
}

.dm-tabs__item:hover .dm-read span {
  background-color: #D62D2C;
}

.dm-tabs__item:hover .dm-read svg path {
  stroke: white;
}

.dm-tabs__item:hover .dm-tabs__title {
  color: #D62D2C;
}

.dm-tabs__item:hover .dm-tabs__text {
  opacity: 1;
}

.dm-tabs__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--bg, #fff);
  margin: -30px 0 30px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.dm-tabs__ico svg {
  width: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.dm-tabs__title {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.dm-tabs__text {
  color: var(--gray-text, #9E9E9E);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.dm-industries {
  margin-bottom: 170px;
}

@media only screen and (max-width: 767px) {
  .dm-industries {
    margin-bottom: 60px;
  }
}

.dm-industries__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 30px;
}

.dm-industries__inner.--bottom {
  margin-bottom: 50px;
}

.dm-industries__item {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--light-gray, #E6E6E6);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.dm-industries__item:hover {
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: white;
  border-color: transparent;
}

.dm-industries__item:hover .dm-read span {
  background-color: #D62D2C;
}

.dm-industries__item:hover .dm-read svg path {
  stroke: white;
}

.dm-industries__img {
  position: relative;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
}

.dm-industries__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.dm-industries__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 30px;
  color: var(--head, #262729);
  font-size: 16px;
  font-weight: 400;
  padding: 0 20px 0 30px;
  background-color: white;
  border-radius: 20px;
}

.dm-industries__tag:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D62D2C;
}

.dm-industries__info {
  padding: 30px 20px 75px;
}

.dm-industries__date {
  color: var(--gray-text, #9E9E9E);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
}

.dm-industries__title {
  color: var(--head, #262729);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 10px;
}

.dm-industries__text {
  color: var(--gray-text, #9E9E9E);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.dm-form {
  position: relative;
  padding: 30px 70px 50px;
  color: #fff;
  background-color: #D62D2C;
  border-radius: 30px;
  margin-bottom: 190px;
}

@media only screen and (max-width: 767px) {
  .dm-form {
    width: calc(100% + 48px);
    padding-left: 24px;
    padding-right: 24px;
    margin-left: -24px;
    border-radius: 0;
    margin-bottom: 80px;
  }
}

.dm-form__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 20px;
  margin-bottom: 20px;
}

.dm-form__open {
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.dm-form__open.--active {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dm-form__open img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dm-cases {
  margin-bottom: 190px;
}

@media only screen and (max-width: 767px) {
  .dm-cases {
    margin-bottom: 60px;
  }
}

.dm-cases__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-gap: 30px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .dm-cases__inner {
    grid-gap: 15px;
  }
}

.dm-cases__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 270px;
  border-radius: 20px;
  border: 1px solid var(--bg, #F5F6FA);
  background: var(--white, #FFF);
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 767px) {
  .dm-cases__item {
    height: 120px;
  }
}

.dm-cases__item img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dm-awards {
  margin-bottom: 150px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .dm-awards {
    margin-bottom: 60px;
  }
}

.dm-awards__slider {
  width: calc(100% + 200px);
  margin-left: -100px;
}

@media only screen and (max-width: 767px) {
  .dm-awards__slider {
    width: calc(100% + 260px);
    margin-left: -130px;
  }
}

.dm-awards__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 150px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid var(--light-gray, #E6E6E6);
  background: var(--white, #FFF);
}

.dm-contacts {
  padding-bottom: 100px;
  background: url("../images/pic/men.png") no-repeat bottom right/contain;
}

.dm-contacts .dm-field,
.dm-contacts .dm-textarea {
  color: var(--gray-text, #9E9E9E);
  background: var(--bg, #F5F6FA);
}

.dm-contacts .dm-textarea {
  margin-bottom: 40px;
}

.dm-contacts .dm-checkbox__wrap {
  text-align: left;
}

.dm-contacts .dm-checkbox:before {
  color: white;
  background: #D62D2C;
}

.dm-contacts .dm-checkbox__wrap {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .dm-contacts .dm-btn {
    width: 100%;
  }
}

.dm-contacts__form {
  width: 100%;
  max-width: 525px;
}

.dm-contacts__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 30px;
  margin-bottom: 30px;
}

.iframe {
  width: 500px;
  height: 68px;
  border: none;
  margin-bottom: 30px;
}

.iframe.--active {
  height: 400px;
}

.dm-consalta-banner {
  height: 680px;
  background: url("../images/pic/consalta/banner.jpg") no-repeat center center/cover;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-banner {
    height: initial;
    padding: 80px 0;
  }
}

.dm-consalta-banner .dm-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.dm-consalta-banner__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.dm-consalta-banner__info {
  width: 100%;
  max-width: 586px;
  margin-right: 30px;
}

.dm-consalta-banner__text {
  max-width: 490px;
  color: #676767;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

.dm-consalta-banner__text:last-child {
  margin-bottom: 0;
}

.dm-consalta-banner__title {
  color: #000;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-banner__title {
    font-size: 30px;
    line-height: 1.5;
  }
}

.dm-consalta-banner__title:last-child {
  margin-bottom: 0;
}

.dm-consalta-banner__img {
  position: relative;
  top: -50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  padding: 65px 15px;
  border-radius: 160px;
  background-color: #fff;
}

@media only screen and (max-width: 1023px) {
  .dm-consalta-banner__img {
    max-width: 280px;
  }
}

@media only screen and (max-width: 767px) {
  .dm-consalta-banner__img {
    display: none;
  }
}

.dm-consalta-banner__img svg,
.dm-consalta-banner__img img {
  height: 180px;
}

@media only screen and (max-width: 1023px) {
  .dm-consalta-banner__img svg,
  .dm-consalta-banner__img img {
    height: 100px;
  }
}

.dm-consalta-banner__picture {
  position: absolute;
  right: -350px;
  top: 50px;
  width: 855px;
}

@media only screen and (max-width: 1279px) {
  .dm-consalta-banner__picture {
    width: 655px;
  }
}

@media only screen and (max-width: 1023px) {
  .dm-consalta-banner__picture {
    width: 455px;
  }
}

@media only screen and (max-width: 767px) {
  .dm-consalta-banner__picture {
    display: none;
  }
}

.dm-consalta-banner__picture:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: -100px;
  right: -70px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #EF3F29;
}

.dm-consalta-banner__picture img {
  position: relative;
  z-index: 2;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dm-consalta-form {
  position: relative;
  z-index: 1;
  margin-bottom: 130px;
}

@media only screen and (max-width: 1023px) {
  .dm-consalta-form {
    margin-bottom: 80px;
  }
}

.dm-consalta-form__img {
  width: calc(100% - 200px);
  margin: -80px auto -110px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-form__img {
    width: 80%;
    margin: -30px auto -60px;
  }
}

.dm-consalta-form__img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dm-consalta-form__inner {
  padding: 130px 48px 48px;
  border-radius: 3px;
  border: 1px solid #E5E5E5;
  background: #FAF6F5;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-form__inner {
    padding: 80px 24px 48px;
  }
}

.dm-consalta-form__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 25px;
}

.dm-consalta-form__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.dm-consalta-form__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.dm-consalta-form__logo img {
  width: 100px;
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-form__logo img {
    width: 80px;
  }
}

.dm-consalta-form__logo span {
  color: #676767;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.dm-consalta-form__slogan {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-form__slogan {
    font-size: 22px;
  }
}

.dm-consalta-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 24px 40px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-form__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.dm-consalta-form__checkbox {
  position: relative;
  display: inline-block;
  padding-left: 47px;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-form__checkbox {
    font-size: 12px;
  }
}

.dm-consalta-form__checkbox a {
  color: #A15E55;
  text-decoration: underline;
}

.dm-consalta-form__checkbox a:hover {
  text-decoration: none;
}

.dm-consalta-form__checkbox:before {
  content: '';
  display: block;
  position: absolute;
  top: -9px;
  left: 0;
  width: 32px;
  height: 32px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  color: #A15E55;
  border: 1px solid #CBCBCB;
  background: white;
}

.dm-consalta-form__checkbox-wrap input {
  display: none;
}

.dm-consalta-form__checkbox-wrap input:checked + label:before {
  content: '✓';
}

.dm-consalta-advantages {
  padding: 130px 0;
  background: #FAF6F5;
}

@media only screen and (max-width: 1023px) {
  .dm-consalta-advantages {
    padding: 80px 0;
  }
}

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

.dm-consalta-advantages__col:first-child {
  width: calc(100% - 455px);
  padding-right: 65px;
}

@media only screen and (max-width: 1023px) {
  .dm-consalta-advantages__col:first-child {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}

.dm-consalta-advantages__col:last-child {
  width: 455px;
}

@media only screen and (max-width: 1023px) {
  .dm-consalta-advantages__col:last-child {
    width: 100%;
  }
}

.dm-consalta-advantages__item {
  margin-bottom: 30px;
}

.dm-consalta-advantages__item:last-child {
  margin-bottom: 0;
}

.dm-consalta-advantages__title {
  color: #000;
  font-size: 44px;
  font-weight: 700;
  line-height: 60px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-advantages__title {
    font-size: 30px;
  }
}

.dm-consalta-advantages__text {
  color: #676767;
  font-size: 16px;
  line-height: 24px;
}

.dm-consalta-advantages__bold {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 24px;
}

.dm-consalta-advantages__bold:last-child {
  margin-bottom: 0;
}

.dm-consalta-advantages__list {
  position: relative;
  padding-left: 35px;
  color: #676767;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

.dm-consalta-advantages__list:last-child {
  margin-bottom: 0;
}

.dm-consalta-advantages__list:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../images/ico/list.svg") no-repeat center center/contain;
}

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

@media only screen and (max-width: 767px) {
  .dm-consalta-advantages__footer svg {
    display: none;
  }
}

.dm-consalta-customer {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-customer {
    padding: 80px 0;
  }
}

.dm-consalta-customer:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1680px;
  height: 590px;
  background: url("../images/pic/sun.svg") no-repeat bottom right/contain;
}

.dm-consalta-customer__title {
  color: #000;
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-customer__title {
    font-size: 30px;
  }
}

.dm-consalta-customer__text {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 70px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-customer__text {
    margin-bottom: 30px;
  }
}

.dm-consalta-customer__inner {
  position: relative;
  padding: 0 84px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-customer__inner {
    padding: 0 40px;
  }
}

.dm-consalta-customer__prev,
.dm-consalta-customer__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 220px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-customer__prev,
  .dm-consalta-customer__next {
    width: 30px;
  }
}

.dm-consalta-customer__prev img,
.dm-consalta-customer__prev svg,
.dm-consalta-customer__next img,
.dm-consalta-customer__next svg {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dm-consalta-customer__next {
  left: initial;
  right: 0;
}

.dm-consalta-customer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 220px;
  padding: 10px;
  border: 1px solid #e3e3e4;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-customer__item {
    height: 140px;
  }
}

.dm-consalta-customer__item img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dm-consalta-target {
  padding: 130px 0;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-target {
    padding: 80px 0;
  }
}

.dm-consalta-target .dm-consalta-form__inner {
  padding-top: 48px;
}

.dm-consalta-target__header {
  max-width: 670px;
  text-align: center;
  margin: 0 auto 130px;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-target__header {
    margin-bottom: 80px;
  }
}

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

.dm-consalta-target__item {
  width: calc(50% - 30px);
}

@media only screen and (max-width: 1023px) {
  .dm-consalta-target__item {
    width: 100%;
    margin-bottom: 30px;
  }

  .dm-consalta-target__item:last-child {
    margin-bottom: 0;
  }
}

.dm-consalta-benefits {
  padding: 130px 0;
  color: #fff;
  background: #333;
}

@media only screen and (max-width: 767px) {
  .dm-consalta-benefits {
    padding: 80px 0;
  }
}

.dm-consalta-benefits .dm-btn {
  font-weight: 700;
  margin-top: 50px;
}

.dm-consalta-benefits .dm-consalta-advantages__title,
.dm-consalta-benefits .dm-consalta-advantages__text,
.dm-consalta-benefits .dm-consalta-advantages__bold,
.dm-consalta-benefits .dm-consalta-advantages__list {
  color: #fff;
}

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

.dm-consalta-benefits__item {
  width: calc(50% - 30px);
}

@media only screen and (max-width: 767px) {
  .dm-consalta-benefits__item {
    width: 100%;
    margin-bottom: 30px;
  }

  .dm-consalta-benefits__item:last-child {
    margin-bottom: 0;
  }
}

.dm-consalta-benefits__img {
  width: 100%;
  max-width: 444px;
  padding: 48px;
  text-align: center;
  border-radius: 158px;
  background: #4D4D4D;
  margin-top: 35px;
}

.dm-consalta-benefits__img svg {
  height: 140px;
}

.dm-solutions-featured {
  padding: 75px 0 60px;
}

.dm-solutions-featured__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dm-solutions-featured__title {
  font-size: 18px;
  font-weight: 700;
  margin-right: 30px;
}

.dm-solutions-featured__title:last-child {
  margin-right: 0;
}

.dm-solutions-featured__link {
  color: #B75548;
  font-size: 18px;
  border-bottom: 1px solid #B75548;
}

.dm-solutions-featured__link:hover {
  border-color: transparent;
}

.dm-catalogue {
  margin-bottom: 110px;
}

@media only screen and (max-width: 767px) {
  .dm-catalogue {
    margin-bottom: 80px;
  }
}

.dm-catalogue__inner {
  position: relative;
  padding: 0 80px;
}

@media only screen and (max-width: 767px) {
  .dm-catalogue__inner {
    padding: 0 40px;
  }
}

.dm-catalogue__item {
  position: relative;
  display: block;
  min-height: 510px;
  padding: 45px 32px 110px;
  border-radius: 2px;
  border: 1px solid #E5E5E5;
  background: #FFF;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .dm-catalogue__item {
    min-height: 480px;
    padding: 30px 15px 90px;
  }
}

.dm-catalogue__item:hover:before {
  top: -260px;
  right: -370px;
}

.dm-catalogue__item:before {
  content: '';
  display: block;
  position: absolute;
  top: -560px;
  right: -770px;
  width: 1024px;
  height: 1024px;
  border-radius: 50%;
  background: -webkit-radial-gradient(circle, #d3cacc 0%, #f4f0f0 100%);
  background: -o-radial-gradient(circle, #d3cacc 0%, #f4f0f0 100%);
  background: radial-gradient(circle, #d3cacc 0%, #f4f0f0 100%);
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.dm-catalogue__item .dm-btn {
  position: absolute;
  bottom: 45px;
  left: 32px;
  width: calc(100% - 64px);
}

@media only screen and (max-width: 767px) {
  .dm-catalogue__item .dm-btn {
    bottom: 30px;
    left: 15px;
    width: calc(100% - 30px);
  }
}

.dm-catalogue__img {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
}

.dm-catalogue__img svg,
.dm-catalogue__img img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.dm-catalogue__title {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}

.dm-catalogue__logo {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 55px;
}

.dm-catalogue__logo img svg,
.dm-catalogue__logo img img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.dm-catalogue__text {
  position: relative;
  z-index: 2;
  color: #676767;
  font-size: 10px;
  margin-bottom: 15px;
}

.dm-catalogue__description {
  position: relative;
  z-index: 2;
  color: #676767;
  line-height: 1.5;
  
  
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.dm-catalogue__prev,
.dm-catalogue__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 210px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 767px) {
  .dm-catalogue__prev,
  .dm-catalogue__next {
    width: 30px;
  }
}

.dm-catalogue__prev img,
.dm-catalogue__prev svg,
.dm-catalogue__next img,
.dm-catalogue__next svg {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dm-catalogue__next {
  left: initial;
  right: 0;
}

.dm-catalogue-filter {
  padding: 110px 0;
  /*background-color: #f8f8f9;*/
}

@media only screen and (max-width: 767px) {
  .dm-catalogue-filter {
    padding: 80px 0;
  }
}

.dm-catalogue-filter__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dm-catalogue-filter__aside {
  position: sticky;
  top: 100px;
  width: 280px;
  border-radius: 6px;
  border: 1px solid #E5E5E5;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .dm-catalogue-filter__aside {
    position: initial;
    top: initial;
    width: 100%;
    margin-bottom: 20px;
  }
}

.dm-catalogue-filter__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 55px;
  padding: 5px 20px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #E5E5E5;
}

.dm-catalogue-filter__header svg {
  width: 20px;
  margin-right: 10px;
}

.dm-catalogue-filter__body {
  padding: 20px;
}

.dm-catalogue-filter__item {
  margin-bottom: 20px;
}

.dm-catalogue-filter__item:last-child {
  margin-bottom: 0;
}

.dm-catalogue-filter__item-title {
  position: relative;
  color: #676767;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dm-catalogue-filter__item-title.--active:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dm-catalogue-filter__item-title:before {
  content: '▼';
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  color: #676767;
  font-size: 10px;
}

.dm-catalogue-filter__item-hidden {
  display: none;
  padding-top: 20px;
}

.dm-catalogue-filter__item-checkbox {
  margin-bottom: 20px;
}

.dm-catalogue-filter__item-checkbox:last-child {
  margin-bottom: 0;
}

.dm-catalogue-filter__item-checkbox input {
  display: none;
}

.dm-catalogue-filter__item-checkbox input:checked + label:before {
  -webkit-box-shadow: inset 0 0 0 2px #fff;
  box-shadow: inset 0 0 0 2px #fff;
  background-color: #d53132;
  border-color: #d53132;
}

.dm-catalogue-filter__item-check {
  position: relative;
  display: block;
  padding-left: 35px;
  color: #676767;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dm-catalogue-filter__item-check:before {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #e3e3e4;
  background: #f6f6f7;
}

.dm-catalogue-filter__footer {
  padding: 20px;
  border-top: 1px solid #E5E5E5;
}

.dm-catalogue-filter__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 20px;
  width: calc(100% - 280px);
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .dm-catalogue-filter__grid {
    width: 100%;
    padding: 0;
  }
}

.dm-catalogue-form {
  padding: 110px 0;
  background-color: #333;
}

@media only screen and (max-width: 767px) {
  .dm-catalogue-form {
    padding: 80px 0;
  }
}

.dm-catalogue-form .dm-h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.dm-catalogue-form .dm-btn {
  display: block;
  width: 320px;
  margin: 0 auto;
}

.dm-catalogue-form__text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  max-width: 450px;
  margin: 0 auto 50px;
}

.dm-catalogue-form__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 40px;
  margin-bottom: 25px;
}

.dm-catalogue-form__grid .dm-field {
  width: calc(50% - 20px);
  color: #000;
  background-color: #fff;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .dm-catalogue-form__grid .dm-field {
    width: 100%;
  }
}

.dm-catalogue-form__grid .dm-textarea {
  color: #000;
  background-color: #fff;
  margin-bottom: 0;
}

.complete-solutions {
    max-width: 100% !important;
}
.container > .row > .maxwidth-theme > .content-md {
    padding: 0;
}
.page-top-info,
.bottom-links-block {
    display: none !important;
}
body > .body:not(.index) > .main {
    padding-bottom: 0 !important;
}
.maxwidth-theme.wide- {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.bx_filter_parameter_label {
    color: #676767;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}
.catalog.bx_filter {
    margin-bottom: 0 !important;
}
.bx_filter_button_box .btn {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 16px 0px;
    font-family: "Noto Sans", Arial, sans-serif;
    border-radius: 50px;
    background: var(--akcent, #D62D2C);
}
.bx_filter .bx_filter_parameters_box {
    border-top: none;
    border-bottom: none !important;
}
.bx_filter .bx_filter_button_box {
    border-top: 1px solid #E5E5E5;
}
.menu-arrow.svg {
    top: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.captcha-block {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.dm-checkbox__wrap {
    margin-bottom: 25px;
}
.dm-checkbox {
    color: #fff;
}
@media screen and (max-width: 992px) {
    .bx_filter.bx_filter_vertical.catalog.swipeignore {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
    }
    .bx_filter_button_box.active {
        position: relative !important;
    }
    .dm-catalogue-filter {
        padding-top: 0;
    }
}
.btn.btn-default {
    background-color: #D62D2C !important;
    border-color: #D62D2C !important;
}
.mobileheader--color-colored {
    background-color: #D62D2C !important;
}
.active > .dark_link {
    color: #D62D2C !important;
}
.no-pading-margin {
    padding: 0;
    margin: 0;
}
.dm-catalogue-filter {
    padding-top: 0;
}
.dm-catalogue-filter__aside {
    z-index: 10;
}
.header__main-part {
    background: transparent;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 32px;
    padding-right: 32px;
}