.banner_container {
  padding: 120px 0;
}
.banner_container .content_wrapper {
  padding: 80px;
  background-color: #f7f7f8;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 633px;
}
.banner_container .content_wrapper .ctas_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  margin-top: 40px;
}
.banner_container .content_wrapper .app_urls {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.banner_container .content_wrapper h2 {
  font-size: 36px;
  line-height: 54px;
  margin-bottom: 24px;
  font-weight: 600;
}
.banner_container .content_wrapper h2 span {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  vertical-align: text-bottom;
}
.banner_container .content_wrapper .subtitle {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 32px;
}
.banner_container .content_wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.banner_container .content_wrapper ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}
.banner_container .content_wrapper ul li:last-child {
  margin-bottom: 0;
}
.banner_container .content_wrapper ul li:before {
  width: 24px;
  height: 24px;
  content: "";
  background: url("../svg/icon_check.svg") no-repeat center;
  display: block;
  transform: translateY(2px);
}

@media screen and (max-width: 1280px) {
  .banner_container {
    padding: 80px 0;
  }
  .banner_container .content_wrapper {
    padding: 40px 40px 400px 40px;
    background-position: bottom center;
  }
  .banner_container .content_wrapper .ctas_wrapper .qr_holder {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .banner_container {
    padding: 60px 0;
  }
  .banner_container .content_wrapper {
    padding: 24px 24px 270px 24px;
    background-size: 400px;
  }
  .banner_container .content_wrapper ul li {
    font-size: 14px;
    line-height: 22px;
    align-items: flex-start;
    gap: 8px;
  }
  .banner_container .content_wrapper ul li::before {
    background-size: cover;
    transform: translateY(5px);
    width: 16px;
    height: 16px;
  }
  .banner_container .content_wrapper .ctas_wrapper {
    margin-top: 32px;
    align-items: center;
    justify-content: center;
  }
  .banner_container .content_wrapper .app_urls {
    flex-direction: column;
    margin-top: 24px;
  }
  .banner_container .content_wrapper h2 {
    font-size: 26px;
    line-height: 42px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column-reverse;
  }
  .banner_container .content_wrapper .subtitle {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 32px;
  }
}