:root {
  --white: #ffffff;
  --black: #292929;
  --green: #07b257;
  --green-hover: #218838;
  --gray: #8d8d8d;
  --orange: #C95328;
}

@font-face {
  font-family: "PTSerif";
  src: url("../fonts/PTSerif-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PTSerif";
  src: url("../fonts/PTSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: Roboto, ui-sans-serif, -apple-system, system-ui, Arial, sans-serif;
  background-color: #f1f1f1;
  font-weight: 400;
  --swiper-theme-color: var(--orange);
  max-width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: color 0.3s linear;
  cursor: pointer;
  color: var(--black);
}

.icon-svg {
  width: 24px;
  height: 24px;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  height: 18px;
}

.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after {
  background-color: var(--orange);
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--black);
}

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

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

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 2px;
  background-color: var(--black);
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

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

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

header .header {
  position: relative;
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header .burger {
  height: 18px;
}

header .header .logo img {
  width: 320px;
  max-width: 320px;
  display: block;
}

header .header .search {
  cursor: pointer;
}

header .header .search:hover svg {
  color: var(--orange);
}

header .search-field {
  position: absolute;
  right: 0;
  top: -1px;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

header .search-field.active {
  opacity: 1;
  visibility: visible;
}

header .search-field > div {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 15px 10px 20px;
  border-radius: 20px;
}

header .search-field input {
  margin-right: 10px;
  border: 0;
  border-bottom: 1px var(--black) solid;
  outline: 0;
  width: 200px;
  color: var(--gray);
}

@media (max-width: 600px) {
  header .header .logo img {
    width: 280px;
    max-width: 280px;
  }
  header .search-field {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
  }
  header .search-field > div {
    width: 100%;
    height: 100%;
    margin: 0 15px;
    border-radius: 6px;
    padding: 10px 10px 10px 10px;
  }
  header .search-field input {
    width: unset;
    flex: 1;
  }
}
@media (max-width: 450px) {
  header .header {
    margin: 10px auto 0 auto;
    padding: 0 10px;
  }
  header .header .logo {
    flex: 1;
    margin: 0 20px;
    display: flex;
    justify-content: center;
  }
  header .header .logo img {
    width: 100%;
    max-width: 250px;
  }
  header .search-field > div {
    margin: 0 5px;
  }
}
main .container-main {
  max-width: 1400px;
  margin: 20px auto 0 auto;
}

main .mainnews {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px 2px rgba(201, 83, 40, 0.25);
}

main .mainnews a {
  margin: 0 15px;
  width: 33.33%;
}

main .mainnews .pic {
  position: relative;
  padding-bottom: 63%;
  border-radius: 6px;
  border: 1px #eee solid;
  overflow: hidden;
}

main .mainnews .pic > div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: transform 0.7s ease;
  will-change: transform;
}

main .mainnews a:hover .pic > div {
  transform: scale(1.08);
}

main .mainnews .header {
  padding: 15px 10px 0 10px;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s linear;
}

main .mainnews a:hover .header {
  color: var(--orange);
}

main .mainnews .desc {
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #515151;
}

main .container-lenta-first {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px #e1e1e1 solid;
  border-radius: 0 0 10px 10px;
}

main .lenta {
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  border-radius: 20px;
}

main .lenta .col {
  width: calc(25% - 20px);
}

main .lenta .col > a {
  border-top: 1px #e1e1e1 solid;
  padding-top: 17px;
  display: block;
  margin-top: 17px;
}

main .lenta .col > a:first-child, main .lenta .col > a.noborder {
  padding-top: 0;
  border-top: 0;
}

main .lenta a .title {
  font-size: 16px;
  transition: color 0.3s linear;
}

main .lenta a:hover .title {
  color: var(--orange);
}

main .lenta a .date {
  color: var(--gray);
  font-size: 14px;
  margin-top: 5px;
}

main .lenta a.theme-pic {
  border: 1px #e1e1e1 solid;
  padding-top: 0 !important;
  border-radius: 6px;
  background-color: #f8f8f8;
  transition: box-shadow 0.3s ease;
}

main .lenta a.theme-pic:hover {
  box-shadow: 0 0 8px rgba(128, 128, 128, 0.3);
}

main .lenta a.theme-pic .pic {
  width: 100%;
  height: 160px;
  border-radius: 6px 6px 0 0;
  background-position: center;
  background-size: cover;
  margin-bottom: 10px;
}

main .lenta a.theme-pic .title {
  padding: 0 13px;
  font-size: 16px;
}

main .lenta a.theme-pic .date {
  padding: 0 13px;
  margin: 10px 0;
}

main .lenta a.theme-poster:hover {
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.4);
}

main .lenta a.theme-poster {
  position: relative;
  border-top: 0;
  padding-top: 0 !important;
  border-radius: 6px;
  overflow: hidden;
  background-color: #292929;
  transition: box-shadow 0.3s ease;
}

main .lenta a.theme-poster .pic {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: calc(100% - 70px);
  overflow: hidden;
}

main .lenta a.theme-poster .pic > div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: transform 0.7s ease;
  will-change: transform;
}

main .lenta a.theme-poster:hover .pic > div {
  transform: scale(1.08);
}

main .lenta a.theme-poster:before {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 28px;
  bottom: 70px;
  background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 64%, #292929);
  background-image: linear-gradient(180deg, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 64%, #292929);
  content: "";
}

main .lenta a.theme-poster .date {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 10px;
  color: var(--gray);
}

main .lenta a.theme-poster .title {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 170px;
}

main .lenta a.theme-person .person {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

main .lenta a.theme-person .person .pic {
  width: 130px;
  height: 130px;
  background-position: center;
  background-size: cover;
  border-radius: 50% 50% 10px 50%;
}

main .lenta a.theme-person .person .name {
  width: calc(100% - 140px);
}

main .lenta a.theme-person .person .name > span:first-child {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

main .lenta a.theme-person .person .name > span:last-child {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}

main .lenta a.theme-person .title {
  font-family: PTSerif, Times, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
}

main .lenta a.theme-person:hover .title {
  color: var(--black);
}

main .lenta a.theme-person .date {
  display: none;
}

main .container-fednews {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  position: relative;
}

main .container-fednews .header {
  text-align: center;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
}

main .fednews {
  margin: 15px 20px 40px 20px;
}

main .swiper-custom {
  width: 100%;
  height: 100%;
  position: absolute;
}

main .container-fednews .swiper-custom-next, main .container-fednews .swiper-custom-prev {
  position: absolute;
  z-index: 3;
  top: calc(50% - 48px);
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(128, 128, 128, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

main .container-fednews .swiper-custom-next:hover, main .container-fednews .swiper-custom-prev:hover {
  background-color: var(--orange);
}

main .container-fednews .swiper-custom-next {
  right: 0;
}

main .container-fednews .swiper-custom-prev {
  left: 0;
}

main .container-fednews .swiper-custom-next svg, main .container-fednews .swiper-custom-prev svg {
  color: var(--orange);
  width: 11px;
  height: 20px;
  transition: color 0.3s ease;
}

main .container-fednews .swiper-custom-next:hover svg, main .container-fednews .swiper-custom-prev:hover svg {
  color: #ffffff;
}

main .container-fednews .swiper-custom-next svg {
  margin-left: 2px;
}

main .container-fednews .swiper-custom-prev svg {
  transform: rotate(180deg);
  margin-right: 2px;
}

main .fednews .swiper-wrapper {
  align-items: stretch;
  padding-bottom: 20px;
}

main .fednews a.swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px #e1e1e1 solid;
  border-radius: 6px;
}

main .fednews a.swiper-slide:hover .title {
  color: var(--orange);
}

main .fednews a.swiper-slide .pic {
  width: 100%;
  height: 160px;
  border-radius: 6px 6px 0 0;
  background-position: center;
  background-size: cover;
  margin-bottom: 10px;
}

main .fednews a.swiper-slide .title {
  flex: 1;
  padding: 0 13px;
  font-size: 15px;
  color: var(--black);
  transition: color 0.3s linear;
}

main .fednews a.swiper-slide .date {
  padding: 0 13px;
  margin: 10px 0;
  font-size: 14px;
  color: #999999;
}

main .container-lenta-second {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}

main .container-lenta-second .lenta {
  width: calc(75% - 20px);
  background-color: #fff;
  border-radius: 6px;
  margin-left: 20px;
  padding: 0 20px 30px 20px;
}

main .container-lenta-second .lenta .col {
  width: calc(33.33% - 20px);
}

main .container-lenta-second .stories {
  width: 25%;
}

main .lenta-col-swiper {
  background-color: var(--black);
  border-radius: 6px;
  padding: 15px;
}

main .lenta-col-swiper .header {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--orange);
  text-align: center;
}

main .lenta-col-swiper .poster {
  position: relative;
  background-color: #292929;
  border: 1px #797979 solid;
  margin-left: -5px;
  margin-right: -5px;
  padding: 3px 3px 35px 3px;
  border-radius: 6px;
  margin-bottom: 18px;
}

main .lenta-col-swiper .poster:before {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 35px;
  background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 54%, #292929);
  background-image: linear-gradient(180deg, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 54%, #292929);
  content: "";
}

main .lenta-col-swiper .pic {
  height: 160px;
  border-radius: 6px 6px 0 0;
  background-position: center;
  background-size: cover;
}

main .lenta-col-swiper .title {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: 10px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  padding: 0 5px;
  text-align: center;
}

main .lenta-col-swiper .list > div {
  margin-top: 17px;
  border-top: 1px #797979 solid;
  padding-top: 17px;
}

main .lenta-col-swiper .list > div:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

main .lenta-col-swiper .list a {
  color: #ffffff;
  display: block;
  font-size: 16px;
}

main .lenta-col-swiper .list a:hover {
  color: var(--orange);
}

main .lenta-col-swiper .list span {
  display: block;
  color: #797979;
  font-size: 14px;
  margin-top: 5px;
}

.footer {
  max-width: 1400px;
  margin: 50px auto 0 auto;
  display: flex;
  align-items: center;
  background-color: var(--black);
  border-radius: 20px 20px 0 0;
  padding: 30px 50px 30px 50px;
  font-size: 15px;
}

.footer .logo {
  width: 240px;
}

.footer .logo img {
  max-width: 100%;
}

.footer .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #797979;
}

.footer .info a {
  color: #ffffff;
  margin: 0 8px;
}

.footer .info a:hover {
  color: var(--orange);
}

.footer .info .smi {
  margin-top: 10px;
  border-top: 1px #797979 solid;
  padding-top: 10px;
}

.footer .socials {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer .socials > a {
  margin: 0 10px;
}

.footer .socials svg {
  width: 28px;
  color: #ffffff;
  transition: color 0.3s linear;
}

.footer .socials > a:hover svg {
  color: var(--orange);
}

.swiper-pagination-bullet {
  margin: 0 4px !important;
}

@media (max-width: 1440px) {
  main .container-main {
    margin: 20px 20px 0 20px;
  }
}
@media (max-width: 1280px) {
  main .container-lenta-first {
    width: 100%;
    margin-top: 30px;
    border-radius: 0;
  }
  main .container-lenta-first .lenta {
    padding: 10px 20px 25px 20px;
    margin: 0;
  }
  main .lenta a.theme-person .person {
    align-items: flex-start;
    flex-direction: column;
  }
  main .lenta a.theme-person .person .name {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 1200px) {
  main .container-main {
    margin: 20px 20px 0 20px;
  }
  main .lenta-col-swiper {
    border-radius: 0 6px 6px 0;
  }
  main .container-lenta-second .lenta {
    border-radius: 6px 0 0 6px;
  }
  .footer .socials {
    width: unset;
  }
}
@media (max-width: 960px) {
  main .container-main {
    margin: 20px 15px 0 15px;
  }
  main .mainnews {
    padding: 15px 10px;
  }
  main .mainnews a {
    margin: 0 7px;
  }
  main .mainnews .header {
    padding: 10px 10px 0 10px;
    font-size: 16px;
  }
  main .mainnews .desc {
    font-size: 14px;
  }
  main .container-lenta-first {
    border-left: 0;
    border-right: 0;
  }
  main .lenta .col {
    width: calc(25% - 10px);
  }
  main .fednews a.swiper-slide .pic {
    padding-bottom: 63%;
    height: unset;
  }
  main .lenta a.theme-pic .pic {
    height: 120px;
  }
  main .lenta a.theme-poster .title {
    padding: 0 15px;
    margin-top: 150px;
  }
  main .container-lenta-second .lenta {
    width: calc(75% - 10px);
    margin-left: 10px;
  }
  main .container-lenta-second .lenta .col {
    width: calc(33.33% - 10px);
  }
  .footer .links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .info a {
    margin: 3px 8px;
  }
  .footer .socials {
    flex-direction: column;
  }
  .footer .socials > a {
    margin: 5px 0;
  }
}
@media (max-width: 800px) {
  main .mainnews {
    padding: 0;
    background-color: unset;
    border-radius: 0;
    box-shadow: unset;
    flex-wrap: wrap;
  }
  main .mainnews > a {
    width: 100%;
    margin: 20px 0 0 0;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
  }
  main .mainnews > a:first-child {
    margin: 0;
  }
  main .mainnews .pic {
    border-radius: 6px 6px 0 0;
  }
  main .mainnews .header {
    padding: 15px 15px 0 15px;
    font-size: 18px;
  }
  main .mainnews .desc {
    font-size: 15px;
    padding: 15px;
  }
  main .container-lenta-first .lenta {
    flex-wrap: wrap;
    padding: 10px 20px 27px 20px;
  }
  main .lenta .col {
    width: calc(50% - 10px);
  }
  main .lenta > .col:nth-child(3) > a:first-child, main .lenta > .col:nth-child(4) > a:first-child {
    border-top: 1px #e1e1e1 solid;
    padding-top: 17px;
  }
  main .container-lenta-second {
    flex-wrap: wrap;
  }
  main .container-lenta-second .stories {
    width: 100%;
  }
  main .lenta-col-swiper {
    border-radius: 16px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
  }
  main .lenta-col-swiper .header {
    text-align: left;
    width: 100%;
    padding-left: 6px;
  }
  main .lenta-col-swiper .poster {
    width: 40%;
    margin: 0;
  }
  main .lenta-col-swiper .poster::before {
    bottom: unset;
    height: 163px;
  }
  main .lenta-col-swiper .title {
    padding: 0 15px;
  }
  main .lenta-col-swiper .list {
    width: calc(60% - 20px);
  }
  main .lenta-col-swiper .list > div {
    margin-top: 12px;
    padding-top: 12px;
  }
  main .container-lenta-second .lenta {
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    margin-top: 30px;
    flex-wrap: wrap;
    border-top: 1px #e1e1e1 solid;
    border-bottom: 1px #e1e1e1 solid;
  }
  main .container-lenta-second .lenta .col {
    width: calc(50% - 10px);
  }
  main .container-lenta-second .lenta > .col:last-child {
    display: none;
  }
  .footer {
    flex-direction: column;
    padding: 30px 50px 20px 50px;
  }
  .footer .socials {
    flex-direction: row;
  }
  .footer .socials > a {
    margin: 0 10px;
  }
  .footer .info .smi {
    text-align: center;
    margin-bottom: 15px;
  }
  .footer .info .smi .svid {
    white-space: nowrap;
  }
}
@media (max-width: 500px) {
  body {
    background-color: #fff;
  }
  main .mainnews .desc {
    padding: 10px 15px 15px 15px;
  }
  main .mainnews > a {
    background-color: #f1f1f1;
  }
  main .mainnews a:hover .pic > div {
    transform: unset;
  }
  main .mainnews .header {
    padding: 12px 15px 0 15px;
  }
  main .mainnews > a:first-child {
    background-color: #292929;
    position: relative;
  }
  main .mainnews > a:first-child .pic {
    border: 0;
    border-radius: 0;
    z-index: 1;
    padding-bottom: 70%;
  }
  main .mainnews > a:first-child .pic:before {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 48px;
    bottom: 0;
    background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 54%, #292929);
    background-image: linear-gradient(180deg, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 54%, #292929);
    content: "";
  }
  main .mainnews > a:first-child .header {
    color: #fff;
    margin-top: -50px;
    z-index: 2;
    position: relative;
    padding: 10px 20px 0 20px;
  }
  main .mainnews > a:first-child .desc {
    color: #c9c9c9;
    padding: 8px 20px 12px 20px;
  }
  main .container-lenta-first {
    border-top: 0;
    margin-top: 0;
  }
  main .container-lenta-first .lenta {
    padding: 10px 15px 27px 15px;
  }
  main .lenta .col {
    width: 100%;
  }
  main .lenta a .title, main .lenta a.theme-pic .title {
    font-size: 17px;
  }
  main .lenta a.theme-pic .pic {
    height: unset;
    padding-bottom: 63%;
  }
  main .lenta a.theme-poster .pic {
    position: relative;
    height: unset;
    padding-bottom: 63%;
  }
  main .lenta a.theme-poster .pic > div {
    position: absolute;
  }
  main .lenta a.theme-poster:hover .pic > div {
    transform: unset;
  }
  main .lenta a.theme-poster:before {
    display: none;
  }
  main .lenta a.theme-poster .pic:before {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 48px;
    bottom: 0;
    background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 54%, #292929);
    background-image: linear-gradient(180deg, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 54%, #292929);
    content: "";
  }
  main .lenta a.theme-poster .title {
    margin-top: -50px;
  }
  main .lenta a.theme-person .person {
    align-items: flex-end;
    flex-direction: row;
  }
  main .lenta a.theme-person .person .pic {
    width: 140px;
    height: 140px;
  }
  main .lenta a.theme-person .person .name {
    width: calc(100% - 150px);
    margin-top: 0;
  }
  main .container-fednews {
    background-color: #f1f1f1;
    padding: 30px 20px;
    margin: 0 auto 0 auto;
    overflow-x: hidden;
  }
  main .swiper-custom {
    display: none;
  }
  main .fednews {
    margin: 15px 20px 0 20px;
  }
  main .fednews a.swiper-slide {
    border: 0;
    box-shadow: 0 -6px 6px rgba(128, 128, 128, 0.2);
    background-image: linear-gradient(180deg, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0) 84%, #F1F1F1);
    border-radius: 6px 6px 0 0;
  }
  main .fednews a.swiper-slide .title {
    padding: 0 20px;
    font-size: 17px;
  }
  main .fednews a.swiper-slide .title, main .fednews a.swiper-slide .date {
    text-align: center;
  }
  main .container-lenta-second {
    background-color: #f1f1f1;
  }
  main .container-lenta-second .stories {
    background-color: var(--black);
    border-radius: 20px;
    padding: 0 40px;
  }
  main .swiper.stories .swiper-wrapper {
    align-items: stretch;
  }
  main .swiper.stories .swiper-slide {
    height: auto;
    padding: 15px 0 35px 0;
    flex-direction: column;
  }
  main .lenta-col-swiper .header {
    padding-left: 0;
    text-align: center;
  }
  main .lenta-col-swiper .poster {
    width: 100%;
    padding: 0;
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
    flex: 1;
  }
  main .lenta-col-swiper .poster::before {
    bottom: unset;
    height: 100%;
  }
  main .lenta-col-swiper .pic {
    height: 100%;
    padding-bottom: 63%;
  }
  main .lenta-col-swiper .poster::before {
    background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0.5) 74%, #292929);
    background-image: linear-gradient(180deg, rgba(41, 41, 41, 0), rgba(41, 41, 41, 0.5) 74%, #292929);
  }
  main .lenta-col-swiper .title {
    padding: 0 15px;
    position: absolute;
    bottom: 10px;
  }
  main .lenta-col-swiper .list {
    width: 100%;
    margin-top: 0;
    border: 1px #797979 solid;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    padding: 15px 10px;
  }
  main .container-lenta-second .lenta .col {
    width: 100%;
  }
  main .container-lenta-second .lenta > .col:nth-child(2) > a:first-child, main .container-lenta-second .lenta > .col:nth-child(3) > a:first-child {
    border-top: 1px #e1e1e1 solid;
    padding-top: 17px;
  }
  main .container-lenta-second .lenta {
    border-bottom: 0;
  }
  main .container-lenta-second .lenta > .col:last-child {
    display: block;
  }
  .footer {
    margin: 20px auto 0 auto;
  }
}
@media (max-width: 360px) {
  main .mainnews .header {
    padding: 10px 12px 0 12px;
    font-size: 16px;
  }
  main .mainnews .desc {
    padding: 12px;
    font-size: 14px;
  }
  main .lenta a .title {
    font-size: 15px;
  }
  main .lenta a.theme-pic .title {
    font-size: 15px;
  }
  main .lenta a.theme-poster .title {
    font-size: 17px;
  }
  main .lenta a.theme-person .title {
    font-size: 16px;
  }
  main .lenta a.theme-person .person .pic {
    width: 130px;
    height: 130px;
  }
  main .lenta a.theme-person .person .name {
    width: calc(100% - 140px);
  }
  main .fednews a.swiper-slide .title {
    font-size: 15px;
  }
  main .lenta-col-swiper .title {
    font-size: 16px;
  }
  main .lenta-col-swiper .list a {
    font-size: 14px;
  }
  main .lenta-col-swiper .list span {
    font-size: 13px;
  }
}

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