.catalog_list {
  padding: 24px 0;
  background: #e4e9f2;
}

.section_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
}
@media (max-width: 1500px) {
  .section_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 920px) {
  .section_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .section_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section_list .section {
  margin-bottom: 10px;
  display: flex;
  justify-content: stretch;
  align-items: flex-end;
}
.section_list .section .section_name {
  font-weight: 500;
  font-size: 18px;
  color: #0e4b9c;
  display: block;
}
.section_list .section .section_border {
  flex-grow: 100;
  height: 1px;
  border-bottom: 1px dotted #a9a9a9;
  margin-bottom: 5px;
}
.section_list .section .section_value {
  font-weight: 300;
  font-size: 18px;
  color: #223f60;
}
.section_list .all_brands {
  font-weight: 500;
  font-size: 18px;
  color: #0e4b9c;
  display: flex;
}

section.catalog_element_list {
  margin-top: 2.8125vw;
}
section.catalog_element_list .item_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-decoration: unset;
  box-shadow: 0 5px 13px 0 rgba(172, 172, 172, 0.25);
}
section.catalog_element_list .item_block .item_img {
  width: 100%;
  height: 200px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
section.catalog_element_list .item_block .item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
section.catalog_element_list .item_block .item_info_block {
  background: #fff;
  padding: 0 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
section.catalog_element_list .item_block .item_name {
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  color: #212121;
  text-align: center;
  margin: 14px 0;
}
section.catalog_element_list .item_block .item_props .prop {
  display: flex;
  align-items: center;
  flex-direction: row;
  white-space: nowrap;
}
section.catalog_element_list .item_block .item_props .prop .prop_name {
  font-weight: 300;
  font-size: 14px;
  line-height: 200%;
  color: #223f60;
}
section.catalog_element_list .item_block .item_props .prop .prop_dots {
  height: 2px;
  width: 100%;
  border-bottom: 1px dotted rgb(117, 117, 117);
  margin: 0 8px;
}
section.catalog_element_list .item_block .item_props .prop .prop_value {
  font-weight: 300;
  font-size: 14px;
  line-height: 200%;
  color: #223f60;
}
section.catalog_element_list .item_block .item_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  text-align: center;
  color: #212529;
  margin-top: 28px;
  margin-bottom: 11px;
}
section.catalog_element_list .item_block .item_price span {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #757575;
}
section.catalog_element_list .item_block .btn {
  border: 0;
  border-top: 1px solid #003dff;
  background-color: #ffffff;
  border-radius: 0 0 5px 5px;
  padding: 25px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 131%;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  height: 71px;
  z-index: 9;
}

.to_catalog {
  display: block;
  border-radius: 5px;
  padding: 15px 40px;
  background: #003dff;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 190px;
  text-decoration: unset;
}
.to_catalog:hover {
  text-decoration: unset;
}

/*# sourceMappingURL=style.css.map */
