@import '../assets/fonts/roboto-slab/robotoslab.css';
@import '../assets/fonts/inter/inter.css';
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #1B1B1B;
  font-size: 14px;
  padding-bottom: 100px;
  background: #FFF;
}
@media (max-width: 1280px) {
  body {
    font-size: calc(10px + 4 * (100vw - 425px) / 855);
  }
}

h1,
h2 {
  font-family: "Roboto Slab", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h3,
h4 {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 600;
}

h1 {
  font-size: 28px;
}
@media (max-width: 1280px) {
  h1 {
    font-size: calc(20px + 8 * (100vw - 425px) / 855);
  }
}

h2 {
  font-size: 24px;
}
@media (max-width: 1280px) {
  h2 {
    font-size: calc(18px + 6 * (100vw - 425px) / 855);
  }
}

h3 {
  font-size: 20px;
}
@media (max-width: 1280px) {
  h3 {
    font-size: calc(16px + 4 * (100vw - 425px) / 855);
  }
}

h4 {
  font-size: 16px;
}
@media (max-width: 1280px) {
  h4 {
    font-size: calc(12px + 4 * (100vw - 425px) / 855);
  }
}

h5 {
  font-size: 14px;
}
@media (max-width: 1280px) {
  h5 {
    font-size: calc(10px + 4 * (100vw - 425px) / 855);
  }
}

a {
  text-decoration: none;
  color: #4E555A;
}

img {
  width: 100%;
}

input,
button {
  outline: none;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

input,
button,
area {
  font-size: 16px;
}
@media (max-width: 1280px) {
  input,
  button,
  area {
    font-size: calc(12px + 4 * (100vw - 425px) / 855);
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.fic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.header {
  background: #252525;
  color: #FFF;
}
.header a {
  color: #FFF;
}
.header__visually svg {
  width: 25px;
  height: 25px;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__btn {
  background: rgba(211, 211, 211, 0.2);
  padding: 5px;
}
.header__btn .arrow {
  display: none;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header__btn .visible {
  display: block;
}
.header__btn.active .arrow {
  display: block;
}
.header__btn.active .visible {
  display: none;
}
.header__lang {
  background: #252525;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
}
.header__search {
  width: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 10px 0;
}
.header__search.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__input {
  background: #FFF;
  border-radius: 10px;
  padding: 5px;
}

@media (max-width: 600px) {
  .header {
    position: relative;
    z-index: 23;
  }
}
.nav {
  font-size: 16px;
  background: #FFF;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #252525;
}
@media (max-width: 1280px) {
  .nav {
    font-size: calc(12px + 4 * (100vw - 425px) / 855);
  }
}
.nav a {
  color: #252525;
}
.nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav .active {
  color: #8E0000;
  text-decoration: underline;
}
.nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.nav__logo img {
  width: 75px;
  height: 75px;
}
.nav__logo h4 {
  max-width: 65%;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.nav .burger {
  display: none;
}
.nav__razdel {
  position: relative;
  cursor: pointer;
}
.nav__razdel li {
  text-transform: none;
}
.nav__razdel-title {
  display: grid;
  grid-template-columns: auto 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__razdel-title svg {
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav__razdel-title.first svg path {
  fill: #252525;
}
.nav__razdel.active .nav__razdel-title svg path {
  fill: #8E0000;
}
.nav__razdel ul {
  list-style: none;
  position: absolute;
  width: auto;
  min-width: 100%;
  text-align: center;
  z-index: 10;
  background: #8E0000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #FFF;
  font-size: 16px;
}
@media (max-width: 1280px) {
  .nav__razdel ul {
    font-size: calc(10px + 6 * (100vw - 425px) / 855);
  }
}
.nav__razdel ul a {
  color: #fff;
}
.nav__razdel ul li {
  margin-top: 10px;
  padding: 0 5px;
}
.nav__razdel:hover > ul {
  visibility: visible;
  opacity: 1;
}
.nav__razdel:hover > .nav__razdel-title svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav__razdel > ul {
  left: 0;
  top: auto;
}
.nav__razdel.pod > ul {
  top: 0;
  left: 100%;
  -webkit-box-shadow: 0px 5px 10px 2px rgba(255, 255, 255, 0.4);
          box-shadow: 0px 5px 10px 2px rgba(255, 255, 255, 0.4);
}
.nav__razdel.pod .nav__razdel-title svg path {
  fill: #BDBABA;
}
.nav__razdel.pod:hover > .nav__razdel-title svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.nav__razdel.pod.left > ul {
  top: -10%;
  left: auto;
  right: 100%;
}

@media (max-width: 1024px) {
  .nav__logo img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .nav__logo h4 {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .nav {
    text-align: center;
    font-size: 18px;
  }
  .nav__logo {
    position: relative;
    z-index: 21;
  }
  .nav__logo h4 {
    color: #252525;
  }
  .nav__items {
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 20;
    color: #252525;
  }
  .nav__items > div {
    margin-bottom: 10px;
  }
  .nav__items a {
    color: #252525;
  }
  .nav__items .active {
    color: #252525;
    text-decoration: underline;
  }
  .nav__razdel ul {
    position: static;
    display: none;
    min-width: auto;
  }
  .nav__razdel ul a {
    color: #252525;
  }
  .nav__razdel:hover ul {
    background: none;
    display: block;
    color: #252525;
    opacity: 1;
    visibility: visible;
  }
  .nav__razdel-title.f {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__razdel .pod ul {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .nav__razdel .pod .nav__razdel-title svg path {
    fill: #252525;
  }
  .nav .burger {
    display: block;
    position: relative;
    z-index: 21;
  }
  .nav .burger .cross {
    display: none;
  }
  .nav .burger .cross path {
    fill: #252525;
  }
  .nav .burger .menu {
    display: block;
  }
  .nav .burger.show .cross {
    display: block;
  }
  .nav .burger.show .menu {
    display: none;
  }
}
.nav2 {
  text-align: center;
  background: #8E0000;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.nav2 a {
  color: #FFF;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFF;
  width: 125px;
  padding: 5px;
  border-radius: 20px;
  border: 1px solid #BDBABA;
}
.search__input {
  width: 100%;
  font-size: 12px;
}

.banner__item {
  width: 100%;
  min-height: 410px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(37, 37, 37, 0.8)), to(rgba(37, 37, 37, 0.8))), url("../assets/img/banner1.jpeg"), lightgray 50%;
  background: linear-gradient(0deg, rgba(37, 37, 37, 0.8) 0%, rgba(37, 37, 37, 0.8) 100%), url("../assets/img/banner1.jpeg"), lightgray 50%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .banner__item {
    min-height: calc(200px + 210 * (100vw - 425px) / 855);
  }
}
.banner .slick-dots {
  bottom: auto;
  left: 20px;
  top: 20px;
  text-align: left;
}
.banner .slick-dots li button:before {
  color: #FFF;
  opacity: 1;
  font-size: 18px;
}
.banner .slick-dots li.slick-active button:before {
  color: #8E0000;
  opacity: 1;
  -webkit-filter: drop-shadow(0px 0px 14px rgba(255, 255, 255, 0.65));
          filter: drop-shadow(0px 0px 14px rgba(255, 255, 255, 0.65));
}
.banner .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media (max-width: 425px) {
  .banner .slick-dots {
    left: 0px;
    top: 10px;
  }
  .banner .slick-dots li button:before {
    font-size: 12px;
  }
}
.nav3 {
  background: #8E0000;
  padding-top: 15px;
  padding-bottom: 15px;
}
.nav3__btn {
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
}
.nav3__btn svg {
  width: 16px;
  height: 16px;
}

.aside {
  width: 20%;
  height: 100%;
  float: left;
  padding-top: 20px;
}
.aside h2 {
  padding-left: 20px;
}
.aside__item {
  display: block;
  background: #FFF;
  padding: 15px 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 3px 3px 3px 3px #DDD;
          box-shadow: 3px 3px 3px 3px #DDD;
  margin-top: 20px;
  margin-left: 3px;
}
.aside__item:hover {
  border: 1px solid #252525;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.aside__item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aside__item-text {
  margin-top: 10px;
  font-size: calc(7px + 3 * (100vw - 425px) / 1075);
}

main {
  width: 80%;
  float: left;
  padding: 0 1rem;
  padding-bottom: 100px;
}
main h2 {
  margin-bottom: 30px;
}

.content {
  padding: 0;
}

@media (max-width: 1024px) {
  .aside {
    display: none;
  }
  main {
    width: auto;
    float: none;
  }
}
.breadcrumb {
  padding-top: 20px;
  margin-bottom: 50px;
}
.breadcrumb .active {
  color: #8E0000;
}

@media (max-width: 500px) {
  .breadcrumb {
    margin-bottom: 30px;
  }
}
.pagination {
  margin-top: 50px;
  text-align: center;
}
.pagination a {
  color: #8E0000;
}

.footer {
  width: 100%;
  float: left;
  border-top: 1px solid #8E0000;
  color: #252525;
  padding-top: 40px;
}
.footer__logo img {
  height: 75px;
  width: 75px;
}
.footer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer__title h4 {
  width: 23%;
}
.footer__items {
  display: grid;
  grid-template-columns: auto auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__items h4 {
  color: #8E0000;
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer__contacts-address {
  width: 40%;
}
.footer__media {
  margin-top: 20px;
}
.footer__media .footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__copyright {
  text-align: center;
  background: #252525;
  color: #FFF;
  margin-top: 40px;
  padding: 10px 0;
}
.footer__metric img {
  width: auto;
  height: auto;
}
.footer__item {
  margin-top: 10px;
  display: block;
}
.footer a {
  color: #252525;
}

@media (max-width: 1024px) {
  .footer__title h4 {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .footer__logo img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 555px) {
  .footer__title h4 {
    width: 60%;
  }
  .footer__items {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
}
@media (max-width: 425px) {
  .footer__title h4 {
    width: 80%;
  }
  .footer__items {
    grid-template-columns: 1fr;
    row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */