@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------------------*/

body {
  background-color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  font-size: 51px;
}

h2 {
  font-size: 21px;
}

h3 {
  font-size: 17px;
}

h4 {
  font-size: 15px;
}

.wrapper {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.container {
  max-width: 1210px;
  padding: 0 15px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  padding-bottom: 26px;
  text-align: center;
}

.section-title::after {
  content: '';
  width: 248px;
  height: 5px;
  background-color: #000000;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.more-link {
  display: inline-block;
  padding-bottom: 9px;
  border-bottom: 1px dotted transparent;
  font-size: 15px;
  line-height: 1.2;
  color: #000000;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.header {
  background-color: #ffffff;
  padding: 10px 0 7px;
}

.header__inner {
  max-width: 1450px;
  padding: 0 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 245px;
  margin-right: 20px;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__navigation-wrap {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}

.header__navigation-wrap.open .header__navigation {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.header__navigation {
  height: 100%;
  max-width: calc(((100vw - 1450px) / 2) + 362px);
  margin-left: auto;
  background-color: #ffffff;
  padding: 85px 40px 15px 25px;
  padding-right: calc(((100vw - 1450px) / 2) - 0px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.header__menu {
  list-style: none;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 20px;
}

.header__menu-item {
  margin-bottom: 25px;
  text-align: right;
}

.header__menu-item:last-child {
  margin-bottom: 0;
}

.header__menu-link {
  font-weight: 700;
  font-size: 21px;
  color: #000000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__menu-link.active {
  color: #B0A8AE;
}

.header__languages {
  margin-left: auto;
  margin-right: 51px;
  padding-bottom: 3px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__languages-item::after {
  content: '/';
  display: inline-block;
  margin-left: 1px;
  margin-right: 4px;
  font-size: 15px;
  line-height: 20px;
  color: #B0A8AE;
}

.header__languages-item:last-child::after {
  display: none;
}

.header__languages-link {
  font-size: 15px;
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__languages-link.active {
  font-weight: 700;
  color: #B0A8AE;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 20;
}

.header__burger b {
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  text-transform: uppercase;
  margin-right: 21px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__burger.active b {
  color: #EA961C;
}

.header__burger.active .header__burger-lines span {
  background-color: #EA961C;
}

.header__burger.active .header__burger-lines span:first-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.header__burger.active .header__burger-lines span:last-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: calc(50% - 1px);
}

.header__burger-lines {
  position: relative;
  display: block;
  width: 48px;
  height: 13px;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.header__burger-lines span {
  display: block;
  width: 48px;
  height: 3px;
  background: #000000;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__burger-lines span:first-child {
  top: 0;
}

.header__burger-lines span:last-child {
  bottom: 0;
}

.main-top__slider {
  position: relative;
}

.main-top__slide {
  position: relative;
}

.main-top__slide:first-child .main-top__slide-content {
  height: auto;
}

.main-top__slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-top__slide-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
}

.main-top__slide-content {
  position: relative;
  z-index: 1;
  height: auto;
  min-height: 700px;
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 30px 15px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.main-top__slide-title {
  font-weight: 300;
  font-size: 91px;
  line-height: 1.03;
  color: #ffffff;
  text-transform: uppercase;
}

.main-top__slide-title span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.main-top .slick-arrow {
  position: absolute;
  top: 40.8%;
  z-index: 2;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.main-top .slick-arrow::before {
  content: '';
  width: 12px;
  height: 22px;
  background: url("../images/icons/icon-slider-arrow-white.svg") center center/contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-40%, -47%);
  -ms-transform: translate(-40%, -47%);
  transform: translate(-40%, -47%);
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}

.main-top .slick-arrow.slick-next {
  right: calc(((100vw - 1200px) / 2) - 76px);
}

.main-top .slick-arrow.slick-prev {
  left: calc(((100vw - 1200px) / 2) - 76px);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.main-top .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 71px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
}

.main-top .slick-dots li {
  line-height: 0;
  margin: 0 7px 0 8px;
}

.main-top .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #EA961C;
  font-size: 0;
  line-height: 0;
  -webkit-transition: background-color 0.3s, width 0.3s;
  transition: background-color 0.3s, width 0.3s;
}

.main-top .slick-dots li.slick-active button {
  width: 60px;
  background-color: #ffffff;
}

.categories {
  background-color: #00476C;
  padding: 38px 0 41px;
  color: #ffffff;
}

.categories__title {
  margin-bottom: 42px;
  font-weight: 400;
  text-align: center;
}

.categories__text {
  margin-bottom: 42px;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
}

.categories__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.categories__column {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.categories__item {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.categories__item-image {
  position: relative;
  padding-bottom: 81.5%;
  overflow: hidden;
}

.categories__item-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.categories__item-image::before,
.categories__item-image::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.categories__item-image::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.categories__item-title {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 1px 10px 4px;
  background-color: #00476C;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.news {
  padding: 59px 0 30px;
}

.news__title {
  margin-bottom: 40px;
}

.news__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px 14px;
}

.news__column {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.news__item-logo {
  height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f5f5;
  padding: 10px 10px;
  position: relative;
}

.news__item-logo img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: auto;
  max-width: 70%;
  height: auto;
  max-height: 90%;
}

.news__item-logo img:nth-child(1) {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.news__item-logo img:nth-child(2) {
  margin-left: 4px;
}

.news__item-logo::before {
  content: '';
  width: 100%;
  height: 16px;
  background-color: #f5f5f5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.news__item-info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #00476C;
  padding: 5px 10px 12px;
  position: relative;
  font-size: 15px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.news__item-date {
  display: block;
  margin-bottom: 21px;
}

.news__item-arrow {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  width: 100%;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: #00476C;
  overflow: hidden;
  -webkit-transition: padding 0.3s, height 0.3s, ackground-color 0.3s;
  transition: padding 0.3s, height 0.3s, ackground-color 0.3s;
}

.news__item-arrow img {
  display: inline-block;
  width: 40px;
  height: auto;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.news__more-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.media {
  padding: 59px 0 48px;
  background-color: #B0A8AE;
}

.media__title {
  margin-bottom: 41px;
}

.media__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px 19px;
}

.media__column {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.media__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

.media__item-image {
  position: relative;
  padding-bottom: 58%;
  overflow: hidden;
}

.media__item-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.media__item-image::after {
  content: '';
  width: 50px;
  height: 36px;
  background: url("../images/icons/icon-play-button.svg") center center/contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}

.media__item-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 5px 10px 7px;
  background-color: #00476C;
  font-size: 15px;
  line-height: 1.2;
  color: #EA961C;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.media__item-title span {
  font-weight: 700;
}

.media__more-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.partners {
  padding: 60px 0 50px;
}

.partners__container {
  max-width: 1384px;
  padding: 0 80px;
  margin: 0 auto;
}

.partners__slider {
  max-width: 1205px;
  margin: 0 auto;
}

.partners__slide-image {
  display: block;
  width: 100%;
  height: auto;
}

.partners .slick-slide > div {
  padding: 0 12px 0 13px;
}

.partners .slick-arrow {
  position: absolute;
  top: 15%;
  z-index: 2;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #B0A8AE;
  font-size: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.partners .slick-arrow::before {
  content: '';
  width: 12px;
  height: 22px;
  background: url("../images/icons/icon-slider-arrow-grey.svg") center center/contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-40%, -47%);
  -ms-transform: translate(-40%, -47%);
  transform: translate(-40%, -47%);
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}

.partners .slick-arrow.slick-next {
  right: -73px;
}

.partners .slick-arrow.slick-prev {
  left: -74px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.footer {
  padding: 61px 0 38px;
  background-color: #00476C;
  font-size: 17px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}

.footer__email a {
  color: #EA961C;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__contacts {
  margin-top: 23px;
  margin-bottom: 19px;
}

.footer__contacts a {
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__copyright {
  font-size: 15px;
}

.inner-top {
  background-color: #B0A8AE;
  position: relative;
}

.inner-top__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.inner-top__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
}

.inner-top__bg::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
}

.inner-top__content {
  min-height: 220px;
  position: relative;
  z-index: 1;
  padding: 52px 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.inner-top__title {
  font-weight: 400;
}

.inner-top__breadcrumbs {
  margin-top: 19px;
}

.breadcrumbs__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -5px;
}

.breadcrumbs__list-item {
  padding-right: 2px;
  margin-bottom: 5px;
}

.breadcrumbs__list-item:last-child {
  padding-right: 0;
}

.breadcrumbs__list-item:last-child a {
  pointer-events: none;
}

.breadcrumbs__list-item:last-child a::after {
  display: none;
}

.breadcrumbs__list-link {
  display: inline-block;
  margin-right: 5px;
  font-size: 17px;
  line-height: 1.2;
  color: #ffffff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.breadcrumbs__list-link::after {
  content: '>';
  display: inline-block;
  margin-left: 5px;
  font-size: 17px;
  line-height: 1.2;
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.catalog {
  padding: 59px 0 59px;
}

.catalog__search {
  position: relative;
  margin-bottom: 59px;
}

.catalog__search-input {
  display: block;
  width: 100%;
  padding: 30px 90px 28px 20px;
  border: 1px solid #B0A8AE;
  font-size: 17px;
  line-height: 1.2;
  color: #000000;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.catalog__search-input:focus {
  outline: none;
  border-color: #000000;
}

.catalog__search-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 86px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 9px 10px 10px 20px;
}

.catalog__search-submit img {
  display: block;
  width: 27px;
  height: auto;
}

.catalog__title {
  margin-bottom: 40px;
  text-align: center;
}

.catalog__text {
  margin-bottom: 42px;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
}

.catalog__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-bottom: 31px;
}

.catalog__tag {
  display: inline-block;
  border: 1px solid #B0A8AE;
  padding: 8px 9px 4px 29px;
  position: relative;
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: 13px;
  line-height: 1.2;
  color: #B0A8AE;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.catalog__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #B0A8AE;
  position: absolute;
  left: 11px;
  top: 11px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.catalog__tag::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url("../images/icons/icon-check-blue.svg") left 3px center/11px auto no-repeat;
  position: absolute;
  left: 6px;
  top: 6px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.catalog__tag.active {
  background-color: #00476C;
  border-color: #00476C;
  color: #ffffff;
}

.catalog__tag.active::before {
  border-color: #ffffff;
  background-color: #ffffff;
  width: 16px;
  height: 16px;
  left: 6px;
  top: 6px;
}

.catalog__tag.active::after {
  opacity: 1;
}

.catalog__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -1px -10px 41px;
}

.catalog__column {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

.catalog__item-image {
  position: relative;
  padding-bottom: 57.8%;
  overflow: hidden;
}

.catalog__item-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.catalog__item-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 5px 10px 7px;
  background-color: #00476C;
  font-size: 15px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.pagination__arrow {
  font-size: 17px;
  color: #000000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.pagination__arrow.prev-arrow {
  margin-right: 31px;
}

.pagination__arrow.next-arrow {
  margin-left: 31px;
}

.pagination__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination__list-item {
  margin: 0 9px 0 10px;
}

.pagination__list-link {
  font-size: 17px;
  color: #000000;
  text-decoration: underline;
  -webkit-transition: color 0.3s, font-weight 0.3s;
  transition: color 0.3s, font-weight 0.3s;
}

.pagination__list-link.active {
  pointer-events: none;
  font-weight: 700;
  color: #B0A8AE;
  text-decoration: none;
}

.text-content {
  padding: 59px 0 7px;
}

.text-content__title {
  margin-top: 59px;
  margin-bottom: 43px;
}

.text-content a {
  color: #EA961C;
}

.text-content p,
.text-content ul,
.text-content ol {
  font-size: 15px;
  line-height: 25px;
}

.text-content p {
  margin-bottom: 25px;
}

.text-content h3 {
  margin-top: 43px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.text-content ol {
  list-style: none;
  counter-reset: ol-item;
  margin-bottom: 50px;
}

.text-content ol > li {
  margin-bottom: 25px;
  padding-left: 23px;
  position: relative;
}

.text-content ol > li::before {
  content: counter(ol-item) ". ";
  counter-increment: ol-item;
  font-size: 15px;
  position: absolute;
  left: 3px;
  top: 0px;
}

.text-content ol .explanations-block,
.text-content ol .notice {
  margin-left: -23px;
}

.explanations-block {
  margin-top: 28px;
  margin-bottom: 38px;
  background-color: #f5f5f5;
  padding: 30px 30px 30px;
  color: #00476C;
}

.explanations-block ul {
  list-style: none;
}

.explanations-block ul > li {
  padding-left: 22px;
  position: relative;
}

.explanations-block ul > li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00476C;
  position: absolute;
  left: 8px;
  top: 10px;
}

.explanations-block + .notice {
  margin-top: -38px;
}

.notice {
  background-color: #00476C;
  border: 1px solid #00476C;
  padding: 15px 25px 15px 36px;
  margin-bottom: 53px;
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #ffffff;
}

.notice.light-mode {
  background-color: #ffffff;
  color: #00476C;
}

.notice img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 46px;
  height: auto;
  margin-right: 37px;
  margin-top: 2px;
}

.notice p {
  margin-bottom: 0 !important;
}

.notice p span + .notice p span {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .more-link:hover,
  .more-link:focus {
    color: #00476C;
    border-bottom-color: #00476C;
  }

  .header__menu-link:hover,
  .header__menu-link:focus {
    color: #B0A8AE;
  }

  .header__languages-link:hover,
  .header__languages-link:focus {
    color: #B0A8AE;
  }

  .header__burger.active:hover .header__burger-lines span:first-child,
  .header__burger.active:focus .header__burger-lines span:first-child {
    width: 48px;
  }

  .header__burger:hover .header__burger-lines span:first-child,
  .header__burger:focus .header__burger-lines span:first-child {
    width: 28px;
  }

  .main-top .slick-arrow:hover,
  .main-top .slick-arrow:focus {
    background-color: #ffffff;
  }

  .main-top .slick-arrow:hover::before,
  .main-top .slick-arrow:focus::before {
    background-image: url("../images/icons/icon-slider-arrow-yellow.svg");
  }

  .categories__item:hover .categories__item-image img,
  .categories__item:focus .categories__item-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .categories__item:hover .categories__item-image::after,
  .categories__item:focus .categories__item-image::after {
    opacity: 1;
  }

  .categories__item:hover .categories__item-title,
  .categories__item:focus .categories__item-title {
    background-color: #ffffff;
    color: #EA961C;
  }

  .news__item:hover .news__item-logo img:nth-child(1),
  .news__item:focus .news__item-logo img:nth-child(1) {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .news__item:hover .news__item-logo::before,
  .news__item:focus .news__item-logo::before {
    top: -15px;
  }

  .news__item:hover .news__item-info,
  .news__item:focus .news__item-info {
    background-color: #EA961C;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  .news__item:hover .news__item-arrow,
  .news__item:focus .news__item-arrow {
    padding-bottom: 16px;
    height: 30px;
    background-color: #EA961C;
  }

  .news__item:hover .news__item-arrow img,
  .news__item:focus .news__item-arrow img {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

  .media__item:hover .media__item-image img,
  .media__item:focus .media__item-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .media__item:hover .media__item-image::after,
  .media__item:focus .media__item-image::after {
    background-image: url("../images/icons/icon-play-button-hover.svg");
  }

  .media__item:hover .media__item-title,
  .media__item:focus .media__item-title {
    background-color: #ffffff;
    color: #EA961C;
  }

  .partners .slick-arrow:hover,
  .partners .slick-arrow:focus {
    background-color: #ffffff;
  }

  .partners .slick-arrow:hover::before,
  .partners .slick-arrow:focus::before {
    background-image: url("../images/icons/icon-slider-arrow-yellow.svg");
  }

  .footer__email a:hover,
  .footer__email a:focus {
    color: #ffffff;
  }

  .footer__contacts a:hover,
  .footer__contacts a:focus {
    color: #EA961C;
  }

  .breadcrumbs__list-link:hover,
  .breadcrumbs__list-link:focus {
    color: #EA961C;
  }

  .catalog__tag:hover::before,
  .catalog__tag:focus::before {
    width: 16px;
    height: 16px;
    left: 6px;
    top: 6px;
  }

  .catalog__item:hover .catalog__item-image img,
  .catalog__item:focus .catalog__item-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .catalog__item:hover .catalog__item-title,
  .catalog__item:focus .catalog__item-title {
    background-color: #ffffff;
    color: #EA961C;
  }

  .pagination__arrow:hover,
  .pagination__arrow:focus {
    color: #EA961C;
  }

  .pagination__list-link:hover,
  .pagination__list-link:focus {
    color: #EA961C;
    text-decoration: underline;
  }

  .text-content a:hover,
  .text-content a:focus {
    text-decoration: underline;
  }
}

@media (max-width: 1600px) {
  .header__navigation {
    max-width: 422px;
  }
}

@media (max-width: 1400px) {
  .main-top__slide-content {
    padding-left: 80px;
    padding-right: 80px;
  }

  .main-top .slick-arrow.slick-next {
    right: 15px;
  }

  .main-top .slick-arrow.slick-prev {
    left: 15px;
  }

  .partners .slick-arrow.slick-next {
    right: -60px;
  }

  .partners .slick-arrow.slick-prev {
    left: -60px;
  }
}

@media (max-width: 1200px) {
  h1 {
    font-size: 46px;
  }

  .main-top__slide:first-child .main-top__slide-content {
    min-height: 600px;
  }

  .main-top__slide-content {
    min-height: 600px;
    padding: 30px 65px 60px;
  }

  .main-top__slide-title {
    font-size: 70px;
  }

  .main-top .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .main-top .slick-arrow::before {
    width: 8px;
    height: 18px;
  }

  .main-top .slick-dots {
    bottom: 30px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 40px;
  }

  .section-title {
    padding-bottom: 10px;
  }

  .section-title::after {
    width: 160px;
    height: 3px;
  }

  .more-link {
    padding-bottom: 4px;
  }

  .header__logo {
    width: 180px;
  }

  .header__navigation {
    max-width: 350px;
    padding: 60px 10px 15px 20px;
  }

  .header__menu {
    padding-right: 10px;
  }

  .header__menu-item {
    margin-bottom: 15px;
  }

  .header__menu-link {
    font-size: 18px;
  }

  .header__languages {
    margin-right: 25px;
  }

  .header__languages-item::after {
    margin-left: 0;
    margin-right: 3px;
    font-size: 13px;
  }

  .header__languages-link {
    font-size: 13px;
  }

  .header__burger b {
    margin-right: 15px;
    font-size: 13px;
  }

  .header__burger-lines {
    width: 35px;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  .header__burger-lines span {
    width: 35px;
  }

  .main-top__slide-title {
    font-size: 56px;
  }

  .categories__title {
    margin-bottom: 30px;
  }

  .categories__text {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .categories__block {
    margin: 0 -5px;
  }

  .categories__column {
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .categories__item-title {
    font-size: 15px;
  }

  .news__title {
    margin-bottom: 30px;
  }

  .news__block {
    margin: 0 -5px 14px;
  }

  .news__column {
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .news__item-logo img:nth-child(1) {
    max-width: 18%;
  }

  .news__item-logo img:nth-child(2) {
    max-width: 45%;
  }

  .news__item-logo {
    height: auto;
    min-height: 130px;
  }

  .media__title {
    margin-bottom: 30px;
  }

  .media__block {
    margin: 0 -5px 14px;
  }

  .media__column {
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .media__item-image::after {
    width: 44px;
    height: 30px;
  }

  .partners__container {
    padding: 0 60px;
  }

  .partners .slick-slide > div {
    padding: 0 5px;
  }

  .partners .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .partners .slick-arrow::before {
    width: 8px;
    height: 18px;
  }

  .partners .slick-arrow.slick-next {
    right: -45px;
  }

  .partners .slick-arrow.slick-prev {
    left: -45px;
  }

  .inner-top__content {
    min-height: 180px;
  }

  .inner-top__breadcrumbs {
    margin-top: 10px;
  }

  .breadcrumbs__list-link {
    font-size: 15px;
  }

  .breadcrumbs__list-link::after {
    font-size: 15px;
  }

  .catalog__search {
    margin-bottom: 30px;
  }

  .catalog__search-input {
    padding: 15px 50px 15px 20px;
  }

  .catalog__search-submit {
    width: 45px;
    padding: 10px 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .catalog__search-submit img {
    width: 20px;
  }

  .catalog__title {
    margin-bottom: 30px;
  }

  .catalog__text {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .catalog__tags {
    margin-bottom: 15px;
  }

  .catalog__block {
    margin: 0 -5px 20px;
  }

  .catalog__column {
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .catalog__item-title {
    font-size: 13px;
  }

  .pagination__arrow {
    font-size: 15px;
  }

  .pagination__arrow.prev-arrow {
    margin-right: 20px;
  }

  .pagination__arrow.next-arrow {
    margin-left: 20px;
  }

  .pagination__list-item {
    margin: 0 7px;
  }

  .pagination__list-link {
    font-size: 15px;
  }

  .text-content {
    padding-bottom: 40px;
  }

  .text-content__title {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .text-content p {
    margin-bottom: 15px;
  }

  .text-content h3 {
    margin-bottom: 15px;
    margin-top: 20px;
  }

  .text-content ol {
    margin-bottom: 20px;
  }

  .text-content ol > li {
    margin-bottom: 10px;
  }

  .explanations-block {
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 20px 15px;
  }

  .explanations-block ul > li {
    margin-bottom: 5px;
    padding-left: 15px;
  }

  .explanations-block ul > li::before {
    left: 0;
  }

  .explanations-block + .notice {
    margin-top: -10px;
  }

  .notice {
    padding: 15px 10px;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .notice img {
    width: 35px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .main-top__slide-title {
    font-size: 44px;
  }

  .categories__column {
    width: 50%;
  }

  .news__column {
    width: 50%;
  }

  .media__column {
    width: 50%;
  }

  .footer {
    padding: 35px 0;
    font-size: 15px;
  }

  .footer__contacts {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .footer__copyright {
    font-size: 13px;
  }

  .catalog__column {
    width: 50%;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 32px;
  }

  .header__logo {
    width: 140px;
  }

  .header__burger b {
    display: none;
  }

  .header__burger-lines {
    width: 30px;
  }

  .header__burger-lines span {
    width: 30px;
    height: 2px;
  }

  .main-top__slide-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-top__slide-title {
    font-size: 34px;
  }

  .main-top .slick-dots {
    bottom: 20px;
  }

  .main-top .slick-dots li {
    margin: 0 5px;
  }

  .main-top .slick-dots li.slick-active button {
    width: 40px;
  }

  .categories__item-title {
    font-size: 13px;
  }

  .news__column {
    width: 100%;
  }

  .media__column {
    width: 100%;
  }

  .media__item-title {
    font-size: 13px;
  }

  .footer__contacts span {
    display: block;
  }

  .inner-top__content {
    min-height: 150px;
  }

  .breadcrumbs__list-link {
    font-size: 13px;
  }

  .breadcrumbs__list-link::after {
    font-size: 13px;
  }

  .catalog__search-input {
    padding: 12px 50px 12px 10px;
    font-size: 15px;
  }

  .pagination__arrow {
    font-size: 15px;
  }

  .pagination__arrow.prev-arrow {
    margin-right: 10px;
  }

  .pagination__arrow.next-arrow {
    margin-left: 10px;
  }
}

@media (max-width: 400px) {
  .header__logo {
    width: 115px;
  }

  .header__languages {
    margin-right: 20px;
  }

  .header__languages-item::after {
    margin-left: -3px;
    margin-right: 2px;
  }

  .header__languages-link {
    font-size: 12px;
  }

  .categories__column {
    width: 100%;
  }

  .catalog__column {
    width: 100%;
  }
}