.help_container {
  background-image: url('/include/templates/banners/help_banner/include/help_bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
  padding: 32px 40px 32px 40px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .help_container {
    min-height: 296px;
    padding: 24px 20px 24px 20px;
  }
}
@media (max-width: 760px) {
  .help_container {
    background-image: url('/include/templates/banners/help_banner/include/help_bg_mob.png');
    min-height: auto;
    padding: 24px 20px 250px 20px;
  }
}
.help_container .help_banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.help_container .help_banner__content .help_banner__title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 500;
  line-height: 110%;
  max-width: 520px;
}
@media (max-width: 1190px) {
  .help_container .help_banner__content .help_banner__title {
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  .help_container .help_banner__content .help_banner__title {
    font-size: 32px;
    width: 340px;
  }
}
@media (max-width: 760px) {
  .help_container .help_banner__content .help_banner__title {
    width: 100%;
  }
}
.help_container .help_banner__content .help_banner__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0px 24px 0px 24px;
  border-radius: 4px;
  background: #ffffff;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  min-height: 48px;
  cursor: pointer;
}
@media (max-width: 760px) {
  .help_container .help_banner__content .help_banner__btn {
    width: 100%;
  }
}
