/* .deposit-bonuses {
  margin-bottom: 64px;
} */

.other-offers-button {
  border-radius: 4px;
  border: 0;
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s all;
  background-position: right;
  background-size: 200%;
  background-color: #ff3d00;
  background-image: linear-gradient(
    90deg,
    #ff3d00 0%,
    #8032ff 50%,
    #ff3d00 100%
  );
  background-position: right;
  box-shadow:
    0 0 13px transparent,
    0 4px 8px rgba(6, 8, 14, 0.2),
    inset 0 -1px 1px rgba(35, 34, 49, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  padding: 18px 48px;
}

.other-offers-button:hover,
.other-offers-button:active {
  background-position: left;
  box-shadow:
    0 0 13px #e1616f,
    0 4px 8px rgba(6, 8, 14, 0.2),
    inset 0 -1px 1px rgba(35, 34, 49, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.other-offers-button:active {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.25)
    ),
    linear-gradient(90deg, #ff3d00 0%, #8032ff 50%, #ff3d00 100%);
}

.other-offers-text-container {
  display: flex;
  justify-content: space-between;
}

.other-offers-title {
  font-family: 'Poppins';
  font-size: 36px;
  font-weight: 600;
  line-height: 50.4px;
  text-align: left;
}

.other-offers-button-mobile-wrapper {
  display: flex;
  justify-content: center;
}

.other-offers-button-mobile {
  display: none;
}

.other-offers-button {
  align-self: flex-start;
  border-radius: 4px;
  border: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s all;
  background-position: right;
  background-size: 200%;
  background-color: #ff3d00;
  background-image: linear-gradient(
    90deg,
    #ff3d00 0%,
    #8032ff 50%,
    #ff3d00 100%
  );
  background-position: right;
  box-shadow:
    0px 0px 13px transparent,
    0px 4px 8px rgba(6, 8, 14, 0.2),
    inset 0px -1px 1px rgba(35, 34, 49, 0.2),
    inset 0px 1px 1px rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
}

.other-offers-button:hover,
.other-offers-button:active {
  background-position: left;
  box-shadow:
    0px 0px 13px #e1616f,
    0px 4px 8px rgba(6, 8, 14, 0.2),
    inset 0px -1px 1px rgba(35, 34, 49, 0.2),
    inset 0px 1px 1px rgba(255, 255, 255, 0.3);
}

.other-offers-button:active {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.25)
    ),
    linear-gradient(90deg, #ff3d00 0%, #8032ff 50%, #ff3d00 100%);
}

.button-mobile {
  display: none;
}

@media screen and (max-width: 1240px) {
  .other-offers-title {
    font-size: 32px;
    line-height: 44.4px;
  }
}

@media (max-width: 880px) {
  .button-mobile {
    display: block;
  }

  .button-desktop {
    display: none;
  }

  .other-offers-text-container {
    display: flex;
    justify-content: center;
  }

  .other-offers-title {
    font-family: 'Poppins';
    font-size: 26px;
    font-weight: 600;
    line-height: 40.4px;
    text-align: left;
  }
}

@media screen and (max-width: 700px) {
  .other-offers-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
  }
}
