:root {
  --white: #ffffff;
  --white-100: #f7f7f7;
  --black-800: #212121;
  --black-900: #1b1b1b;
  --grey-100: #e3e3e3;
  --grey-300: #6e6e6e;
  --grey-400: #454545;
  --red-50: #fcc;
  --red-500: #eb0000;
  --red-600: #c00;
  --red-800: #900000;
  --red-900: #5c0000;
  --blue-10: #fbfcfd;
  --blue-50: #e8f1fa;
  --blue-100: #c5e0f5;
  --blue-200: #9dccef;
  --blue-500: #2c89dd;
  --blue-600: #1d61a1;
  --blue-800: #103b63;
  --blue-900: #041425;
}
/* === БАЗОВЫЙ RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
@media screen and (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
ol,
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus,
:focus:not(:focus-visible) {
  outline: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
table {
  border-collapse: collapse;
}
pre,
code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco,
    "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", monospace;
}
/* Styles */
html body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.005em;
  color: var(--black-900);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh !important;
  top: 0px !important;
  background: var(--white-100, #f7f7f7);
}
.container {
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
  max-width: 1528px;
  position: relative;
}
main {
  flex: 1;
}
main > section {
  display: flow-root;
}
body a,
body a:hover {
  text-decoration: none;
}
/* Titles ------------------------------------ */
body h1,
body .h1,
body h2,
body .h2,
body h3,
body .h3,
body h4,
body .h4,
body h5,
body .h5,
body h6,
body .h6 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
}
body .h1 {
  font-size: 82px;
  line-height: 122px;
  letter-spacing: -1.23px;
}
body .h2 {
  font-size: 51px;
  line-height: 72px;
  letter-spacing: -0.255px;
}
body .h3 {
  font-size: 41px;
  font-weight: 600;
  line-height: 58px;
}
body .h4 {
  font-size: 29px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.073px;
}
body .h5,
body h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}
body .h6,
body h6 {
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.026px;
}
.subtitle-primary {
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.021px;
}
.subtitle-secondary {
  font-family: "Roboto Condensed";
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.012px;
}
.section-title {
  color: var(--blue-900, #041425);
  text-align: center;
  margin: 16px 0;
}

/* Buttons -------------------------------------- */
.button {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.175px;
  text-align: center;
  padding: 10px 24px;
  text-transform: uppercase;
}
.primary-button {
  color: var(--red-900, #5c0000);
  background: var(--red-500, #eb0000);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.primary-button:hover,
.primary-button:focus {
  text-decoration: none;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25),
    4px 4px 16px 0 rgba(0, 0, 0, 0.1);
}
.primary-button:active {
  color: var(--red-800, #900);
}
.secondary-button {
  color: var(--red-800, #900);
  box-shadow: 0 0 0 1px var(--red-800, #900);
  background: rgba(255, 255, 255, 0);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    background 0.3s ease-in-out;
}
.secondary-button--light {
  color: var(--red-50, #fcc);
  box-shadow: 0 0 0 1px var(--red-50, #fcc);
  background: rgba(255, 255, 255, 0);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    background 0.3s ease-in-out;
}
.secondary-button:hover,
.secondary-button:focus,
.secondary-button:active,
.secondary-button--light:hover,
.secondary-button--light:focus,
.secondary-button--light:active {
  color: var(--red-600, #c00);
  box-shadow: 0 0 0 2px var(--red-600, #c00);
  background: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.secondary-button:active,
.secondary-button--light:active {
  background: rgba(255, 255, 255, 0.7);
}
.thirdy-button {
  padding: 10px 16px;
  color: var(--red-800, #900);
  background: transparent;
  transition: background 0.3s ease-in-out;
}
.thirdy-button:hover,
.thirdy-button:focus {
  color: var(--red-600, #c00);
  background: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.thirdy-button:active {
  color: var(--red-600, #c00);
  background: rgba(255, 255, 255, 0.7);
}
.primary-button.icon,
.secondary-button.icon,
.secondary-button--light.icon {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.button-appeal {
  white-space: nowrap;
  display: flex;
  gap: 8px;
  padding-left: 16px;
  border: 1px solid var(--red-50, #ffebeb);
  background: var(--blue-10, #fbfcfd);
  color: var(--red-800, #900);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.button-appeal img {
  width: 18px;
  height: 18px;
}
.button-appeal:hover {
  color: var(--red-600, #c00);
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25),
    4px 4px 16px 0 rgba(0, 0, 0, 0.1);
}

/* Error 404 ---------------------------------- */
.well blockquote {
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 24px;
}
.well a {
  color: var(--main-2);
}
.well a:hover {
  color: var(--main-2);
}
.error {
  border-top: 1px solid #1c5f30;
}
h1.page-header {
  margin-top: 32px;
}

/* Breadcrumbs ------------------------------ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
}
.breadcrumb > li a {
  color: var(--blue-800, #103b63);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.038px;
}
.breadcrumb > li {
  text-align: center;
}
.breadcrumb li + li:not(:last-child):after {
  content: ">";
  color: var(--blue-800, #103b63);
  padding-right: 8px;
}
@media (max-width: 1200px) {
  .breadcrumb {
    justify-content: center;
  }
}

/* Contacts --------------------------- */
.address,
.location,
.telegram,
.mail,
.clock,
.tel,
.mail,
.tel {
  padding-left: 32px;
  position: relative;
}
.tel span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.035px;
  color: #454545;
}
.address a,
.mail a,
.tel a,
.mail a,
.mail,
.tel {
  position: relative;
}
/* .tel > a:hover,
.mail > a:hover,
.tel:hover,
.mail:hover {
  color: var(--blue-800, #103b63);
  text-decoration: underline;
} */
.address::before {
  content: url(../images/icons/address.svg);
  position: absolute;
  left: 0;
  top: 0px;
}
.location::before {
  content: url(../images/icons/location.svg);
  position: absolute;
  left: 0;
  top: 0px;
}
.tel::before {
  content: url(../images/icons/office-phone.svg);
  position: absolute;
  left: 0;
  top: -1px;
}
.mail::before {
  content: url(../images/icons/email.svg);
  position: absolute;
  left: 0;
  top: 1px;
}
.clock::before {
  content: url(../images/icons/clock.svg);
  position: absolute;
  left: 0;
  top: 1px;
}
.telegram::before {
  content: url(../images/icons/telegram.svg);
  position: absolute;
  left: 0;
  top: -1px;
}

/* Header ------------------------------- */
.header {
  background: var(--blue-50, #e8f1fa);
  width: 100%;
}
.header__container {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
}
.header__row-item,
.header__row--socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__title .h4 {
  white-space: nowrap;
}
.header__row--socials {
  gap: 24px;
}
.home-page .header__title div.h4,
.inner-page .header__title h1 {
  display: none;
}
/* Header search */
.header__row--search .inputbox {
  border: none;
  width: 584px;
  padding: 20px 52px 20px 12px;
  height: 56px;
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid var(--blue-800, #103b63);
  background: #fbfcfd;
  color: var(--grey-300, #6e6e6e);
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.035px;
}
.k2SearchBlockForm {
  position: relative;
}
.k2SearchBlockForm .button {
  position: absolute;
  right: 12px;
  top: 16px;
  padding: 0;
}
/* Header language */
.header__row--lang,
.language {
  display: flex;
  gap: 24px;
  align-items: center;
}
.language img {
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
.header__row--lang svg:hover,
.language img:hover {
  opacity: 0.6;
}
.page_fix {
  top: 0 !important;
  position: static !important;
}
/* Прячем панель гугла */
.skiptranslate {
  display: none !important;
}
.language__img:hover,
.language__img_active {
  opacity: 1;
}
/* google translate */
#google_translate_element {
  width: 300px;
  float: right;
  text-align: right;
  display: block;
}
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
#goog-gt-tt {
  display: none !important;
  top: 0px !important;
}
.goog-tooltip .skiptranslate {
  display: none !important;
  top: 0px !important;
}
.activity-root {
  display: hide !important;
}
.status-message {
  display: hide !important;
}
.started-activity-container {
  display: hide !important;
}
.skiptranslate {
  display: none !important;
}
body > .skiptranslate > iframe,
body > .skiptranslate .skiptranslate,
body > .skiptranslate .skiptranslate body {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute;
  left: -99999px;
  width: 0px !important;
  height: 0px !important;
}
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
  display: none !important;
}
@media (max-width: 1200px) {
  .header__row--search {
    display: none;
  }
  .bvi-open {
    display: none;
  }
}
@media (max-width: 600px) {
  .header__title .subtitle-primary {
    display: none;
  }
  .header__title .h4 {
    font-size: 20px;
    line-height: 26px;
  }
  .header__logo {
    width: 40px;
  }
  .language {
    gap: 16px;
  }
  .header__row-item {
    gap: 10px;
  }
}

/* Menu ------------------------------ */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--blue-50, #e8f1fa);
  background: var(--blue-800, #103b63);
  font-family: "Roboto Condensed";
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.026px;
  z-index: 1000;
}
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-900, #041425);
}
.nav-menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.nav-menu-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.nav-menu > .nav-menu-item {
  border-top: 3px solid transparent;
  transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
}
.nav-menu > .nav-menu-item:hover {
  border-top: 3px solid var(--blue-800, #103b63);
  background: var(--blue-900, #041425);
}
.nav-menu-item a {
  display: block;
  height: 100%;
  padding: 16px;
}
.nav-menu-item.icon-to-text {
  display: none;
}
.nav-menu-item.drop-down .drop-down-menu {
  position: absolute;
  top: 100%;
  padding: 8px 0;
  background: var(--blue-800, #103b63);
  color: var(--blue-10, #fbfcfd);
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease-in-out, visible 0.3s ease-in-out;
}
.nav-menu-item.drop-down .drop-down svg,
.nav-menu-item.drop-down .drop-down-menu .drop-down-menu {
  display: none;
}
.nav-menu-item.drop-down:hover .drop-down-menu {
  visibility: visible;
  opacity: 1;
}
.drop-down-menu .nav-menu-item {
  justify-content: left;
  border-bottom: 2px solid transparent;
  transition: border 0.3s ease-in-out;
}
.drop-down-menu .nav-menu-item a {
  position: relative;
}
.drop-down-menu .nav-menu-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--blue-500, #2c89dd);
  transition: width 0.3s ease-in-out;
}
.drop-down-menu .nav-menu-item:hover a::before {
  width: 100%;
}
.drop-down-menu a {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.035px;
}
.nav-menu-item:hover a,
.nav-menu-item > a:hover {
  text-decoration: none;
}
.nav-arrow {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.nav-menu > .nav-menu-item.drop-down:hover > .nav-arrow {
  transform: rotateX(180deg);
}
.hamburger-menu,
.button-search {
  display: none;
}

@media screen and (max-width: 1200px) {
  .nav-menu-item.drop-down .drop-down svg,
  .nav-menu-item.drop-down .drop-down-menu .drop-down-menu {
    display: block;
  }
  .hamburger-menu,
  .button-search {
    display: block;
    width: fit-content;
  }
  nav#main-menu {
    width: fit-content;
  }
  .button-search {
    position: absolute;
    right: 16px;
    top: -3px;
  }
  .nav-menu.menu-active {
    transform: translateX(0);
  }
  .header__row--search.active {
    display: block;
  }
  .header__row--search.active .k2SearchBlockForm {
    position: relative;
    position: absolute;
    top: 115px;
    left: 0;
    right: 0;
    z-index: 1111;
  }
  .header__row--search.active .inputbox {
    width: 100%;
  }
  .nav-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    max-width: 304px;
    background: var(--black-800, #212121);
    box-shadow: 8px 0 24px 0 rgba(29, 29, 32, 0.1),
      1px 0 2px 0 rgba(29, 29, 32, 0.25);
    transform: translateX(-105%);
    transition: all 0.4s ease;
    z-index: 50;
  }
  .nav-menu-item.icon-to-text a {
    color: transparent;
    position: relative;
    padding: 0 !important;
  }
  .nav-menu-item.icon-to-text a:before {
    content: url(../images/icons/home.svg);
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    transform: translateX(-50%);
  }
  .nav-menu-item.drop-down:hover > .nav-arrow {
    transform: rotateX(0);
  }
  .nav-menu > .nav-menu-item.drop-down:hover > .nav-arrow {
    transform: rotateX(0);
  }
  .nav-menu-item.drop-down .nav-arrow.active-menu {
    transform: rotateX(180deg) !important;
  }
  .nav-arrow {
    position: absolute;
    right: 16px;
    z-index: 9999999;
    top: 40%;
  }
  .nav-arrow.active-menu {
    top: 16px;
  }
  .nav-menu > .nav-menu-item > a,
  .nav-menu > .nav-menu-item.drop-down > a {
    height: auto;
    padding: 13px 16px;
    margin: 25px 0;
  }
  .nav-menu .nav-menu-item:has(.nav-arrow.active-menu) > a,
  .nav-menu .nav-menu-item.drop-down:has(.nav-arrow.active-menu) > a {
    color: var(--blue-50, #e8f1fa);
    margin: 0;
  }
  .nav-menu:has(.nav-arrow.active-menu)
    > .nav-menu-item:not(.icon-to-text)
    > a {
    margin: 0;
  }
  .nav-menu .header__row--socials {
    margin: 40px auto 16px;
  }
  .nav-menu > .nav-menu-item:hover {
    border: none;
    background: none;
  }
  .nav-menu .nav-menu-item.drop-down:has(.nav-arrow.active-menu) {
    background: var(--blue-900, #041425);
    border-top: 3px solid var(--blue-800, #103b63);
  }
  .drop-down-menu .nav-menu-item a {
    color: var(--blue-50, #e8f1fa);
  }
  .drop-down-menu .nav-menu-item.drop-down a {
    padding-right: 32px;
  }
  .nav-menu > .nav-menu-item.drop-down .drop-down-menu {
    display: none;
    position: relative;
    inset: auto;
    top: auto !important;
    max-width: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    background: var(--blue-900, #041425);
    transform: none;
    z-index: 999999;
    transition: all 0.3s ease;
  }
  .nav-menu > .nav-menu-item.drop-down .drop-down-menu > .drop-down-list {
    width: 100%;
    margin: 0;
    max-width: none;
    align-items: center;
  }
  .nav-menu > .nav-menu-item.drop-down .drop-down-menu {
    width: 100% !important;
  }
  .nav-menu > .nav-menu-item.drop-down,
  .nav-menu > li.nav-menu-item {
    max-width: 100%;
    width: 100%;
    height: fit-content !important;
    max-height: 2000px !important;
    border: none;
    display: block;
    border-bottom: 1px solid var(--blue-900, #041425);
  }
  .nav-menu > .nav-menu-item.drop-down:has(.nav-arrow.active-menu):hover {
    background: var(--blue-900, #041425);
  }
  .nav-menu-item.drop-down:has(.nav-arrow.active-menu) + .nav-menu-item {
    margin-top: 8px;
  }
  .drop-down-menu .nav-menu-item.active.drop-down {
    flex-direction: column;
    align-items: flex-start;
  }
  .drop-down-menu .nav-menu-item a::before {
    content: none;
  }
}

/* Slider */
.slider .container {
  padding: 0;
  max-width: 100%;
}
.slider-item {
  min-height: 448px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 17%;
}
.slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background: linear-gradient(270deg, rgba(22, 88, 149, 0) 0%, #165895 24.77%);
  z-index: 1;
}
.slider-img {
  position: absolute;
  inset: 0;
}
.slider-img img {
  width: 45%;
  height: 100%;
  object-fit: cover;
  margin-left: auto;
}
.slider-details {
  position: relative;
  max-width: 584px;
  color: var(--blue-50, #e8f1fa);
  z-index: 2;
}
.slider-details::before {
  content: "";
  position: absolute;
  top: -32px;
  left: -12%;
  width: calc(100% + 64px);
  height: calc(100% + 64px);
  background-image: url(../images/icons/ellipse.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.slider-title,
.slider-intro {
  height: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.slider-title {
  -webkit-line-clamp: 2;
}
.slider-intro {
  margin: 16px 0 24px;
  -webkit-line-clamp: 4;
}
.swiper-button {
  background: rgba(4, 20, 37, 0.5);
  padding: 16px;
  width: 56px;
  height: 56px;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.swiper-button:hover {
  opacity: 0.7;
}
.swiper-button-next {
  padding-left: 20px !important;
  right: 0 !important;
}
.swiper-button-prev {
  left: 0 !important;
}
.swiper-button svg {
  min-width: 24px;
}
@media (max-width: 768px) {
  .slider-item {
    min-height: 496px;
    padding-left: 0;
    flex-direction: column-reverse;
  }
  .slider-details {
    max-width: 100%;
    padding: 0 72px 24px;
    min-height: 280px;
  }
  .slider-img img {
    width: 100%;
    margin-left: 0;
  }
  .slider-title.h4 {
    font-size: 20px;
    line-height: 26px;
  }
  .slider-item::before {
    content: none;
  }
  .slider-details::before {
    top: auto;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    height: 321px;
    width: 321px;
  }
  .slider-title {
    -webkit-line-clamp: 3;
  }
  .slider-details::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(
      0deg,
      #165895 14.42%,
      rgba(22, 88, 149, 0) 100%
    );
  }
  .slider-intro {
    -webkit-line-clamp: 7;
  }
}

/* News ---------------------------------------------- */
.news {
  padding-bottom: 24px;
}
.news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news__item {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0 1px var(--blue-600, #1d61a1);
  background: var(--blue-10, #fbfcfd);
  padding: 16px 16px 0;
  transition: box-shadow 0.3s;
  cursor: pointer;
}
.news__item::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 0 1px var(--blue-600, #1d61a1);
  transition: box-shadow 0.3s;
  z-index: -1;
}
.news__item:hover {
  box-shadow: 8px 8px 26px 0 rgba(29, 29, 32, 0.1),
    2px 2px 4px 0 rgba(29, 29, 32, 0.25);
}
.news__item:hover::before {
  box-shadow: 0 0 0 3px var(--red-500, #eb0000);
}
.news__item-data {
  color: var(--blue-800, #103b63);
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
}
.news__item-title {
  margin: 19px 0 5px;
  color: var(--grey-400, #454545);
  -webkit-line-clamp: 2;
}
.news__item-intro {
  margin-bottom: 13px;
  -webkit-line-clamp: 4;
}
.news__item-title,
.news__item-intro {
  height: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item-image {
  width: calc(100% + 32px);
  height: 296px;
  margin-left: -16px;
  margin-top: auto;
  position: relative;
}
.news__item-image a {
  position: absolute;
  inset: 0;
}
.news__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__more {
  margin: 0 auto;
  margin-top: 24px;
  display: block;
  width: fit-content;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .news__items {
    gap: 16px;
  }
}
@media (max-width: 992px) {
  .news .section-title {
    font-size: 29px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.073px;
  }
  .news__items {
    grid-template-columns: 1fr;
  }
  .h4.news__item-title {
    font-size: 20px;
    line-height: 26px;
  }
  .news__item-image {
    height: 200px;
  }
}

/* Services ----------------------------------- */
.services {
  background: var(--blue-600, #1d61a1);
  padding: 8px 0 48px;
}
.services .container {
  padding: 0;
}
.services .section-title {
  color: var(--blue-50, #e8f1fa);
}
.services__btns {
  position: absolute;
  top: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.services__item {
  padding: 0 48px;
}
.services__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 360px;
  gap: 16px;
}
.services__item-title {
  font-family: "Roboto Condensed";
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--blue-50, #e8f1fa);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  top: 16px;
}
.services__item-image {
  position: relative;
  flex-grow: 1;
  height: 100%;
  max-height: 238px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.45s ease;
}
.morph {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* .morph-rect {
  transition: rx 0.5s ease, ry 0.5s ease;
} */
/* On hover, turn into a perfect square */
/* .services__item-wrapper:hover .morph-rect {
  rx: 0;
  ry: 0;
} */
.services__item-image::before,
.services__item-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
  /* transition: opacity 0.4s linear; */
  transition: opacity 0.4s linear;
}
.services__item-image img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.services__item-image::before {
  background-image: url(../images/dekor/circle.svg);
}
.services__item-image::after {
  background-image: url(../images/dekor/square.svg);
  opacity: 0;
}
.services__item-wrapper:hover .services__item-image::before {
  opacity: 0;
}
.services__item-wrapper:hover .services__item-image::after {
  opacity: 1;
}
/* .services__item-text {
  max-height: 0;
  opacity: 0;
  color: var(--white, #fff);
  text-align: center;
  transition: max-height 0.3s linear, opacity 0.4s linear;
} */
.services__item-text {
  height: 0;
  overflow: hidden;
  color: var(--white, #fff);
  opacity: 0;
  text-align: center;
  transition: height 0.45s ease, opacity 0.3s ease;
}
/* .services__item-wrapper:hover .services__item-text {
  max-height: 200px;
  opacity: 1;
} */
.swiper-btn-next {
  padding-left: 20px !important;
}
@media (max-width: 1200px) {
  .services__item-text {
    height: auto;
    opacity: 1;
  }
  .services__item-wrapper:hover .services__item-image::after {
    opacity: 0;
  }
  .services__item-wrapper:hover .services__item-image::before {
    opacity: 1;
  }
  .services__item-wrapper {
    height: auto;
  }
  .services__item-image {
    width: 248px;
    height: 248px;
  }
  .services__item {
    padding: 0 32px;
  }
}
@media (max-width: 992px) {
  .services {
    padding: 8px 0 32px;
  }
  .services .container {
    padding: 0 56px;
  }
  .services .section-title {
    font-size: 29px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.073px;
  }
  .services__wrapper {
    margin-top: 32px;
    overflow: visible;
  }
  .services__item-text {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.035px;
  }
  .services__item-image {
    width: 232px;
    height: 232px;
  }
  .services__btns {
    right: 0;
    left: 0;
  }
  .services__item {
    padding: 0 8px;
  }
}

/* Companies ------------------------------- */
.companies .container {
  padding: 0;
}
.companies__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.companies__item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
  justify-content: center;
  align-items: center;
  min-height: 312px;
  max-height: 312px;
  overflow: hidden;
}
.companies__item-title {
  color: var(--blue-50, #e8f1fa);
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  position: relative;
  padding: 0 16px;
  z-index: 1;
}
.companies__item-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    59.78% 59.78% at 50.1% 40.22%,
    rgba(4, 20, 37, 0.7) 0%,
    rgba(4, 20, 37, 0.1) 100%
  );
  transition: background-color 0.5s ease;
}
.companies__item-image img {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.companies__item-icon {
  position: relative;
  z-index: 1;
}
.companies__item-icon svg {
  width: 72px;
  height: 72px;
}
.companies__item-wrapper:hover .companies__item-image {
  background-color: rgba(4, 20, 37, 0.8);
}
.companies__item-wrapper:hover .companies__item-image img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .companies__item-wrapper {
    min-height: 160px;
    max-height: 160px;
  }
  .companies__item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.021px;
  }
  .companies__item-icon svg {
    width: 42px;
    height: 42px;
  }
}

/* Rent */
.rent {
  background: var(--blue-10, #fbfcfd);
  padding: 8px 0 24px;
}
.rent__header-desc {
  max-width: 1000px;
  text-align: center;
  margin: 8px auto 16px;
}
.rent__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 360px));
  justify-content: center;
  gap: 16px;
}
.rent__item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--blue-600, #1d61a1);
  background: var(--blue-10, #fbfcfd);
}
.rent__item-header {
  padding: 16px 16px 24px 16px;
  flex-grow: 1;
}
.rent__item-state {
  color: var(--blue-800, #103b63);
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
}
.rent__item-title {
  margin: 19px 0 14px;
}
.rent__item-value {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.035px;
  margin-bottom: 6px;
}
.rent__item-name {
  color: var(--blue-800, #103b63);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.048px;
}
.rent__item-sizes {
  display: flex;
  margin: 16px 0;
  padding: 0 16px;
}
.rent__item-size:nth-child(1) {
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid var(--blue-500, #2c89dd);
}
.rent__item-price:nth-child(2) {
  padding: 0 16px;
}
.rent__btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.rent__item-price:nth-last-child(1) {
  padding: 16px;
  background: var(--blue-50, #e8f1fa);
}
@media (max-width: 992px) {
  .rent .section-title {
    font-size: 29px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.073px;
  }
  .rent__items {
    grid-template-columns: repeat(auto-fit, minmax(200px, 270px));
  }
}
@media (max-width: 600px) {
  .rent__items {
    grid-template-columns: 1fr;
  }
}

/* Divisions ----------------------------------- */
.divisions {
  background: var(--blue-600, #1d61a1);
  padding: 16px 0;
}
.divisions__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.divisions__link {
  display: flex;
  justify-content: center;
  min-height: 72px;
  align-items: center;
  padding: 16px 32px;
  color: var(--white, #fff);
  font-family: "Roboto Condensed";
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
  background-color: var(--blue-800, #103b63);
  transition: background-color 0.3s ease;
}
.divisions__link:hover {
  background-color: var(--red-600, #c00);
}
@media (max-width: 768px) {
  .divisions__link {
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.026px;
  }
}

/* Board ---------------------------------------- */
.board {
  background: var(--blue-900, #041425);
  padding-bottom: 16px;
}
.board .section-title {
  color: var(--blue-50, #e8f1fa);
}
.board__items {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(236px, 1fr));
}
.board__item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--blue-600, #1d61a1);
  background: var(--grey-100, #e3e3e3);
}
.board__item-intro {
  color: var(--blue-800, #103b63);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.048px;
  margin-bottom: 16px;
}
.board__item-image {
  width: 100%;
  height: 204px;
  max-width: 204px;
  margin: 0 auto;
}
.board__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.board__item-details {
  flex-grow: 1;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.board__item-title {
  margin-bottom: 10px;
}
.board__item-text {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.035px;
}
@media (max-width: 992px) {
  .board .section-title {
    font-size: 29px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.073px;
  }
  .board__items {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
  }
  .board__item {
    padding: 8px;
    position: relative;
    min-height: 270px;
  }
  .board__item-image {
    height: 144px;
    max-width: 144px;
  }
  .h6.board__item-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.012px;
  }
  .board__item-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(
      180deg,
      rgba(247, 247, 247, 0) 0%,
      rgba(247, 247, 247, 0.7) 43.1%,
      #f7f7f7 100%
    );
  }
}

/* Departments ---------------------------------- */
.departments {
  background: var(--blue-900, #041425);
  position: relative;
}
.departments::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 0;
}
.departments.interaction::after {
  content: none;
}
.departments .container {
  padding: 0;
  border: 16px solid var(--blue-900, #041425);
}
.departments .ymaps-2-1-79-balloon__content {
  padding: 16px;
}
.departments .ymaps-2-1-79-controls-pane {
  display: none !important;
}
.map__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 300px;
}
.item__header {
  color: var(--grey-400, #454545);
  font-family: "Roboto Condensed";
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.026px;
}
.map__item .address,
.map__item .tel {
  display: block;
  min-height: 24px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.08px;
}
.map__item .address::before {
  content: url(../images/icons/address-dark.svg);
  top: -1px;
}
.map__item .tel::before {
  content: url(../images/icons/office-phone-dark.svg);
  top: -1px;
}
.map-label {
  position: absolute;
  top: -6px;
  left: -4px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.08px;
  background: #ffffffd7;
  padding: 4px 8px;
  padding-left: 32px;
  border-radius: 12px;
  display: block;
  z-index: -1;
  max-width: 300px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 992px) {
  #department-map {
    height: 496px !important;
  }
}

/* Кнопка наверх -------------------------------- */
.scrollUp {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 10px;
  background: var(--blue-500, #2c89dd);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25), 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: opacity 0.4s;
}
.scrollUp:hover {
  opacity: 0.8;
}
.scrollUp-show {
  display: block;
}
.scrollUp:hover {
  cursor: pointer;
}

/* Resources */
.resources {
  background: var(--blue-800, #103b63);
  padding-bottom: 24px;
}
.resources__wrapper {
  position: relative;
}
.resources__items {
  padding: 32px 0 24px;
}
.resources__item {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 8px;
  height: 80px;
  padding: 4px 8px;
  background: var(--blue-10, #fbfcfd);
  border: 2px solid transparent;
  transition: border 0.4s, box-shadow 0.4s;
}
.resources__item:hover {
  border: 2px solid var(--red-500, #eb0000);
  box-shadow: 8px 8px 26px 0 rgba(29, 29, 32, 0.1),
    2px 2px 4px 0 rgba(29, 29, 32, 0.25);
}
.resources__item-image {
  min-width: 72px;
  height: 46px;
}
.resources__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.resources__title {
  font-family: "Roboto Condensed";
  color: var(--grey-400, #454545);
  height: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}
.resources__pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  text-align: center;
}
.resources__pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--grey-100, #e3e3e3);
  opacity: 1;
  margin: 0 !important;
}
.resources__pagination .swiper-pagination-bullet-active {
  background: var(--blue-500, #2c89dd);
}
@media (max-width: 600px) {
  .resources {
    padding-bottom: 0;
  }
  .resources__wrapper {
    overflow: visible !important;
  }
  .resources__items {
    padding: 16px 0;
  }
  .resources__pagination {
    display: none;
  }
}

/* Footer ---------------------------------- */
.footer {
  background: var(--blue-900, #041425);
  color: var(--blue-10, #fbfcfd);
  overflow: hidden;
}
/* contacts */
.footer__contacts {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.copy {
  width: 100%;
}
.footer__contacts-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}
.clock span {
  font-weight: 700;
}
/* menu */
.footer__menu {
  position: relative;
  background: var(--black-800, #212121);
  padding: 8px;
  margin-left: -16px;
  width: calc(100% + 32px);
  z-index: 1;
}
.footer__menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  width: 200vw;
  height: 100%;
  background: var(--black-800, #212121);
  z-index: -1;
}
.footer__menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.footer__menu-item a {
  transition: opacity 0.4s;
}
.footer__menu-item a:hover {
  opacity: 0.7;
}
.footer__menu-items > .footer__menu-item:not(.footer__menu-item:last-child) {
  border-right: 1px solid var(--blue-900, #041425);
}
.footer__menu-items > .footer__menu-item:nth-child(1) {
  display: none;
}
.footer__menu-item.deeper > a {
  display: block;
  color: var(--blue-50, #e8f1fa);
  font-family: "Roboto Condensed";
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.026px;
  padding: 16px;
}
.footer__menu-drop a {
  display: block;
  padding: 8px 16px;
  min-height: 48px;
}
/* socials */
.footer__socials {
  padding: 16px 0;
  margin: 0 16px;
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--blue-900, #041425);
}
/* dev */
.footer__dev {
  position: relative;
  background: linear-gradient(0deg, #002d3c 0%, rgba(0, 45, 60, 0) 100%);
}
.footer__dev .button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.copyright-cvr {
  width: fit-content;
  margin: 0 auto;
}
.copyright-cvr,
.copyright-cvr img {
  margin: 0 auto;
}
.copyright-cvr h6 {
  font-family: "Roboto", sans-serif;
}
@media (max-width: 1200px) {
  .footer__menu {
    position: static;
    padding: 0;
    background: transparent;
    display: none;
  }
  .footer__menu-items {
    display: none;
  }
  .footer__contacts-details {
    gap: 12px;
  }
}
@media (max-width: 992px) {
  .footer__menu {
    display: block;
  }
  .footer__socials {
    position: absolute;
    right: 0;
    border: none;
    flex-direction: column;
    top: 0;
    z-index: 111111;
  }
  .footer__contacts-details {
    margin-top: 8px;
  }
  .footer__contacts {
    gap: 16px;
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .footer__contacts {
    padding-bottom: 60px;
  }
  .button-appeal {
    margin: 0 auto;
    position: relative;
    right: -20px;
  }
  .footer__dev .button {
    position: absolute;
    right: 50%;
    top: -50%;
    transform: translateX(50%);
  }
}

/* Inner pages ------------------ */
.inner-page main > section:not(.main) {
  display: none;
}
.content {
  display: flex;
  gap: 32px;
}

/* Sidebar */
.sidebar {
  margin-top: 80px;
  padding: 8px;
  min-width: 350px;
  max-width: 350px;
  min-height: 688px;
  height: min-content;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.035px;
  color: var(--white, #fbfcfd);
  list-style-type: none;
  background: var(--blue-600, #1d61a1);
}
.sidebar a {
  position: relative;
  display: flex;
  min-height: 48px;
  padding: 8px 16px;
  align-items: center;
}
.sidebar a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--blue-500, #2c89dd);
  transition: width 0.3s ease-in-out;
}
.sidebar a:hover::before,
.sidebar li.current.active > a::before {
  width: 100%;
}
.nav-child,
.sidebar > ul > li.active.deeper > a {
  background: var(--blue-800, #103b63);
}
@media (max-width: 1200px) {
  .sidebar {
    margin: 0;
    min-height: auto;
    min-width: calc(100% + 32px);
    margin-left: -16px !important;
  }
}

/* Content ------------------------------ */
blockquote {
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--blue-600, #1d61a1);
  background: var(--blue-50, #e8f1fa);
}
blockquote p:first-child {
  margin-top: 0;
}
blockquote p:last-child {
  margin-bottom: 0;
}
hr {
  width: 100%;
  border-color: var(--blue-200, #9dccef);
  margin: 16px 0;
}
.content__wrapper {
  flex: 1;
}
.category-title {
  position: absolute;
  left: 16px;
}
.content__item {
  padding: 80px 0 32px;
  max-width: 1000px;
  margin: 0 auto;
}
/* .content__item a {
  text-decoration: underline;
  color: var(--blue-600, #1d61a1);
}
.content__item a:hover {
  text-decoration: underline;
  color: var(--blue-800, #103b63);
} */
.content__item-into + .section-title {
  display: none;
}
.hide_text a,
.content__item-into ~ p a {
  text-decoration: underline;
  color: var(--blue-600, #1d61a1);
}
.hide_text a:hover,
.content__item-into ~ p a:hover {
  text-decoration: underline;
  color: var(--blue-800, #103b63);
}
.hide_text a.tel,
.hide_text a.mail,
.hide_text a.tel:hover,
.hide_text a.mail:hover,
.content__item-into ~ p.tel a,
.content__item-into ~ p.mail a,
.content__item-into ~ p.tel a:hover,
.content__item-into ~ p.mail a:hover {
  text-decoration: none;
  color: var(--black-900, #1b1b1b);
}
.content__item:has(.rent__items) {
  max-width: 100%;
}
.content__item .section-title {
  margin-top: 0;
}
.content__item .tel::before {
  content: url(../images/icons/phone.svg);
}
.content__item h3,
.content__item h4,
.content__item h5,
.content__item h6 {
  margin: 16px 0;
}
.content__item p {
  margin: 14px 0;
}
.content__item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 350px;
  min-height: 80px;
  padding: 8px !important;
  margin: 16px auto 0 !important;
  color: var(--grey-400, #454545);
  font-family: "Roboto Condensed";
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.012px;
  border: 1px solid var(--blue-500, #2c89dd);
  background: var(--blue-10, #fbfcfd);
}
.content__item-link::after {
  content: none !important;
}
@media (max-width: 1200px) {
  .content {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .category-title {
    display: none;
  }
  .content__item {
    padding: 0;
    max-width: 100%;
  }
}
/* lists */
.news__item-inner ul,
.news__item-inner ol,
.content__item ul,
.content__item ol {
  margin: 16px 0;
}
.news__item-inner ul li,
.content__item ul li,
.well ul li {
  list-style-type: none;
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
}
.news__item-inner ul li::before,
.content__item ul li:before,
.well ul li::before {
  content: url("/templates/main-template_1.0/images/icons/mark.svg");
  position: absolute;
  left: 0;
  top: -2px;
}
.news__item-inner ol,
.content__item ol {
  counter-reset: myCounter;
  padding-left: 0;
}
.news__item-inner ol li,
.content__item ol li {
  list-style: none;
  margin: 10px 0;
  font-size: 16px;
  line-height: 20px;
  padding-left: 28px;
  position: relative;
}
.news__item-inner ol li::before,
.content__item ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.027px;
  color: var(--blue-500, #2c89dd);
  position: absolute;
  left: -6px;
  top: -1px;
  width: 24px;
  text-align: right;
}
/* cards */
.card__items {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-top: 24px;
}
.card__item {
  background: var(--blue-100, #c5e0f5);
  padding: 0 16px 16px 16px;
}
.card__item h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  min-height: 72px;
}
.hide_text ul,
.card__item ul {
  list-style-type: disc;
  margin: 0;
  margin-left: 16px;
}
.hide_text ul li,
.card__item ul li {
  list-style-type: initial;
  margin: 0;
  padding: 0;
}
.hide_text ul li:before,
.card__item ul li:before {
  content: none !important;
}
.hide_text a[href*="http"],
.hide_text a[href*="https"] {
  padding-left: 0 !important;
  margin: 0 !important;
}
.hide_text a[href*="http"]::after,
.hide_text a[href*="https"]::after {
  content: none !important;
}
/* rent tech */
/* .rent__items--tech .rent__item:nth-child(4),
.rent__items--tech .rent__item:nth-child(6),
.rent__items--tech .rent__item:nth-child(7),
.rent__items--tech .rent__item:nth-child(9) {
  margin-top: -16px;
} */
.rent__items--tech .rent__item-title {
  color: var(--grey-400, #454545);
  margin-top: 0;
}
.rent__items--tech .rent__item-header {
  padding-bottom: 0;
}
.rent__items--tech .rent__item {
  height: min-content;
}
/* rent contacts */
.rent__items--contacts .rent__item {
  padding: 16px;
  height: min-content;
}
.rent__items--contacts .rent__item-title {
  margin: 0;
}
.rent__items--contacts .tel {
  display: flex;
  flex-direction: column;
}
.rent__items--contacts .rent__item:not(:has(.address)) .tel {
  margin-top: 16px;
}
.rent__items--contacts .tel span {
  color: var(--grey-400, #454545);
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.021px;
  margin-bottom: 4px;
}
.rent__items--contacts .tel span + a {
  margin-bottom: 8px;
}
.rent__items--contacts .tel a:last-child {
  margin-bottom: 0;
}
/* Spoiler */
p.spojler::after {
  content: url(../images/icons/expand-arrow.svg);
  position: absolute;
  right: 16px;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  transition: transform 0.5s;
}
p.spojler.active::after {
  transform: rotate(180deg);
}
.link {
  background: transparent;
  margin-bottom: 24px;
  clear: both;
}
.link:last-child {
  margin-bottom: 0;
}
.hide_text {
  display: none;
  padding: 16px;
  background: var(--blue-10, #fbfcfd);
  border-top: none;
  width: 100%;
}
.hide_text p:first-child {
  margin-top: 0;
}
.hide_text p:last-child {
  margin-bottom: 0;
}
.link p.spojler {
  margin: 0;
  position: relative;
  padding: 14px 16px;
  color: var(--blue-10, #fbfcfd);
  font-family: "Roboto Condensed";
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  padding-right: 44px;
  background: var(--blue-600, #1d61a1);
  cursor: pointer;
  transition: all 0.5s;
}
.link .visible_text {
  padding: 0;
}
/* table */
table {
  table-layout: fixed;
  width: 100%;
  display: flex;
  overflow-x: auto;
}
table tbody tr:first-child {
  border: 1px solid var(--blue-500, #2c89dd);
  background: var(--blue-50, #e8f1fa);
  color: var(--blue-800, #103b63);
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
}
table tbody tr:first-child td {
  text-align: center;
  padding: 13px 16px;
}
table tbody tr {
  border: 1px solid var(--blue-500, #2c89dd);
}
table tbody tr td {
  vertical-align: middle;
  padding: 6px 16px;
  width: 2%;
}
@media (max-width: 992px) {
  table {
    table-layout: auto;
  }
}
/* Block price */
.block-price {
  border: 3px solid var(--blue-500, #2c89dd);
  background: var(--blue-50, #e8f1fa);
  padding: 16px;
}
.block-price__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.block-price h5 {
  margin: 0;
}
.block-price p {
  margin: 12px 0;
}
.block-price hr {
  margin-bottom: 0;
}
.block-price p:has(+ .block-price__items) {
  margin-bottom: 0;
}
.block-price__item p {
  margin-bottom: 0;
}

/* News Inner ----------------------- */
/* category */
.news__items--inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news__items--inner .news__item {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0;
}
.news__items--inner .news__item-image {
  min-width: 424px;
  max-width: 424px;
  height: 264px;
  margin: 0;
}
.news__items--inner .news__item-title {
  margin: 19px 0 5px;
}
.news__item-text {
  padding: 16px;
}
.news__items--inner .news__item-intro {
  -webkit-line-clamp: 6;
  margin: 0;
}
@media (max-width: 1200px) {
  .content:has(.news__items--inner) .category-title {
    display: block;
    font-size: 29px;
    line-height: 38px;
    letter-spacing: 0.073px;
    text-align: center;
    position: static;
    margin-bottom: 16px;
  }
  .news__item-inner {
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .news__items--inner .news__item {
    flex-direction: column-reverse;
  }
  .news__items--inner .news__item-image {
    min-width: 100%;
    max-width: max-content;
    height: 200px;
  }
  .news__item-title {
    font-size: 20px;
    line-height: 26px;
  }
}
/* item */
.content:has(.news__item-inner) .sidebar {
  margin: 0;
}
.news__inner-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--white, #fff);
  padding: 16px;
  margin-bottom: 16px;
}
.news__item-inner p {
  margin: 14px 0;
}
.news__item-full {
  background: var(--white, #fff);
  padding: 16px;
  margin-bottom: 16px;
}
.news__item-intro p:first-child,
.news__item-full p:first-child {
  margin-top: 0;
}
.news__item-intro p:last-child,
.news__item-full p:last-child {
  margin-bottom: 0;
}
.news__inner-image {
  width: 384px;
  min-width: 384px;
  height: 240px;
}
.news__inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__item-inner .news__item-title {
  margin: 9px 0 16px;
  color: var(--blue-900, #041425);
}
.itemVideoBlock {
  margin-bottom: 24px;
}
.block_social_row {
  margin-bottom: 24px;
}
.block_social_row ul {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--grey-400, #454545);
  font-family: "Roboto Condensed";
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.012px;
  margin: 0;
}
.block_social_row ul li {
  margin: 0;
  padding-left: 0;
}
.block_social_row ul li::before {
  content: none;
}
@media (max-width: 1200px) {
  .news__item-inner {
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .news__inner-header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .news__item-inner .news__item-title {
    font-size: 20px;
    line-height: 26px;
  }
  .news__inner-image {
    height: 205px;
    min-width: auto;
    width: calc(100% + 32px);
    max-width: 384px;
    margin-left: -16px;
    margin-bottom: -16px;
  }
}

/* Панель cookies */
.show--consent #cc-main .cc--anim .cm--bar {
  max-width: 60%;
  margin: 0 auto;
}
#cc-main .cm {
  border-radius: 0px !important;
  background: var(--white, #fff) !important;
  box-shadow: 6px 6px 16px 0px rgba(0, 0, 0, 0.15),
    1px 1px 3px 0px rgba(0, 0, 0, 0.3) !important;
}
#cc-main .cm__btns,
#cc-main .cm__title {
  padding: 0 !important;
}
#cc-main .cm__title {
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 20px;
  letter-spacing: 0.08px;
}
.cm__btns .cm__btn {
  width: max-content !important;
}
#cc-main .cm--bar .cm__btn {
  min-width: unset !important;
  border-radius: 0px !important;
}
.cm__body {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.cm__btns .cm__btn-group:first-child .cm__btn {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.175px;
  text-transform: uppercase !important;
}
.cm__btns .cm__btn-group:first-child .cm__btn {
  border-radius: 0;
  background: var(--main-2) !important;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.15),
    1px 1px 2px 0px rgba(0, 0, 0, 0.3) !important;
  color: var(--black-900, #1b1b1b) !important;
}
.cm__btns .cm__btn-group:first-child .cm__btn--secondary {
  color: var(--main-1) !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.cm__btns .cm__btn-group:first-child .cm__btn.cm__btn--secondary span {
  position: relative !important;
  padding-left: 27px !important;
}
.cm__btns .cm__btn-group:first-child .cm__btn.cm__btn--secondary span::before {
  content: "" !important;
  /* background: url(/templates/main-template_1.0/images/icons/cancel.svg) !important; */
  width: 18px !important;
  height: 18px !important;
  position: absolute !important;
  background-size: contain !important;
  left: 0px !important;
}
.cm__btns .cm__btn-group:last-child .cm__btn:last-child {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  color: var(--main-0) !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none !important;
  letter-spacing: 0.08px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* Pagination ---------------------------------- */
div.k2Pagination {
  padding-top: 16px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div.k2Pagination ul,
.page_pagination ul.pagination-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 24px 0 0;
  padding-left: 0;
}
@media (max-width: 992px) {
  div.k2Pagination {
    margin-bottom: 24px;
  }
  div.k2Pagination ul,
  .page_pagination ul.pagination-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
ul.pagination-list + .clr {
  display: none;
}
.page_pagination ul.pagination-list {
  border-top: 0px;
}
div.k2Pagination ul li,
.page_pagination ul.pagination-list li {
  list-style: none;
  display: list-item;
  float: left;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.0025em;
  color: #1b1b1b;
  margin: 0;
  padding: 0;
  margin-right: 24px;
}
.page_pagination ul.pagination-list li::before {
  content: none;
}
.page_pagination ul.pagination-list li.active a {
  color: #8a8a8a;
}
div.k2Pagination ul li a,
.page_pagination ul.pagination-list li a {
  display: block;
  color: #28422f;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.188px;
  text-transform: uppercase;
}
div.k2Pagination ul li a:hover,
.page_pagination ul.pagination-list li a:hover {
  text-decoration: none;
  color: #a4a4a4;
}
div.k2Pagination ul li a .icon-first::after,
.page_pagination ul.pagination-list li a span.icon-first::after {
  content: url(../images/icons/d-chevron-left.svg);
}
div.k2Pagination ul li a .icon-previous::after,
.page_pagination ul.pagination-list li a span.icon-previous::after {
  content: url(../images/icons/chevron-left.svg);
}
div.k2Pagination ul li a .icon-next::before,
.page_pagination ul.pagination-list li a span.icon-next::before {
  content: url(../images/icons/chevron-right.svg);
}
div.k2Pagination ul li a .icon-last::before,
.page_pagination ul.pagination-list li a span.icon-last::before {
  content: url(../images/icons/d-chevron-right.svg);
}
div.k2Pagination ul li.active a,
.page_pagination ul.pagination-list li.active a {
  text-decoration: none;
  color: #769885;
}

/* Gallery ------------------ */
.itemImageGallery {
  margin-top: 24px;
}
li.sigProClear {
  display: none;
}
.itemImageGallery h3 {
  display: none;
}
ul.sigProClassic {
  margin: 0 !important;
  background: var(--white, #fff);
  padding: 16px !important;
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
ul.sigProClassic li.sigProThumb span.sigProLinkOuterWrapper {
  width: 100%;
}
ul.sigProClassic li.sigProThumb {
  margin: 0;
}
ul.sigProContainer li::before {
  content: none;
}
ul.sigProClassic li.sigProThumb span.sigProLinkOuterWrapper {
  padding: 0;
}
ul.sigProClassic li.sigProThumb span.sigProLinkWrapper {
  background: transparent;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
ul.sigProClassic li.sigProThumb a.sigProLink img.sigProImg {
  width: 100% !important;
  height: 100% !important;
  background-size: cover;
}
ul.sigProClassic li.sigProThumb a.sigProLink {
  width: 100% !important;
  max-width: 476px;
  height: 296px !important;
}
@media (max-width: 1200px) {
  ul.sigProClassic li.sigProThumb a.sigProLink {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  ul.sigProClassic li.sigProThumb a.sigProLink {
    height: 200px !important;
  }
}

/* Docs icon ------------------------------ */
.content__item ul li:has(a[href*="http"]),
.content__item ul li:has(a[href*="https"]),
.content__item ul li:has(a[href*="pdf"]),
.content__item ul li:has(a[href*="docx"]),
.content__item ul li:has(a[href*="doc"]),
.content__item ul li:has(a[href*="zip"]),
.content__item ul li:has(a[href*="rar"]),
.content__item ul li:has(a[href*="jpg"]),
.content__item ul li:has(a[href*="jpeg"]),
.content__item ul li:has(a[href*="png"]),
.content__item ul li:has(a[href*="gif"]) {
  padding-left: 0px;
}
.content__item ul li:has(a[href*="http"]):before,
.content__item ul li:has(a[href*="https"]):before,
.content__item ul li:has(a[href*="pdf"]):before,
.content__item ul li:has(a[href*="docx"]):before,
.content__item ul li:has(a[href*="doc"]):before,
.content__item ul li:has(a[href*="zip"]):before,
.content__item ul li:has(a[href*="rar"]):before,
.content__item ul li:has(a[href*="jpg"]):before,
.content__item ul li:has(a[href*="jpeg"]):before,
.content__item ul li:has(a[href*="png"]):before,
.content__item ul li:has(a[href*="gif"]):before {
  content: "";
}
.content__item a[href$="pdf"],
.content__item a[href$="doc"],
.content__item a[href$="docx"],
.content__item a[href$="zip"],
.content__item a[href$="rar"],
.content__item a[href$="jpg"],
.content__item a[href$="jpeg"],
.content__item a[href$="png"],
.content__item a[href$="gif"],
.content__item a[href*="http"],
.content__item a[href*="https"] {
  position: relative;
  padding-left: 32px;
  display: inline-block;
}
.content__item a[href$="pdf"]::after,
.content__item a[href$="doc"]::after,
.content__item a[href$="docx"]::after,
.content__item a[href$="zip"]::after,
.content__item a[href$="rar"]::after,
.content__item a[href$="jpg"]::after,
.content__item a[href$="jpeg"]::after,
.content__item a[href$="png"]::after,
.content__item a[href$="gif"]::after,
.content__item a[href*="http"]::after,
.content__item a[href*="https"]::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.content__item a[href$="pdf"]::after {
  background-image: url(../images/icons/pdf.svg);
}
.content__item a[href$="doc"]::after {
  background-image: url(../images/icons/doc.svg);
}
.content__item a[href$="docx"]::after {
  background-image: url(../images/icons/docx.svg);
}
.content__item a[href$="zip"]::after,
.content__item a[href$="rar"]::after {
  background-image: url(../images/icons/archive.svg);
}
.content__item a[href$="jpg"]::after {
  background-image: url(../images/icons/jpg.svg);
}
.content__item a[href$="jpeg"]::after {
  background-image: url(../images/icons/jpeg.svg);
}
.content__item a[href$="png"]::after {
  background-image: url(../images/icons/png.svg);
}
.content__item a[href$="gif"]::after {
  background-image: url(../images/icons/video-file.svg);
}
.content__item a[href*="http"]::after,
.content__item a[href*="https"]::after {
  background-image: url(../images/icons/website_24.svg);
}
/* убираем там, где они не нужны */
.content__item li a[href$=".pdf"]::after,
.content__item ul li a[href$=".doc"]::after,
.content__item ul li a[href$="docx"]::after,
.content__item ul li a[href$="zip"]::after,
.content__item ul li a[href$="rar"]::after,
.content__item ul li a[href$=".jpg"]::after,
.content__item ul li a[href$="jpeg"]::after,
.content__item ul li a[href$="png"]::after,
.content__item ul li a[href$="gif"]::after,
.content__item ul li a[href*="http"]::after,
.content__item ul li a[href*="https"]::after,
.content__item .itemImageGallery a[href$=".jpg"]::after,
.content__item .itemImageGallery a[href$=".jpeg"]::after,
.content__item .itemImageGallery a[href$=".png"]::after {
  content: none;
}
.content__item ul li a[href$=".pdf"],
.content__item ul li a[href$=".doc"],
.content__item ul li a[href$="docx"],
.content__item ul li a[href$="zip"],
.content__item ul li a[href$="rar"],
.content__item ul li a[href$=".jpg"],
.content__item ul li a[href$="jpeg"],
.content__item ul li a[href$="png"],
.content__item ul li a[href*="http"],
.content__item ul li a[href*="https"],
.content__item .itemImageGallery a[href$=".jpg"],
.content__item .itemImageGallery a[href$=".jpeg"],
.content__item .itemImageGallery a[href$=".png"],
.content__item ul li a[href$="gif"] {
  padding: 0;
  margin: 0;
}

/* search */
.main:has(.genericView) .breadcrumb {
  display: none;
}
.content:has(.genericView) .sidebar {
  display: none;
}
.genericView {
  padding: 32px 0;
}
.genericItemView:has(+ .genericItemView) {
  margin-bottom: 16px;
}
.genericView h1 {
  margin: 32px 0;
  line-height: 28px;
}
.genericItemView {
  background: var(--white, #fff);
  padding: 16px;
}
.genericItemTitle {
  padding: 16px 0 10px;
}
.genericItemCategory {
  margin-top: 16px;
}
.genericItemCategory a {
  color: var(--blue-500, #2c89dd);
  font-family: "Roboto Condensed";
  font-size: 600;
}
.genericItemDateCreated {
  color: var(--blue-500, #2c89dd);
  text-transform: uppercase;
  font-size: 12px;
}
.genericView .k2-input {
  padding: 9px 8px 10px;
  min-width: 300px;
}
.genericView .k2-submit {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.175px;
  text-align: center;
  padding: 10px 24px;
  text-transform: uppercase;
  color: var(--red-800, #900);
  box-shadow: 0 0 0 1px var(--red-800, #900);
  background: rgba(255, 255, 255, 0);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    background 0.3s ease-in-out;
  border: none;
}
.genericView .k2-submit:hover,
.genericView .k2-submit:focus,
.genericView .k2-submit:active {
  color: var(--red-600, #c00);
  box-shadow: 0 0 0 2px var(--red-600, #c00);
  background: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
@media (max-width: 600px) {
  .genericView .k2-input {
    min-width: 100%;
  }
  .genericView .k2-submit {
    margin-top: 8px;
  }
  .genericView h1 {
    font-size: 24px;
    line-height: 26px;
    margin: 16px 0;
  }
  .genericItemTitle {
    font-size: 20px;
    line-height: 24px;
  }
}

/* Sitemap */
.contentpaneopen .menutitle,
.contentpaneopen img {
  display: none;
}
.contentpaneopen ul {
  margin: 16px 0;
}
.contentpaneopen ul li {
  list-style-type: none;
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
}
.contentpaneopen ul li::before {
  content: url("/templates/main-template_1.0/images/icons/mark.svg");
  position: absolute;
  left: 0;
  top: -2px;
}
.contentpaneopen a {
  transition: opacity 0.3s, color 0.3s;
}
.contentpaneopen a:hover {
  opacity: 0.7;
  color: var(--blue-900, #041425);
}
.header--error h1 {
  display: none;
}
h1.page-header {
  margin-bottom: 16px;
}
.well p {
  margin: 12px 0;
}
@media (max-width: 453px) {
.box_rucovoditel{
  flex-wrap: wrap; 
  justify-content: center; 
  align-items: center; 
  text-align: center;
}
}