html {
  scroll-behavior: smooth;
}

:root {
  --blue: #003f53;
  --white: #fff;
  --red: #e60026;
  --grey: #c3c3c3;
  --transition-dur-and-func: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  background-color: var(--white, #fff);
  color: var(--blue, #003f53);
  font-style: normal;
  font-family: "Nunito", sans-serif;
}

html,
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

main,
footer {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a,
button {
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  padding: 0;
}

img {
  padding: 0;
  margin: 0;
}

.hidden-element {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.container {
  width: 100%;
  min-width: 320px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */
@media screen and (min-width: 375px) {
  .container {
    min-width: 375px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* TABLET */
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* DESKTOP */
@media screen and (min-width: 1280px) {
  .container {
    width: 100%;
    min-width: 1280px;
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* FULL */
@media screen and (min-width: 1920px) {
  .container {
    width: 1920px;
    min-width: 1920px;
    max-width: 1920px;
    padding-left: 208px;
    padding-right: 208px;
  }
}

/* header */
.header {
  position: relative;
  z-index: 999;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .header__top {
  display: none;
}

.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.header__top-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.header__top-link {
  color: var(--grey, #838383);
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
}

.header__top-btn {
  display: inline-flex;
  padding: 4px 12px 4px 36px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--blue, #003f53);
  color: var(--white, #fff);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  position: relative;
}

.header__top-btn::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 8px;
  left: 16px;
  background-image: url(../images/patreon-logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.header .header__main {
  background-color: var(--white, #fff);
  padding: 8px 0;
}

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

.header__main-logo {
  display: inline-block;
  width: 169px;
  height: auto;
  margin-right: auto;
}

.header__main-logo img {
  width: 100%;
}

.header__main .burger-btn {
  display: block;
}

.header__main .header__main-nav {
  display: none;
}

.header__main-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}

.header__main-list .header__main-item {
  color: var(--blue, #003f53);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  padding-left: 26px;
  white-space: nowrap;
}

.burger-menu .header__main-list .header__main-item {
  padding-left: 26px;
  padding-right: 26px;
}

.burger-menu .header__top-wrapper {
  align-items: flex-start;
}

.header__main-list .header__main-item.active,
.header__main-list .header__main-item.current-menu-item,
.header__main-list .header__main-item.current_page_item,
.header__main-list .header__main-item:has(a[aria-current="page"]) {
  color: var(--red, #e60026);
  position: relative;
}

.header__main-list .header__main-item.active::before,
.header__main-list .header__main-item.current-menu-item::before,
.header__main-list .header__main-item.current_page_item::before,
.header__main-list .header__main-item:has(a[aria-current="page"])::before {
  position: absolute;
  content: "";
  width: 17.908px;
  height: 17.908px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/red-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.header__main-link {
  white-space: nowrap;
}

.header__main .search-form {
  display: none;
}

.search-form {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 352px;
  gap: 8px;
  position: relative;
  margin-bottom: 60px;
}

.search-form .search-form-btn {
  border-radius: 4px;
  width: 60px;
  height: 44px;
  background: var(--red, #e60026);
  background-image: url(../images/forward-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
}

.search-form-input {
  flex-grow: 1;
  padding: 10px 14px 10px 42px;
  border-radius: 4px;
  border: 1px solid var(--grey, #c3c3c3);
  background: transparent;
  color: var(--blue, #003f53);
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: capitalize;
}

.search-form-input::placeholder {
  opacity: 0.5;
}

.search-form::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  background-image: url(../images/search-lg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.burger-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease-in-out, visibility 600ms ease-in-out;
  background-color: var(--white, #fff);
  padding-top: 122px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-menu.active {
  opacity: 1;
  visibility: visible;
  z-index: 998;
  overflow: scroll;
}

.burger-icon path {
  transition: var(--transition-dur-and-func);
}

.burger-icon.active #line0 {
  opacity: 0;
}

.burger-icon.active #line1 {
  transform: rotate(45deg) translate(-0.5px, 7px);
  transform-origin: center;
}

.burger-icon.active #line2 {
  transform: rotate(-45deg) translate(0.5px, -7.5px);
  transform-origin: center;
}

.burger-menu__inner {
  background: var(--grey, #c3c3c3);
  margin-bottom: 8px;
}

.burger-menu__social-list {
  padding: 14px 28px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.burger-menu__social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-menu__social-link a,
.burger-menu__social-link img {
  width: 100%;
}

.burger-menu__social-list.fixed {
  display: none;
}

@media screen and (min-width: 1280px) {
  .header .header__top {
    display: block;
    padding: 8px 0;
    background: #f9f9f9;
    border-bottom: 1px solid var(--grey, #c3c3c3);
  }
  .header__top .container {
    margin: 0 auto;
  }
  .header__top-wrapper {
    flex-direction: row;
    gap: 102px;
  }
  .header .header__main {
    padding: 44px 0;
  }
  .header__main .container {
    gap: 24px;
  }
  .header__main-logo {
    width: 169px;
  }
  .header__main .burger-btn {
    display: none;
  }
  .header__main .header__main-nav {
    display: block;
  }
  .header__main-list {
    flex-direction: row;
    gap: 18px;
    margin-bottom: 0;
  }
  .header__main-list .header__main-item {
    font-size: 14px;
    line-height: 1.7;
  }
  .header__main .search-form {
    display: flex;
    max-width: 300px;
    margin: 0;
  }
  .burger-menu {
    display: none;
  }
  .burger-menu__social-list.fixed {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 24px;
    padding: 16px 12px;
    background: var(--grey, #c3c3c3);
    border-radius: 4px 0px 0px 4px;
    position: fixed;
    top: 50vh;
    transform: translateY(-50%);
    right: 0;
    z-index: 1000;
  }
  .burger-menu__social-link {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .header__main .container {
    gap: 48px;
  }
}

@media screen and (min-width: 1920px) {
  .header__main-list {
    flex-direction: row;
    gap: 48px;
  }
  .search-form {
    max-width: 352px;
  }
  .burger-menu__social-list.fixed {
    padding: 16px 20px;
  }
}

/* latest-news */
.latest-news {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 8px;
}

.latest-news .container {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.latest-news__side {
  display: none;
  width: 100%;
  margin: 0 auto;
}

.latest-news__side.main-page-side-news {
  display: block;
}

.latest-news__side-title {
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  padding-left: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--red, #e60026);
  position: relative;
  margin-bottom: 12px;
}

.latest-news__side-title::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: calc((100% / 2) - 12px);
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}

.latest-news__side-title::after {
  position: absolute;
  content: "";
  width: 17.908px;
  height: 17.908px;
  top: calc((100% / 2) - 12px);
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/red-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.latest-news__link {
  display: flex;
  width: 100%;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: var(--red, #e60026);
  color: var(--white, #fff);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.11;
  text-transform: uppercase;
  margin-top: 32px;
}

.latest-news__side-list {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  gap: 12px;
}

.latest-news__list-item:nth-child(n + 6) {
  display: none;
}

.latest-news__list-item {
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey, #c3c3c3);
}

.latest-news__item-image {
  display: none;
}

.latest-news__item-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 12px;
}

.latest-news__item-text {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 64px;
}

.latest-news__item-data {
  display: flex;
  align-items: center;
}

.latest-news__data-tag {
  display: none;
}

.latest-news__data-time span {
  display: none;
}

.latest-news__data-time span.time {
  display: inline-flex;
  width: 40px;
  flex-shrink: 0;
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.latest-news__slider {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--red, #e60026);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.swiper {
  height: 100%;
}

.latest-news__slider-list {
  width: 100%;
  min-height: 218px;
  aspect-ratio: 343/218;
}

.latest-news__slider-item {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  padding: 57px 16px 65px 16px;
  position: relative;
}

.latest-news__slider-item::after {
  position: absolute;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  bottom: 56px;
  right: 0;
  background-color: #fff;
}

.latest-news__slider-title {
  color: var(--white, #fff);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 96px;
  margin: 0 0 8px 0;
}

.latest-news__slider-text {
  display: none;
}

.latest-news__slider-content {
  display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.latest-news__swiper-btn.swiper-button-next,
.latest-news__swiper-btn.swiper-button-prev {
  color: #fff;
  cursor: pointer;
  position: absolute;
  height: 40px;
  top: calc(100% - 6px);
  z-index: 10;
  transform: translateY(-50%);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  width: fit-content;
}

.latest-news__btn-arrow {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  background-image: url(../images/forward-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
}

.latest-news__swiper-btn.swiper-button-next {
  right: 16px;
}

.latest-news__swiper-btn.swiper-button-prev {
  left: 16px;
}

.latest-news__swiper-btn.swiper-button-prev .latest-news__btn-arrow {
  transform: rotate(-180deg);
}

.latest-news__slider-content {
  display: none;
  align-items: center;
  color: var(--white, #fff);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.71;
}

.latest-news__slider-content .latest-news__slider-tag {
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.latest-news__slider-content .latest-news__slider-tag::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.latest-news__slider-time {
  display: flex;
  gap: 8px;
  padding: 0 16px;
  position: relative;
}

.latest-news__slider-time::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/gray-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.latest-news__slider-time::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/gray-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.latest-news__slider-author {
  display: flex;
  gap: 8px;
  padding-left: 20px;
  position: relative;
}

.latest-news__slider-author::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.latest-news__slider-photo {
  display: flex;
  gap: 8px;
  padding-left: 20px;
  position: relative;
}

.latest-news__slider-photo::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 460px) {
  .latest-news__slider-title {
    color: var(--white, #fff);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 144px;
    margin: 0 0 8px 0;
  }
}
@media screen and (min-width: 768px) {
  .latest-news__slider-title {
    color: var(--white, #fff);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 173px;
    margin: 0 0 8px 0;
  }
  .latest-news__slider-text {
    display: block;
    color: var(--white, #fff);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.46;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 53px;
  }
}

@media screen and (min-width: 1280px) {
  .latest-news {
    flex-direction: row-reverse;
    gap: 32px;
  }
  .latest-news .container {
    display: flex;
    flex-direction: row-reverse;
    gap: 32px;
  }
  .latest-news__side {
    display: block;
    margin: 0;
    margin-left: auto;
    max-width: 355px;
  }
  .latest-news__side-title::after {
    display: none;
  }
  .latest-news__side-title {
    margin-bottom: 32px;
  }
  .latest-news__link {
    margin-top: 24px;
  }
  .latest-news__side-list {
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 632px;
    height: 632px;
    gap: 38px;
  }
  .latest-news__side-list::-webkit-scrollbar {
    width: 2px;
  }
  .latest-news__side-list::-webkit-scrollbar-track {
    background: var(--grey, #c3c3c3);
  }
  .latest-news__side-list::-webkit-scrollbar-thumb {
    background-color: var(--red, #e60026);
  }
  .latest-news__list-item {
    padding-bottom: 0;
    border-bottom: none;
    gap: 10px;
  }
  .latest-news__list-item:nth-child(n + 6) {
    display: flex;
  }
  .latest-news__item-image {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 4px;
  }
  .latest-news__item-content {
    flex-direction: column;
    align-items: unset;
    gap: 12px;
    width: calc((100% - 96px) - 10px);
  }
  .latest-news__data-tag {
    display: block;
    color: var(--grey, #c3c3c3);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
    padding: 0 16px 0 20px;
    position: relative;
  }
  .latest-news__data-tag::before {
    content: "/";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red, #e60026);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.33;
  }
  .latest-news__data-tag::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    background-image: url(../images/gray-dot.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .latest-news__data-time {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .latest-news__data-time span,
  .latest-news__data-time span.time {
    display: block;
    color: var(--grey, #c3c3c3);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
  }
  .latest-news__slider {
    padding-bottom: 64px;
    flex-grow: 1;
    width: calc((100% - 355px) - 32px);
    max-width: 1120px;
  }
  .latest-news__slider-list {
    width: 100%;
    height: 712px;
    aspect-ratio: unset;
  }
  .latest-news__slider-item {
    padding: 127px 45px 177px 96px;
  }
  .latest-news__slider-item::after {
    position: absolute;
    content: "";
    width: calc((100% - 96px) - 96px);
    height: 1px;
    bottom: 144px;
    right: 96px;
    background-color: #fff;
  }
  .latest-news__slider-title {
    font-size: 50px;
    line-height: 1.12;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: 768px;
    max-height: 224px;
    margin: 48px 0;
  }
  .latest-news__slider-text {
    display: block;
    color: var(--white, #fff);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.46;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 768px;
    max-height: 64px;
  }
  .latest-news__slider-content {
    display: flex;
  }
  .latest-news__swiper-btn.swiper-button-next,
  .latest-news__swiper-btn.swiper-button-prev {
    top: calc(100% - 56px);
  }
  .latest-news__swiper-btn.swiper-button-next {
    right: unset;
    left: 224px;
  }
  .latest-news__swiper-btn.swiper-button-prev {
    left: 96px;
  }
  .latest-news__slider-content {
    display: flex;
  }
}

@media screen and (min-width: 1440px) {
  .latest-news__slider-content {
    font-size: 14px;
  }
}

.main-info {
  padding: 20px 0 32px;
}

.main-info .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.main-info__content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.main-info__content-title {
  color: var(--blue, #003f53);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.main-info__content-title::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.main-info__content-morelink {
  color: var(--red, #e60026);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  padding-right: 20px;
  position: relative;
}

.main-info__content-morelink::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/red-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.main-info__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.main-info__list-item:nth-child(n + 4) {
  display: none;
}

.main-info__list-item {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.main-info__list-image {
  width: 100%;
  min-height: 366px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 8px;
}

.main-info__list-info {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
}

.main-info__list-tag {
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.main-info__list-tag::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
}

.main-info__list-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--grey, #c3c3c3);
  padding-left: 16px;
  position: relative;
}

.main-info__list-time::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/gray-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.main-info__list-title {
  color: var(--blue, #003f53);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.09;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 72px;
}

.main-info__advertising {
  width: 100%;
  margin-left: auto;
}

.main-info__advertising-item img {
  display: block;
  object-fit: contain;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.main-info__advertising-item:last-child img {
  margin-bottom: 0;
}

@media screen and (min-width: 1280px) {
  .main-info {
    padding: 40px 0 92px;
  }
  .main-info .container {
    flex-direction: row;
  }
  .main-info__content-head {
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 32px;
  }
  .main-info__content-title {
    font-size: 24px;
    line-height: 1;
    padding-left: 28px;
  }
  .main-info__content {
    flex-grow: 1;
    min-width: calc((100% - 355px) - 32px);
    width: 100%;
  }
  .main-info__list {
    flex-direction: row;
    gap: unset;
  }
  .main-info__list-item:nth-child(n + 4) {
    display: flex;
  }
  .main-info__list-item {
    max-width: 352px;
    width: calc((100% - (32px * 2)) / 3);
    margin: 0;
  }
  .main-info__list-image {
    width: 100%;
    min-height: 366px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 32px;
  }
  .main-info__list-info {
    margin-bottom: 24px;
  }
  .main-info__advertising {
    width: 355px;
  }
  .main-info .main-info__advertising {
    min-width: 355px;
    padding-top: 56px;
    height: 600px;
  }
  .main-info__advertising-item img {
    max-width: 352px;
    margin: 0 auto 20px 0;
  }
  .main-info__advertising-item:last-child img {
    margin-bottom: 0;
  }
  .main-info__swiper-btn.swiper-button-next-main,
  .main-info__swiper-btn.swiper-button-prev-main {
    color: #fff;
    cursor: pointer;
    position: absolute;
    height: 40px;
    top: 180px;
    z-index: 10;
    transform: translateY(-50%);
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    width: fit-content;
  }
  .main-info__btn-arrow {
    border-radius: 50%;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url(../images/forward-arrow.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center center;
  }
  .main-info__swiper-btn.swiper-button-next-main {
    right: 24px;
  }
  .main-info__swiper-btn.swiper-button-prev-main {
    left: 24px;
  }
  .main-info__swiper-btn.swiper-button-prev-main .main-info__btn-arrow {
    transform: rotate(-180deg);
  }
}

/* photo-reports */

.photo-reports {
  background: var(--blue, #003f53);
  padding: 20px 0;
}

.photo-reports__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--red, #e60026);
  margin-bottom: 20px;
}

.photo-reports__head-title {
  color: var(--white, #fff);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.photo-reports__head-title::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.photo-reports__head-morelink {
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  padding-right: 20px;
  position: relative;
}

.photo-reports__head-morelink::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/forward-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.photo-reports .swiper {
  max-width: 600px;
}

.photo-reports__list {
  padding-bottom: 56px;
}

.photo-reports__list-item {
  width: 100%;
  min-height: 366px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.photo-reports__item-img {
  width: 100%;
  height: 366px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.photo-reports__item-tag {
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.71;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.photo-reports__item-tag::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.photo-reports__item-title {
  color: var(--white, #fff);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 71px;
}

.photo-reports__swiper-btn.swiper-button-next2,
.photo-reports__swiper-btn.swiper-button-prev2 {
  color: #fff;
  cursor: pointer;
  position: absolute;
  height: 40px;
  top: calc(100% - 20px);
  z-index: 10;
  transform: translateY(-50%);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  width: fit-content;
}

.photo-reports__btn-arrow {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  background-image: url(../images/forward-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
}

.photo-reports__swiper-btn.swiper-button-next2 {
  right: 0;
}

.photo-reports__swiper-btn.swiper-button-prev2 {
  left: 0;
}

.photo-reports__swiper-btn.swiper-button-prev2 .photo-reports__btn-arrow {
  transform: rotate(-180deg);
}

@media screen and (min-width: 1280px) {
  .photo-reports {
    background: #fff;
    padding: 0 0 64px 0;
  }
  .photo-reports__inner {
    border-radius: 4px;
    background: var(--blue, #003f53);
    padding: 40px 0 56px 96px;
  }
  .photo-reports .swiper {
    max-width: 1408px;
  }
  .photo-reports__head {
    gap: 40px;
    justify-content: flex-start;
    padding-bottom: 40px;
    margin-right: 97px;
    margin-bottom: 40px;
  }
  .photo-reports__head-title {
    font-size: 24px;
    line-height: 1;
    padding-left: 28px;
  }
  .photo-reports__head-title::before {
    content: "/";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red, #e60026);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
  }
  .photo-reports__list {
    padding-bottom: 84px;
  }
  .photo-reports__list-item {
    min-height: 502px;
    border-radius: 4px;
  }
  .photo-reports__item-img {
    width: 100%;
    height: 502px;
    padding: 72px 72px 72px 32px;
    gap: 32px;
  }
  .photo-reports__item-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    max-height: 84px;
  }
  .photo-reports__swiper-btn.swiper-button-next2 {
    right: 77px;
  }
  .photo-reports__swiper-btn.swiper-button-prev2 {
    left: unset;
    right: 216px;
  }
}

.blogs-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.blogs-section__content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--red, #e60026);
}

.blogs-section__content-title {
  color: var(--blue, #003f53);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.blogs-section__content-title::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.blogs-section__content-morelink {
  color: var(--red, #e60026);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  padding-right: 20px;
  position: relative;
}

.blogs-section__content-morelink::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/red-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.blogs-section__list {
  display: flex;
  flex-direction: column;
}

.blogs-section__list-item:nth-child(n + 2) {
  display: none;
}

.blogs-section__list-item {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.blogs-section__list-image {
  width: 100%;
  min-height: 366px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 8px;
}

.blogs-section__list-info {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
}

.blogs-section__list-tag {
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.blogs-section__list-tag::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
}

.blogs-section__list-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--grey, #c3c3c3);
  padding-left: 16px;
  position: relative;
}

.blogs-section__list-time::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/gray-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.blogs-section__list-title {
  color: var(--blue, #003f53);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.09;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 72px;
}

@media screen and (min-width: 1280px) {
  .blogs-section {
    padding-top: 0px;
    padding-bottom: 64px;
  }
  .blogs-section__content-head {
    justify-content: flex-start;
    gap: 40px;
    padding-top: 40px;
    margin-bottom: -24px;
    position: relative;
    z-index: 2;
  }
  .blogs-section__content-title {
    font-size: 24px;
    line-height: 1;
    padding-left: 28px;
  }
  .blogs-section__content {
    flex-grow: 1;
    width: calc((100% - 355px) - 32px);
    max-width: 1120px;
  }
  .blogs-section__list {
    flex-direction: row;
    justify-content: flex-start;
  }
  .blogs-section__list-item:nth-child(n + 2) {
    display: flex;
  }
  .blogs-section__list-item {
    max-width: 352px;
    width: calc((100% - (32px * 2)) / 4);
    margin: 0;
  }
  .blogs-section__list-image {
    width: 100%;
    min-height: 366px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 32px;
  }
  .blogs-section__list-info {
    margin-bottom: 24px;
  }
  .swiper.blogs-section__swiper {
    padding-top: 56px;
  }
  .blogs-section__swiper-btn.swiper-button-next-blogs,
  .blogs-section__swiper-btn.swiper-button-prev-blogs {
    color: #fff;
    cursor: pointer;
    position: absolute;
    height: 40px;
    top: 236px;
    z-index: 10;
    transform: translateY(-50%);
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    width: fit-content;
  }
  .blogs-section__btn-arrow {
    border-radius: 50%;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url(../images/forward-arrow.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center center;
  }
  .blogs-section__swiper-btn.swiper-button-next-blogs {
    right: 24px;
  }
  .blogs-section__swiper-btn.swiper-button-prev-blogs {
    left: 24px;
  }
  .blogs-section__swiper-btn.swiper-button-prev-blogs
    .blogs-section__btn-arrow {
    transform: rotate(-180deg);
  }
  .swiper-pagination-blogs.swiper-pagination-fraction.swiper-pagination-horizontal,
  .swiper-pagination-blogs.swiper-pagination-custom.swiper-pagination-horizontal {
    display: block;
    color: var(--blue, #003f53);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    position: absolute;
    top: 0;
    left: unset;
    right: 0;
    width: fit-content;
    height: fit-content;
    z-index: 2;
  }
  .swiper-pagination-blogs.swiper-pagination-fraction.swiper-pagination-horizontal
    .swiper-pagination-current,
  .swiper-pagination-blogs.swiper-pagination-custom.swiper-pagination-horizontal
    .swiper-pagination-current {
    color: var(--red, #e60026);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
  }
}

/* news-section */

.news-section {
  padding-bottom: 32px;
}

.news-section__wrapper {
  margin-bottom: 32px;
}

.news-section__calendar {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  margin-left: auto;
  width: 352px;
}

.news-section__calendar-head {
  color: var(--blue, #003f53);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
  margin-bottom: 24px;
  margin-top: 7px;
}
.news-section__calendar-head ::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}
.news-section__calendar-wrapper {
  height: 545px;
  border-radius: 4px;
  background: var(--blue, #003f53);
  padding: 24px;
}

.news-section__content {
  width: 100%;
}

.news-section__content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--red, #e60026);
  margin-bottom: 20px;
}

.news-section__content-title {
  color: var(--blue, #003f53);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.news-section__content-title::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.news-section__content-morelink {
  color: var(--red, #e60026);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  padding-right: 20px;
  position: relative;
}

.news-section__content-morelink::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/red-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.news-section__list-item:nth-child(n + 2) {
  display: none;
}

.news-section__list-item {
  width: 100%;
  min-height: 366px;
  border-radius: 4px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
}

.news-section__item-img {
  width: 100%;
  height: 366px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.news-section__item-tag {
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.71;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.news-section__item-tag::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.news-section__item-title {
  color: var(--white, #fff);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 71px;
}

.news-section__advertising {
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.news-section__advertising img {
  width: 100%;
  height: auto;
}

#calendar,
#calendar-mob {
  color: white !important;
  height: 100%;
  position: relative;
}
#calendar .selected-date .fc-daygrid-day-frame.fc-scrollgrid-sync-inner,
#calendar-mob .selected-date .fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
  border-radius: 4px;
  background: var(--red, #e60026);
}
#calendar .fc-day-future,
#calendar-mob .fc-day-future {
  pointer-events: none;
  opacity: 0.5;
}
#calendar .fc-toolbar-title,
#calendar-mob .fc-toolbar-title {
  color: var(--white, #fff);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
#calendar .fc-scrollgrid.fc-scrollgrid-liquid,
#calendar-mob .fc-scrollgrid.fc-scrollgrid-liquid {
  width: 304px;
}
#calendar table,
#calendar th,
#calendar td,
#calendar tr,
#calendar-mob table,
#calendar-mob th,
#calendar-mob td,
#calendar-mob tr {
  border: none;
}
th,
td,
tr {
  width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  text-align: center !important;
  vertical-align: middle !important;
}
.fc-daygrid-day-top {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
  min-height: unset !important;
}
.fc .fc-daygrid-day-frame {
  min-height: unset !important;
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
.fc
  .fc-daygrid-day.fc-day-today
  .fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
  border-radius: 4px !important;
  border: 1px solid var(--white, #fff) !important;
}
.fc .fc-daygrid-day .fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
  height: 40px;
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
.fc .fc-daygrid-day-top {
  margin-top: 7px;
}
.fc .fc-highlight {
  background: transparent;
  border-radius: 4px !important;
  border: 1px solid var(--white, #fff) !important;
}
.fc .fc-today-button.fc-button.fc-button-primary {
  position: absolute;
  right: 0;
  top: 40px;
  width: 116px !important;
  height: 40px;

  color: var(--white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.524px;
  text-transform: capitalize;
  opacity: 0.2;

  display: flex;
  width: 116px;
  height: 40px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: var(--blue, #003f53);
}
.fc .fc-selectedDayDisplay-button.fc-button.fc-button-primary {
  position: absolute;
  left: 0;
  top: 40px;
  width: 160px !important;
  height: 40px;

  color: var(--white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.524px;
  opacity: 1;

  display: flex;
  width: 116px;
  height: 40px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--white, #fff);
  background: var(--blue, #003f53);
}
.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 2.8em;
  position: relative;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:has(h2) {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:has(.fc-prev-button),
.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:has(.fc-next-button) {
  position: relative;
  z-index: 2;
}

.fc .fc-prev-button.fc-button,
.fc .fc-next-button.fc-button {
  background: var(--blue, #003f53);
}

@media screen and (min-width: 1280px) {
  .news-section {
    padding-top: 0;
    padding-bottom: 64px;
  }

  .news-section__wrapper {
    margin-bottom: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--red, #e60026);
  }
  .news-section__wrapper {
    display: flex;
    gap: 32px;
  }
  .news-section__calendar {
    display: flex;
  }
  .news-section__content {
    flex-grow: 1;
    width: calc((100% - 355px) - 32px);
    max-width: 1120px;
  }
  .news-section__content-head {
    justify-content: flex-start;
    gap: 40px;
    padding-bottom: 0;
    margin-bottom: 31px;
    border-bottom: none;
  }
  .news-section__content-title {
    font-size: 24px;
    line-height: 1;
    padding-left: 28px;
  }
  .news-section__list-item:nth-child(n + 2) {
    display: flex;
  }
  .news-section__list-item:nth-child(n + 3) {
    display: none;
  }
  .news-section__list {
    display: flex;
    gap: 32px;
  }
  .news-section__list-item {
    min-height: 545px;
    border-radius: 4px;
    max-width: 544px;
    width: calc((100% - 32px) / 2);
    margin: 0;
  }
  .news-section__item-img {
    width: 100%;
    height: 545px;
    padding: 72px 72px 72px 32px;
    gap: 32px;
  }
  .news-section__item-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    -webkit-line-clamp: 2;
    max-height: 64px;
  }
  .news-section__advertising {
    max-width: 1004px;
  }
}

/* video-section */

.video-section {
  background: var(--blue, #003f53);
  padding: 20px 0;
}

.video-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--red, #e60026);
}

.video-section__head-title {
  color: var(--white, #fff);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.video-section__head-title::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.video-section__head-morelink {
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  padding-right: 20px;
  position: relative;
}

.video-section__head-morelink::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/forward-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.video-section__content {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 600px;
  margin: 0 auto;
}

.video-section__content-video {
  width: 100%;
  border-radius: 4.17px;
  overflow: hidden;
  height: 193px;
}

.video-section__content-text-title {
  color: var(--white, #fff);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 71px;
}

.video-section__content-text-text {
  display: none;
}

.video-section__list {
  display: none;
}

@media screen and (min-width: 1280px) {
  .video-section {
    background: #fff;
    padding: 0;
  }
  .video-section__inner {
    border-radius: 4px;
    background: var(--blue, #003f53);
    padding: 40px 96px;
  }
  .video-section .swiper {
    max-width: 1408px;
  }
  .video-section__head {
    gap: 40px;
    justify-content: flex-start;
    padding-bottom: 40px;
  }
  .video-section__head-title {
    font-size: 24px;
    line-height: 1;
    padding-left: 28px;
  }
  .video-section__head-title::before {
    content: "/";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red, #e60026);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
  }
  .video-section__content {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-direction: row-reverse;
    align-items: center;
    gap: 13px;
    max-width: 100%;
    margin: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #336575;
  }
  .video-section__content-video {
    border-radius: 8px;
    width: calc((100% - 13px) / 2);
    height: 370px;
  }
  .video-section__content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: calc((100% - 13px) / 2);
  }
  .video-section__content-text-title {
    font-size: 34px;
    line-height: 1.41;
    -webkit-line-clamp: 4;
    max-height: 192px;
  }
  .video-section__content-text-text {
    display: block;
    color: var(--white, #fff);
    font-size: 18px;
    line-height: 1.78;
  }
  .video-section__list {
    display: flex;
    gap: 32px;
  }
  .video-section__list-item:nth-child(n + 5) {
    display: none;
  }
  .video-section__list-item {
    border-radius: 4px;
    overflow: hidden;
    width: calc((100% - (32px * 3)) / 4);
    max-width: 304px;
    height: 172.056px;
  }
  .video-section__list-item-img {
    width: 100%;
    height: 100%;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .video-section__item-tag {
    margin-top: auto;
    color: var(--white, #fff);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
    padding-left: 17px;
    position: relative;
  }
  .video-section__item-tag::before {
    content: "/";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red, #e60026);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
  }
  .video-section__item-title {
    color: var(--white, #fff);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.14;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 48px;
  }
}

/* report-news  */
.report-news {
  padding-top: 32px;
  padding-bottom: 32px;
}

.report-news .report-news__inner {
  height: 192px;
  padding: 20px 16px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--red, #e60026);
  position: relative;
}

.report-news__inner-form {
  width: 100%;
}

.report-news__inner-title {
  color: var(--white, #fff);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 8px;
}

.report-news__inner-text {
  color: var(--white, #fff);
  font-size: 18px;
  margin-bottom: 20px;
}

.report-news__form {
  display: flex;
  width: 100%;
  gap: 8px;
  max-width: 544px;
}

.report-news__form input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  padding: 10px 14px;
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white, #fff);
}

.report-news__form input::placeholder {
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  opacity: 0.95;
}

.report-news__form button {
  width: 60px;
  height: 44px;
  border-radius: 4px;
  background: var(--white, #fff);
  background-image: url(../images/red-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.report-news__form-error {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  position: absolute;
  bottom: 0;
  display: none;
}

.report-news__form-error.error {
  display: block;
}

@media screen and (min-width: 1280px) {
  .report-news {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .report-news .report-news__inner {
    padding: 40px 96px;
    height: 276px;
    background-image: url(../images/vezha-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
  }
  .report-news__inner-form {
    width: 544px;
  }
  .report-news__inner-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 24px;
  }
  .report-news__inner-text {
    margin-bottom: 48px;
  }
  .report-news__form-error {
    font-size: 16px;
    bottom: 20px;
  }
}

/* footer */

footer {
  /* height: 48px; */
  background: var(--blue, #003f53);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.mob-logo-image {
  display: block;
  width: 170px;
  height: 48px;
}

.desc-logo-image {
  display: none;
}

.footer__inner-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__inner-link {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__inner-link a,
.footer__inner-link img {
  width: 100%;
  height: 100%;
}

.footer__text {
  padding-top: 8px;
  color: var(--white, #fff);
  order: -1;
  width: 100%;
  font-size: 10px;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  footer {
    height: 48px;
  }
  .footer__text {
    padding-top: 0;
    order: 0;
    width: fit-content;
    font-size: 16px;
    text-align: left;
  }
  .footer__inner {
    flex-wrap: nowrap;
  }
  .mob-logo-image {
    display: none;
  }
  .desc-logo-image {
    display: block;
    height: 48px;
  }
  .footer__inner-list {
    gap: 24px;
  }
}

.not-found__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 24px;
  min-height: 50vh;
  text-align: center;
}

.not-found__wrapper h1,
.content-wrapper h1 {
  font-size: 22px;
}

.not-found__wrapper h2,
.content-wrapper h2 {
  font-size: 16px;
}

@media screen and (min-width: 1280px) {
  .not-found__wrapper h1,
  .content-wrapper h1 {
    font-size: 36px;
  }

  .not-found__wrapper h2,
  .content-wrapper h2 {
    font-size: 24px;
  }
}

.pinned .latest-news__item-content {
  position: relative;
}

.pinned .latest-news__item-content > p > a {
  display: block;
  text-indent: 18px;
}

.pinned .latest-news__item-content::before {
  position: absolute;
  content: "";
  top: 1px;
  left: -3px;
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
  background-image: url(../images/red-pin.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

lite-youtube {
  width: 100%;
  height: 100%;
}

figure {
  max-width: 100%;
}