:root {
  --grey-color: #4B4B4B;
  --grey-light-color: #999;
  --blue-color: #2B4DFF;
  --green-color: #40C700;
  --red-color: #F00;
}

body {
  font-family: "TT Norms", sans-serif;
  font-size: 12px;
  background: #F8F8F8;
}

.container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: "TT Norms", sans-serif;
}
.button__icon {
  width: 100%;
}
.button__icon--white {
  fill: #fff;
}
.button__icon--small {
  height: 10px;
}
.button__icon--big {
  height: 30px;
}
.button__text {
  flex-shrink: 0;
}
.button--small {
  padding: 8px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
}
.button--big {
  padding: 15px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  height: 50px;
}
@media screen and (max-width: 600px) {
  .button--big {
    font-size: 17px;
  }
}
.button--grey {
  color: #fff;
  background: var(--grey-color);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title {
  font-family: "TT Norms", sans-serif;
}
.title--base {
  font-size: 12px;
  font-weight: 500;
}
.title--small {
  font-size: 15px;
  font-weight: 500;
}
.title--middle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.title--biggest {
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .title--biggest {
    font-size: 35px;
  }
}
.title--medium {
  font-weight: 500;
}
.title--black {
  color: #000;
}
.title--white {
  color: #fff;
}
.title--grey {
  color: var(--grey-color);
}
.title--grey--light {
  color: var(--grey-light-color);
}
.title--green {
  color: var(--green-color);
}
.title--blue {
  color: var(--blue-color);
}
.title--uppercase {
  text-transform: uppercase;
}
@media screen and (min-width: 601px) {
  .title--mobile {
    display: none;
  }
}

.text {
  font-family: "TT Norms", sans-serif;
}
.text--base {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .text--base {
    font-size: 15px;
  }
}
.text--big {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
}
.text--white {
  color: #fff;
}
.text--grey {
  color: var(--grey-color);
}
.text--grey--light {
  color: var(--grey-light-color);
}

.burger {
  width: 27px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.burger:hover {
  cursor: pointer;
}
.burger__item {
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 6px;
  position: absolute;
}
.burger__item:nth-child(1) {
  top: 0;
  left: 0;
  transition: 0.3s top, 0.3s transform;
}
.burger__item:nth-child(2) {
  top: calc(50% - 1.5px);
  left: 0;
  transition: 0.3s left, 0.3s opacity, 0.5s visibility;
}
.burger__item:nth-child(3) {
  top: calc(100% - 3px);
  left: 0;
  transition: 0.3s top, 0.3s transform;
}
.burger--white .burger__item {
  background: #fff;
}
.burger--active .burger__item {
  background: #000;
}
.burger--active .burger__item:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.burger--active .burger__item:nth-child(2) {
  left: -10px;
  opacity: 0;
  visibility: hidden;
}
.burger--active .burger__item:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.header {
  width: 100%;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .header {
    display: none;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 25px 20px 20px 20px;
}
.header__burger {
  position: relative;
  z-index: 21;
}
.header__nav {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 20;
  justify-content: flex-end;
}
.header-nav {
  display: none;
}
.header-nav--active {
  display: flex;
}
.header-nav__wrapper {
  max-width: 265px;
  width: 100%;
  padding: 130px 0 0 0;
  background: #FFF;
  box-shadow: -5px 0px 50px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.page-wrapper {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .page-wrapper {
    flex-direction: column;
  }
}
.page-wrapper__aside {
  max-width: 180px;
  width: 100%;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .page-wrapper__aside {
    display: none;
  }
}
.page-wrapper__back {
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 600px) {
  .page-wrapper__back--mobile--white {
    color: #fff;
  }
}
.page-wrapper__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .page-wrapper__content {
    padding: 20px 15px;
  }
}

.aside {
  overflow: hidden;
  background: #Fff;
}
.aside__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}
.aside__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.aside__close {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  display: block;
  background: url(/_custom/145/assets/styles/../images/icons/aside-close.svg) center center/contain no-repeat;
}
.aside__logo {
  width: 60px;
  height: 20px;
}
.aside__wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 0 0 20px 0;
}
.aside__footer, .aside__header {
  flex-shrink: 0;
}
.aside__content {
  padding: 20px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
  overflow: hidden;
}
.aside__grid {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.aside__header, .aside__content, .aside__footer {
  background: #fff;
}
.aside-block__title {
  color: #999;
  font-size: 12px;
  font-weight: 500;
}
.aside-block__header {
  padding: 0 20px;
}
.aside-block__header:not(:last-child) {
  margin: 0 0 14px 0;
}
.aside-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .aside-list {
    gap: 0;
  }
}
.aside-list__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 20px;
  transition: 0.3s border-radius, 0.3s background-color;
}
.aside-list__link::before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #000;
}
.aside-list__link:hover {
  border-radius: 5px;
  background: #F6F6F6;
}
@media screen and (max-width: 1024px) {
  .aside-list__link {
    background: transparent;
    padding: 17px 25px;
    border-bottom: 1px solid rgba(108, 108, 108, 0.05);
    gap: 20px;
    border-radius: 0;
    font-size: 18px;
  }
}
.aside-list__icon {
  width: 10px;
  height: 10px;
  fill: #000;
}

.img {
  object-fit: contain;
}
.img--full {
  width: 100%;
  height: 100%;
}
.img--cover {
  object-fit: cover;
}
.img--round {
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  .content--home .section {
    order: 4;
  }
}
@media screen and (max-width: 600px) {
  .content--home .section--hero {
    order: 2;
  }
}
@media screen and (max-width: 600px) {
  .content--home .section--services {
    order: 4;
  }
}
@media screen and (max-width: 600px) {
  .content--home .section--case {
    order: 3;
  }
}
@media screen and (max-width: 600px) {
  .content--home .section--title {
    order: 1;
  }
}

.section__header {
  display: flex;
  align-items: center;
}
.section__header:not(:last-child) {
  margin: 0 0 20px 0;
}
.section__grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
}
.section__grid--big {
  grid-template-columns: 510px minmax(0, 1fr);
}
.section__grid--reverse {
  grid-template-columns: minmax(0, 940px) 300px;
}
@media screen and (max-width: 600px) {
  .section__grid {
    gap: 25px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.section-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.section-banner__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  height: 100%;
  border-radius: 15px;
  background: #EFF1F9;
  padding: 10px 10px 10px 0;
}
.section-banner__header {
  padding: 0 0 0 10px;
}
.section-banner__img {
  flex-grow: 1;
  width: 100%;
  height: 100%;
}

.card__video {
  aspect-ratio: 1;
  position: relative;
}
@media screen and (max-width: 600px) {
  .card__video {
    height: 40vh;
    aspect-ratio: unset;
    transition: 0.5s height;
  }
}
.card__video iframe, .card__video img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .card__text {
    font-size: 18px;
  }
}
.card-video--active {
  height: 70vh;
}
.card-video--active .card-video__item::before, .card-video--active .card-video__item::after {
  opacity: 0;
}
.card-video__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  object-fit: contain;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-video__item video {
  width: 100%;
}
.card-video__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.4);
}
.card-video__item::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  display: block;
  background: url(/_custom/145/assets/styles/../images/icons/play.svg) center center/contain no-repeat;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .card-video__item {
    width: calc(100% + 30px);
    transform: translateX(-15px) translateY(-115px);
    border-radius: 0;
    height: calc(100% + 165px);
  }
}
.card-video__item--active::before, .card-video__item--active::after {
  opacity: 0;
}
.card__wrapper {
  padding: 10px 10px 10px 10px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 4;
  min-height: 70px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card__wrapper--services {
  border-radius: 15px;
}
.card__wrapper--blue {
  background: #2B4DFF;
}
.card__wrapper--row {
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}
.card__wrapper--feed::before {
  content: "";
  width: 41px;
  height: 4px;
  display: block;
  background: #D9D9D9;
  margin: 5px auto 15px auto;
  border-radius: 4px;
}
.card__wrapper--big {
  padding: 15px;
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .card__wrapper--big {
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .card__wrapper--mobile--full {
    width: calc(100% + 30px);
    transform: translateX(-15px);
  }
}
.card__icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card__footer {
  margin: auto 0 0 0;
}
.card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card__header:not(:last-child) {
  margin: 0 0 10px 0;
}
.card__title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -moz-box;
  -moz-line-clamp: 1;
  -moz-box-orient: vertical;
  overflow: hidden;
}
.card__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card__content--gap--big {
  gap: 10px;
}
.card__content--small {
  max-width: 178px;
  width: 100%;
}
.card__content:not(:last-child) {
  margin: 0 0 10px 0;
}
.card__content--between {
  justify-content: space-evenly;
}
.card__content--between:not(:last-child) {
  margin: 0;
}
.card__img {
  width: 60px;
  height: 75px;
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .card__img {
    width: 45px;
    height: 55px;
  }
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card__img--blog {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
}
.card__img--blog img {
  border-radius: 10px;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .card__img--blog {
    height: 182px;
  }
}
.card__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.card__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  border-radius: 20px;
  font-family: "TT Norms", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.card__tag--grey {
  background: #D3D3D3;
}
.card__tag--purple {
  background: #BE6BB1;
}
.card__tag--purple--deep {
  background: #A071C6;
}
.card__tag--blue {
  background: #676AB5;
}
.card__tag--green {
  background: #67A5B8;
}
.card__tag--brown {
  background: #B88D65;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.grid--card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .grid--card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}
@media screen and (max-width: 800px) {
  .grid--card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .grid--card {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .grid--card--case .card, .grid--card--blog .card {
    display: none;
  }
  .grid--card--case .card:nth-child(-n+3), .grid--card--blog .card:nth-child(-n+3) {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .grid--card--case .card, .grid--card--blog .card {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .grid--card--case .card, .grid--card--blog .card {
    display: none;
  }
  .grid--card--case .card:nth-child(-n+3), .grid--card--blog .card:nth-child(-n+3) {
    display: block;
  }
}
.grid--card--services .card {
  display: none;
}
@media screen and (max-width: 600px) {
  .grid--card--services .card:nth-child(-n+4) {
    display: block;
  }
  .grid--card--services.active .card {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .grid--card--hero .card {
    display: none;
  }
  .grid--card--hero .grid__item--big {
    display: block;
  }
}
@media screen and (max-width: 1280px) and (min-width: 800px) {
  .grid__item--big .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .grid__item--big {
    grid-column: 2/-1;
    grid-row-start: 3;
  }
}
@media screen and (max-width: 800px) {
  .grid__item--big {
    grid-column: 1/1;
    grid-row-start: 1;
  }
}

.slider {
  -webkit-user-select: none;
  user-select: none;
}
.slider:hover {
  cursor: default;
}
.slider__controls {
  display: flex;
  align-items: center;
  gap: 34px;
}
.slider__controls--right {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 600px) {
  .slider__controls {
    display: none;
  }
}
.slider__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 12px;
  flex-shrink: 0;
  transition: 0.3s opacity;
}
.slider__button--next {
  transform: rotate(180deg);
}
.slider__button--disabled {
  opacity: 0.5;
}
.slider__button--hidden {
  display: none;
}
.slider__button.swiper-button-lock {
  display: none;
}
.slider__button:hover {
  cursor: pointer;
}
.slider-button__icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: #4B4B4B;
  transition: 0.3s stroke;
}
.slider-button__icon:hover {
  stroke: #000;
}
.slider-grid .swiper-wrapper, .slider-auto .swiper-wrapper, .slider-grid-big .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.slider-grid .swiper-slide, .slider-auto .swiper-slide, .slider-grid-big .swiper-slide {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.slider-feed .swiper-slide {
  max-width: 60px;
}
.slider-feed-big {
  overflow: visible;
}
.slider-feed-big .swiper-slide {
  width: 105px;
}
.slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0 0;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 601px) {
  .slider__pagination {
    display: none;
  }
}
.slider-pagination--hidden {
  display: none;
}
.slider-pagination__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background: #D9D9D9;
  transition: 0.3s background-color;
}
.slider-pagination__bullet--active {
  background: var(--grey-color);
}

@media screen and (max-width: 600px) {
  .section--desktop {
    display: none;
  }
}
.section:first-child .section__wrapper {
  padding-top: 0;
}
.section__wrapper {
  padding: 20px 0;
}
.section__wrapper--small {
  padding: 10px 0;
}
@media screen and (max-width: 600px) {
  .section__wrapper {
    padding: 12px 0;
  }
}
.section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1260px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .section__header--mobile {
    display: none;
  }
}
.section__footer {
  margin: 20px 0 0 0;
}
.section__footer--mobile {
  display: none;
}
@media screen and (max-width: 600px) {
  .section__footer--mobile {
    display: block;
  }
}
.section__link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section__link::before {
  content: "";
  width: 1px;
  height: 10px;
  display: block;
  flex-shrink: 0;
  border-radius: 1px;
  background: #D9D9D9;
}
@media screen and (max-width: 600px) {
  .section__link {
    justify-content: flex-end;
  }
  .section__link::before {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .section__link--header {
    display: none;
  }
}

.blog-group__item {
  width: 8px;
  height: 15px;
  border-radius: 50%;
}
.blog-group__img {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.blog-stats__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .blog-stats__wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}
.blog-stats__block {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .blog-stats__block {
    width: max-content;
    padding: 10px 0;
  }
  .blog-stats__block:not(:last-child) {
    border-bottom: 1px solid #D9D9D9;
  }
}
.blog-stats__info {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-stats__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.blog-stats__icon {
  width: 15px;
  height: 15px;
}
.blog-stats__icon--tg {
  fill: #00A3FF;
}
.blog-stats__icon--vk {
  fill: #0047FF;
}
.blog-stats__icon--dzen {
  fill: #000;
}
.blog-stats__view {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-stats__view .icon {
  fill: transparent;
  width: 18px;
  height: 10px;
}
.blog-view {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-view .icon {
  width: 20px;
  height: 14px;
  flex-shrink: 0;
  fill: transparent;
}
.blog__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 60px;
}
.blog__text h2 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .blog__text {
    padding: 0;
  }
}
.blog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "TT Norms", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--grey-color);
}
.blog__wrapper--small {
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .blog__wrapper {
    gap: 10px;
  }
}
.blog__wrapper > fimg {
  width: 100%;
  height: 204px;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .blog__wrapper > fimg {
    height: 100%;
  }
}
.blog__wrapper h3 {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .blog__wrapper h2 {
    font-size: 18px;
  }
}
.blog__wrapper b {
  font-weight: 700;
  color: #000;
}
.blog__wrapper h4 {
  font-weight: 700;
  color: #999999;
}
@media screen and (max-width: 600px) {
  .blog__wrapper h4 {
    font-size: 18px;
  }
}
.blog__wrapper blockquote {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog__wrapper blockquote p {
  line-height: 25px;
  color: #000;
}
@media screen and (max-width: 600px) {
  .blog__wrapper blockquote p {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .blog__wrapper blockquote h3 {
    font-size: 15px;
  }
}
.blog__wrapper blockquote img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog__tag {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 2px 7px 2px 5px;
  font-family: "TT Norms", sans-serif;
  font-size: 15px;
  font-weight: 500;
  width: max-content;
}
.blog__tag img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.blog__tag--orange {
  background: #FF9737;
  color: #fff;
}

.feed__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .feed__grid {
    gap: 15px;
  }
}
.feed__grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 600px) {
  .feed__grid--four {
    gap: 10px;
  }
}
.feed-card {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.feed-card__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}
.feed-card__wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.3s background-color;
}
.feed-card__wrapper[data-tag=video]::after {
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  position: absolute;
  left: calc(50% - 18px);
  top: calc(50% - 18px);
  background: url(/_custom/145/assets/styles/../images/icons/play.svg) center center/contain no-repeat;
  z-index: 2;
  opacity: 0;
  transition: 0.3s opacity;
}
.feed-card__wrapper:hover::before {
  background: rgba(0, 0, 0, 0.7);
}
.feed-card__wrapper:hover::after {
  opacity: 1;
}
.feed-card__wrapper--transparent {
  border-radius: 5px;
  border: 1px solid #999;
}
.feed-card__wrapper--transparent::before {
  display: none;
}
.feed-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.feed-card__img img {
  aspect-ratio: 1/1.7;
  height: auto;
  object-position: top left;
}
.feed-card__view {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
  color: #FFF;
  font-family: "TT Norms", sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
  transition: 0.3s opacity;
}
.feed-card__view::before {
  content: "";
  width: 18px;
  height: 14px;
  display: block;
  flex-shrink: 0;
  background: url(/_custom/145/assets/styles/../images/icons/view.svg) center center/contain no-repeat;
}
.feed-card__wrapper:hover .feed-card__view {
  opacity: 0;
}

.fslightbox-container {
  display: flex;
  align-items: center;
}
.fslightbox-container > .fslightbox-absoluted {
  position: relative;
  width: unset;
  height: unset;
}
.fslightbox-container > .fslightbox-absoluted > .fslightbox-absoluted {
  width: unset;
  height: unset;
}
.fslightbox-container .fslightbox-slide-btn-container {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.popup--active {
  display: block;
}
.popup__wrapper {
  width: 100%;
  height: 100%;
}
.popup__container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-height: 90%;
}
@media screen and (max-width: 600px) {
  .popup__container {
    max-width: 80%;
    width: 100%;
  }
}
.popup__content {
  order: 2;
  height: 100%;
}
.popup__content video {
  border-radius: 20px;
  width: 100%;
  max-height: 90vh;
}
.popup__content img {
  border-radius: 20px;
}
.popup__close {
  width: 22px;
  height: 22px;
  position: absolute;
  top: -20px;
  right: 0;
}
.popup__close:hover {
  cursor: pointer;
}
.popup__close::before, .popup__close::after {
  content: "";
  width: 2px;
  height: 100%;
  background: #FFFFFF;
  display: block;
  border-radius: 2px;
  position: absolute;
  left: 10px;
  top: 0;
  transition: 0.3s filter;
}
.popup__close:hover::before, .popup__close:hover::after {
  filter: invert(1);
}
.popup__close::before {
  transform: rotate(45deg);
}
.popup__close::after {
  transform: rotate(-45deg);
}
.popup__button {
  width: 10px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  order: 3;
  background: url(/_custom/145/assets/styles/../images/icons/arrow.svg) center center/contain no-repeat;
  transition: 0.3s filter;
}
.popup__button:hover {
  cursor: pointer;
  filter: invert(1);
}
.popup__button--prev {
  order: 1;
  transform: rotate(180deg);
}

.js-toggle-link::after {
  content: attr(data-show);
}
.js-toggle-link-active::after {
  content: attr(data-hide);
}

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