.about {
  background-color: #F2F2F2;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-radius: 26px;
  margin-bottom: 64px;
}


.about__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 36px 120px;
}

@media (width < 800px) {
  .about {
    padding: 16px;
  }

  .about__items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1fr, 4);
  }
}

.about__item {
  flex-basis: 370px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.about__title {
  color: var(--md-sys-color-on-background);
}

.about__description {
  color: #3B383E;
}

.auth-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.auth {
  max-width: 420px;
  width: 100%;

  box-sizing: border-box;
  border-radius: 26px;
  padding: 32px;
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.auth_register {
  max-width: 510px;
}

.auth__logo img {
  display: block;
  width: 100%;
  ;
}

.auth__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.auth__checkbox md-checkbox {
  flex-shrink: 0;
}

.auth__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auth__buttons * {
  flex-grow: 1;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.banner {
  margin-bottom: 24px;
  background-image: url(/static/images/banner.jpg);
  background-size: cover;
  border-radius: 26px;
  height: 470px;
  box-sizing: border-box;
  padding-top: 104px;
  padding-left: 122px;
}

.banner__content {
  width: 350px;
}

.banner__text {
  color: var(--md-sys-color-on-secondary-container);
  padding: 16px 0;
}

.banner__wave {
  margin-top: 70px;
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
  width: 100%;
  background-image: url('/static/images/wave.svg');
  background-repeat: no-repeat;
  background-position: center;
}

@media (width < 950px) {
  .banner {
    background-image: url(/static/images/banner-mob.jpg);
    padding-top: 16px;
    padding-left: 16px;
    height: 253px;
  }

  .md-typescale-display-large {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }

  .banner__content {
    width: 80%;
  }
}

.banner__wave {
  display: none;
}

.breadcrumbs {
  display: flex;
  --md-list-item-top-space: 8px;
  --md-list-item-bottom-space: 8px;
  --md-list-item-leading-space: 12px;
  --md-list-item-trailing-space: 12px;
  --md-list-item-one-line-container-height: 40px;
}

.calendar-page {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calendar-page__filter {
  display: flex;
  gap: 8px;
}

.calendar-page__events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.calendar-page__hide {
  display: none !important;
}

.event-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-page__summary {
  display: flex;
  gap: 32px;
  flex-direction: column;
  padding: 16px 0;
}

.event-page__summary-info {
  display: flex;
  align-items: center;
  gap: 32px;
}

.event-page__poster {
  width: 120px;
  height: 120px;
  border-radius: 8px;
}

.event-page__name {
  flex-grow: 1;
}

.event-page__address {
  color: var(--md-sys-color-on-surface);
}

.event-page__chips {
  pointer-events: none;
}

.event-page__tabs {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  width: min-content;
}

.event-page__content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.events {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

.events__more {
  display: flex;
  justify-content: center;
}

.events__items {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.footer {
  height: 340px;
  padding-top: 50px;
  box-sizing: border-box;
}

.footer__logo {
  display: block;
  margin-bottom: 26px;
}

.footer__content {
  display: flex;
  gap: 54px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__link {
  color: inherit;
  text-decoration: none;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.form-section_last {
  margin-bottom: 0;
}

.form-section__title {
  padding-top: 4px;
  color: #1D1B20;
  border-top: 1px solid #CAC4D0;
}

.land-card {
  padding: 32px;
  border-radius: 26px;
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-basis: 200px;
  height: 300px;
}

.land-card__link {
  align-self: flex-end;
}

.land-card_dark {
  background-color: #000;
  color: #fff;
}

.land-card__content {
  display: flex;
  gap: 32px;
  flex-direction: column;
  flex-grow: 1;
}

.land-card__icon {
  width: 58px;
  align-self: flex-start;
}

.land-card__icon_right {
  align-self: flex-end;
}

.land-card__text {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  background-image: url(/static/images/bottom-logo.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 0 20px;
  font-family: Roboto, serif;
}

h1 {
  margin: 0;
}

a {
  color: #3463C0;
  text-decoration: none;
}

.rounded {
  --md-icon-font: 'Material Symbols Rounded';
}

.sharp {
  --md-icon-font: 'Material Symbols Sharp';
}

md-icon[filled] {
  font-variation-settings: 'FILL' 1;
}

.wrapper {
  max-width: 1128px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

.header__logo {
  display: block;
}

.menu {
  display: flex;
  gap: 32px;
}

.menu__item {
  color: inherit;
  text-decoration: none;
}

.actions {
  display: flex;
  gap: 16px;
}

.menu-mobile {
  display: none;
}

#lk-app {
  flex-grow: 1;
}

@media (width < 1050px) {
  .menu-mobile {
    display: block;
  }

  .actions,
  .menu {
    display: none;
  }
}

.cards {
  display: flex;
  gap: 24px;
  margin-bottom: 64px;
}

@media (width < 950px) {
  .cards {
    flex-direction: column;
  }
}


.cards__new {
  flex-grow: 1;
}

.cards__calendar {
  flex-grow: 2;
}

.cards__rating {
  flex-grow: 2;
}


@media (width < 800px) {
  --md-sys-typescale-display-medium-size: 1.75rem;
  --md-sys-typescale-display-medium-line-height: 2.25rem
}

.news-item-page {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item-page__wrapper {
  padding-top: 38px;
  padding-bottom: 38px;
  display: flex;
  justify-content: center;
}

.news-item-page__item {
  width: 630px;
}

.news-item-page__header {
  padding: 12px 16px;
}

.news-item-page__date {
  color: #1D1B20;
}

.news-item-page__image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.news-item-page__content {
  padding: 16px;
  color: #49454F;
}

.news-page {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-page__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.news-page__more {
  display: flex;
  justify-content: center;
}

.news {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

.news__items {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news__list {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (width < 950px) {
  .news__list {
    width: auto;
  }
}

.news__list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news__list-title {
  color: #4A78D3;
}

.news__list-text {
  color: #0E0E0F;
}

.park-page {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.park-page__wrapper {
  padding-bottom: 38px;
  display: flex;
  justify-content: center;
}

.park-page__item {
  width: 630px;
}

.park-page__header {
  padding: 12px 16px;
}

.park-page__date {
  color: #1D1B20;
}

.park-page__images-social {
  position: relative;
}

.park-page__images-social images-carousel {
  width: 100%
}

.park-page__images-social social-network {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(calc(100% + 16px), -50%);
}

.park-page__content {
  padding: 16px;
  color: #49454F;
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.parks-page {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.parks-page__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.parks-page__more {
  display: flex;
  justify-content: center;
}

.parks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

.parks__more {
  display: flex;
  justify-content: center;
}

.parks__items {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.properties__header {
  color: #141218;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.properties__sub-header {
  color: #141218;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
}

.properties__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.properties__item {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}


@media (width < 400px) {
  .properties__item {
    flex-direction: column;
  }
}

.properties__name {
  width: 200px;
  flex-shrink: 0;
  color: #49454F;
}

.properties__value {
  color: #1D1B20;
}

.stats {
  padding: 40px 60px;
  border-radius: 26px;
  background: var(--md-sys-color-on-background);
  display: flex;
  gap: 71px;
  align-items: center;
  margin-bottom: 64px;
}

@media (width < 950px) {
  .stats {
    display: none;
  }
}

.stats__item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 6px;
}

.stats__value {
  color: var(--md-sys-color-background);
}

.stats__value-2 {
  font-weight: 400;
  color: var(--md-sys-color-inverse-on-surface);
}

.stats__label {
  color: #E6E0E9;
}

.stats__last-item {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats__button {
  --md-sys-color-outline: var(--md-sys-color-background);
  --md-sys-color-on-primary-container: #fff;
  --md-sys-color-primary: #fff;
}

.table {
  border-collapse: collapse;
  border: none;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.table caption {
  caption-side: top;
  text-align: left;
  margin-bottom: 16px;
  color: #141218;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.table th {
  background-color: #F2F2F2;
  text-align: left;
  color: #1D1B20;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.table td {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}

.table td,
.table th {
  padding: 0px 16px;
  border: none;
  height: 56px;
}

.table tr:not(:first-child):not(:last-child) {
  border-bottom: 1px solid #E6E1E2;
}

:root {
  --md-sys-color-primary: #3463C0;
  --md-sys-color-surface-tint: rgb(103 80 164);
  --md-sys-color-on-primary: #FFFFFF;
  --md-sys-color-primary-container: rgb(221, 234, 255);
  --md-sys-color-on-primary-container: rgb(33 0 93);
  --md-sys-color-secondary: rgb(98 91 113);
  --md-sys-color-on-secondary: rgb(255 255 255);
  --md-sys-color-secondary-container: #beddfc;
  --md-sys-color-on-secondary-container: rgb(74, 68, 89);
  --md-sys-color-tertiary: rgb(125 82 96);
  --md-sys-color-on-tertiary: rgb(255 255 255);
  --md-sys-color-tertiary-container: rgb(255 216 228);
  --md-sys-color-on-tertiary-container: rgb(49 17 29);
  --md-sys-color-error: rgb(179 38 30);
  --md-sys-color-on-error: rgb(255 255 255);
  --md-sys-color-error-container: rgb(249 222 220);
  --md-sys-color-on-error-container: rgb(65 14 11);
  --md-sys-color-background: rgb(254 247 255);
  --md-sys-color-on-background: rgb(29 27 32);
  --md-sys-color-surface: rgb(244, 240, 240);
  --md-sys-color-on-surface: rgb(29 27 32);
  --md-sys-color-surface-variant: rgb(231 224 236);
  --md-sys-color-on-surface-variant: rgb(73 69 79);
  --md-sys-color-outline: rgba(101, 85, 143, 0.16);
  --md-sys-color-outline-variant: rgb(202 196 208);
  --md-sys-color-shadow: rgb(0 0 0);
  --md-sys-color-scrim: rgb(0 0 0);
  --md-sys-color-inverse-surface: rgb(50 47 53);
  --md-sys-color-inverse-on-surface: rgb(245 239 247);
  --md-sys-color-inverse-primary: rgb(208 188 255);
  --md-sys-color-primary-fixed: rgb(234 221 255);
  --md-sys-color-on-primary-fixed: rgb(33 0 93);
  --md-sys-color-primary-fixed-dim: rgb(208 188 255);
  --md-sys-color-on-primary-fixed-variant: rgb(79 55 139);
  --md-sys-color-secondary-fixed: rgb(232 222 248);
  --md-sys-color-on-secondary-fixed: rgb(29 25 43);
  --md-sys-color-secondary-fixed-dim: rgb(204 194 220);
  --md-sys-color-on-secondary-fixed-variant: rgb(74 68 88);
  --md-sys-color-tertiary-fixed: rgb(255 216 228);
  --md-sys-color-on-tertiary-fixed: rgb(49 17 29);
  --md-sys-color-tertiary-fixed-dim: rgb(239 184 200);
  --md-sys-color-on-tertiary-fixed-variant: rgb(99 59 72);
  --md-sys-color-surface-dim: rgb(222 216 225);
  --md-sys-color-surface-bright: rgb(254 247 255);
  --md-sys-color-surface-container-lowest: rgb(255 255 255);
  --md-sys-color-surface-container-low: rgb(247 242 250);
  --md-sys-color-surface-container: rgb(243 237 247);
  --md-sys-color-surface-container-high: rgb(236 230 240);
  --md-sys-color-surface-container-highest: rgb(230 224 233);

  --md-secondary-tab-active-indicator-color: rgba(74, 120, 211, 1);
}
