@charset "UTF-8";
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto Slab", sans-serif;
  color: #1C1C1C;
  min-width: 320px;
}

a {
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding: 0;
}

main {
  min-height: 100vh;
  margin-top: 30px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

.header {
  padding: 20px 0 5px;
}

.title {
  font-family: "Lora", serif;
  font-weight: 500;
  text-align: center;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 26px;
  }
}

.grid-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
  margin: 40px auto 60px auto;
  grid-column-gap: 15px;
  grid-row-gap: 1em;
}
@media screen and (max-width: 1200px) {
  .grid-cover {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .grid-cover {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .grid-cover {
    grid-template-columns: 1fr;
  }
}

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

@media screen and (max-width: 768px) {
  .logo {
    flex-direction: column;
    max-width: 300px;
  }
}

.header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container form{
  width: 230px;
}

.hamburger {
  padding: 15px 15px;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .hamburger {
    display: inline-block;
  }
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #1C1C1C;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #1C1C1C;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
 * * ========================================================================== */
/**
 * * 1. Correct the line height in all browsers.
 * * 2. Prevent adjustments of font size after orientation changes in iOS. */
html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
 * * ========================================================================== */
/**
 * * Remove the margin in all browsers. */
body {
  margin: 0;
}

/**
 * * Render the `main` element consistently in IE. */
main {
  display: block;
}

/**
 * * Correct the font size and margin on `h1` elements within `section` and
 * * `article` contexts in Chrome, Firefox, and Safari. */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * * ========================================================================== */
/**
 * * 1. Add the correct box sizing in Firefox.
 * * 2. Show the overflow in Edge and IE. */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * * 1. Correct the inheritance and scaling of font size in all browsers.
 * * 2. Correct the odd `em` font sizing in all browsers. */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
 * * ========================================================================== */
/**
 * * Remove the gray background on active links in IE 10. */
a {
  background-color: transparent;
}

/**
 * * 1. Remove the bottom border in Chrome 57-
 * * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * * Add the correct font weight in Chrome, Edge, and Safari. */
b, strong {
  font-weight: bolder;
}

/**
 * * 1. Correct the inheritance and scaling of font size in all browsers.
 * * 2. Correct the odd `em` font sizing in all browsers. */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * * Add the correct font size in all browsers. */
small {
  font-size: 80%;
}

/**
 * * Prevent `sub` and `sup` elements from affecting the line height in
 * * all browsers. */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
 * * ========================================================================== */
/**
 * * Remove the border on images inside links in IE 10. */
img {
  border-style: none;
}

/* Forms
 * * ========================================================================== */
/**
 * * 1. Change the font styles in all browsers.
 * * 2. Remove the margin in Firefox and Safari. */
button, input, optgroup, select, textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * * Show the overflow in IE.
 * * 1. Show the overflow in Edge. */
button, input {
  /* 1 */
  overflow: visible;
}

/**
 * * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * * 1. Remove the inheritance of text transform in Firefox. */
button, select {
  /* 1 */
  text-transform: none;
}

/**
 * * Correct the inability to style clickable types in iOS and Safari. */
button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

/**
 * * Remove the inner border and padding in Firefox. */
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * * Restore the focus styles unset by the previous rule. */
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * * Correct the padding in Firefox. */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * * 1. Correct the text wrapping in Edge and IE.
 * * 2. Correct the color inheritance from `fieldset` elements in IE.
 * * 3. Remove the padding so developers are not caught out when they zero out
 * *    `fieldset` elements in all browsers. */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * * Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  vertical-align: baseline;
}

/**
 * * Remove the default vertical scrollbar in IE 10+. */
textarea {
  overflow: auto;
}

/**
 * * 1. Add the correct box sizing in IE 10.
 * * 2. Remove the padding in IE 10. */
[type=checkbox], [type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * * Correct the cursor style of increment and decrement buttons in Chrome. */
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * * 1. Correct the odd appearance in Chrome and Safari.
 * * 2. Correct the outline style in Safari. */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * * Remove the inner padding in Chrome and Safari on macOS. */
/**
 * * 1. Correct the inability to style clickable types in iOS and Safari.
 * * 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
 * * ========================================================================== */
/* * Add the correct display in Edge, IE 10+, and Firefox. */
details {
  display: block;
}

/* * Add the correct display in all browsers. */
summary {
  display: list-item;
}

/* Misc
 * * ========================================================================== */
/**
 * * Add the correct display in IE 10+. */
template, [hidden] {
  display: none;
}

/**
 * * Add the correct display in IE 10. */
.header {
  background-color: #2C4FAD;
}
.header .header-container {
  margin-bottom: 8px;
}
@media screen and (max-width: 992px) {
  .header .header-container {
    flex-direction: column;
    margin-bottom: 15px;
  }
}

.logo {
  width: 390px;
}
@media screen and (max-width: 992px) {
  .logo {
    margin-bottom: 20px;
  }
}

.logo-txt {
  margin-left: 6px;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

@media screen and (max-width: 768px) {
  .logo-txt {
    font-size: 18px;
  }
}

.links-wrapper {
  display: flex;
  flex-direction: column;
}

.cover {
  display: flex;
  align-items: center;
  max-width: 665px;
}
@media screen and (max-width: 768px) {
  .cover {
    flex-direction: column;
  }
}

.oldSite a{
  color: #fff !important;
  font-weight: 500;
  font-size: 12px;
  opacity: 0.6;
}

.oldSite a:hover{
  opacity: 1;
}

.langBtns-cover {
  margin: auto 15px auto auto;
}
@media screen and (max-width: 768px) {
  .langBtns-cover {
    margin: 5px auto;
  }
}
.langBtns-cover a {
  color: #ffffff !important;
  font-size: 15px;
  line-height: 16px;
  position: relative;
  margin-right: 6px;
  font-weight: lighter;
}

.langBtns-cover a:active {
  font-weight: 700;
}

.langBtns-cover a:last-child {
  margin-right: 0;
}
.langBtns-cover a:first-child::after {
  content: "";
  height: 16px;
  width: 1px;
  background: #ffffff;
  position: absolute;
  top: 0;
  right: -5px;
}
@media screen and (max-width: 768px) {
  .langBtns-cover a {
    font-size: 14px;
  }
}

.registerBtns-cover {
  margin: auto 15px;
}
@media screen and (max-width: 768px) {
  .registerBtns-cover {
    margin: 5px auto;
  }
}
.registerBtns-cover a {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  position: relative;
  margin-right: 10px;
}
.registerBtns-cover a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .registerBtns-cover a {
    font-size: 14px;
  }
}
.socialNavs {
  width: 140px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .socialNavs {
    margin: 5px auto;
    text-align: center;
  }
}
.socialNavs a {
  display: inline-block;
  margin-right: 8px;
  height: 28px;
  width: 28px;
  text-align: center;
  border-radius: 3px;
  position: relative;
}

.socialNavs a img {
  position: absolute;
  top: 6px;
  left: 6px;
}

.socialNavs a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .socialNavs a {
    margin-right: 12px;
  }
}


.telegram-base {
  background: #27a3e2;
  color: #fff;
}

.facebook {
  background: #022290;
  color: #fff;
}

.instagram-base {
  background: radial-gradient(circle farthest-corner at 32% 106%, #ffe17d 0, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), linear-gradient(135deg, #234bd7 12%, #c33cbe 58%);
  color: #fff;
}


.helpline{
  margin-top: 15px;
}

.helpline a{
  color: #fff;
}

/*ВЕРСИЯ ДЛЯ СЛАБОВИДЯЩИХ*/

.visImp {
  align-items: center;
  font-size: 16px;
  margin-right: 26px;
  padding-top: 10px;
  color: #ffffff;
}

.visImp a:hover{
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .visImp {
    padding: 0px 20px;
    margin: 15px auto;
  }
}

.visImp__icon {
  margin-right: 10px;
  flex: 0 0 auto;
}

.container-fluid {
  justify-content: flex-end !important;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.inner::before {
  top: -10px;
}
.inner::after {
  bottom: -10px;
}

.inner, .inner::before, .inner::after {
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.inner::before, .inner::after {
  content: "";
  display: block;
}

.navbar-toggler .inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.navbar-toggler .inner::before {
  transition-property: top, opacity;
}
.navbar-toggler .inner::after {
  transition-property: bottom, transform;
}
.navbar-toggler.is-active .inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.navbar-toggler.is-active .inner::before {
  top: 0;
  opacity: 0;
}
.navbar-toggler.is-active .inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

.navbar-toggler .inner::before, .navbar-toggler .inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

@media screen and (min-width: 1200px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-toggle::after {
  position: absolute;
  top: 19px;
  right: 1px;
}

.dropdown-menu {
  padding: 0;
  border-radius: 3px;
}

.dropdown-menu li {
  position: relative;
}
.dropdown-menu .dropdown-submenu {
  display: none !important;
  position: absolute;
  left: 100%;
  top: 0;
}
.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
  display: block !important;
}

@media screen and (max-width: 1200px) {
  .dropdown-submenu {
    position: relative !important;
    left: auto !important;
    top: auto !important;
  }
}

.dropdown-item {
  padding: 12px 20px;
}
@media screen and (max-width: 992px) {
  .dropdown-item {
    font-size: 14px;
  }
}

.dropdown-item:hover {
  background-color: #2C4FAD;
  color: #fff;
}

.large-menu-item {
  padding: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 992px) {
  .large-menu-item {
    padding: 8px;
  }
}
.large-menu-item .wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .large-menu-item .wrap {
    flex-direction: column;
  }
}
.large-menu-item .wrap hr {
  border-color: #eee;
}
.large-menu-item .wrap .col {
  flex-basis: auto;
  padding: 0 8px;
}
.large-menu-item .wrap .col .large-menu-title {
  padding: 10px 0 0;
  display: block;
  position: relative;
}
.large-menu-item .wrap .col .large-menu-title h4 {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .large-menu-item .wrap .col .large-menu-title h4 {
    font-size: 16px;
  }
}
.large-menu-item .wrap .col .large-menu-title h4 hr {
  border-width: 4px;
  margin-bottom: 0;
}
.large-menu-item .wrap .col .large-menu-title hr {
  border-top: 3px solid #eeeeee;
  border-bottom: 3px solid #eeeeee;
  margin-top: 20px;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  opacity: 1;
}

.large-menu-title hr::before {
  width: 80px;
  display: block;
  height: 4px;
  position: relative;
  content: "";
  top: -3px;
  background: #2C4FAD !important;
}
.large-menu-title hr::before .large-menu-links {
  padding: 20px 0 0;
}

.navbar-expand-xl .navbar-nav .nav-link {
  padding: 8px 13px;
  transition: 0.3s;
}

.nav-link:focus, .nav-link:hover {
  color: #fff;
}

.navbar-nav .nav-link.active, .navbar-nav .show > .nav-link {
  color: #fff;
  font-weight: 600;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8117647059);
  font-size: 16px;
}

.btn-outline-success {
  position: relative;
  font-size: 14px;
  background: #ffffff;
  color: #2C4FAD;
  display: inline-block;
  font-weight: 400;
  padding: 7px 12px;
  text-align: center;
  border: 1px solid transparent;
  line-height: 1.5;
  border-radius: 0 0.25rem 0.25rem 0;
}
.btn-outline-success::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 20px;
  background-color: #2f5aa8;
  transform: translateY(-50%);
}
.btn-outline-success:hover {
  background: #ffffff;
  border-color: #fff;
  color: #2C4FAD;
}

.form-control {
  border-radius: 0.25rem 0 0 0.25rem;
  margin-right: 0 !important;
  border: none;
}

.footer {
  background-color: #2C4FAD;
  padding: 30px 0 0;
  margin-top: 80px;
}

.footer-items {
  margin-top: 25px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .footer-items {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media screen and (max-width: 480px) {
  .footer-items {
    flex-direction: column;
    justify-content: start;
  }
}

.footer-item {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .footer-item {
    margin: 10px 0;
  }
}
.footer-item a {
  color: #fff !important;
}
.footer-item ul li {
  margin-bottom: 10px;
}

.footer-info {
  max-width: 295px;
}

.telegram, .facebook {
  margin-right: 10px;
}

.list-heading {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}



.partner-block p {
  color: #fff;
  font-size: 13px;
}

.copyright {
  background: #2144A2;
  padding: 5px 0;
  text-align: center;
  margin-top: 25px;
}
.copyright p {
  margin: auto;
  font-size: 12px;
  color: #fff;
}

.banner {
  margin-top: 30px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .banner {
    flex-direction: column;
    align-items: center;
  }
}

.banner-block {
  width: 100%;
  margin: auto;
}

/*СЛАЙДЕР НОВОСТЕЙ*/
section.news-slider {
  margin: 30px auto;
}

.main-slider {
  min-width: 0;
  position: relative;
}
.main-slider .slick-arrow {
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 10;
}
.main-slider .slick-prev {
  left: 0;
}
.main-slider .slick-next {
  right: 0;
}
.main-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider .slick-dots li {
  list-style: none;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.main-slider .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #2C4FAD;
}
.main-slider .slick-dots button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.main-slider .slick-dots button::before {
  font-family: "slick";
  font-size: 35px;
  line-height: 20px;
  position: absolute;
  top: 20px;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  color: #d7d7d7;
  -webkit-font-smoothing: antialiased;
}

.main-slider-item {
  width: 100%;
  max-width: 1280px;
  cursor: grab;
  display: grid !important;
  grid-template-columns: 370px 880px;
  grid-gap: 30px;
}
@media screen and (max-width: 992px) {
  .main-slider-item {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
}

.main-slider__article {
  background-color: #F2F4F8;
  width: 100%;
  max-width: 370px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  height: 480px;
  border-radius: 4px;
}
@media screen and (max-width: 1200px) {
  .main-slider__article .main-slider__article {
    height: 400px;
  }
}
@media screen and (max-width: 992px) {
  .main-slider__article {
    width: 100%;
    max-width: 100%;
    height: auto;
    align-items: center;
    text-align: center;
  }
}

.article-date {
  text-align: right;
  color: #616161;
  font-size: 16px;
  margin-bottom: 10px;
}

.article-heading {
  font-weight: 600;
  font-size: 20px;
  color: #1F3C88;
  line-height: 1.2;
  margin-bottom: 10px;
}
.article-heading:hover {
  color: #2d57c1;
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .article-heading {
    font-size: 16px;
  }
}

.article-text {
  margin-bottom: 15px;
  color: #616161;
}
@media screen and (max-width: 1200px) {
  .article-text {
    font-size: 12px;
  }
}

.main-slider__img-cover {
  width: 100%;
  max-width: 880px;
  border-radius: 4px;
}
@media screen and (max-width: 992px) {
  .main-slider__img-cover {
    width: 100%;
    max-width: 100%;
    height: 180px;
  }
}

.main-slider__img {
  width: 100%;
  height: 480px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  border-radius: 4px;
}
@media screen and (max-width: 992px) {
  .main-slider__img {
    height: 180px;
  }
}

.article-button {
  font-size: 16px;
  font-weight: 700;
  color: #2C4FAD;
}
@media screen and (max-width: 1200px) {
  .article-button {
    font-size: 12px;
  }
}
.article-button::after {
  position: relative;
  display: inline-flex;
  content: "";
  margin-left: 5px;
  width: 12px;
  height: 12px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  background-image: url(../imgs/chevron-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  bottom: -1px;
}


.block-mera {
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .block-mera {
    margin-top: 30px;
  }
}

/*БЛОК МЕРА*/

.merImg-cover {
  width: 290px;
  height: 390px;
  overflow: hidden;
}

.mer-img {
  width: 290px;
  height: 390px;
  object-fit: cover;
}

.mer-info {
  text-align: center;
  padding: 20px;
  background: #F6FAFF;
}
.mer-info p {
  font-weight: 500;
  color: #444;
  font-size: 14px;
}
.mer-info a {
  font-weight: 600;
  font-size: 18px;
}

.news-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.block-top-line {
  position: relative;
}

.block-title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.13em;
  border-bottom: 1px solid #B7B7B7;
  margin-bottom: 30px;
  color: #2C4FAD;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.block-title::before {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #2C4FAD;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.news-blocks-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 30px;
  justify-items: center;
}
@media screen and (max-width: 1200px) {
  .news-blocks-cover {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .news-blocks-cover {
    grid-template-columns: 1fr;
  }
}

.news-block__img-cover {
  width: 295px;
  height: 170px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  margin: auto auto 20px;
}

.news-block__img {
  height: 170px;
  width: 295px;
  object-fit: cover;
}

.news-block-details {
  width: 295px;
  margin: auto;
}

.news-block-date_cover {
  display: flex;
  align-items: center;
  font-size: 10px;
  margin-bottom: 10px;
  line-height: 1.2;
  border-left: 1px solid #2C4FAD;
  padding-left: 5px;
}

.news-block-date {
  font-size: 14px;
  color: #858585;
}

.clock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.clock::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../imgs/clock.svg);
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  bottom: 1px;
  margin-right: 5px;
}

.news-block-item-title {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-weight: bold;
  color: #333;
  min-height: 88px;
}

.news-block-item-title a:hover {
  color: #2C4FAD;
}

.news-section .row {
  justify-content: center;
  margin-top: 40px;
}

.news-more-btn {
  color: #2C4FAD;
  padding: 15px 20px;
  border: 1px solid #2C4FAD;
  font-weight: bold;
  transition: 0.3s;
  background-color: #fff;
  text-decoration: none;
  width: auto;
}
.news-more-btn:hover {
  color: #fff;
  background-color: #2C4FAD;
}

section.services-blocks {
  margin: 120px auto;
}

.services-bloks-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  column-gap: 15px;
  row-gap: 20px;
}
@media screen and (max-width: 1200px) {
  .services-bloks-cover {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .services-bloks-cover {
    grid-template-columns: 1fr;
  }
}
.services-bloks-cover #item3 {
  width: 320px;
}
.services-bloks-cover a {
  background: #ffffff;
  width: 285px;
  margin: auto;
  padding: 20px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  color: #2C4FAD;
}
@media screen and (max-width: 1200px) {
  .services-bloks-cover a {
    margin: 0;
    width: 100% !important;
  }
}
.services-bloks-cover a:hover {
  box-shadow: 0px 0px 4px rgba(45, 128, 244, 0.202), 0px 4px 8px rgba(45, 128, 244, 0.202);
}
.services-bloks-cover a .service-blok {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-bloks-cover a .service-blok img {
  margin-right: 1rem;
}
.services-bloks-cover a .service-blok h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}


/*ПОЛЕЗНЫЕ ССЫЛКИ*/
.links-section {
  margin-bottom: 150px;
}

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

.link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #2C4FAD;
  border-radius: 6px;
  flex-direction: column-reverse;
  text-align: center;
}
.link-item a {
  color: #ffffff;
  max-width: 294px;
}
.link-item a:hover {
  text-decoration: underline;
}
.link-item img {
  margin-left: 8px;
  width: 55px !important;
  display: block;
}

@media screen and (max-width: 960px) {
  .links-grid, .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  .links-grid, .content-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.videos-section {
  margin-bottom: 150px;
}

.video-blocks-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 30px;
  justify-items: center;
}
@media screen and (max-width: 1200px) {
  .video-blocks-cover {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .video-blocks-cover {
    grid-template-columns: 1fr;
  }
}
.video-blocks-cover .video-img {
  width: 295px;
  height: 170px;
  overflow: hidden;
}
.video-blocks-cover .video-img img {
  width: 295px;
  height: 170px;
  object-fit: cover;
}

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

.inline-gallery {
  margin-top: 50px;
}
.inline-gallery .justify-content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inline-gallery .col-lg-12 {
  float: none;
}

.inline-gallery-container {
  width: 100%;
  height: 100%;
  padding-bottom: 65%;
}
.inline-gallery-container .gallery-item {
  width: 200px !important;
  height: 231px;
  padding: 5px;
  overflow: hidden;
}

.gallery-container {
  width: 100%;
  height: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .gallery-container {
    height: 400px;
  }
}

.breadcrumb-nav {
  margin-top: 30px;
  margin-bottom: 40px;
}

ul.breadcrumb li:last-child a {
  color: #999;
}

.history-section .gallery-container {
  margin-bottom: 30px;
  padding: 0 10px;
}

.content-cover {
  overflow-x: auto;
}
.content-cover table {
  width: 90%;
  margin: 0 auto;
}
.content-cover table tr td {
  padding: 15px 20px;
  border-bottom: 1px solid #d6d6d6;
}

.content-container {
  display: grid;
  grid-template-columns: 450px 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 25px;
}
@media screen and (max-width: 992px) {
  .content-container {
    grid-template-columns: 300px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .content-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.content-container .content-image-wrap {
  width: 450px;
  height: 450px;
}
@media screen and (max-width: 992px) {
  .content-container .content-image-wrap {
    width: 300px;
    height: 300px;
  }
}
.content-container .content-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.temp-section table {
  margin: 50px auto;
  width: 100%;
  border: 1px solid #CEE1FB;
  border-radius: 3px !important;
}
.temp-section table th {
  text-transform: uppercase;
  color: #2C4FAD;
  font-weight: 500;
  text-align: center;
}
.temp-section table th, .temp-section table td {
  padding: 10px;
  border: 1px solid #CEE1FB;
}

.card {
  position: relative;
  justify-self: center;
  height: max-content;
  width: 255px;
  border: none;
  border-radius: 0;
}

.card-img_cover {
  width: 255px;
  height: 350px;
}

.card-img {
  width: 255px;
  height: 350px;
  object-fit: cover;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card-info_cover {
  padding: 1.25rem;
  background: #f8fbff;
}

.card-title {
  font-weight: 600;
  color: #2C4FAD;
  margin: 0 0 5px 0;
  font-size: 18px;
  cursor: pointer;
}
.card-title:hover {
  text-decoration: underline;
}

.card-status {
  color: #444;
  position: relative;
  padding-top: 10px;
  font-size: 14px;
  margin: 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 350px 1fr;
  grid-column-gap: 30px;
}
@media screen and (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 210px 1fr;
  }
}
@media screen and (max-width: 480px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.employer-img-cover {
  width: 350px;
  height: 465px;
}
@media screen and (max-width: 992px) {
  .employer-img-cover {
    width: 210px;
    height: 280px;
  }
}

.employer-img {
  width: 350px;
  height: 465px;
  object-fit: cover;
  border-radius: calc(0.25rem - 1px);
}
@media screen and (max-width: 992px) {
  .employer-img {
    width: 210px;
    height: 280px;
  }
}

@media screen and (max-width: 480px) {
  .content-text {
    margin-top: 25px;
  }
}
.content-text .employer-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 22px;
}
.content-text ul {
  font-size: 14px;
  display: flex;
}
.content-text ul:nth-child(1) {
  margin-right: 10px;
}
.content-text h3 {
  margin-top: 10px;
  margin-bottom: 1rem;
  font-size: 18px;
}

.newsBlockCover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 30px;
  justify-items: center;
}
@media screen and (max-width: 1200px) {
  .newsBlockCover {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .newsBlockCover {
    grid-template-columns: 1fr;
  }
}

.news-pagination {
  border: none;
  margin-top: 50px;
}
.news-pagination a, .news-pagination span {
  padding: 8px 12px;
}
.news-pagination a:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.news-pagination a:active {
  background-color: #0056b3;
  color: #fff;
}

.news-date, .news-views {
  text-align: right;
  color: #979797;
  font-size: 14px;
  margin-bottom: 10px;
  max-width: 930px;
  margin-top: 10px;
}

.news-views {
  margin-left: 10px;
}

.news-title {
  max-width: 760px;
  margin: 0 auto 35px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  color: #1C1C1C !important;
}
@media screen and (max-width: 992px) {
  .news-title {
    margin: 0 auto 20px;
    font-size: 16px;
  }
}

.news-img-cover {
  margin: 10px auto;
  max-width: 930px;
  text-align: center;
}

.news-img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: auto !important;
  margin: 20px auto;
}

.newsMore-gallery {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 8px;
  row-gap: 8px;
}
@media screen and (max-width: 992px) {
  .newsMore-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .newsMore-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .newsMore-gallery {
    grid-template-columns: 1fr;
  }
}

.popup-image {
  width: 13.4375rem;
  height: 9.375rem;
  object-fit: cover;
  margin: 5px auto;
}

.pravovayaBaza-docs {
  max-width: 1110px;
  margin: auto;
}
.pravovayaBaza-docs a {
  margin-bottom: 20px;
  display: block;
}
.pravovayaBaza-docs a:hover {
  text-decoration: underline;
}

.infographics-table {
  width: 100%;
  color: #777;
}
.infographics-table tr, .infographics-table td {
  padding: 15px 10px;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #dae1f4;
}
.infographics-table th {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 10px;
  color: #2C4FAD;
}
@media screen and (max-width: 768px) {
  .infographics-table th {
    font-size: 16px;
  }
}
.infographics-table td {
  text-align: center;
}
.infographics-table a {
  color: #2C4FAD;
}

.doc_name {
  transition: 0.5s;
}
.doc_name:hover {
  text-decoration: underline;
}

.infographics-table {
  width: 100%;
  color: #777;
}
.infographics-table tr, .infographics-table td {
  padding: 15px 10px;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #dae1f4;
}
.infographics-table th {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 10px;
  color: #2C4FAD;
}
@media screen and (max-width: 768px) {
  .infographics-table th {
    font-size: 16px;
  }
}
.infographics-table td {
  text-align: center;
}
.infographics-table a {
  color: #2C4FAD;
}

.doc_name {
  transition: 0.5s;
}
.doc_name:hover {
  text-decoration: underline;
}

.decrees_container {
  overflow-x: auto;
}

.decrees-table {
  width: 100%;
}

.decrees-table {
  color: #777;
}
.decrees-table tr, .decrees-table td {
  padding: 15px 10px;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #dae1f4;
}
.decrees-table a {
  color: #2C4FAD !important;
}

.decrees-table a:hover {
  text-decoration: underline;
}

.decrees-table th {
  font-size: 18px;
  font-weight: 500;
  padding: 15px 10px;
  color: #2C4FAD;
}
@media screen and (max-width: 768px) {
  .decrees-table th {
    font-size: 16px;
  }
}

.doc_name {
  transition: 0.5s;
}
.doc_name:hover {
  text-decoration: underline;
}

.accordion-block {
  width: 90%;
  max-width: 1100px;
  margin: 2rem auto;
  border-color: none !important;
}

.accordion-item {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.accordion-item-header {
  color: #2C4FAD;
  font-weight: 500;
  font-size: 18px;
  padding: 25px 10px;
  min-height: 3.5rem;
  line-height: 24px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .accordion-item-header {
    font-size: 16px;
  }
}
.accordion-item-header::after {
  content: "+";
  font-size: 5rem;
  font-weight: 300;
  position: absolute;
  right: -1rem;
  transform: rotate(-90deg);
  transition: transform 0.3s ease 0s;
}
.accordion-item-header.active::after {
  content: "−";
  transform: rotate(0deg);
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 15px 25px;
  border-top: 1px solid #eee;
}

@media (max-width: 767px) {
  .accordion {
    font-size: 14px;
  }
}
.photogallery .justified-gallery {
  position: relative;
  width: 100%;
}
.photogallery .gallery-container {
  height: auto;
}
.photogallery #animated-thumbnails-gallery {
  margin: 0 auto;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .photogallery #animated-thumbnails-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .photogallery #animated-thumbnails-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .photogallery #animated-thumbnails-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .photogallery #animated-thumbnails-gallery {
    grid-template-columns: 1fr;
  }
}
.photogallery #animated-thumbnails-gallery .gallery-item {
  width: 230px;
  height: 180px;
  margin-left: auto;
  margin-right: auto;
}
.photogallery #animated-thumbnails-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videosList {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .videosList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .videosList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .videosList {
    grid-template-columns: 1fr;
  }
}
.videosList .videoScreen-img {
  width: 295px;
  height: 170px;
  overflow: hidden;
  margin: auto;
}
.videosList .videoScreen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videosList .video-details-cover {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 10px;
}
.videosList .video-details-cover .details {
  display: flex;
}
.videosList .video-details-cover .details span {
  font-size: 14px;
  color: #858585;
}
.videosList .eye {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.videosList .eye::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../imgs/eye.svg);
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  bottom: 1px;
  margin-right: 5px;
  font-weight: lighter;
}
.videosList .videoScreen-desc {
  font-weight: 600;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
  display: block;
  max-width: 280px;
}
.videosList .videoScreen-desc:hover {
  color: #2C4FAD;
}

.video-cover {
  margin: 30px auto;
}

.contactInfoBlock {
  max-width: 1110px;
  margin: auto;
}
.contactInfoBlock table {
  margin: 50px auto;
  width: 100%;
  border: 1px solid #CEE1FB;
  border-radius: 3px !important;
}
.contactInfoBlock table th {
  text-transform: uppercase;
  color: #2C4FAD;
  font-weight: 500;
  text-align: center;
}
.contactInfoBlock table th, .contactInfoBlock table td {
  padding: 10px;
  border: 1px solid #CEE1FB;
}
.contactInfoBlock h3 {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
  color: #2C4FAD;
}
.contactInfoBlock .validicon {
  color: #fc3d21;
  padding-left: 5px;
  font-family: serif;
}
.contactInfoBlock .form-feedback .form-group {
  margin-bottom: 1rem;
}
.contactInfoBlock .form-feedback label {
  font-weight: 500;
  color: #2C4FAD;
  font-size: 14px;
}
.contactInfoBlock .form-feedback input, .contactInfoBlock .form-feedback textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  line-height: 1.25;
  color: #464a4c;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #dae1f4;
  border-radius: 0.25rem;
}
.contactInfoBlock .form-feedback input[type=file] {
  border: none;
}
.contactInfoBlock .form-feedback .btn-submit {
  margin-top: 25px;
  padding: 10px 20px;
  background-color: #2C4FAD;
  border: none;
  border-radius: 3px;
}
.contactInfoBlock .form-feedback .btn-submit:hover {
  background-color: #226acf;
}
.contactInfoBlock .map-cover {
  margin-top: 50px;
}



.items-cover {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 992px) {
  .items-cover {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .items-cover {
    grid-template-columns: 1fr;
  }
}
.items-cover .item {
  width: 100%;
  border-left: 5px solid #2C4FAD;
  border-radius: 3px;
  padding: 15px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.02), 0px 2px 4px rgba(0, 0, 0, 0.06);
}
.items-cover .item .item-img-cover {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}
.items-cover .item .item-img-cover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
}
.items-cover .item .item-title {
  font-size: 18px;
  font-weight: 600;
}
.items-cover .item .item-date p {
  margin-bottom: 0;
  margin-top: 6px;
  font-size: 15px;
  color: #777;
}

.vacancyList-pagination {
  text-align: center;
  margin: 50px auto;
}
.vacancyList-pagination a, .vacancyList-pagination span {
  padding: 8px 12px;
}
.vacancyList-pagination a:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.vacancyList-pagination a:active {
  background-color: #0056b3;
  color: #fff;
}
.vacancyList-pagination tr td {
  border: none !important;
}

/*РУКОВОСТВО*/
section.management {
  padding: 0px 15px;
  margin: 70px auto;
}

.block-mera {
  padding: 24px;
  background-color: #F2F4F8;
  border-radius: 4px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 480px) {
  .block-mera  {
    flex-direction: column;
  }
}

.img-mera {
  width: 187px;
  height: 240px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 4px;
  margin-right: 30px;
}

@media screen and (max-width: 480px) {
  .img-mera  {
    margin: auto auto 20px auto;
  }
}

.img-mera img {
  width: 187px;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
}

a.mer-name {
  color: #2C4FAD;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 8px;
}

p.mer-doljnost {
  color: #616161;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 18px;
}

p.tel-title,
p.mail-title {
  font-size: 13px;
  margin-bottom: 5px;
}

p.mer-tel,
p.mer-mail {
  color: #2C4FAD;
}

.mer-feedback-block {
  overflow: hidden;
  height: 300px;
  border-radius: 4px;
  background: linear-gradient(0deg, rgba(31, 60, 136, 0.3) 0%, rgba(31, 60, 136, 0.3) 100%), url("https://www.kara-kul.gov.kg/view/themes/35/imgs/internet_reception.jpg");
  background-position-x: 0%, 0%;
  background-position-y: 0%, 0%;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 15px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.mer-feedback-block:hover {
  color: #fff;
  text-decoration: underline;
}

.mer-feedback-block img {
  width: 120px;
  margin-bottom: 10px;
}
.mer-feedback-block p {
  background: #2C4FAD;
  font-size: 26px;
  text-align: center;
  position: absolute;
  margin-bottom: 0;
  padding: 16px;
  bottom: 0;
  left: 0;
}

.content-cover h3 {
  margin-bottom: 20px;
}
.content-cover ul {
  margin-top: 20px;
}
.content-cover ul li {
  list-style: inside;
}
.content-cover ul li:first-child {
  list-style: none;
  font-size: 18px;
  font-weight: 600;
}
.content-cover .deadline {
  display: flex;
  align-items: center;
}
.content-cover .deadline p:first-child {
  margin-right: 10px;
}
.content-cover .image-cover {
  max-width: 600px;
}
.content-cover .image-cover img {
  width: 100%;
  height: auto;
}

.error_container {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .error_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.error-img_wrap {
  width: 31.25rem;
  height: 25rem;
}
@media screen and (max-width: 768px) {
  .error-img_wrap {
    width: 21.25rem;
    height: 21.25rem;
  }
}

.error-img {
  width: 31.25rem;
  height: 25rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .error-img {
    width: 21.25rem;
    height: 21.25rem;
  }
}

@media screen and (max-width: 992px) {
  .error-info {
    text-align: center;
  }
}

.error-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.error-txt {
  margin-bottom: 35px;
}

.error-btn {
  background-color: #ffffff;
  padding: 10px 30px;
  border: 1px solid #2C4FAD;
  border-radius: 3px;
}
.error-btn:hover {
  background-color: #2C4FAD;
  color: #ffffff;
}

.searchResults-items-wrap {
  margin: auto;
}

.result-item {
  padding: 0 10px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
}
@media screen and (max-width: 768px) {
  .result-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.result-item .result-img-wrap {
  max-width: 295px;
  max-height: 170px;
}
@media screen and (max-width: 768px) {
  .result-item .result-img-wrap {
    margin-bottom: 10px;
  }
}

.result-item .result-img-wrap img{
  width: 295px;
  height: 170px;
}

.result-item .result-img {
  width: 295px;
  height: 170px;
  object-fit: cover;
}

.result-info {
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .result-info {
    margin-left: auto;
  }
}
.result-info .result-heading {
  font-size: 18px;
  font-weight: 600;
}

.date_cover {
  display: flex;
  align-items: center;
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.2;
  border-left: 1px solid #2C4FAD;
  padding-left: 5px;
}

span.block-date {
  font-size: 16px;
  color: #858585;
}

.result-txt {
  margin-bottom: 0;
}

.result-pagination {
  margin-top: 50px;
}
.result-pagination a, .result-pagination span {
  padding: 8px 12px;
}
.result-pagination a:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.result-pagination a:active {
  background-color: #0056b3;
  color: #fff;
}

.content-wrap h4 {
  font-size: 26px;
  font-family: "Raleway", serif;
  margin-bottom: 25px;
}
.content-wrap .pbutton {
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #a8a8a8;
  border-radius: 3px;
  transition: 0.3s;
  border-style: dashed;
}
.content-wrap .pbutton:hover {
  color: #fff;
  background: #2C4FAD;
  border-color: #2C4FAD;
}
.content-wrap .question {
  font-size: 18px;
  font-weight: 500;
}
.content-wrap form label input {
  margin-bottom: 20px;
}
.content-wrap form input#btn {
  padding: 10px 20px;
  background: #ffffff;
  font-weight: 500;
  border: 1px solid #2C4FAD;
  color: #2C4FAD;
  border-radius: 3px;
  text-align: center;
  margin: 40px 0;
  display: block;
  font-size: 17px;
  transition: 0.3s;
}
.content-wrap form input#btn:hover {
  color: white;
  background: #2C4FAD;
}
.content-wrap .result-btn {
  border: 1px solid #a8a8a8;
  border-style: dashed;
  border-radius: 3px;
  cursor: pointer;
  color: #2C4FAD;
  padding: 10px 20px;
  transition: 0.3s;
}
.content-wrap .result-btn:hover {
  border: none;
  color: #fff;
  background: #2C4FAD;
}

.image-wrap {
  max-width: 1100px;
  height: auto;
  margin: 25px auto;
}
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#map {
  width: 100%;
  height: 600px;
}

#top_x_div {
  max-width: 900px !important;
}

@media screen and (max-width: 960px) {
  #top_x_div {
    overflow: scroll;
  }
}
.navigation {
  margin-top: 30px !important;
}

.navigation a{
  padding: 8px 15px;
  border: 1px solid #2C4FAD;
  color: #2C4FAD;
  background: #fff;
  transition: .5s;
  margin-right: 8px;
}

.navigation span{
  padding: 8px 15px;
  border: 1px solid #2C4FAD;
  color: #2C4FAD;
  background: #fff;
  transition: .5s;
  margin-right: 8px;
}

.navigation a:last-child {
  margin-right: 0;
}

.navigation a:hover{
  border: 1px solid #2C4FAD;
  color: #fff;
  background: #2C4FAD;
}

/**/

/*social networks*/
.social-networks {
	margin-bottom: 3rem;
}

.social-networks::after {
	content: '';
	display: table;
	clear: both;
}

.social-networks:last-child {
	margin-bottom: 0;
}

.social-networks__list {
	position: relative;
	float: left;
	width: calc(100% + 5px*2);
	font-size: 0;
	line-height: 0;
	margin: 0 -5px -10px;
}

.social-networks__item {
	display: inline-block;
	vertical-align: top;
	margin: 0 3px 10px;
	font-size: 14px;
	line-height: 1.4;
}

.social-networks__item a {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	-webkit-transition-property: background, -webkit-transform;
	transition-property: background, -webkit-transform;
	transition-property: transform, background;
	transition-property: transform, background, -webkit-transform;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.content .social-networks__item a {
	background: #2c68b2;
}

.social-networks__item .fb{
  background: #3B5998;
}

.social-networks__item .instagram {
  background: radial-gradient(circle farthest-corner at 32% 106%, #ffe17d 0, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), linear-gradient(135deg, #234bd7 12%, #c33cbe 58%);
}

.social-networks__item .viber {
  background: #8950a1;
}

.social-networks__item .telegram {
  background: #37AEE2;
  margin-right: 0px;
}

.social-networks__item .ok {
  background: #E67E17;
}

.social-networks__item .whatsapp {
  background: #25d366;
}

.social-networks__item .twitter{
  background: #55ACEE;
}



.content .social-networks__item a:hover {
	background: #005593;
}

.content .social-networks__item {
	margin: 0;
}

.content .social-networks {
	float: right;
	clear: right;
	margin-top: 10px;
	text-align: right;
}

.content .social-networks .social-networks__list {
	margin: 0;
	width: auto;
}

.content .social-networks p {
	margin: 0;
	font-size: 1.4rem;
}

.social-networks__item a span {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.social-networks__item a svg {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 24px;
	height: 24px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.social-networks__item a path {
	/*fill: #fff;*/
	-webkit-transition-property: box-shadow, fill, -webkit-transform;
	transition-property: box-shadow, fill, -webkit-transform;
	transition-property: transform, box-shadow, fill;
	transition-property: transform, box-shadow, fill, -webkit-transform;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.social-networks__item a:hover {
	background: #006AB8;
}

/*

/*# sourceMappingURL=style.css.map */
