.single-solutions-promo-block {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  max-width: 634px;
  padding: 6px;
  margin: 0 auto;
  background: var(--e-global-opacity-black-064);
  backdrop-filter: blur(60px);
  border-radius: 40px;
  transform: translateX(-50%);
}

.single-solutions-promo-block .icon-wrapper {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 10px;
  background: rgb(240 243 250 / 8%);
  backdrop-filter: blur(60px);
  border-radius: 40px;
}

.single-solutions-promo-block .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.single-solutions-promo-block .title {
  padding: 0;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  font-feature-settings: 'liga' off;
  line-height: 28px; /* 155.556% */
  color: #F0F3FA;
}

.single-solutions-promo-block .text {
  padding: 0;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: 'liga' off;
  line-height: 20px; /* 142.857% */
  color: rgb(240 243 250 / 80%);
}

.single-solutions-promo-block .text strong {
  font-family: Satoshi, sans-serif;
  font-weight: 500;
  color: #F0F3FA;
}

.single-solutions-promo-block .button {
  padding: 14px 25px;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  color: #F0F3FA;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(107deg, #FFF -155.85%, #2B4DFD 100.82%);
  border-radius: 80px;
}

.single-solutions-promo-block .button svg {
  position: absolute;
  display: none;
  visibility: hidden;
}

.single-solutions-promo-block .button:hover {
  background: linear-gradient(107deg, #FFF -155.85%, #2B4DFD 71.21%);
}

.single-solutions-promo-block .button:active {
  background: linear-gradient(107deg, #FFF -74.41%, #2B4DFD 100.82%);
}

@media screen and (max-width: 988px) {
  .single-solutions-promo-block {
    width: 100%;
    max-width: 350px;
    padding: 4px;
  }

  .single-solutions-promo-block .title {
    font-size: 16px;
    line-height: 24px;
  }

  .single-solutions-promo-block .icon-wrapper {
    width: 48px;
    height: 48px;
    padding: 8px;
  }

  .single-solutions-promo-block .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 10px;
    background: rgb(240 243 250 / 8%);
    border-radius: 50%;
  }

  .single-solutions-promo-block .button svg {
    position: static;
    display: block;
    visibility: visible;
  }

  .single-solutions-promo-block .button span {
    position: absolute;
    display: none;
    visibility: hidden;
  }
}