

/* Start:/local/templates/ivushkino/styles.css?178561862231307*/
:root {
  --iv-green-950: #043d27;
  --iv-green-900: #075c37;
  --iv-green-800: #087044;
  --iv-green-100: #eaf4ef;
  --iv-green-50: #f4f9f6;
  --iv-ink: #141816;
  --iv-muted: #66706a;
  --iv-line: #dfe5e1;
  --iv-surface: #fff;
  --iv-surface-muted: #f7f9f8;
  --iv-amber: #c97800;
  --iv-amber-line: #e3a43c;
  --iv-amber-surface: #fffaf1;
  --iv-danger: #a52b2b;
  --iv-radius-sm: 10px;
  --iv-radius: 15px;
  --iv-radius-lg: 22px;
  --iv-container: 1240px;
  --iv-shadow-focus: 0 0 0 4px rgba(7, 92, 55, .14);
  --iv-font: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.iv-page {
  margin: 0;
  color: var(--iv-ink);
  background: var(--iv-surface);
  font-family: var(--iv-font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.iv-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--iv-green-900);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--iv-green-800);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--iv-green-900);
  outline-offset: 3px;
}

.iv-container {
  width: min(calc(100% - 48px), var(--iv-container));
  margin-inline: auto;
}

.iv-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--iv-radius-sm);
  color: #fff;
  background: var(--iv-green-900);
  transform: translateY(-160%);
}

.iv-skip-link:focus {
  transform: translateY(0);
}

.iv-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--iv-line);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
}

.iv-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 36px;
}

.iv-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--iv-green-900);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  text-decoration: none;
}

.iv-logo img {
  display: block;
}

.iv-header__navigation {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.iv-nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.iv-nav__link {
  display: block;
  padding: 10px 11px;
  border-radius: 9px;
  color: #2f3833;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.iv-nav__link:hover,
.iv-nav__link.is-active {
  color: var(--iv-green-900);
  background: var(--iv-green-50);
}

.iv-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.iv-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .18s ease;
}

.iv-button:hover {
  transform: translateY(-1px);
}

.iv-button--primary {
  color: #fff;
  background: var(--iv-green-900);
}

.iv-button--primary:hover {
  color: #fff;
  background: var(--iv-green-800);
}

.iv-button--outline {
  border-color: var(--iv-green-900);
  color: var(--iv-green-900);
  background: #fff;
}

.iv-button--outline:hover {
  color: var(--iv-green-900);
  background: var(--iv-green-50);
}

.iv-button--quiet {
  color: var(--iv-green-900);
  background: transparent;
}

.iv-button--quiet:hover {
  color: var(--iv-green-900);
  background: var(--iv-green-50);
}

.iv-button--wide {
  width: 100%;
}

.iv-menu-toggle {
  display: none;
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid var(--iv-line);
  border-radius: 10px;
  color: var(--iv-ink);
  background: #fff;
}

.iv-menu-toggle__icon {
  position: relative;
  width: 22px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.iv-menu-toggle__icon::after {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  border-top: 2px solid currentColor;
  content: "";
}

.iv-menu-toggle__label {
  font-size: 14px;
  font-weight: 650;
}

.iv-main {
  min-height: 58vh;
}

.iv-section {
  padding-block: 76px;
}

.iv-section--muted {
  background: var(--iv-surface-muted);
}

.iv-section--compact {
  padding-block: 52px;
}

.iv-section-heading {
  display: flex;
  margin-bottom: 30px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.iv-section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.iv-section-heading p {
  max-width: 620px;
  margin: 9px 0 0;
  color: var(--iv-muted);
  font-size: 17px;
}

.iv-text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  font-weight: 650;
  text-decoration: none;
}

.iv-text-link::after {
  content: "→";
}

.iv-hero {
  padding-block: 56px 64px;
  border-bottom: 1px solid var(--iv-line);
}

.iv-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .96fr) minmax(480px, 1.04fr);
  gap: clamp(40px, 6vw, 88px);
}

.iv-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 740;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.iv-hero__lead {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--iv-muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.iv-hero__actions {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.iv-hero__media {
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--iv-radius-lg);
  background: #1e2522;
}

.iv-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.iv-services {
  border-block: 1px solid var(--iv-line);
}

.iv-services__list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.iv-service {
  position: relative;
  min-width: 0;
  padding: 28px 24px 30px;
}

.iv-service + .iv-service {
  border-left: 1px solid var(--iv-line);
}

.iv-service__icon {
  display: flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  color: var(--iv-green-900);
}

.iv-service__icon svg,
.iv-feature__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.iv-service h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.iv-service p {
  margin: 9px 0 0;
  color: var(--iv-muted);
  font-size: 14px;
  line-height: 1.55;
}

.iv-services__action {
  display: flex;
  padding-top: 28px;
  justify-content: center;
}

.iv-infrastructure {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .83fr) minmax(460px, 1.17fr);
  gap: clamp(40px, 7vw, 96px);
}

.iv-feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.iv-feature {
  display: grid;
  padding: 14px 0;
  align-items: center;
  border-bottom: 1px solid var(--iv-line);
  grid-template-columns: 38px 1fr;
  gap: 14px;
}

.iv-feature:last-child {
  border-bottom: 0;
}

.iv-feature__icon {
  color: var(--iv-green-900);
}

.iv-feature strong {
  display: block;
  font-size: 16px;
}

.iv-feature span {
  display: block;
  margin-top: 2px;
  color: var(--iv-muted);
  font-size: 13px;
}

.iv-infrastructure__media {
  overflow: hidden;
  border-radius: var(--iv-radius-lg);
}

.iv-infrastructure__media img {
  display: block;
  width: 100%;
  min-height: 570px;
  object-fit: cover;
}

.iv-news-feature {
  display: grid;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--iv-line);
  grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr);
  gap: 34px;
}

.iv-news-feature__media {
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--iv-radius);
  background: var(--iv-surface-muted);
}

.iv-news-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.iv-news-feature__content {
  align-self: center;
}

.iv-date {
  color: var(--iv-muted);
  font-size: 13px;
}

.iv-news-feature h3 {
  margin: 8px 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -.025em;
  line-height: 1.15;
}

.iv-news-feature p {
  margin: 0 0 18px;
  color: var(--iv-muted);
  font-size: 16px;
}

.iv-news-rows {
  margin-top: 0;
}

.iv-news-row {
  display: grid;
  padding: 24px 0;
  align-items: center;
  border-bottom: 1px solid var(--iv-line);
  color: inherit;
  grid-template-columns: 150px 1fr 28px;
  gap: 24px;
  text-decoration: none;
}

.iv-news-row:hover h3 {
  color: var(--iv-green-900);
}

.iv-news-row h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.iv-news-row p {
  margin: 5px 0 0;
  color: var(--iv-muted);
  font-size: 14px;
}

.iv-news-row__arrow {
  color: var(--iv-green-900);
  font-size: 22px;
}

.iv-notice {
  display: grid;
  padding: 25px 28px;
  align-items: center;
  border: 1px solid var(--iv-amber-line);
  border-radius: var(--iv-radius);
  background: var(--iv-amber-surface);
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 22px;
}

.iv-notice__icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--iv-amber);
  border-radius: 50%;
  color: var(--iv-amber);
  font-size: 27px;
  font-weight: 700;
}

.iv-notice h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.iv-notice p {
  margin: 6px 0 0;
  color: #6d5b3d;
  font-size: 14px;
}

.iv-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(440px, 1.22fr);
  gap: 56px;
}

.iv-contact-list {
  display: grid;
  margin: 24px 0 0;
  gap: 14px;
}

.iv-contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
}

.iv-contact-item__icon {
  color: var(--iv-green-900);
  font-weight: 700;
}

.iv-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--iv-line);
  border-radius: var(--iv-radius-lg);
  background:
    linear-gradient(34deg, transparent 47%, rgba(255,255,255,.9) 48% 52%, transparent 53%),
    linear-gradient(-23deg, transparent 44%, rgba(255,255,255,.85) 45% 49%, transparent 50%),
    #e7f1e7;
}

.iv-map::before {
  position: absolute;
  top: 50%;
  left: 61%;
  width: 28px;
  height: 28px;
  border: 8px solid var(--iv-green-900);
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: translate(-50%, -70%) rotate(-45deg);
}

.iv-map::after {
  position: absolute;
  right: 21%;
  bottom: -28px;
  width: 48%;
  height: 42%;
  border-radius: 50%;
  background: #a9d7ed;
  content: "";
}

.iv-footer {
  padding: 50px 0 20px;
  color: rgba(255, 255, 255, .84);
  background: var(--iv-green-950);
}

.iv-footer a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
}

.iv-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.iv-logo--footer {
  color: #fff;
}

.iv-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr .8fr;
  gap: 48px;
}

.iv-footer__brand p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .65);
}

.iv-footer__nav,
.iv-footer__contacts {
  display: grid;
  align-content: start;
  gap: 10px;
}

.iv-footer__contacts strong {
  color: #fff;
}

.iv-footer__legal {
  display: flex;
  margin-top: 38px;
  padding-top: 19px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.iv-page-shell {
  padding-block: 56px 84px;
}

.iv-breadcrumbs {
  margin-bottom: 18px;
  color: var(--iv-muted);
  font-size: 13px;
}

.iv-breadcrumbs a {
  color: inherit;
}

.iv-page-title {
  max-width: 900px;
  margin: 0 0 35px;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.iv-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px;
}

.iv-richtext {
  min-width: 0;
  font-size: 17px;
}

.iv-richtext > :first-child {
  margin-top: 0;
}

.iv-richtext h2,
.iv-richtext h3,
.iv-richtext h4 {
  margin: 1.7em 0 .6em;
  line-height: 1.2;
}

.iv-richtext h2 {
  font-size: 30px;
}

.iv-richtext h3 {
  font-size: 24px;
}

.iv-richtext p,
.iv-richtext ul,
.iv-richtext ol {
  margin-block: 0 1.15em;
}

.iv-richtext li + li {
  margin-top: .45em;
}

.iv-richtext img {
  display: block;
  margin: 26px 0;
  border-radius: var(--iv-radius);
}

.iv-richtext table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}

.iv-richtext td,
.iv-richtext th {
  padding: 12px 14px;
  border: 1px solid var(--iv-line);
  text-align: left;
  vertical-align: top;
}

.iv-richtext iframe {
  width: 100%;
  border: 0;
  border-radius: var(--iv-radius);
}

.iv-side-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--iv-line);
  border-radius: var(--iv-radius);
  background: var(--iv-surface-muted);
}

.iv-side-nav h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.iv-side-nav a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--iv-line);
  color: var(--iv-ink);
  font-size: 14px;
  text-decoration: none;
}

.iv-side-nav a:hover {
  color: var(--iv-green-900);
}

.iv-content-list {
  display: grid;
}

.iv-content-card {
  display: grid;
  padding: 27px 0;
  border-bottom: 1px solid var(--iv-line);
  color: inherit;
  grid-template-columns: 160px minmax(0, 1fr) 28px;
  gap: 28px;
  text-decoration: none;
}

.iv-content-card:first-child {
  border-top: 1px solid var(--iv-line);
}

.iv-content-card h2,
.iv-content-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
}

.iv-content-card p {
  margin: 8px 0 0;
  color: var(--iv-muted);
}

.iv-content-card:hover h2,
.iv-content-card:hover h3 {
  color: var(--iv-green-900);
}

.iv-lock {
  display: inline-flex;
  margin-top: 10px;
  align-items: center;
  gap: 6px;
  color: var(--iv-muted);
  font-size: 13px;
}

.iv-empty,
.iv-auth-required,
.iv-status-box {
  padding: 28px;
  border: 1px solid var(--iv-line);
  border-radius: var(--iv-radius);
  background: var(--iv-surface-muted);
}

.iv-auth-required {
  border-color: #b8cec1;
  background: var(--iv-green-50);
}

.iv-auth-required h2,
.iv-status-box h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.iv-auth-required p,
.iv-status-box p {
  margin: 0 0 20px;
  color: var(--iv-muted);
}

.iv-document-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.iv-document-section {
  display: flex;
  min-height: 116px;
  padding: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--iv-line);
  border-radius: var(--iv-radius);
  color: var(--iv-ink);
  text-decoration: none;
}

.iv-document-section:hover {
  border-color: #aac4b4;
  color: var(--iv-green-900);
  background: var(--iv-green-50);
}

.iv-document-section h2 {
  margin: 0;
  font-size: 18px;
}

.iv-document-list {
  display: grid;
}

.iv-document {
  display: grid;
  padding: 18px 0;
  align-items: center;
  border-bottom: 1px solid var(--iv-line);
  color: inherit;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  text-decoration: none;
}

.iv-document__icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--iv-green-900);
  background: var(--iv-green-100);
  font-size: 12px;
  font-weight: 750;
}

.iv-document strong {
  display: block;
  line-height: 1.35;
}

.iv-document span {
  color: var(--iv-muted);
  font-size: 13px;
}

.iv-auth-page {
  display: grid;
  min-height: calc(100vh - 77px);
  padding: 50px 24px 72px;
  place-items: center;
  background: var(--iv-surface-muted);
}

.iv-auth-shell {
  display: grid;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid var(--iv-line);
  border-radius: var(--iv-radius-lg);
  background: #fff;
  grid-template-columns: .92fr 1.08fr;
}

.iv-auth-shell__aside {
  display: flex;
  min-height: 590px;
  padding: 44px;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background:
    linear-gradient(rgba(4, 61, 39, .52), rgba(4, 61, 39, .82)),
    url("/upload/ivushkino/content/b088810fec80-зима470.jpg") center / cover;
}

.iv-auth-shell__aside h1 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.iv-auth-shell__aside p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .82);
}

.iv-auth-shell__body {
  padding: 48px;
}

.iv-auth-shell__body h1,
.iv-auth-shell__body h2 {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.iv-auth-intro {
  margin: 0 0 28px;
  color: var(--iv-muted);
}

.iv-form {
  display: grid;
  gap: 18px;
}

.iv-field {
  display: grid;
  gap: 7px;
}

.iv-field label,
.iv-field__label {
  font-size: 14px;
  font-weight: 650;
}

.iv-field input,
.iv-field select,
.iv-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #bfc8c2;
  border-radius: 10px;
  color: var(--iv-ink);
  background: #fff;
}

.iv-field textarea {
  min-height: 130px;
  resize: vertical;
}

.iv-field input:focus,
.iv-field select:focus,
.iv-field textarea:focus {
  border-color: var(--iv-green-900);
  box-shadow: var(--iv-shadow-focus);
  outline: 0;
}

.iv-password {
  position: relative;
}

.iv-password input {
  padding-right: 94px;
}

.iv-password__toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  padding: 7px 8px;
  border: 0;
  color: var(--iv-green-900);
  background: transparent;
  font-size: 13px;
  font-weight: 650;
  transform: translateY(-50%);
}

.iv-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--iv-muted);
  font-size: 14px;
}

.iv-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--iv-green-900);
}

.iv-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.iv-form__help,
.iv-auth-links {
  color: var(--iv-muted);
  font-size: 14px;
}

.iv-auth-links {
  margin: 24px 0 0;
  text-align: center;
}

.iv-alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid #e2abab;
  border-radius: 10px;
  color: #792020;
  background: #fff4f4;
}

.iv-alert--success {
  border-color: #acd0bb;
  color: var(--iv-green-950);
  background: var(--iv-green-50);
}

.iv-field-error {
  color: var(--iv-danger);
  font-size: 13px;
}

.iv-registration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.iv-registration-grid .iv-field--wide {
  grid-column: 1 / -1;
}

.iv-policy {
  max-height: 170px;
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--iv-line);
  border-radius: 10px;
  color: var(--iv-muted);
  background: var(--iv-surface-muted);
  font-size: 12px;
}

.iv-contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 68px;
}

.iv-contact-group {
  padding: 26px 0;
  border-bottom: 1px solid var(--iv-line);
}

.iv-contact-group:first-child {
  padding-top: 0;
}

.iv-contact-group h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.iv-contact-group p {
  margin: 6px 0;
}

.iv-contact-card {
  padding: 28px;
  border: 1px solid var(--iv-line);
  border-radius: var(--iv-radius);
  background: var(--iv-surface-muted);
}

@media (max-width: 1039px) {
  .iv-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .iv-header__navigation {
    position: fixed;
    top: 77px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 22px 24px 36px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    overflow-y: auto;
    background: #fff;
  }

  .iv-header__navigation.is-open {
    display: flex;
  }

  .iv-nav__list {
    align-items: stretch;
    flex-direction: column;
  }

  .iv-nav__link {
    padding: 13px 12px;
    font-size: 17px;
  }

  .iv-header__actions {
    display: grid;
    margin-top: auto;
    grid-template-columns: 1fr 1fr;
  }

  .iv-hero__grid,
  .iv-infrastructure {
    grid-template-columns: 1fr;
  }

  .iv-hero__media {
    order: -1;
  }

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

  .iv-service + .iv-service {
    border-left: 0;
  }

  .iv-service:nth-child(even) {
    border-left: 1px solid var(--iv-line);
  }

  .iv-service:nth-child(n+3) {
    border-top: 1px solid var(--iv-line);
  }

  .iv-service:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .iv-content-layout,
  .iv-contact-page-grid {
    grid-template-columns: 1fr;
  }

  .iv-side-nav {
    position: static;
    order: -1;
  }
}

@media (max-width: 759px) {
  .iv-container {
    width: min(calc(100% - 32px), var(--iv-container));
  }

  .iv-header__inner {
    min-height: 68px;
  }

  .iv-logo {
    font-size: 23px;
  }

  .iv-logo img {
    width: 30px;
    height: 30px;
  }

  .iv-header__navigation {
    top: 69px;
  }

  .iv-menu-toggle__label {
    display: none;
  }

  .iv-section {
    padding-block: 56px;
  }

  .iv-hero {
    padding-block: 24px 48px;
  }

  .iv-hero__grid {
    gap: 30px;
  }

  .iv-hero h1 {
    font-size: 42px;
  }

  .iv-hero__lead {
    font-size: 17px;
  }

  .iv-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .iv-hero__media,
  .iv-hero__media img {
    min-height: 310px;
  }

  .iv-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .iv-services__list {
    grid-template-columns: 1fr;
  }

  .iv-service,
  .iv-service:nth-child(even),
  .iv-service:nth-child(n+3),
  .iv-service:last-child {
    grid-column: auto;
    border-top: 1px solid var(--iv-line);
    border-left: 0;
  }

  .iv-service:first-child {
    border-top: 0;
  }

  .iv-infrastructure__media img {
    min-height: 360px;
  }

  .iv-news-feature {
    grid-template-columns: 1fr;
  }

  .iv-news-row {
    grid-template-columns: 1fr 26px;
    gap: 12px;
  }

  .iv-news-row .iv-date {
    grid-column: 1 / -1;
  }

  .iv-notice {
    padding: 23px;
    align-items: start;
    grid-template-columns: 44px 1fr;
  }

  .iv-notice__icon {
    width: 42px;
    height: 42px;
  }

  .iv-notice .iv-button {
    grid-column: 1 / -1;
  }

  .iv-contact-grid,
  .iv-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .iv-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .iv-page-shell {
    padding-block: 38px 62px;
  }

  .iv-page-title {
    font-size: 38px;
  }

  .iv-content-card {
    grid-template-columns: 1fr 24px;
    gap: 14px;
  }

  .iv-content-card .iv-date {
    grid-column: 1 / -1;
  }

  .iv-document-sections {
    grid-template-columns: 1fr;
  }

  .iv-auth-page {
    padding: 24px 16px 48px;
    place-items: start center;
  }

  .iv-auth-shell {
    grid-template-columns: 1fr;
  }

  .iv-auth-shell__aside {
    min-height: 210px;
    padding: 28px;
  }

  .iv-auth-shell__aside h1 {
    font-size: 31px;
  }

  .iv-auth-shell__body {
    padding: 28px 22px 34px;
  }

  .iv-registration-grid {
    grid-template-columns: 1fr;
  }

  .iv-form__row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.content-article {
  max-width: 980px;
}

.content-article__date,
.content-list time {
  display: block;
  margin-bottom: 10px;
  color: var(--iv-muted);
  font-size: 14px;
}

.content-rich {
  color: var(--iv-text);
  font-size: 18px;
  line-height: 1.72;
}

.content-rich > :first-child {
  margin-top: 0;
}

.content-rich h2,
.content-rich h3,
.content-rich h4 {
  max-width: 800px;
  margin: 42px 0 17px;
  color: var(--iv-ink);
  line-height: 1.18;
}

.content-rich h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.content-rich h3 {
  font-size: clamp(23px, 3vw, 29px);
}

.content-rich p,
.content-rich ul,
.content-rich ol {
  max-width: 860px;
  margin: 0 0 20px;
}

.content-rich li + li {
  margin-top: 8px;
}

.content-rich a {
  color: var(--iv-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.content-rich img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 28px 0;
  border-radius: 15px;
}

.content-rich table {
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--iv-line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  background: #fff;
}

.content-rich th,
.content-rich td {
  padding: 16px;
  border-right: 1px solid var(--iv-line);
  border-bottom: 1px solid var(--iv-line);
  text-align: left;
  vertical-align: top;
}

.content-rich th {
  background: var(--iv-mint);
  color: var(--iv-green);
}

.content-rich tr:last-child > * {
  border-bottom: 0;
}

.content-rich tr > *:last-child {
  border-right: 0;
}

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

.news-page-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.news-page-head__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--iv-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-page-head .iv-page-title {
  margin-bottom: 14px;
}

.news-page-head p {
  margin: 0;
  color: var(--iv-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.content-list__item {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--iv-line);
}

.content-list--list .content-list__item--no-media {
  grid-template-columns: minmax(0, 1fr);
}

.content-list__media {
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 15px;
  background: var(--iv-mint);
  aspect-ratio: 16 / 10;
}

.content-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-list__media--placeholder {
  color: var(--iv-green);
  background:
    radial-gradient(circle at 82% 18%, rgb(255 255 255 / 70%) 0 9%, transparent 10%),
    linear-gradient(145deg, #edf6f0, #dcecdf);
}

.content-list__media--placeholder svg {
  width: 58px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.content-list__body {
  min-width: 0;
}

.content-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
  color: var(--iv-muted);
  font-size: 13px;
}

.content-list__meta span {
  color: var(--iv-green);
  font-weight: 700;
}

.content-list__item h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

.content-list__item p {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--iv-muted);
  font-size: 16px;
}

.content-list__item h2 a {
  color: var(--iv-ink);
  text-decoration: none;
}

.content-list__item h2 a:hover {
  color: var(--iv-green);
}

.content-list__link,
.content-back-link {
  color: var(--iv-green);
  font-weight: 700;
}

.content-list--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.content-list--grid .content-list__item {
  min-height: 100%;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0;
  padding: 0;
  border: 1px solid var(--iv-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(22 79 48 / 6%);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.content-list--grid .content-list__item:hover {
  border-color: rgb(27 98 59 / 28%);
  box-shadow: 0 18px 42px rgb(22 79 48 / 11%);
  transform: translateY(-3px);
}

.content-list--grid .content-list__media {
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

.content-list--grid .content-list__body {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 22px;
}

.content-list--grid .content-list__item h2 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
}

.content-list--grid .content-list__item p {
  display: -webkit-box;
  max-width: none;
  margin-bottom: 20px;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-height: 1.55;
}

.content-list--grid .content-list__link {
  margin-top: auto;
  text-decoration: none;
}

.content-list--grid .content-list__link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.content-list--grid .content-list__link:hover span {
  transform: translateX(4px);
}

.content-attachments,
.content-files {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.content-file,
.document-section {
  display: grid;
  min-height: 72px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--iv-line);
  border-radius: 15px;
  background: #fff;
}

.content-file:hover,
.document-section:hover {
  border-color: var(--iv-green);
}

.content-file span,
.document-section span {
  color: var(--iv-muted);
  font-size: 14px;
}

.content-file__type {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  background: var(--iv-mint);
  color: var(--iv-green) !important;
  font-size: 11px !important;
  font-weight: 800;
}

.content-files .content-file {
  grid-template-columns: 46px minmax(0, 1fr) auto;
}

.document-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-empty {
  padding: 34px;
  border: 1px solid var(--iv-line);
  border-radius: 15px;
  background: var(--iv-mint);
}

.invoice-print {
  max-width: 920px;
  padding: 44px 0 80px;
  margin: 0 auto;
}

.invoice-print__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.invoice-print table {
  width: 100%;
  margin: 34px 0;
  border: 1px solid var(--iv-line);
  border-collapse: collapse;
}

.invoice-print th,
.invoice-print td {
  padding: 16px;
  border: 1px solid var(--iv-line);
  text-align: left;
}

@media (max-width: 720px) {
  .content-list__item,
  .document-sections {
    grid-template-columns: 1fr;
  }

  .content-rich {
    font-size: 17px;
  }

  .content-rich table {
    display: block;
    overflow-x: auto;
  }

  .content-file,
  .content-files .content-file {
    grid-template-columns: 1fr;
  }

  .invoice-print__head {
    flex-direction: column;
  }
}

@media (max-width: 1040px) {
  .content-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-page-head {
    margin-bottom: 26px;
  }

  .content-list--grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .content-list--grid .content-list__body {
    min-height: 0;
    padding: 19px;
  }
}

@media print {
  .iv-header,
  .iv-footer,
  .iv-cookie,
  .invoice-print .site-button {
    display: none !important;
  }

  .invoice-print {
    max-width: none;
    padding: 0;
  }
}

/* End */
/* /local/templates/ivushkino/styles.css?178561862231307 */
