:root {
  --ink: #261b1e;
  --muted: #6f6265;
  --berry: #c7355c;
  --berry-dark: #942341;
  --rose: #f6e8ec;
  --cream: #faf7f2;
  --line: #e5dcd8;
  --white: #ffffff;
  --navy: #173a4f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  min-width: 360px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  color: #fff;
  background: #111;
}

.skip-link:focus {
  top: 16px;
}

.government-bar {
  border-bottom: 1px solid #eee7e4;
  background: var(--cream);
  color: #574b4e;
  font-size: 13px;
}

.government-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 9px;
}

.government-inner a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brand-row {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  padding: 10px 0px;
}

.brand img {
  display: block;
  width: 230px;
  height: 144px;
  object-fit: contain;
  object-position: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-phone {
  color: var(--berry-dark);
  font-size: 21px;
  font-weight: 800;
}

.header-phone span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vision-button {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle,
.nav-vision-button {
  display: none;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 54px;
}

.nav a {
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--berry);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 0 52%, var(--rose) 52% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 600px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 72px 40px 72px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f6b8c9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h3 {
  line-height: 1.25;
}

.hero-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
}

.button-primary {
  background: var(--berry);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(199, 53, 92, .22);
}

.button-primary:hover {
  background: var(--berry-dark);
}

.button-secondary {
  border: 1px solid var(--ink);
}

.temporary-note {
  max-width: 620px;
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 3px solid var(--berry);
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 500px;
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  right: -60px;
  bottom: 40px;
  width: min(620px, 55vw);
  max-width: none;
}

.shape {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.shape-one {
  width: 430px;
  height: 430px;
  right: 30px;
  top: 50px;
  background: #e5a2b4;
}

.shape-two {
  width: 190px;
  height: 190px;
  right: -40px;
  top: 28px;
  border: 36px solid #f2ced8;
}

.help-strip {
  background: var(--navy);
  color: var(--white);
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 44px;
  padding-block: 38px;
}

.help-grid h2 {
  margin: 0 0 4px;
  font-size: 28px;
  letter-spacing: -.02em;
}

.help-grid p {
  margin-bottom: 0;
  color: #c5d5dd;
}

.hotline-number {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.help-links {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.help-links a {
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 3px;
  font-weight: 700;
}

.section {
  padding-block: 100px;
}

.section-tint {
  background: var(--cream);
}

.two-column {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.prose>p {
  color: var(--muted);
  font-size: 18px;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.fact-row div {
  border-top: 2px solid var(--berry);
  padding-top: 18px;
}

.fact-row strong {
  display: block;
  color: var(--berry);
  font-size: 34px;
  line-height: 1;
}

.fact-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading>p {
  margin-bottom: 6px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  background: var(--white);
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #d9a4b3;
}

.service-card>span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: var(--berry);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 30px 0 10px;
  font-size: 21px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card {
  display: grid;
  grid-template-rows: 150px 1fr auto auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.contact-card-head {
  padding: 30px 32px 22px;
  background: var(--navy);
  color: #fff;
}

.accent-card .contact-card-head {
  background: var(--berry);
}

.contact-card-head span {
  color: #bcd2dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.accent-card .contact-card-head span {
  color: #f7c7d4;
}

.contact-card-head h3 {

  margin: 8px 0 0;
  font-size: 26px;
}

.contact-card dl {
  margin: 0;
  padding: 10px 32px 4px;
}

.contact-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card dt {
  color: var(--muted);
  font-size: 13px;
}

.contact-card dd {
  margin: 0;
  font-weight: 700;
}

.contact-card dd a {
  color: var(--berry-dark);
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 32px 24px;
}

.contact-card-actions a {
  color: var(--berry-dark);
  font-weight: 800;
  font-size: 14px;
}

.map-image {
  display: block;
  width: 100%;
  height: clamp(250px, 35vw, 415px);
  object-fit: contain;
  object-position: center;
  border-top: 1px solid var(--line);
  background: #f7f4ef;
  filter: saturate(.7);
}

.specialists {
  padding-block: 90px;
  background: var(--berry-dark);
  color: #fff;
}

.specialists-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.specialist-list {
  display: grid;
  gap: 0;
}

.specialist-list>div {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.specialist-list h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.specialist-list p {
  max-width: 680px;
  margin-bottom: 10px;
  color: #f0d7de;
}

.specialist-list a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.documents-heading {
  margin-bottom: 30px;
}

.document-tools {
  display: grid;
  gap: 22px;
  margin-bottom: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.search-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search-field input {
  width: 100%;
  height: 52px;
  border: 1px solid #cfc2be;
  border-radius: 12px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.search-field input:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(199, 53, 92, .12);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-list button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.category-list button.active {
  border-color: var(--berry);
  background: var(--berry);
  color: #fff;
}

.document-summary {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.document-list {
  display: grid;
  gap: 8px;
}

.document-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  background: #fff;
}

.file-mark {
  display: grid;
  width: 48px;
  height: 56px;
  place-items: center;
  border-radius: 8px;
  background: #e8edf0;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.file-mark.pdf {
  background: var(--rose);
  color: var(--berry-dark);
}

.document-name>span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.document-name h3 {
  margin: 4px 0 0;
  font-size: 16px;
}

.document-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.document-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--berry-dark);
  font-size: 13px;
  font-weight: 800;
}

.document-actions a:last-child {
  border-color: var(--berry);
  background: var(--berry);
  color: #fff;
}

.empty-state {
  border: 1px dashed #cabeba;
  border-radius: 16px;
  padding: 42px;
  color: var(--muted);
  text-align: center;
}

.useful-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.useful-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  padding: 30px;
  background: var(--navy);
  color: #fff;
}

.useful-card>span {
  color: #bcd2dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.useful-card strong {
  max-width: 430px;
  font-size: 27px;
  line-height: 1.15;
}

.useful-card em {
  font-style: normal;
  font-weight: 800;
}

.privacy-card {
  background: var(--rose);
  color: var(--ink);
}

.privacy-card>span {
  color: var(--berry-dark);
}

.privacy-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  padding: 50px 0 20px;
  background: #20171a;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.footer-grid img {
  width: 180px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.footer-grid p {
  max-width: 370px;
  margin-bottom: 0;
  color: #cbbfc2;
  font-size: 13px;
}

.footer-grid span {
  display: block;
  margin-bottom: 5px;
  color: #9f9295;
  font-size: 12px;
}

.footer-grid a {
  font-weight: 800;
}

@media (min-width: 921px) {
  .footer-grid>div:last-child {
    justify-self: end;
    text-align: right;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #9f9295;
  font-size: 12px;
}

.accessible-mode {
  --ink: #000;
  --muted: #222;
  --berry: #000;
  --berry-dark: #000;
  --rose: #fff;
  --cream: #fff;
  --line: #000;
  --navy: #000;
  font-size: 19px;
}

.accessible-mode .hero {
  background: #fff;
}

.accessible-mode .hero-visual,
.accessible-mode .map-image {
  display: none;
}

.accessible-mode .hero-grid {
  grid-template-columns: 1fr;
}

.accessible-mode .hero-copy {
  grid-column: 1;
}

.accessible-mode .service-card,
.accessible-mode .contact-card,
.accessible-mode .document-row,
.accessible-mode .document-tools {
  border-width: 2px;
}

@media (max-width: 920px) {
  .header-actions {
    gap: 12px;
  }

  .header-phone {
    font-size: 17px;
  }

  .hero-grid,
  .two-column,
  .specialists-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    right: 0;
    width: 680px;
    max-width: 100%;
  }

  .help-grid {
    grid-template-columns: 1fr 1fr;
  }

  .help-links {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .specialists-grid {
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 681px) and (max-width: 920px) {
  .footer-grid>div:nth-child(2) {
    justify-self: end;
  }
}

@media (max-width: 722px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .government-inner {
    display: grid;
    gap: 2px;
  }

  .brand-row {
    min-height: 88px;
  }

  .brand img {
    width: 155px;
    height: 112px;
  }

  .vision-button {
    padding: 0 12px;
    font-size: 12px;
  }

  .nav {
    overflow-x: auto;
  }

  .nav-inner {
    width: max-content;
    min-width: 100%;
    padding-inline: 14px;
    gap: 22px;
  }

  .nav a {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    background: linear-gradient(180deg, #fff 0 62%, var(--rose) 62% 100%);
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    padding-block: 54px 34px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-visual {
    min-height: 290px;
  }

  .shape-one {
    width: 300px;
    height: 300px;
    right: 10px;
    top: 8px;
  }

  .hero-visual img {
    bottom: 20px;
    right: -30px;
    width: 440px;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .help-links {
    grid-column: auto;
  }

  .help-strip {
    padding-block: 10px;
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fact-row,
  .service-grid,
  .contact-grid,
  .useful-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .contact-card dl {
    padding-inline: 22px;
  }

  .contact-card {
    grid-template-rows: auto auto auto auto;
  }

  .contact-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-card-actions {
    padding-inline: 22px;
  }

  .map-image {
    height: auto;
  }

  .document-row {
    grid-template-columns: auto 1fr;
  }

  .document-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 413px) {
  .brand-row {
    min-height: 78px;
  }

  .brand img {
    width: 145px;
    height: 108px;
  }

  .header-actions {
    margin-left: auto;
  }

  html.js .header-actions>.vision-button {
    display: none;
  }

  html.js .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 0 0 auto;
  }

  html.js .nav {
    max-height: 0;
    overflow: hidden;
    border-top-width: 0;
    border-bottom-width: 0;
    transition: max-height .25s ease;
  }

  html.js .nav.is-open {
    max-height: 380px;
    border-top-width: 1px;
    border-bottom-width: 1px;
  }

  .nav-inner {
    width: min(100% - 28px, 1180px);
    min-width: 0;
    min-height: 0;
    padding: 8px 0 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-vision-button {
    width: 100%;
    margin-top: 14px;
  }

  html.js .nav-vision-button {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

.noscript {
  margin: 0;
  padding: 14px 20px;
  background: #fff4cc;
  color: #2b2100;
  text-align: center;
  font-weight: 700;
}

@font-face {
  font-family: LatoWeb;
  src: url("https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: LatoWeb;
  src: url("https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

.gosuslugi-widget-section {
  padding: 0 0 90px;
}

#js-show-iframe-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 293px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: var(--pos-banner-fluid-10__background);
  color: #fff;
  cursor: pointer;
}

#js-show-iframe-wrapper .pos-banner-fluid,
#js-show-iframe-wrapper .pos-banner-fluid * {
  box-sizing: border-box;
}

#js-show-iframe-wrapper .bf-10 {
  position: relative;
  display: grid;
  grid-template-columns: var(--pos-banner-fluid-10__grid-template-columns);
  grid-template-rows: var(--pos-banner-fluid-10__grid-template-rows);
  grid-auto-flow: row dense;
  width: 100%;
  max-width: var(--pos-banner-fluid-10__max-width);
}

#js-show-iframe-wrapper .bf-10__decor {
  position: relative;
  min-height: 236px;
  background: var(--pos-banner-fluid-10__bg-url) var(--pos-banner-fluid-10__bg-url-position) no-repeat;
  background-color: #fffaf6;
  background-size: var(--pos-banner-fluid-10__bg-size);
}

#js-show-iframe-wrapper .bf-10__content {
  display: flex;
  flex-direction: column;
  grid-row: var(--pos-banner-fluid-10__content-grid-row);
  justify-content: center;
  padding: var(--pos-banner-fluid-10__content-padding);
}

#js-show-iframe-wrapper .bf-10__text {
  margin: var(--pos-banner-fluid-10__text-margin);
  color: #fff;
  font-family: LatoWeb, Arial, sans-serif;
  font-size: var(--pos-banner-fluid-10__text-font-size);
  font-weight: 700;
  line-height: 1.4;
}

#js-show-iframe-wrapper .bf-10__bottom-wrap {
  display: flex;
  align-items: center;
}

#js-show-iframe-wrapper .bf-10__logo-wrap {
  position: absolute;
  top: var(--pos-banner-fluid-10__logo-wrap-top);
  right: var(--pos-banner-fluid-10__logo-wrap-right);
}

#js-show-iframe-wrapper .bf-10__logo {
  width: var(--pos-banner-fluid-10__logo-width);
  margin-left: 1px;
}

#js-show-iframe-wrapper .bf-10__slogan {
  color: #005ca9;
  font-family: LatoWeb, Arial, sans-serif;
  font-size: var(--pos-banner-fluid-10__slogan-font-size);
  font-weight: 700;
  line-height: 1.2;
}

#js-show-iframe-wrapper .bf-10__btn-wrap {
  width: 100%;
  max-width: var(--pos-banner-fluid-10__button-wrap-max-width);
}

#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2 {
  display: block;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  color: #0b1f33;
  font-family: LatoWeb, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
}

#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:hover {
  background: #e4ecfd;
}

#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:focus,
#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:active {
  background: #2a63ad;
  color: #fff;
}

@media (max-width: 680px) {
  .gosuslugi-widget-section {
    padding-bottom: 70px;
  }

  #js-show-iframe-wrapper {
    border-radius: 18px;
  }
}
