@charset "UTF-8";

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 18px;
  font-family: Inter!important;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #EAEEF5;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1752px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 150px 0;
}

.icon-svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.title {
  font-size: 42px;
  font-weight: 600;
  line-height: 135%;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

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

.header__top-wrap {
  background: #ffffff;
}

.header__top {
  display: flex;
  align-items: center;
  padding: 40px 0;
  justify-content: space-between;
}

.header__logo {
  width: 189px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  z-index: 1;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav-link {
  transition: 0.2s ease-in-out;
}

.header__nav-link.active {
  color: #C93;
}

.header__nav-link:hover {
  color: #C93;
}

.header__burger {
  cursor: pointer;
  z-index: 1;
}

.header__burger div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1D489C;
}

.header__burger div:nth-child(2),
.header__burger.active div:nth-child(1) {
  display: none;
}

.header__burger.active div:nth-child(2) {
  display: flex;
}

.header__burger svg {
  flex-shrink: 0;
  pointer-events: none;
}

.header__burger svg path {
  transition: 0.2s ease-in-out;
}

.header__burger div {
  pointer-events: none;
}

.header__burger:not(.active):hover svg path:nth-child(1) {
  transform: scaleX(3);
}

/* .header__burger:not(.active).active svg path:nth-child(1) {
  transform: scaleX(3);
} */

.header__bot-wrap {
  background: #1D489C;
}

.header__bot {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: #ffffff;
}

.header__time {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 27px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.4);
  margin-right: 23px;
  display: none;
}

.header__time.active {
  display: flex;
}

.header__time img {
  width: 24px;
  height: 24px;
}

.header__time span {
  font-weight: 500;
}

.header__weather {
  display: none;
  align-items: center;
  gap: 12px;
  margin-right: 60px;
}

.header__weather.active {
  display: flex;
}

.header__weather svg {
  width: 39px;
  height: 39px;
}

.header__weather div > span {
  font-weight: 600;
  margin-left: 10px;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: auto;
}

.header__socials-item {
  width: 20px;
  height: 20px;
  transition: 0.2s ease-in-out;
}

.header__socials-item:hover {
  transform: scale(1.04);
}

.header__currency {
  display: none;
  align-items: center;
  margin-right: 90px;
  gap: 30px;
  width: 420px;
  flex-shrink: 0;
}

.header__currency-item {
  display: flex;
  align-items: center;
  gap: 6px;
  display: flex !important;
  flex-shrink: 0;
}

.header__currency-item:not(:last-child) {
  margin-right: 30px;
}

.header__currency-icon {
  width: 12px;
  height: 22px;
  flex-shrink: 0;
}

.header__currency-name {
  font-weight: 600;
}

.header__search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

.header__search:hover {
  text-decoration: underline;
}

.header__search img {
  width: 20px;
  height: 20px;
}

.header__lang {
  position: relative;
}

.header__lang.active .header__lang-active svg {
  transform: rotate(180deg);
}

.header__lang-active {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.header__lang-active:hover {
  text-decoration: underline;
}

.header__lang-active img {
  width: 21px;
  height: 21px;
}

.header__lang-active svg {
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}

.header__lang-other {
  position: absolute;
  width: 100%;
  top: calc(100% + 10px);
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  background: #1D489C;
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease-in-out;
}

.header__lang-other.active {
  opacity: 1;
  pointer-events: unset;
}

.header__lang-other a {
  text-align: center;
  text-transform: uppercase;
}

.header__lang-other a:hover {
  text-decoration: underline;
}

.header__menu {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.40);
  opacity: 0;
  pointer-events: none;
}

.header__menu.active {
  opacity: 1;
  pointer-events: unset;
}

.header__menu-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 660px;
  background: #fff;
  padding-top: 102px;
  padding-left: 60px;
}

.header__menu-text {
  position: absolute;
  top: 39px;
  left: 60px;
  font-size: 24px;
  font-weight: 500;
  color: #1D489C;
}

.header__menu-wrap::-webkit-scrollbar-track {
  background: #EFEFEF;
}

.header__menu-wrap::-webkit-scrollbar {
  width: 4px;
  background: #EFEFEF;
}

.header__menu-wrap::-webkit-scrollbar-thumb {
  background: #1D489C;
}

.header__menu-scroll {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 660px;
}

.header__menu-links {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 8px 40px;
  width: max-content;
}

.header__menu-link {
  text-align: left;
  transition: 0.2s ease-in-out;
}

.header__menu-link:hover {
  color: #C93;
}

.header__form-search {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 34, 39, 0.5);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.header__form-search.active {
  opacity: 1;
  pointer-events: unset;
}

.header__form-search_bg {
  background: #ffffff;
  width: 100%;
  max-height: 100%;
  overflow: auto;
}

.header__form-search_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid rgba(27, 34, 39, 0.06);
  margin-bottom: 20px;
}

.header__form-search form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.header__form-search form input {
  border: none;
  outline: none;
  line-height: 135%;
  font-size: 22px;
  font-weight: 400;
  width: 100%;
}

.header__form-search form button {
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 20px;
}

.header__form-search form button svg {
  width: 100%;
  height: 100%;
}

.header__form-search form button svg path {
  transition: 0.2s ease-in-out;
}

.header__form-search form button:hover svg path {
  fill: #1D489C;
}

.header__form-search form .search__form-tags {
  padding-bottom: 40px;
}

.header__form-items {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  max-width: 1136px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.header__form-link {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}

.header__form-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1D489C;
}

.header__form-link a:hover {
  text-decoration: underline;
}

.header-space {
  padding-top: 161px;
}

.footer {
  position: relative;
  margin-top: auto;
  background: #1D489C;
  color: #ffffff;
}

.footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 66px;
  left: 0;
  right: 0;
  top: -33px;
  border-radius: 28px;
  background: #EAEEF5;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 75px;
  /* padding-bottom: 30px; */
}

.footer__text {
  /* padding-bottom: 75px; */
  max-width: 400px;
  margin-top: 30px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 86px;
  max-width: 350px;
}

.footer__logo {
  width: 124px;
  height: 43px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__street {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
  line-height: 145%;
  font-weight: 500;
  font-size: 20px;
}

.footer__street a:hover {
  text-decoration: underline;
}

.footer__list {
  display: flex;
  flex-direction: column;
}

.footer__list ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
  list-style-type: none;
}

.footer__list ul a {
  font-size: 20px;
  line-height: 145%;
  font-weight: 500;
}

.footer__list ul a:hover {
  text-decoration: underline;
}

.footer__list-title {
  color: #C93;
  font-size: 16px;
  font-weight: 500;
  line-height: 145%;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.footer__items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.footer__socials a {
  width: 20px;
  height: 20px;
}

.footer__mail {
  font-size: 20px;
  line-height: 145%;
  font-weight: 500;
  margin-bottom: 30px;
}

.footer__mail:hover {
  text-decoration: underline;
}

.footer__feedback {
  font-weight: 500;
  line-height: 145%;
  padding: 11px 31px;
  background: #ffffff;
  border-radius: 8px;
  color: #1D489C;
  transition: 0.2s ease-in-out;
}

.footer__feedback:hover {
  transform: scale(1.04);
}

.footer__bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid rgba(255, 255, 255, 0.16);
  padding: 35px 0 50px 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 145%;
}

.footer__bot a:hover {
  text-decoration: underline;
}

.wrapper-parent {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  padding-top: 30px;
  padding-bottom: 120px;
}

.wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 560px;
  grid-template-columns: 1fr 560px;
  grid-gap: 20px;
}

.wrapper-col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.holiday {
  background: #1D489C;
  border-radius: 8px;
  overflow: hidden;
}

.holiday__container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 30px 50px;
  background: url("../img/decor-1.jpg") center/cover no-repeat;
  color: #ffffff;
}

.holiday__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

.holiday__title span {
  color: #C93;
}

.holiday__text {
  font-size: 16px;
}

.news-actual__block {
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.news-actual__header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
}


.news-actual__header-tab {
  padding: 20px;
  text-align: center;
  line-height: 145%;
  color: rgba(27, 34, 39, 0.4);
  transition: 0.2s ease-in-out;
}

.news-actual__header-tab:hover {
  color: #000000;
}

.news-actual__header-tab.active {
  background: #1D489C;
  color: #ffffff;
}

.news-actual__items {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  margin: 30px;
  padding-right: 10px;
  height: 532px;
  overflow: auto;
  display: none;
}

.news-actual__items.active {
  display: flex;
}

.news-actual__items::-webkit-scrollbar-track {
  background: #EFEFEF;
  border-radius: 50px;
}

.news-actual__items::-webkit-scrollbar {
  width: 3px;
  background: #EFEFEF;
  border-radius: 50px;
}

.news-actual__items::-webkit-scrollbar-thumb {
  background: #1D489C;
  border-radius: 50px;
}

.news-actual__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.news-actual__item:hover .news-actual__item-img img {
  transform: scale(1.04);
}

.news-actual__item:hover .news-actual__item-title {
  color: #1D489C;
}

.news-actual__item-img {
  width: 150px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.news-actual__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in-out;
}

.news-actual__item-info {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.news-actual__item-date {
  color: rgba(27, 34, 39, 0.5);
  font-size: 14px;
  line-height: 140%;
}

.news-actual__item-title {
  line-height: 145%;
  transition: 0.2s ease-in-out;
  font-weight: 500;
}

.news-actual__link {
  display: inline-flex;
  align-items: center;
  margin-left: 30px;
  margin-bottom: 45px;
  color: #1D489C;
  gap: 12px;
  align-self: flex-start;
}

.news-actual__link:hover {
  text-decoration: underline;
}

.widget__tg {
  position: relative;
  height: 550px;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.widget__tg-header {
  display: flex;
  align-items: center;
  max-width: 350px;
  gap: 10px;
  font-size: 26px;
  font-weight: 500;
  color: #1D489C;
  line-height: 145%;
  margin-bottom: 20px;
}

.widget__tg-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
  padding-right: 34px;
}

.widget__tg-block::-webkit-scrollbar-track {
  background: #E5E9F1;
  border-radius: 26px;
}

.widget__tg-block::-webkit-scrollbar {
  width: 8px;
  background: #E5E9F1;
  border-radius: 26px;
}

.widget__tg-block::-webkit-scrollbar-thumb {
  background: #1D489C;
  border-radius: 26px;
}

.widget__tg-items {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.widget__tg-item {
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(27, 34, 39, 0.08);
}

.widget__tg-item:hover .widget__tg-title {
  color: #1D489C;
}

.widget__tg-title {
  margin-bottom: 14px;
  color: #1B2227;
  line-height: 145%;
  transition: .2s ease-in-out;
  font-weight: 500;
}

.widget__tg-elems {
  display: flex;
  align-items: center;
  gap: 20px;
}

.widget__tg-elem {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8D9093;
  font-weight: 500;
  line-height: 140%;
}

.widget__youtube {
  position: relative;
  /* height: 710px; */
  border-radius: 8px;
  overflow: hidden;
  /* padding-top: 80px; */
}

.widget__youtube a img {
  width: 100%;
}

.widget__youtube iframe {
  height: 400px;
}
/*
.widget__youtube::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 190px;
  background: url('../img/el-h.png') center/cover no-repeat;
} */

/* .widget__youtube-header {
  position: relative;
  height: 200px;
  background: url("../img/youtube-header.jpg") top/cover no-repeat;
}

.widget__youtube-header img {
  position: absolute;
  width: 240px;
  height: 76px;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 20px;
  left: 20px;
}

.widget__youtubte-frame {
  height: 100%;
  width: 100%;
} */

.hero.news-page .hero__swiper-tag {
  margin-bottom: 40px;
  margin-top: auto;
}

.hero.news-page .breadcrumbs-absolute {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 24px;
  top: 40px;
  left: 50px;
  color: #ffffff;
  z-index: 2;
}

.hero.news-page .breadcrumbs-absolute li {
  position: relative;
}

.hero.news-page .breadcrumbs-absolute li:not(:last-child)::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.4);
  width: 1.5px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
}

.hero.news-page .breadcrumbs-absolute li a {
  position: relative;
  transition: 0.2s ease-in-out;
}

.hero.news-page .breadcrumbs-absolute li a:hover {
  color: #1D489C;
}

.hero.news-page .hero__swiper {
  height: 658px;
}

.hero__container {
  position: relative;
  display: -ms-grid;
  display: grid;
}

.hero__swiper {
  position: relative;
  height: 570px;
  width: 100%;
}

.hero__swiper .swiper-pagination {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: auto;
  left: auto;
}

.hero__swiper .swiper-pagination span {
  background: rgba(255, 255, 255, 0.4);
  transition: 0.2s ease-in-out;
}

.hero__swiper .swiper-pagination span.swiper-pagination-bullet-active {
  background: #ffffff;
}

.hero__swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.hero__swiper-slide::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(0deg, rgba(20, 36, 48, 0.5) 0%, rgba(20, 36, 48, 0.5) 100%); */
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
  z-index: -1;
}

.hero__swiper-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

.hero__swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__swiper-tag {
  margin-bottom: auto;
  padding: 12px 16px;
  color: #1D489C;
  background: #ffffff;
  border-radius: 4px;
  font-weight: 600;
}

.hero__swiper-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 120%;
  max-width: 722px;
  margin-bottom: 50px;
  color: #ffffff;
}

.hero__swiper-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
}

.hero__swiper-link:hover {
  text-decoration: underline;
}

.capital__main {
  position: relative;
  height: 444px;
  z-index: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.capital__main::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(0deg, rgba(20, 36, 48, 0.5) 0%, rgba(20, 36, 48, 0.5) 100%); */
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
  z-index: -1;
}

.capital__main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.capital__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.capital__main-title {
  font-size: 32px;
  line-height: 130%;
  font-weight: 600;
  max-width: 604px;
  margin-bottom: 30px;
}

.capital__main-link {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
}

.capital__main-link:hover {
  text-decoration: underline;
}

/*.capital__items {*/
/*  display: -ms-grid;*/
/*  display: grid;*/
/*  -ms-grid-columns: (1fr)[3];*/
/*  grid-template-columns: repeat(3, 1fr);*/
/*  grid-gap: 20px;*/
/*}*/
.capital__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto;
    grid-gap: 20px;
}


.block {
  padding: 50px;
  background: #ffffff;
  border-radius: 8px;
}

.block__header {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.block__title {
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
}

.block__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #1D489C;
  line-height: normal;
}

.block__link:hover {
  text-decoration: underline;
}

.block .block-elems {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.block .block-elems .date {
  padding: 10px 12px;
  color: #1D489C;
  font-weight: 600;
  background: #ffffff;
  border-radius: 4px;
}

.block .block-elems .watch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.block .block-elems .watch img {
  width: 25px;
  height: 25px;
}

.article__item {
  display: flex;
  flex-direction: column;
}

.article__item:hover .article__item-title {
  color: #1D489C;
}

.article__item-img {
  position: relative;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.article__item-img::before {
  display: block;
  content: "";
}

.article__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__item-img::before {
  padding-top: 55%;
}

.article__item-date {
  position: absolute;
  padding: 9px 10px;
  background: #ffffff;
  color: #1D489C;
  font-size: 16px;
  font-weight: 600;
  z-index: 1;
  bottom: 12px;
  left: 12px;
  border-radius: 4px;
}

.article__item-title {
  font-size: 20px;
  line-height: 140%;
  font-weight: 500;
  margin-bottom: 10px;
  transition: 0.2s ease-in-out;
}

.article__item-watch {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8D9093;
  line-height: 140%;
  font-weight: 500;
}

.article__item-watch img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.socium__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
}

.socium__left {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.socium__main {
  position: relative;
  height: 312px;
  z-index: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.socium__main::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(0deg, rgba(20, 36, 48, 0.5) 0%, rgba(20, 36, 48, 0.5) 100%); */
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
  z-index: -1;
}

.socium__main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.socium__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.socium__main-title {
  font-size: 24px;
  line-height: 130%;
  font-weight: 600;
  max-width: 604px;
  margin-bottom: 22px;
}

.socium__main-link {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
}

.socium__main-link:hover {
  text-decoration: underline;
}

.socium__childs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.socium__items {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.socium__item {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  padding-bottom: 16px;
}

.socium__item:not(:last-child) {
  border-bottom: 2px solid rgba(27, 34, 39, 0.08);
}

.socium__item:hover .socium__item-title {
  color: #1D489C;
}

.socium__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 18px;
  color: rgba(27, 34, 39, 0.5);
  line-height: 140%;
}

.socium__item-header .watch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.socium__item-header .watch img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.socium__item-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  transition: 0.2s ease-in-out;
}

.politic__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.politic__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.politic__item:hover .politic__item-title {
  color: #1D489C;
}

.politic__item-img {
  position: relative;
  width: 334px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.politic__item-img::before {
  display: block;
  content: "";
}

.politic__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.politic__item-img::before {
  padding-top: 60%;
}

.politic__item-title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 500;
  line-height: 145%;
  transition: 0.2s ease-in-out;
}

.politic__item-text {
  line-height: 135%;
  margin-bottom: 18px;
}

.politic__item-watch {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 140%;
  color: #8D9093;
}

.politic__item-watch img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.politic__info {
  display: flex;
  flex-direction: column;
}

.culture__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 342px 1fr;
  grid-template-columns: 342px 1fr;
  grid-gap: 20px;
}

.culture__main {
  position: relative;
  height: 100%;
  min-height: 500px;
  z-index: 1;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.culture__main::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(0deg, rgba(20, 36, 48, 0.5) 0%, rgba(20, 36, 48, 0.5) 100%); */
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
  z-index: -1;
}

.culture__main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.culture__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.culture__main-date {
  padding: 10px 12px;
  color: #1D489C;
  font-weight: 600;
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: auto;
}

.culture__main-watch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.culture__main-watch img {
  width: 25px;
  height: 25px;
}

.culture__main-title {
  font-size: 22px;
  line-height: 125%;
  font-weight: 600;
  margin-bottom: 14px;
}

.culture__main-link {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  color: #ffffff;
}

.culture__main-link:hover {
  text-decoration: underline;
}

.culture__items {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.culture__item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 16px;
  gap: 20px;
}

.culture__item:hover .culture__item-title {
  color: #1D489C;
}

.culture__item:not(:last-child) {
  border-bottom: 2px solid rgba(27, 34, 39, 0.08);
}

.culture__item:last-child {
  padding-bottom: 0;
}

.culture__item-img {
  position: relative;
  width: 181px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.culture__item-img::before {
  display: block;
  content: "";
}

.culture__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.culture__item-img::before {
  padding-top: 65.75%;
}

.culture__item-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.culture__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(27, 34, 39, 0.5);
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 6px;
}

.culture__item-header .watch {
  display: flex;
  align-items: center;
  gap: 12px;
}

.culture__item-header .watch img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.culture__item-title {
  line-height: 140%;
  font-weight: 500;
  font-size: 22px;
  transition: 0.2s ease-in-out;
}

.heroes__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 14px;
}

.news__items {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.news__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.news__item-img {
  position: relative;
  position: relative;
  border-radius: 8px;
  width: 560px;
  flex-shrink: 0;
  overflow: hidden;
}

.news__item-img::before {
  display: block;
  content: "";
}

.news__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__item-img:hover img {
  transform: scale(1.04);
}

.news__item-img img {
  transition: 0.2s ease-in-out;
}

.news__item-img::before {
  padding-top: 60%;
}

.news__item-date {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #1D489C;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 8px;
  font-weight: 600;
}

.news__item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.news__item-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 6px;
}

.news__item-tag {
  font-size: 24px;
  font-weight: 600;
  color: #1D489C;
  line-height: normal;
}

.news__item-tag:hover {
  text-decoration: underline;
}

.news__item-title {
  font-size: 32px;
  line-height: 145%;
  font-weight: 600;
  transition: 0.2s ease-in-out;
  margin-bottom: 14px;
}

.news__item-title:hover {
  color: #1D489C;
}

.news__item-text {
  font-size: 22px;
  line-height: 135%;
  margin-bottom: 30px;
}

.news__item-watch {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8D9093;
  font-weight: 500;
  line-height: 140%;
}

.news__item-watch img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.loader {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 24px;
  font-weight: 600;
  color: #1D489C;
}

.loader svg {
  -webkit-animation: animateLoader 2s infinite linear;
          animation: animateLoader 2s infinite linear;
}

@-webkit-keyframes animateLoader {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animateLoader {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.inner__title {
  margin-bottom: 30px;
}

.inner__header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.inner__date {
  margin-right: 30px;
  color: rgba(27, 34, 39, 0.5);
  font-weight: 500;
  line-height: 140%;
}

.inner__author {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1D489C;
  font-weight: 500;
  line-height: 140%;
}

.inner__author:hover {
  text-decoration: underline;
}

.inner__author img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.inner__watch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: #8D9093;
  line-height: 140%;
  font-weight: 500;
}

.inner__watch img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.inner__img {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.inner__img img {
  width: 100%;
  height: 100%;
}

.inner__source {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 135%;
  font-style: italic;
  color: rgba(27, 34, 39, 0.6);
}

.inner__text {
  line-height: 180%;
  margin-bottom: 30px;
}

.inner__text * {
  font-family: Inter!important;
}

.inner__text > * {
  margin-bottom: 1rem;
}

.inner__text p {
  font-size: 22px;
}

.inner__text a {
  color: #1D489C;
}

.inner__text a:hover {
  text-decoration: underline;
}

.inner__text img {
    width: 100%;
    height: auto;
}

figcaption {
    background-color: #1d489c;
    color: #ffffff;
    padding: 5px;
}

.inner__text blockquote {
  position: relative;
  /* color: #1D489C; */
  font-style: italic;
  /* font-size: 22px; */
  font-weight: 500;
  border-left: 3px solid #1D489C;
  background: rgba(29, 72, 156, 0.1);
  padding: 30px 20px;
}

/* .inner__text blockquote::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 8px;
  top: 15px;
  left: 20px;
  background: url("../img/blockquote-icon.png") center/contain no-repeat;
} */

.inner__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
  color: #8D9093;
  font-weight: 500;
  line-height: 140%;
}

.inner__tags a {
  transition: 0.2s ease-in-out;
}

.inner__tags a:hover {
  color: #1D489C;
}

.inner__share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
}

.inner__share-title {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 145%;
}

.inner__share-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.inner__share-items a {
  display: block;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}

.inner__share-items a:hover {
  transform: scale(1.04);
}

.inner__share-items a svg {
  width: 100%;
  height: 100%;
}

.inner__recomend-title {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 600;
  line-height: 145%;
}

.inner__recomend-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  z-index: 2;
  margin-bottom: 40px;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs li:not(:last-child)::before {
  position: absolute;
  content: "";
  background: rgba(27, 34, 39, 0.15);
  width: 1.5px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
}

.breadcrumbs li:last-child a {
  color: rgba(27, 34, 39, 0.7);
  /*pointer-events: none;*/
}

.breadcrumbs li a {
  position: relative;
  transition: 0.2s ease-in-out;
  color: #000000;
}

.breadcrumbs li a:hover {
  color: #1D489C;
}

.media__title {
  margin-bottom: 30px;
}

.media__text {
  margin-bottom: 60px;
  font-size: 22px;
  line-height: 140%;
}

.media__table {
  display: flex;
  flex-direction: column;
}

.media__table:not(:last-child) {
  margin-bottom: 60px;
}

.media__table-header {
  font-size: 32px;
  margin-bottom: 30px;
}

.media__table-title {
  margin-bottom: 8px;
}

.media__table-mail {
  display: inline-flex;
  align-items: center;
  color: #1D489C;
}

.media__table-mail:hover {
  text-decoration: underline;
}

.media__table-mail img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 14px;
}

.media__table table {
  border-collapse: collapse;
}

.media__table table thead {
  background: #EAEEF5;
}

.media__table table thead th {
  width: 50%;
  text-align: left;
  font-size: 22px;
  line-height: 140%;
  font-weight: 600;
  padding: 25px 30px;
}

.media__table table thead th:nth-child(1) {
  border-radius: 8px 0 0px 0px;
}

.media__table table thead th:nth-child(2) {
  border-radius: 0px 8px 0px 0px;
}

.media__table table tbody tr {
  border: 1px solid rgba(27, 34, 39, 0.08);
}

.media__table table tbody tr td {
  padding: 30px;
  font-size: 22px;
  line-height: 140%;
  vertical-align: top;
}

.media__table table tbody tr:first-child {
  border-top: none;
}

.contact__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 510px 1fr;
  grid-template-columns: 510px 1fr;
  gap: 50px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact__info-title {
  margin-bottom: 40px;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  margin-bottom: 24px;
}

.contact__info-list li {
  display: flex;
  align-items: center;
  font-size: 22px;
  gap: 14px;
  line-height: 140%;
}

.contact__info-list li svg {
  width: 35px;
  height: 35px;
}

.contact__info-list li a {
  transition: 0.2s ease-in-out;
}

.contact__info-list li a:hover {
  color: #1D489C;
}

.contact__info-text {
  font-style: italic;
  line-height: 145%;
  padding-bottom: 50px;
  border-bottom: 2px solid rgba(27, 34, 39, 0.08);
  margin-bottom: 18px;
}

.contact__info-text a {
  text-decoration: underline;
  color: #1D489C;
}

.contact__info-schedule {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  margin-bottom: 24px;
}

.contact__info-schedule li {
  display: flex;
  align-items: center;
  font-size: 22px;
  gap: 14px;
}

.contact__info-schedule li svg {
  width: 35px;
  height: 35px;
}

.contact__info-path {
  color: #1D489C;
  text-decoration: underline;
}

.contact__map {
  height: 510px;
  border-radius: 8px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.rules {
  display: flex;
  flex-direction: column;
  line-height: 140%;
}

.rules ul,
.rules ol {
  list-style-type: none;
}

.rules ul li,
.rules ol li {
  position: relative;
  padding-left: 23px;
}

.rules ul li::before,
.rules ol li::before {
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 11px;
  background: url("../img/li-item.png") center/contain no-repeat;
  top: 8px;
  left: 0;
}

.preview {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 556px;
}

.preview::before {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, rgba(27, 34, 39, 0.7) 0%, rgba(27, 34, 39, 0.7) 100%);
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.preview .breadcrumbs-absolute {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 24px;
  top: 40px;
  left: 50px;
  color: #ffffff;
  z-index: 3;
}

.preview .breadcrumbs-absolute li {
  position: relative;
}

.preview .breadcrumbs-absolute li:not(:last-child)::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.4);
  width: 1.5px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
}

.preview .breadcrumbs-absolute li a {
  position: relative;
  transition: 0.2s ease-in-out;
}

.preview .breadcrumbs-absolute li a:hover {
  color: #1D489C;
}

.preview__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.preview__container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 40px;
}

.preview__logo {
  width: 720px;
  margin-bottom: 30px;
  margin-top: auto;
}

.preview__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.preview__title {
  margin-bottom: auto;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  color: #ffffff;
}

.preview__date {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 135%;
}

.stats__container {
  padding: 100px 0;
}

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

.stats__title span {
  color: #1D489C;
  font-style: italic;
}

.stats__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  grid-auto-rows: 325px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-radius: 8px;
  background: #EAEEF5;
}

.stats__item.blue {
  background: #1D489C;
  color: #ffffff;
}

.stats__item.blue .stats__item-link {
  color: #ffffff;
}

.stats__item.blue .stats__item-text {
  color: rgba(255, 255, 255, 0.8);
}

.stats__item-header {
  margin-bottom: auto;
  font-size: 26px;
  line-height: 135%;
  font-weight: 600;
}

.stats__item-counter {
  font-size: 40px;
  font-weight: 700;
  line-height: 135%;
}

.stats__item-text {
  margin-bottom: 36px;
  font-size: 24px;
  line-height: 135%;
  color: rgba(27, 34, 39, 0.8);
}

.stats__item-link {
  color: #1D489C;
}

.stats__item-link:hover {
  text-decoration: underline;
}

.stats form {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.stats__form {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #1D489C;
  border-radius: 8px;
  height: 100%;
}

.stats__form-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 135%;
  margin-bottom: 32px;
  color: #ffffff;
}

.stats__form-text {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.8);
  line-height: 140%;
  /* 25.2px */
}

.stats__form-elems {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 240px;
  grid-template-columns: 1fr 240px;
  gap: 15px;
}

.stats__form-elems input {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  outline: none;
  color: #ffffff;
}

.stats__form-elems input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.stats__form-elems input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.stats__form-elems input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.stats__form-elems button {
  padding: 16px;
  background: #ffffff;
  color: #1D489C;
  border-radius: 8px;
  border: 1px solid #ffffff;
  outline: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.stats__form-elems button:hover {
  background: #1D489C;
  color: #ffffff;
}

.follower__container {
  max-width: 1333px;
  margin-left: auto;
  margin-right: auto;
}

.follower__title {
  text-align: center;
  margin-bottom: 60px;
}

.follower__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  margin-bottom: 40px;
}

.follower__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.follower__item-img {
  width: 140px;
  height: 140px;
  margin-bottom: 30px;
}

.follower__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.follower__item-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 135%;
  margin-bottom: 6px;
}

.follower__item-link {
  font-weight: 500;
  line-height: 135%;
  color: #1D489C;
  margin-bottom: 40px;
}

.follower__item-link:hover {
  text-decoration: underline;
}

.follower__item-count {
  font-size: 40px;
  font-weight: 700;
  line-height: 135%;
}

.follower__total {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: url("../img/follow-bg.jpg") center/cover no-repeat;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.follower__total-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
}

.follower__total-title {
  font-weight: 700;
  font-size: 74px;
  line-height: 135%;
}

.place__container {
  padding: 100px 0;
  max-width: 1333px;
  margin-left: auto;
  margin-right: auto;
}

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

.place__main-accordeons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.place__main-accordeon {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.place__main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: 8px;
  background: #EAEEF5;
  font-size: 24px;
  font-weight: 500;
  line-height: 145%;
  transition: 0.2s ease-in-out;
}

.place__main-title svg path {
  transition: 0.2s ease-in-out;
}

.place__main-title.active {
  color: #ffffff;
  background: #1D489C;
}

.place__main-title.active svg path {
  stroke: #ffffff;
}

.place__main-title.active svg path:nth-child(2) {
  opacity: 0;
}

.place__main-body {
  display: none;
  width: 100%;
  height: auto;
}

.place__main-body img {
  width: 100%;
  height: auto;
}

.brand {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
}

.brand__container {
  overflow: hidden;
}

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

.brand__items.marquee .js-marquee {
  display: flex;
}

.brand__item {
  width: auto;
  height: auto;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* filter: grayscale(1); */
  transition: 0.2s ease-in-out;
}

.feedback__container {
  padding: 100px 0;
}

.feedback__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(27, 34, 39, 0.8) 0%, rgba(27, 34, 39, 0.8) 100%), url("../img/form-bg.jpg") center/cover no-repeat;
  overflow: hidden;
  padding: 60px;
}

.feedback__form-logo {
  width: 200px;
  height: 22px;
  margin-bottom: 60px;
}

.feedback__form-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.feedback__title {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

.feedback__text {
  text-align: center;
  max-width: 561px;
  margin-bottom: 60px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 135%;
}

.feedback__elems {
  max-width: 760px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 241px;
  grid-template-columns: 1fr 241px;
  grid-gap: 15px;
}

.feedback__elems input,
.feedback__elems button {
  padding: 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  line-height: 140%;
}

.feedback__elems button {
  color: #1D489C;
  font-weight: 500;
  border: 1px solid #ffffff;
  transition: 0.2s ease-in-out;
}

.feedback__elems button:hover {
  background: #1D489C;
  color: #ffffff;
}

.feedback__elems input {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.feedback__elems input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.feedback__elems input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.feedback__elems input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search__title {
  margin-bottom: 30px;
}

.search__form {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.search__form-input {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.search__form-input input {
  width: 100%;
  padding: 20px 26px;
  border-radius: 14px;
  background: #F4F5F6;
  font-size: 22px;
  line-height: 140%;
}

.search__form-input button {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
}

.search__form-input input,
.search__form-input button {
  border: none;
  outline: none;
}

.search__form-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.search__form-tag {
  position: relative;
  cursor: pointer;
}

.search__form-tag input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.search__form-tag input:checked + div {
  background: #1D489C;
  color: #ffffff;
}

.search__form-tag div {
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(27, 34, 39, 0.06);
  font-size: 22px;
  line-height: 135%;
  transition: 0.2s ease-in-out;
}

.pagination {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.pagination li {
  font-weight: 500;
}

.pagination li:not(.prev, .next) a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
}

.pagination li:not(.prev, .next) a:hover {
  background: #1D489C;
  color: #ffffff;
}

.pagination li.active a {
  background: #1D489C;
  color: #ffffff;
}

.pagination li.prev a:hover,
.pagination li.next a:hover {
  text-decoration: underline;
}

.ban {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}

.ban:hover img {
  transform: scale(1.04);
}

.ban::before {
  display: block;
  content: '';
  padding-top: 100%;
}

.ban img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s ease-in-out;
}

@media (max-width: 1800px) {
  .container {
    max-width: 1420px;
  }

  .title {
    font-size: 36px;
  }

  .header__top {
    padding: 30px 0;
  }

  .header__logo {
    width: 160px;
    height: 20px;
  }

  .header__nav-list {
    gap: 14px;
  }

  .header__nav-link {
    font-size: 16px;
  }

  .header__burger {
    font-size: 16px;
  }

  .header__bot {
    font-size: 16px;
  }

  .header__currency {
    width: 400px;
  }

  .header__form-search_wrapper {
    padding: 20px 0;
    margin-bottom: 15px;
  }

  .header__form-search form input {
    font-size: 18px;
  }

  .header__form-items {
    margin-bottom: 25px;
  }

  .header__form-link {
    padding-bottom: 40px;
  }

  .header-space {
    padding-top: 139px;
  }

  .footer__street {
    font-size: 16px;
  }

  .footer__list ul a {
    font-size: 16px;
  }

  .footer__mail {
    font-size: 16px;
  }

  .wrapper {
    -ms-grid-columns: 1fr 500px;
    grid-template-columns: 1fr 500px;
  }

  .news-actual__item-title {
    font-size: 16px;
  }

  .capital__main-title {
    font-size: 24px;
  }

  .block {
    padding: 30px;
  }

  .block__title {
    font-size: 32px;
  }

  .block__link {
    font-size: 18px;
  }

  .article__item-date {
    font-size: 14px;
  }

  .article__item-title {
    font-size: 16px;
  }

  .article__item-watch {
    font-size: 14px;
  }

  .article__item-watch img {
    width: 18px;
    height: 18px;
  }

  .socium__item-header {
    font-size: 16px;
  }

  .socium__item-header .watch img {
    width: 18px;
    height: 18px;
  }

  .socium__item-title {
    font-size: 18px;
  }

  .politic__item-title {
    font-size: 18px;
  }

  .politic__item-text {
    font-size: 16px;
  }

  .culture__main {
    padding: 20px;
    min-height: 445px;
  }

  .culture__main-watch {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .culture__main-watch img {
    width: 18px;
    height: 18px;
  }

  .culture__main-title {
    font-size: 18px;
  }

  .culture__main-link {
    font-size: 14px;
  }

  .culture__item-img {
    width: 130px;
  }

  .culture__item-header {
    font-size: 14px;
  }

  .culture__item-header .watch img {
    width: 18px;
    height: 18px;
  }

  .culture__item-title {
    font-size: 16px;
  }

  .news__item-img {
    width: 500px;
  }

  .news__item-tag {
    font-size: 20px;
  }

  .news__item-title {
    font-size: 26px;
  }

  .news__item-text {
    font-size: 18px;
  }

  .inner__source {
    font-size: 18px;
  }

  .inner__text p {
    font-size: 18px;
  }

  /* .inner__text blockquote {
    font-size: 18px;
  } */

  .inner__share-title {
    font-size: 22px;
  }

  .inner__share-items a {
    width: 30px;
    height: 30px;
  }

  .inner__recomend-title {
    font-size: 26px;
  }

  .media__text {
    font-size: 18px;
  }

  .media__table-header {
    font-size: 26px;
  }

  .media__table table thead th {
    font-size: 18px;
    padding: 15px;
  }

  .media__table table tbody tr td {
    font-size: 18px;
    padding: 15px;
  }

  .contact__info-list li {
    font-size: 18px;
  }

  .contact__info-list li svg {
    width: 26px;
    height: 26px;
  }

  .contact__info-schedule li {
    font-size: 18px;
  }

  .contact__info-schedule li svg {
    width: 26px;
    height: 26px;
  }

  .preview {
    height: 450px;
  }

  .preview__logo {
    width: 500px;
  }

  .preview__title {
    font-size: 20px;
  }

  .preview__date {
    font-size: 26px;
  }

  .stats__container {
    padding: 80px 0;
  }

  .stats__items {
    grid-auto-rows: 290px;
  }

  .stats__item-header {
    font-size: 20px;
  }

  .stats__item-counter {
    font-size: 30px;
  }

  .stats__item-text {
    font-size: 20px;
  }

  .stats__form-title {
    font-size: 20px;
  }

  .follower__title {
    margin-bottom: 40px;
  }

  .follower__item-img {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
  }

  .follower__item-title {
    font-size: 22px;
  }

  .follower__item-link {
    margin-bottom: 25px;
  }

  .follower__item-count {
    font-size: 30px;
  }

  .follower__total-text {
    font-size: 20px;
  }

  .follower__total-title {
    font-size: 60px;
  }

  .place__container {
    padding: 80px 0;
  }

  .place__main-title {
    font-size: 20px;
    padding: 20px;
  }

  .feedback__container {
    padding: 80px 0;
  }

  .search__form-input input {
    font-size: 18px;
    padding: 14px 20px;
  }

  .search__form-tag div {
    font-size: 18px;
    padding: 8px 12px;
  }
  .widget__tg {
    height: 560px;
  }
  .widget__tg-elems {
    font-size: 14px;
  }
  .widget__tg-title {
    font-size: 16px;
  }
  .widget__tg-header {
    font-size: 22px;
    max-width: 310px;
  }
  .hero__swiper-title {
    margin-bottom: 30px;
    font-size: 32px;
  }
  .hero__swiper-slide {
    padding-bottom: 30px;
  }
  .hero__swiper .swiper-pagination {
    bottom: 30px;
  }
}

@media (max-width: 1650px) {
  body {
    font-size: 16px;
  }

  .content {
    padding: 100px 0;
  }
}

@media (max-width: 1450px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: 1240px;
  }

  .title {
    font-size: 28px;
  }

  .header__top {
    padding: 25px 0;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .header__bot {
    font-size: 14px;
  }

  .header-space {
    padding-top: 129px;
  }

  .wrapper {
    -ms-grid-columns: 1fr 400px;
    grid-template-columns: 1fr 400px;
  }

  .holiday__container {
    padding: 20px 30px;
    row-gap: 8px;
  }

  .holiday__title {
    font-size: 24px;
  }

  .news-actual__items {
    margin: 15px;
    height: 410px;
  }

  .news-actual__item-img {
    width: 100px;
    height: 60px;
  }

  .news-actual__item-title {
    font-size: 14px;
  }

  .news-actual__link {
    margin-left: 15px;
    margin-bottom: 15px;
    font-size: 16px;
  }

  /* .widget__youtube {
    height: 500px;
  } */

  /* .widget__youtube-header {
    height: 150px;
  }

  .widget__youtube-header img {
    width: 150px;
    height: 50px;
  } */

  /* .widget__youtube::before {
    height: 120px;
  }

  .widget__youtube {
    padding-top: 120px;
  } */

  .hero.news-page .breadcrumbs-absolute {
    top: 25px;
    left: 25px;
  }

  .hero.news-page .hero__swiper {
    height: 503px;
  }

  .hero__swiper {
    height: 420px;
  }

  .hero__swiper .swiper-pagination {
    right: 25px;
    bottom: 25px;
  }

  .hero__swiper-slide {
    padding: 25px;
  }

  .hero__swiper-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .capital__main {
    height: 400px;
  }

  .block__title {
    font-size: 26px;
  }

  .block__link {
    font-size: 16px;
  }

  .socium__main {
    padding: 15px;
  }

  .socium__main-title {
    font-size: 20px;
  }

  .socium__item-title {
    font-size: 16px;
  }

  .culture__main {
    min-height: 350px;
  }

  .culture__item-img {
    width: 100px;
  }

  .culture__item-title {
    font-size: 14px;
  }

  .news__item {
    gap: 20px;
  }

  .news__item-img {
    width: 450px;
  }

  .news__item-tag {
    font-size: 18px;
  }

  .news__item-title {
    font-size: 22px;
  }

  .news__item-text {
    font-size: 16px;
  }

  .inner__header {
    font-size: 14px;
  }

  .inner__text {
    margin-bottom: 15px;
  }

  .inner__tags {
    margin-bottom: 30px;
  }

  .inner__share {
    margin-bottom: 50px;
  }

  .inner__share-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .inner__recomend-title {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .media__table-header {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .media__table-mail img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  .media__table table thead th {
    font-size: 16px;
  }

  .media__table table tbody tr td {
    font-size: 16px;
  }

  .preview .breadcrumbs-absolute {
    top: 25px;
    left: 25px;
  }

  .stats__container {
    padding: 60px 0;
  }

  .stats__items {
    grid-auto-rows: 250px;
  }

  .stats__item-header {
    font-size: 16px;
  }

  .stats__item-counter {
    font-size: 24px;
  }

  .stats__item-text {
    font-size: 16px;
  }

  .stats__item-link {
    font-size: 14px;
  }

  .stats__form-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .stats__form-text {
    font-size: 14px;
  }

  .stats__form-elems input {
    padding: 10px;
  }

  .stats__form-elems button {
    padding: 10px;
  }

  .follower__item-img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .follower__item-title {
    font-size: 18px;
  }

  .follower__item-link {
    margin-bottom: 15px;
  }

  .follower__item-count {
    font-size: 26px;
  }

  .follower__total-title {
    font-size: 50px;
  }

  .place__container {
    padding: 60px 0;
  }

  .place__main-title {
    font-size: 18px;
  }

  .feedback__container {
    padding: 60px 0;
  }

  .feedback__text {
    font-size: 16px;
  }

  .pagination {
    margin-top: 40px;
  }
  .widget__tg {
    padding: 15px;
    height: 500px;
  }
  .widget__tg-title {
    font-size: 14px;
  }
  .widget__tg-header {
    font-size: 18px;
    max-width: 250px;
  }
  .widget__tg-header img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1420px) {
  .header__currency {
    width: 360px;
    margin-right: 50px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }

  .footer__text {
    max-width: unset;
  }

  .footer__street {
    align-items: center;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 24px;
  }

  .header__top {
    padding: 10px 0;
  }

  .header__nav {
    margin-bottom: 10px;
    width: 100%;
  }

  .header__menu-scroll {
    max-width: unset;
  }

  .header__menu-wrap {
    padding-left: 16px;
  }

  .header__nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px 40px;
    width: max-content;
    display: none;
  }

  .header__menu-text {
    left: 16px;
    top: 10px;
    font-size: 22px;
  }

  .header__nav-link {
    font-size: 16px;
  }

  .header__weather img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .header__weather {
    margin-left: auto;
    margin-right: 20px;
    font-size: 12px;
    gap: 5px;
  }

  .header__weather div {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header__weather span {
    /* display: block; */
    /* margin-left: 5px; */
  }

  .header__weather span {
    margin-left: 0;
  }

  .header__weather div > span {
    margin-left: 0;
  }

  .header__socials {
    justify-content: start;
    background: #1D489C;
    margin-top: auto;
    padding: 5px;
    margin-right: 0;
    width: 100%;
  }

  .header__currency {
    width: 110px;
    margin-right: 30px;
  }

  .header__currency-item:not(:last-child) {
    margin-right: 0;
  }

  .header__search {
    margin-left: auto;
  }

  .header__menu-scroll {
    margin-bottom: 10px;
  }

  .header__form-search form input {
    font-size: 16px;
  }

  .header-space {
    padding-top: 89px;
  }

  .footer__top {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 35px;
  }

  .footer__col {
    row-gap: 20px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
  }

  .footer__list {
    width: 100%;
    align-items: center;
  }

  .footer__list ul {
    align-items: center;
  }

  .footer__items {
    align-items: center;
  }

  .wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hero.news-page .hero__swiper {
    height: 420px;
  }

  .news__item-img {
    width: 350px;
  }

  .news__item-title {
    font-size: 18px;
  }

  .news__item-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .news__item-watch {
    font-size: 14px;
  }

  .news__item-watch img {
    width: 18px;
    height: 18px;
  }

  .preview {
    height: 350px;
  }

  .preview__container {
    padding: 25px;
  }

  .preview__logo {
    width: 300px;
    margin-bottom: 15px;
  }

  .preview__title {
    font-size: 18px;
  }

  .preview__date {
    font-size: 20px;
  }

  .stats__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__form {
    padding: 15px;
  }

  .feedback__elems input,
  .feedback__elems button {
    padding: 12px;
  }

  .search__form-tag div {
    font-size: 16px;
  }
  .widget__youtube::before {
    height: 120px;
  }

  .widget__youtube {
    /* padding-top: 120px; */
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .header__menu-text {
    top: 70px;
  }
  body {
    font-size: 14px;
  }

  .title {
    font-size: 20px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 5px 5px 5px;
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: auto;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .media__title {
    margin-bottom: 20px;
  }

  .media__table-header {
    font-size: 18px;
  }

  .contact__block {
    -ms-grid-columns: 300px 1fr;
    grid-template-columns: 300px 1fr;
  }

  .contact__info-title {
    margin-bottom: 20px;
  }

  .contact__info-list li {
    font-size: 14px;
  }

  .contact__info-list li svg {
    width: 18px;
    height: 18px;
  }

  .contact__info-text {
    padding-bottom: 25px;
  }

  .contact__info-schedule li {
    font-size: 14px;
  }

  .contact__info-schedule li svg {
    width: 18px;
    height: 18px;
  }

  .contact__map {
    height: 450px;
  }

  .follower__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
  }

  .follower__total-title {
    font-size: 40px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .widget__youtube::before {
    height: 100px;
  }
  .widget__youtube {
    /* padding-top: 100px; */
  }
  .widget__tg {
    height: 320px;
  }
  .capital__main {
    padding: 20px;
    height: 350px;
  }

  .capital__main-title {
    font-size: 20px;
  }

  .block__header {
    margin-bottom: 25px;
  }

  .article__item-date {
    font-size: 12px;
    padding: 6px;
  }

  .article__item-title {
    font-size: 14px;
  }

  .socium__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .socium__main {
    height: 300px;
  }

  .socium__main-title {
    font-size: 20px;
  }

  .politic__items {
    row-gap: 25px;
  }

  .politic__item {
    flex-direction: column;
    gap: 15px;
  }

  .politic__item-title {
    margin-bottom: 5px;
  }

  .politic__item-text {
    margin-bottom: 5px;
  }

  .culture__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .heroes__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
  }

  .news__item {
    flex-direction: column;
    gap: 10px;
  }

  .news__item-img {
    width: 100%;
  }

  .news__item-date {
    left: 15px;
    bottom: 15px;
  }

  .news__item-tag {
    font-size: 14px;
  }

  .news__item-title {
    margin-bottom: 10px;
  }

  .loader svg {
    width: 30px;
    height: 30px;
  }

  .loader {
    font-size: 18px;
    gap: 12px;
  }

  .inner__source {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .inner__text p {
    font-size: 14px;
  }

  /* .inner__text blockquote {
    font-size: 14px;
  } */

  .inner__share-title {
    font-size: 18px;
  }

  .inner__recomend-title {
    font-size: 18px;
  }

  .media__text {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .contact__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact__map {
    height: 300px;
  }

  .stats__item {
    padding: 15px;
  }

  .stats__form-elems {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feedback__elems {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .search__form {
    margin-bottom: 40px;
  }

  .search__form-input input {
    font-size: 16px;
  }

  .search__form-input button {
    right: 20px;
  }

  .search__form-tag div {
    font-size: 14px;
  }

  .pagination {
    gap: 12px;
  }

  .pagination li:not(.prev, .next) a {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .widget__youtube::before {
    height: 80px;
  }
  .widget__youtube {
    /* padding-top: 80px; */
  }
  .holiday__container {
    padding: 15px;
  }

  .holiday__title {
    font-size: 18px;
  }

  .holiday__text {
    font-size: 14px;
  }

  .news-actual__header-tab {
    padding: 10px;
  }

  .hero.news-page .hero__swiper-tag {
    margin-bottom: 20px;
  }

  .hero.news-page .hero__swiper {
    height: 350px;
  }

  .hero__swiper {
    height: 350px;
  }

  .hero__swiper-title {
    font-size: 20px;
  }

  .capital__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .media__table table thead th {
    font-size: 14px;
  }

  .media__table table tbody tr td {
    font-size: 14px;
  }

  .preview__logo {
    width: 200px;
  }

  .preview__title {
    font-size: 14px;
  }

  .stats__title {
    margin-bottom: 30px;
  }

  .stats__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .stats__item-header {
    margin-bottom: 25px;
  }

  .stats form {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .stats__form-text {
    margin-bottom: 25px;
  }

  .place__title {
    margin-bottom: 30px;
  }

  .place__main-title {
    font-size: 16px;
    padding: 12px;
  }

  .place__main-title svg {
    width: 20px;
    height: 20px;
  }

  .feedback__form {
    padding: 30px;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .header__burger {
    font-size: 0;
    gap: 0;
  }

  .header__time img {
    width: 20px;
    height: 20px;
  }

  .header__time {
    padding-right: 10px;
    margin-right: 10px;
  }

  .header__search {
    font-size: 0;
    margin-right: 10px;
    gap: 0;
  }

  .header__lang-other {
    top: calc(100% + 5px);
  }

  .header__form-search form .search__form-tags {
    padding-bottom: 20px;
    gap: 6px;
  }

  .header__form-search form .search__form-tags div {
    font-size: 12px;
  }

  .header__form-items .news-actual__item-title {
    font-size: 12px;
  }

  .header__form-link {
    padding-bottom: 20px;
  }

  .header-space {
    padding-top: 87px;
  }

  .footer__bot {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    row-gap: 10px;
  }

  .capital__main {
    height: 300px;
  }

  .capital__main-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .block {
    padding: 15px;
  }

  .block__link {
    font-size: 14px;
  }

  .socium__main {
    height: 300px;
  }

  .socium__main-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .politic__item-img {
    width: 100%;
  }

  .politic__item-title {
    font-size: 16px;
  }

  .politic__item-text {
    font-size: 14px;
  }

  .politic__item-watch img {
    width: 18px;
    height: 18px;
  }

  .culture__main {
    height: 300px;
    min-height: unset;
  }

  .culture__main-title {
    font-size: 16px;
  }

  .inner__header {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .inner__date {
    margin-right: 15px;
  }

  .inner__author img {
    width: 14px;
    height: 14px;
  }

  .inner__watch img {
    width: 15px;
    height: 15px;
  }

  .inner__recomend-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .media__table table thead th {
    font-size: 12px;
  }

  .media__table table tbody tr td {
    font-size: 12px;
  }

  .preview {
    height: 300px;
  }

  .preview__container {
    padding: 10px;
  }

  .follower__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .follower__item-img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 420px) {
  .widget__youtube::before {
    height: 60px;
  }
  .widget__youtube {
    /* padding-top: 60px; */
  }
  .socium__childs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .heroes__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.sidebar-sticky {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    align-self: flex-start;
}

img.banner {
    border-radius: 10px;
}
