

/* Start:/local/templates/new/4px-assets/bx-styles/sber-certification.css?17824773472032*/
.sber-certification {
  padding: 120px 0;
}

.sber-certification__title {
  margin-bottom: 2rem;
  color: white;
  font-size: 47px;
  line-height: 54px;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
}

.sber-certification__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.sber-certification__card {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 100px;
  padding: 50px;
  background: transparent;
  border: 1px solid #767676;
  border-radius: 30px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sber-certification__card:hover {
  border-color: rgba(227, 30, 36, 0.7);
  transform: translateY(-2px);
}

.sber-certification__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.sber-certification__icon svg {
  width: 100%;
  height: 100%;
}

.sber-certification__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sber-certification__card-title {
  color: #ffffff;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
  font-style: Medium;
  font-size: 26px;
  line-height: 26px;
}

.sber-certification__card-text {
  margin: 0;
  color: #ffffff;
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .sber-certification__title {
    font-size: 32px;
    line-height: 40px;
  }

  .sber-certification {
    padding: 80px 0;
  }

  .sber-certification__title {
    margin-bottom: 10px;
    font-family: 'OpenSans';
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
  }

  .sber-certification__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sber-certification__card {
    align-items: flex-start;
    gap: 20px;
    min-height: auto;
    padding: 20px;
  }

  .sber-certification__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
  }

  .sber-certification__card-title {
    font-size: 18px;
    line-height: 22px;
  }

  .sber-certification__card-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/sber-faq.css?17824773472702*/
.sber-faq {
  padding: 60px 0;
}

.sber-faq__title {
  margin-bottom: 2rem;
  color: white;
  font-size: 47px;
  line-height: 54px;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
}

.sber-faq__list {
  overflow: hidden;
  background: #0F183E;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
}

.sber-faq__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sber-faq__item[data-expanded] .sber-faq__icon {
  background: #b6e5de;
  color: #101a4a;
}

.sber-faq__item[data-expanded] .sber-faq__icon svg {
  transform: rotate(90deg);
}

.sber-faq__item[data-expanded] .sber-faq__content {
  max-height: 500px;
}

.sber-faq__item[data-expanded] .sber-faq__answer {
  padding-bottom: 28px;
  opacity: 1;
}

.sber-faq__trigger {
  width: 100%;
  padding: 32px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.sber-faq__question {
  color: #fff;
  font-family: "TT Firs Neue", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 26px;
}

.sber-faq__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.sber-faq__icon svg {
  transition: transform .25s ease;
}

.sber-faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.sber-faq__answer {
  padding: 0 30px;
  opacity: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: opacity .2s ease, padding .3s ease;
}

@media (max-width: 767px) {
  .sber-faq__title {
    font-size: 32px;
    line-height: 40px;
  }

  .sber-faq {
    padding: 80px 0;
  }

  .sber-faq__title {
    margin-bottom: 32px;
    font-size: 42px;
    line-height: 100%;
  }

  .sber-faq__list {
    border-radius: 20px;
  }

  .sber-faq__trigger {
    padding: 20px 16px;
    gap: 16px;
  }

  .sber-faq__question {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
  }

  .sber-faq__content {
    transition: max-height .25s ease;
  }

  .sber-faq__answer {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .sber-faq__item[data-expanded] .sber-faq__answer {
    padding-bottom: 20px;
  }

  .sber-faq__icon {
    width: 24px;
    height: 24px;
  }

  .sber-faq__icon svg {
    width: 8px;
    height: 8px;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/sber-hero.css?17824773471046*/
.sber-hero {
  padding: 6rem 0 5rem;
  color: #1e293b;
  text-align: center;
  position: relative;
}

.sber-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 4rem;
  background: linear-gradient(180deg, #131e4e 80.67%, #263573 100%);
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.sber-hero__title {
  margin-bottom: 1rem;
  font-family: 'TT-Firs-Neue';
  color: white;
  font-weight: 500;
  line-height: 54px;
  font-size: 47px;
}

.sber-hero__subtitle {
  max-width: 616px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 20px;
  font-family: 'OpenSans';
  color: white;
  font-size: 1rem;
}

.sber-hero__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: 'OpenSans';
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .sber-hero__title {
    font-size: 28px;
    line-height: 34px;
  }

  .sber-hero__content {
    padding: 2rem 1.5rem;
  }

  .sber-hero__subtitle {
    font-size: 1rem;
  }

  .sber-hero__buttons {
    flex-direction: column;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/sber-partners.css?17824773471278*/
.sber-partners {
  padding: 5rem 0;
}

.sber-partners__title {
  margin-bottom: 2rem;
  color: white;
  font-size: 47px;
  line-height: 54px;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
}

.sber-partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.sber-partners__card {
  padding: 2.5rem 1.5rem;
  background: #0f183e;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sber-partners__card svg {
  margin-bottom: 30px;
  color: #ffffff;
}

.sber-partners__card:hover {
  border-color: #e31e24;
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.1);
  transform: translateY(-20px);
}

.sber-partners__card:hover svg {
  color: #e31e24;
}

.sber-partners__icon {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 4px rgba(227, 30, 36, 0.3));
}

.sber-partners__name {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.sber-partners__description {
  color: #475569;
}

@media (max-width: 1023px) {
  .sber-partners__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sber-partners__title {
    font-size: 32px;
    line-height: 40px;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/sber-path.css?17824773472388*/
@charset "UTF-8";

.sber-path {
  padding: 5rem 0;
}

.sber-path__title {
  margin-bottom: 2rem;
  color: white;
  font-size: 47px;
  line-height: 54px;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
}

.sber-path__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sber-path__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #0F183E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.sber-path__card:hover {
  border-color: #e31e24;
  transform: translateY(-20px);
  box-shadow: 0 12px 28px rgba(227, 30, 36, 0.08);
}

.sber-path__card .btn {
  width: 100%;
}

.sber-path__card-head {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1rem;
}

.sber-path__card-title {
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
  font-size: 26px;
  color: white;
  line-height: 26px;
}

.sber-path__badge {
  color: #D9D9D9;
  font-weight: 400;
  background: linear-gradient(180deg, #131E4E 80.67%, #263573 100%);
  font-size: 14px;
  line-height: 20px;
  font-family: 'OpenSans';
  padding: 0 12px;
  height: 32px;
  display: flex;
  align-items: center;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
}

.sber-path__list {
  list-style: none;
  margin: 50px 0;
}

.sber-path__item {
  position: relative;
  padding-left: 1.8rem;
  font-size: 14px;
  line-height: 20px;
  font-family: 'OpenSans';
  font-weight: 400;
  color: #FFFFFF99;
}

.sber-path__item::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #A3DADF;
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.sber-path__description {
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 768px) {
  .sber-path__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sber-path__card {
    padding: 20px;
  }

  .sber-path__list {
    margin: 20px 0;
  }

  .sber-path__card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sber-path__card-head h3 {
    order: 2;
  }

  .sber-path__card-head p {
    order: 1;
  }
}

@media (max-width: 767px) {
  .sber-path__title {
    font-size: 32px;
    line-height: 40px;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/sber-social-proof.css?17824773471437*/
.social-proof {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.social-proof__stats {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  padding: 0 48px;
  text-align: center;
}

.social-proof__value {
  color: #fff;
  font-family: "TT-Firs-Neue";
  font-size: 47px;
  font-weight: 500;
  line-height: 54px;
}

.social-proof__label {
  color: #64748b;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

.social-proof__divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .social-proof__stats {
    flex-direction: column;
    align-items: stretch;
  }

  .social-proof__divider {
    width: 100%;
    height: 1px;
    margin: 16px 0;
  }

  .social-proof__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: auto;
    padding: 0;
    text-align: left;
  }

  .social-proof__value {
    font-family: "Open Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
  }

  .social-proof__label {
    max-width: 220px;
    text-align: right;
    text-transform: none;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/sber-steps.css?17824773471571*/
.sber-steps {
  padding: 5rem 0;
}

.sber-steps__title {
  margin-bottom: 2rem;
  color: white;
  font-size: 47px;
  line-height: 54px;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
}

.sber-steps__list {
  display: flex;
  gap: 8px;
}

.sber-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
  padding: 30px 20px;
  gap: 30px;
  border: 1px solid #FFFFFF29;
  border-radius: 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sber-steps__item:hover {
  border-color: #e31e24;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sber-steps__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: 'OpenSans';
  background: #DB3445;
  border: 1px solid rgba(227, 30, 36, 0.3);
  border-radius: 50%;
}

.sber-steps__content {
  text-align: center;
}

.sber-steps__item-title {
  font-size: 16px;
  font-weight: 600;
  font-family: 'OpenSans';
  color: #FFFFFF;
  line-height: 22px;
  margin-bottom: 1rem;
}

.sber-steps__text {
  font-size: 14px;
  font-weight: 400;
  font-family: 'OpenSans';
  color: #FFFFFF;
  line-height: 20px;
}

@media (max-width: 768px) {
  .sber-steps__list {
    flex-direction: column;
  }

  .sber-steps__item {
    padding: 20px;
    flex-direction: row;
    align-items: start;
  }

  .sber-steps__content {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .sber-steps__title {
    font-size: 32px;
    line-height: 40px;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/sber-terminal-prep.css?17824773473231*/
@charset "UTF-8";

.sber-terminal-prep {
  padding: 120px 0;
}

.sber-terminal-prep .container {
  border: 1px solid #FFFFFF29;
  border-radius: 30px;
  padding: 60px;
}

.sber-terminal-prep__title {
  margin-bottom: 1rem;
  color: white;
  font-size: 47px;
  line-height: 54px;
  text-align: center;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
}

.sber-terminal-prep__subtitle {
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 45px;
  color: #ffffff;
}

.sber-terminal-prep__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sber-terminal-prep__card {
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  border: 1px solid rgba(227, 30, 36, 0.4);
  border-radius: 32px;
  background: linear-gradient(180deg, #131e4e 0%, #18255d 100%);
  transition: 0.3s ease;
}

.sber-terminal-prep__card:hover {
  border-color: #e31e24;
}

.sber-terminal-prep__media {
  min-height: 320px;
}

.sber-terminal-prep__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sber-terminal-prep__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.sber-terminal-prep__content .btn {
  max-width: 327px;
  width: 100%;
}

.sber-terminal-prep__card-title {
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
  font-size: 26px;
  line-height: 26px;
  color: #fff;
}

.sber-terminal-prep__list-items {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.sber-terminal-prep__item {
  position: relative;
  margin-bottom: 14px;
  padding-left: 20px;
  color: #FFFFFF99;
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.sber-terminal-prep__item::before {
  content: '▹';
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  position: absolute;
  left: 0;
  top: 0;
  color: #A3DADF;
}

.sber-terminal-prep__price {
  margin-bottom: 32px;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
  font-size: 26px;
  line-height: 26px;
  color: #fff;
}

.sber-terminal-prep__button {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .sber-terminal-prep {
    padding: 80px 0;
  }

  .sber-terminal-prep__list-items {
    margin: 20px 0;
  }

  .sber-terminal-prep .container {
    border: unset;
    border-radius: unset;
    padding: 0 20px;
  }

  .sber-terminal-prep__subtitle {
    margin-bottom: 32px;
  }

  .sber-terminal-prep__card {
    grid-template-columns: 1fr;
  }

  .sber-terminal-prep__media {
    min-height: 220px;
  }

  .sber-terminal-prep__content {
    padding: 20px;
  }

  .sber-terminal-prep__content .btn {
    max-width: 100%;
  }

  .sber-terminal-prep__card-title {
    font-family: 'TT-Firs-Neue';
    font-weight: 500;
    font-size: 26px;
    line-height: 26px;
  }

  .sber-terminal-prep__price {
    font-family: 'TT-Firs-Neue';
    font-weight: 500;
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .sber-terminal-prep__button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .sber-terminal-prep__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 0.5rem;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/sber-terminals.css?17824773472119*/
@charset "UTF-8";

.sber-terminals {
  padding: 5rem 0;
}

.sber-terminals__title {
  margin-bottom: 2rem;
  color: white;
  font-size: 47px;
  line-height: 54px;
  font-family: 'TT-Firs-Neue';
  font-weight: 500;
}

.sber-terminals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sber-terminals__card {
  display: flex;
  flex-direction: column;
  min-width: 258px;
  background: linear-gradient(180deg, #131e4e 80.67%, #263573 100%);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sber-terminals__card:hover {
  border-color: #e31e24;
  box-shadow: 0 12px 28px rgba(227, 30, 36, 0.08);
  transform: translateY(-4px);
}

.sber-terminals__image {
  padding: 5px;
}

.sber-terminals__image img {
  width: 100%;
  height: auto;
}

.sber-terminals__content {
  padding: 30px;
}

.sber-terminals__name {
  font-family: 'OpenSans';
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: white;
}

.sber-terminals__specs {
  flex: 1;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.sber-terminals__spec {
  position: relative;
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D9D9D9;
  padding-left: 1.5rem;
}

.sber-terminals__spec::before {
  content: '▹';
  font-family: 'OpenSans';
  position: absolute;
  left: 0;
  font-size: 12px;
  color: #A3DADF;
}

.sber-terminals__description {
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #D9D9D9;
  border-top: 1px solid #FFFFFF29;
}

@media (max-width: 768px) {
  .sber-terminals__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .sber-terminals__content {
    padding: 20px;
  }

  .sber-terminals__name {
    font-size: 20px;
    line-height: 24px;
  }

  .sber-terminals__specs {
    margin: 20px 0;
  }
}

@media (max-width: 767px) {
  .sber-terminals__title {
    font-size: 32px;
    line-height: 40px;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/modal.css?17824773478273*/
.sber-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.sber-modal__input.is-error,
.sber-modal__select.is-error,
.sber-modal__textarea.is-error {
  border: 2px solid #ff4d5f;
  box-shadow: 0 0 0 1px #ff4d5f;
}

.sber-modal__checkbox.is-error {
  color: #ff8f9a;
}

.sber-modal__radio-group.is-error {
  padding: 8px;
  border: 2px solid #ff4d5f;
  border-radius: 10px;
}

.sber-modal[data-opened] {
  display: flex;
}

.sber-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.sber-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #0f1a57;
  border-radius: 24px;
  padding: 44px 48px;
  scrollbar-width: thin;
}

.sber-modal__dialog_success {
  background-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}

.sber-modal__dialog_success .sber-modal__close {
  top: 15px;
  right: 15px;
}

.sber-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: .2s ease;
  z-index: 1;
}

.sber-modal__close:hover {
  color: #fff;
}

.sber-modal__close svg {
  width: 24px;
  height: 24px;
}

.sber-modal__title {
  margin: 0 0 8px;
  color: #fff;
  font-family: "TT Firs Neue", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
}

.sber-modal__description {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
}

.sber-modal__section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sber-modal__section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.sber-modal__section-title {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.sber-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sber-modal__grid--3 {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.sber-modal__field {
  display: flex;
  flex-direction: column;
}

.sber-modal__field--full {
  grid-column: 1 / -1;
}

.sber-modal__input,
.sber-modal__select,
.sber-modal__textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #d9dbe4;
  color: #1f2430;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: .2s ease;
}

.sber-modal__input::-moz-placeholder, .sber-modal__select::-moz-placeholder, .sber-modal__textarea::-moz-placeholder {
  color: rgba(31, 36, 48, 0.55);
}

.sber-modal__input::placeholder,
.sber-modal__select::placeholder,
.sber-modal__textarea::placeholder {
  color: rgba(31, 36, 48, 0.55);
}

.sber-modal__input:focus,
.sber-modal__select:focus,
.sber-modal__textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #eb4354;
}

.sber-modal__input,
.sber-modal__select {
  height: 42px;
  padding: 0 14px;
}

.sber-modal__textarea {
  min-height: 120px;
  resize: vertical;
  padding: 12px 14px;
  margin-top: 12px;
}

.sber-modal__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.sber-modal__radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sber-modal__radio {
  position: relative;
}

.sber-modal__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sber-modal__radio span {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2430;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  transition: .2s ease;
}

.sber-modal__radio span::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid #6b7280;
  border-radius: 50%;
  transition: .2s ease;
}

.sber-modal__radio input:checked + span {
  box-shadow: inset 0 0 0 2px #eb4354;
}

.sber-modal__radio input:checked + span::before {
  background: #eb4354;
  border-color: #eb4354;
}

.sber-modal__checkboxes {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sber-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
}

.sber-modal__checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sber-modal__checkbox span {
  display: block;
}

.sber-modal__footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.sber-modal__submit {
  min-width: 300px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: #eb4354;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: .2s ease;
}

.sber-modal__submit:hover {
  background: #f14f5f;
}

.sber-modal__submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.sber-modal__agreement {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.sber-modal__error {
  margin-top: 6px;
  color: #ff97a0;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.sber-modal__input.is-error,
.sber-modal__select.is-error,
.sber-modal__textarea.is-error {
  box-shadow: 0 0 0 2px #ff4f64;
}

.sber-modal .modal-success {
  display: block;
  max-width: 530px;
  position: relative;
  border-radius: 33px;
  overflow: hidden;
  background-color: #A3DADFFF;
  padding-bottom: 35px;
  text-align: center;
}

.sber-modal .modal-success__box-img {
  border-radius: 33px;
  overflow: hidden;
  margin-bottom: 30px;
}

.sber-modal .modal-success__box-img img {
  border-radius: 33px;
}

.sber-modal .modal-success__wrapp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.sber-modal .modal-success__wrapp p {
  max-width: 410px;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #000000FF;
}

@media (max-width: 900px) {
  .sber-modal .modal-success {
    max-width: 450px;
    padding-bottom: 15px;
  }

  .sber-modal .modal-success__box-img {
    margin-bottom: 10px;
  }

  .sber-modal .modal-success__wrapp p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .sber-modal__dialog_success .sber-modal__close {
    top: 30px;
    right: 30px;
  }

  .sber-modal {
    padding: 0;
  }

  .sber-modal__dialog {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    padding: 24px 16px;
  }

  .sber-modal__close {
    top: 16px;
    right: 16px;
  }

  .sber-modal__title {
    font-size: 32px;
    line-height: 100%;
  }

  .sber-modal__description {
    margin-bottom: 24px;
  }

  .sber-modal__section {
    margin-top: 20px;
    padding-top: 20px;
  }

  .sber-modal__section-title {
    font-size: 16px;
    line-height: 20px;
  }

  .sber-modal__grid,
  .sber-modal__grid--3 {
    grid-template-columns: 1fr;
  }

  .sber-modal__radio-group {
    grid-template-columns: 1fr;
  }

  .sber-modal__input,
  .sber-modal__select {
    height: 40px;
    font-size: 12px;
  }

  .sber-modal__textarea {
    min-height: 90px;
    font-size: 12px;
  }

  .sber-modal__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .sber-modal__submit {
    width: 100%;
    min-width: 0;
    height: 48px;
  }

  .sber-modal__agreement {
    max-width: none;
  }
}
/* End */


/* Start:/local/templates/new/4px-assets/bx-styles/btn.css?1782477347716*/
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 58px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  font-family: 'OpenSans';
}

.btn-primary {
  background: #DB3445;
  color: #fff;
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(227, 30, 36, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #e31e24;
  color: white;
}

.btn-outline:hover {
  background: rgba(227, 30, 36, 0.05);
}
/* End */
/* /local/templates/new/4px-assets/bx-styles/sber-certification.css?17824773472032 */
/* /local/templates/new/4px-assets/bx-styles/sber-faq.css?17824773472702 */
/* /local/templates/new/4px-assets/bx-styles/sber-hero.css?17824773471046 */
/* /local/templates/new/4px-assets/bx-styles/sber-partners.css?17824773471278 */
/* /local/templates/new/4px-assets/bx-styles/sber-path.css?17824773472388 */
/* /local/templates/new/4px-assets/bx-styles/sber-social-proof.css?17824773471437 */
/* /local/templates/new/4px-assets/bx-styles/sber-steps.css?17824773471571 */
/* /local/templates/new/4px-assets/bx-styles/sber-terminal-prep.css?17824773473231 */
/* /local/templates/new/4px-assets/bx-styles/sber-terminals.css?17824773472119 */
/* /local/templates/new/4px-assets/bx-styles/modal.css?17824773478273 */
/* /local/templates/new/4px-assets/bx-styles/btn.css?1782477347716 */
