.question {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
}

.question__bg {
  display: block;
  width: 100%;
  height: auto;
}

.question__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1;
}

.question__container {
  width: 100%;
}

.question__title {
  text-align: center;
  font-family: "Proxima Nova Bold", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 60px;
  color: rgba(237, 244, 252, 1);
  letter-spacing: -2px;
  margin: 0;
}

.question__title-gold {
  display: inline-block;

  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 42%,
      rgba(255, 255, 255, 0.9) 48%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.9) 52%,
      transparent 58%,
      transparent 100%
    ),
    linear-gradient(
      100deg,
      #a77427 6.84%,
      #ddb55f 22.38%,
      #f7e3a8 37.91%,
      #fbefc8 50%,
      #f0d48f 63.81%,
      #c79436 79.35%,
      #a77427 93.16%
    );

  background-size:
    250% 100%,
    100% 100%;
  background-position:
    120% 0,
    0 0;
  background-repeat: no-repeat;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: questionGoldShine 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes questionGoldShine {
  0%,
  8% {
    background-position:
      120% 0,
      0 0;
  }
  50% {
    background-position:
      -40% 0,
      0 0;
  }
  100% {
    background-position:
      -40% 0,
      0 0;
  }
}

.question__text {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(147, 174, 206, 1);
}

.question__actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.question__btn {
  display: inline-block;
  font-family: "Proxima Nova Semibold", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 16px 48px;
  border-radius: 60px;
  border: 1px solid transparent;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.question__btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: rgba(26, 18, 4, 1);
  background: linear-gradient(
    102deg,
    #b8862f 7.84%,
    #f7e3a8 39.88%,
    #fbefc8 51.69%,
    #e3bc6a 71.92%,
    #b8862f 92.16%
  );
  box-shadow: 0px 8px 34px 0px rgba(227, 188, 106, 0.26);
}

.question__btn-label {
  position: relative;
  z-index: 2;
}

.question__btn--primary::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -60%;
  width: 35%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: questionBtnShine 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes questionBtnShine {
  0%,
  25% {
    right: -60%;
    opacity: 0;
  }
  26% {
    opacity: 1;
  }
  50% {
    right: 120%;
    opacity: 1;
  }
  55% {
    right: 120%;
    opacity: 0;
  }
  100% {
    right: 120%;
    opacity: 0;
  }
}

.question__btn--primary:hover {
  box-shadow: 0px 10px 40px 0px rgba(227, 188, 106, 0.4);
}

.question__btn--primary:active {
  box-shadow: 0px 4px 16px 0px rgba(227, 188, 106, 0.24);
  filter: brightness(0.94);
}

@media (max-width: 768px) {
  .question__actions {
    margin-top: 32px;
  }
  .question__btn {
    width: 100%;
    max-width: 340px;
    padding: 16px 32px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .question__title-gold {
    animation: none;
    background-position:
      50% 0,
      0 0;
  }
  .question__btn--primary::after {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .question {
    margin-bottom: 64px;
  }

  .question__bg {
    min-height: 460px;
    object-fit: cover;
    object-position: center;
  }

  .question__title {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
  }

  .question__text {
    font-size: 15px;
    line-height: 26px;
    margin-top: 22px;
  }

  .question__actions {
    margin-top: 28px;
  }

  .question__btn {
    width: 100%;
    max-width: 340px;
    padding: 16px 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .question {
    margin-bottom: 48px;
  }

  .question__bg {
    min-height: 420px;
  }

  .question__title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.5px;
  }

  .question__text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 18px;
  }

  .question__actions {
    margin-top: 24px;
  }

  .question__btn {
    max-width: 300px;
    padding: 15px 24px;
  }
}
