.sales-blocks {
  width: 100%;
  padding: 2rem 0;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .sales-blocks {
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .sales-blocks {
    margin-bottom: 100px;
  }
}
.sales-blocks .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(33% - 7px), 1fr));
  gap: 14px;
}
@media (max-width: 768px) {
  .sales-blocks .container {
    grid-template-columns: 100%;
  }
}
.sales-blocks__block {
  background-color: #f2f5f8;
  border-radius: 10px;
  padding: 2.5rem 3rem 3rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0);
  transition: box-shadow 0.15s ease-in-out;
  overflow: clip;
  position: relative;
  min-height: 200px;
  color: currentColor;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  transition: box-shadow 0.3s ease;
  min-height: 250px;
}
@media (max-width: 768px) {
  .sales-blocks__block {
    min-width: unset;
    padding: 1.5rem 1.5rem 3rem;
  }
}
.sales-blocks__block::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 177%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(var(--tile_color) 56%, color-mix(in srgb, var(--tile_color) 30%, transparent) calc(56% + 2px));
  transform: translate(50%, 50%);
}
.sales-blocks__block:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.sales-blocks__block:hover .btn_arrow {
  background-color: #033768;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5rem 1rem;
  color: #fff;
  background-image: none;
}
.sales-blocks__block:hover .btn_arrow span {
  transform: translateX(0);
  opacity: 1;
}
.sales-blocks__block img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.sales-blocks__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #033768;
  font-family: gotham-medium, sans-serif;
  align-self: flex-start;
  width: 100%;
}
.sales-blocks .btn_arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #fff;
  background-image: url("../../../images/icons/strzalka-3@2.png");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease, width 0.4s ease;
  align-self: flex-end;
}
.sales-blocks .btn_arrow span {
  display: inline-block;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
}
.sales-blocks__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #212529;
  align-self: flex-start;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}/*# sourceMappingURL=sales.css.map */