.how_it_works {
  padding: 180px 0 120px;
}

.how_it_works a {
  color: var(--exl-primary-red-500);
  text-decoration: none;
}

.how_it_works a:hover {
  text-decoration: underline;
}

.how_it_works .video_content .video_card {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.how_it_works .video_content .video_card .play {
  text-decoration: none;
}

.how_it_works .steps .step {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.how_it_works .steps .step:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 54px;
  top: calc(100% + 13px);
  left: 22px;
  background-image: url(/templates/exit-lag/img/how-it-works/arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.how_it_works .steps .step:last-child {
  margin-bottom: 0;
}

.how_it_works .steps .step:last-child:before {
  display: none;
}

.how_it_works .steps .step .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--exl-checkout-gray);
  margin-right: 20px;
}

.how_it_works .steps .step .desc {
  width: calc(100% - 76px);
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
}

.how_it_works .steps .step.active .icon {
  background-color: var(--exl-checkout-accent);
}

.how_it_works .steps .step.active .desc {
  font-weight: 700;
}

.bg_degrade {
  background: linear-gradient(102.22deg, #EC4046 0%, rgba(55, 61, 67, 0) 94.41%);
  padding: 20px 35px;
  border-radius: 8px;
}

.step_by_step .card_step {
  background: var(--exl-card-step-bg);
  border-radius: 12px;
}

.step_by_step .card_step:hover {
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(236, 64, 70, 0.20) 0%, var(--exl-card-step-bg) 100%), #111317;
}

.step_by_step .card_step a {
  color: var(--exl-checkout-accent)!important;
}

.step_by_step .card_step .title {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.575rem;
}
.step_by_step .card_step .title .icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--exl-checkout-accent);
}

.step_by_step .card_step .image img {
  border-radius: 12px;
}

.step_by_step .card_step ul {
  list-style: none;
  padding: 0;
}

.step_by_step .card_step ul li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 30px;
}

.step_by_step .card_step ul li:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  left: 0;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  background-image: url(/templates/exit-lag/img/how-it-works/check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #0E3619;
  border-radius: 50%;
}

.cta_tutorial {
  background-color: var(--exl-card-step-bg);
}

.cta_tutorial .text {
  max-width: 415px;
}