.info__bg {
  background: url("assets/img/traces.png") 18% 90%/530px auto no-repeat;
}
.info__img-wrapper {
  width: 100%;
  position: relative;
  height: 300px;
}
.info__img-1 {
  position: absolute;
  top: 90%;
  left: 0;
  max-width: 520px;
}
.info__img-2 {
  position: absolute;
  top: -10%;
  right: 0;
  max-width: 520px;
}

.steps__svg-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.steps__svg-pair {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.steps__svg.left {
  transform: rotate(25deg);
}
.steps__svg.right {
  transform: rotate(-25deg);
}
.steps__svg.up {
  margin-bottom: 1rem;
}
.steps__svg.down {
  margin-top: 1rem;
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  list-style: none;
  padding: 0;
}
.steps__item {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
}
.steps__item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: start;
}
.steps__item:nth-child(even) .steps__step {
  flex-direction: row-reverse;
  justify-content: start;
}
.steps__item:nth-child(even) .steps__step-circle {
  margin-left: -40px;
}
.steps__item:nth-child(even) .steps__step-content {
  flex-direction: row-reverse;
  padding: 4rem 60px 4rem 2rem;
}
.steps__item:nth-child(even) .steps__svg-wrapper {
  flex-direction: column-reverse;
}
.steps__step {
  width: 48%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.steps__step:hover .steps__btn-wrapper {
  transform: scale(1.1);
  border-color: rgb(190.5793991416, 16.9206008584, 20.482832618);
}
.steps__step:hover .steps__btn-wrapper svg path {
  transition: all 0.8s ease;
  fill: rgb(190.5793991416, 16.9206008584, 20.482832618);
}
.steps__step:focus .steps__btn-wrapper {
  transform: scale(1.1);
  border-color: rgb(190.5793991416, 16.9206008584, 20.482832618);
}
.steps__step:focus .steps__btn-wrapper svg path {
  transition: all 0.8s ease;
  fill: rgb(190.5793991416, 16.9206008584, 20.482832618);
}
.steps__step-circle {
  min-width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, 0.2509803922), 0 10px 6px 0 #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: -40px;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.steps__step-content {
  padding: 4rem 2rem 4rem 60px;
  border-radius: 16px;
  box-shadow: inset 0 4px 6px 0 rgba(0, 0, 0, 0.2509803922), 0 6px 6px 0 #D9D9D9;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  min-width: 560px;
  max-width: 560px;
  min-height: 250px;
}
.steps__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.steps__btn-wrapper {
  cursor: pointer;
  min-height: 7rem;
  max-height: 7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px dashed #D9D9D9;
  transition: all 0.8s ease;
  transform: scale(1);
  animation: puls 3s linear infinite;
}
.steps__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  aspect-ratio: 1;
  padding: 0.4rem;
  border-radius: 50%;
  background-color: #D9D9D9;
  border: 2px solid #fff;
}
.steps__btn svg {
  max-height: 100%;
  max-width: 100%;
}
.steps .disabled .steps__btn-wrapper {
  animation: none;
}
.steps .disabled .steps__step:hover .steps__btn-wrapper {
  cursor: default;
  transform: scale(1);
  border-color: #D9D9D9;
}
.steps .disabled .steps__step:hover .steps__btn-wrapper svg path {
  fill: #0a0a0a;
}
.steps .disabled .steps__step:hover .steps__btn {
  background-color: #D9D9D9;
}
.steps .disabled .steps__step:focus .steps__btn-wrapper {
  cursor: default;
  transform: scale(1);
  border-color: #D9D9D9;
}
.steps .disabled .steps__step:focus .steps__btn-wrapper svg path {
  fill: #0a0a0a;
}
.steps .disabled .steps__step:focus .steps__btn {
  background-color: #D9D9D9;
}
.steps .completed img {
  filter: invert(48%) sepia(30%) saturate(800%) hue-rotate(170deg) brightness(105%) contrast(90%);
}
.steps .completed .steps__step-circle {
  color: #fff;
  background-color: #79AEDF;
  box-shadow: inset 0 2px 6px 0 rgba(22, 69, 137, 0.2509803922), 0 10px 6px 0 rgba(22, 69, 137, 0.2509803922);
}
.steps .completed .steps__step-content {
  box-shadow: inset 0 4px 6px 0 rgba(22, 69, 137, 0.2509803922), 0 6px 6px 0 rgba(22, 69, 137, 0.2509803922);
}
.steps .completed .steps__step:hover .steps__btn-wrapper {
  cursor: pointer;
  transform: scale(1.1);
  border-color: #79AEDF;
}
.steps .completed .steps__step:hover .steps__btn-wrapper svg path {
  transition: all 0.8s ease;
  fill: #fff;
}
.steps .completed .steps__step:hover .steps__btn {
  background-color: #79AEDF;
}
.steps .completed .steps__step:focus .steps__btn-wrapper {
  cursor: pointer;
  transform: scale(1.1);
  border-color: #79AEDF;
}
.steps .completed .steps__step:focus .steps__btn-wrapper svg path {
  transition: all 0.8s ease;
  fill: #fff;
}
.steps .completed .steps__step:focus .steps__btn {
  background-color: #79AEDF;
}
.steps .completed .steps__btn-wrapper {
  border-color: #79AEDF;
  animation: none;
}
.steps .completed .steps__btn-wrapper svg path {
  fill: #fff;
}
.steps .completed .steps__btn {
  background-color: #79AEDF;
}

.gifts__wrapper {
  width: 70%;
  position: relative;
}
.gifts__rare {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 90%;
  transform: translate(-50%, -50%);
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #164589;
  box-shadow: inset 0 -4px 10px 0 #fff;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.2509803922));
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.gifts__rare svg {
  width: 55%;
  height: auto;
}
.gifts__rare svg path {
  transition: all 0.8s ease;
}
.gifts__rare:hover svg path {
  fill: rgb(190.5793991416, 16.9206008584, 20.482832618);
}
.gifts__video-wrapper {
  width: 100%;
  padding: 8px;
  background-color: #0a0a0a;
}
.gifts__bg-1 {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 90%;
  padding-bottom: 10%;
  background: url("assets/img/bg_1.png") bottom/100% auto no-repeat;
}
.gifts__bg-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2%;
  width: 30%;
  background: url("assets/img/bg_2.png") bottom/100% auto no-repeat;
}
.gifts__bg-2 img {
  margin-bottom: 15%;
}

.selfies {
  background: linear-gradient(to bottom, #fff 1%, #D0EAFF 40%, #79AEDF 95%);
}

.ml {
  margin-left: 6px;
}

@media (max-width: 1539px) {
  .steps__step-content {
    min-width: 510px;
    max-width: 510px;
    min-height: 300px;
  }
}
@media (max-width: 1399px) {
  html {
    font-size: 14px;
  }
  .info__bg {
    background: url(assets/img/traces.png) 18% 90%/480px auto no-repeat;
  }
  .info__img-1 {
    max-width: 440px;
  }
  .info__img-2 {
    max-width: 470px;
    top: 0;
  }
  .steps__item:nth-child(even) .steps__step-content {
    padding-block: 2.5rem;
  }
  .steps__step-circle {
    min-width: 145px;
  }
  .steps__step-content {
    min-width: 440px;
    max-width: 440px;
    padding-block: 2.5rem;
    min-height: 220px;
  }
  .gifts__rare {
    width: 45px;
  }
}
@media (max-width: 1199px) {
  html {
    font-size: 12px;
  }
  .info__bg {
    background: url(assets/img/traces.png) 18% 90%/410px auto no-repeat;
  }
  .info__img-1 {
    max-width: 370px;
  }
  .info__img-2 {
    max-width: 400px;
    top: 18%;
  }
  .steps__step-content {
    min-width: 350px;
    max-width: 350px;
    min-height: 220px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 10px;
  }
  .info__bg {
    background: url(assets/img/traces.png) 18% 90%/310px auto no-repeat;
  }
  .info__img-wrapper {
    height: 250px;
  }
  .info__img-1 {
    max-width: 270px;
  }
  .info__img-2 {
    max-width: 300px;
    top: 25%;
  }
  .steps__item:nth-child(even) .steps__step-content {
    padding: 1.5rem 50px 1.5rem 1.5rem;
  }
  .steps__step-circle {
    min-width: 110px;
  }
  .steps__step-content {
    gap: 0.8rem;
    min-width: 280px;
    max-width: 280px;
    min-height: 180px;
    padding: 1.5rem 1.5rem 1.5rem 50px;
  }
  .steps__btn-wrapper {
    min-height: 5rem;
    max-height: 5rem;
    border: 4px dashed #D9D9D9;
  }
}
@media (max-width: 767px) {
  .info__bg {
    background: none;
  }
  .info__img-wrapper {
    height: 50px;
  }
  .info__img-1 {
    max-width: 150px;
    top: -45%;
  }
  .info__img-2 {
    max-width: 160px;
    top: -45%;
  }
  .steps__item:nth-child(even) {
    flex-direction: row;
    justify-content: end;
  }
  .steps__item:nth-child(even) .steps__step {
    flex-direction: row;
    justify-content: end;
  }
  .steps__item:nth-child(even) .steps__step-circle {
    margin-left: 0;
  }
  .steps__item:nth-child(even) .steps__step-content {
    flex-direction: row;
    padding: 1.5rem 1.5rem 1.5rem 50px;
  }
  .steps__item:nth-child(even) .steps__svg-wrapper {
    flex-direction: column;
  }
  .steps__svg-pair:first-of-type {
    align-self: start;
  }
  .steps__svg {
    min-width: 40%;
    max-width: 40%;
  }
  .steps__first-traces {
    display: none;
  }
  .steps__step {
    width: 100%;
  }
  .steps__step-content {
    width: 100%;
    max-width: none;
    min-height: 140px;
    padding: 1.5rem 1.5rem 1.5rem 50px;
  }
  .gifts__bg-1 {
    padding-bottom: 8%;
  }
  .gifts__rare {
    width: 35px;
  }
}
@media (max-width: 624px) {
  .gifts__bg-1 {
    padding-bottom: 3%;
  }
}
@media (max-width: 575px) {
  .info__subtitle {
    text-align: center;
  }
  .info__img-1 {
    max-width: 120px;
    top: 10%;
    left: 5%;
  }
  .info__img-2 {
    max-width: 140px;
    top: -10%;
    right: 5%;
  }
  .gifts__bg-1 {
    padding-bottom: 1%;
  }
}
@media (max-width: 460px) {
  html {
    font-size: 8px;
  }
  .info__img-1 {
    max-width: 90px;
    top: 40%;
    left: 5%;
  }
  .info__img-2 {
    max-width: 100px;
    top: 20%;
    right: 5%;
  }
  .steps img {
    max-width: 20px;
    height: auto;
  }
  .steps__item:nth-child(even) .steps__step-content {
    padding: 0.5rem 0.8rem 0.5rem 50px;
  }
  .steps__step-circle {
    min-width: 80px;
  }
  .steps__step-content {
    gap: 0.2rem;
    min-height: 120px;
    padding: 0.5rem 0.8rem 0.5rem 50px;
  }
  .steps__btn-wrapper {
    border: none;
  }
  .steps__btn {
    padding: 0.8rem;
  }
}

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