.txt-24 > * {
  font-family: "HelveticaNeueCyr-Bold";
  font-size: 24px;
  color: black;
}
@media screen and (max-width: 600px) {
  .txt-24 > * {
    font-size: 18px;
  }
}
.txt-24.white > * {
  color: white;
}

.g-club {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.g-club__years-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  grid-gap: 40px;
  margin-bottom: 80px;
}
.g-club__years-item {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .g-club__years-item {
    flex-direction: column;
  }
}
.g-club__years {
  display: flex;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .g-club__years {
    margin: 0;
    margin-bottom: 40px;
  }
}
.g-club__years > * {
  font-family: "HelveticaNeueCyr-Roman";
  line-height: 1;
  color: gray;
  font-size: 50px;
}
@media screen and (max-width: 1536px) {
  .g-club__years > * {
    font-size: calc(34px + 16 * ((100vw - 320px) / 1216));
  }
}
.g-club__month {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .g-club__month {
    gap: 10px;
  }
}
.g-club__month > * {
  display: flex;
  border: 1px solid #ef4833;
  border-radius: 30px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 0.6em 2rem;
  font-family: "HelveticaNeueCyr-Roman";
  color: #000;
  transition: 0.3s all ease;
}
@media (hover) {
  .g-club__month > *:hover {
    background: #ef4833;
    color: #fff;
  }
}
.g-club__month > *.un-active {
  border-color: gray;
  color: gray;
  opacity: 0.8;
  pointer-events: none;
}

.g-club__hystory {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}
.g-club__hystory-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.g-club__hystory-item:not(:last-child) {
  margin-bottom: 100px;
}
.g-club__hystory-item:last-child .g-club__hystory-decor-icon {
  position: relative;
}
.g-club__hystory-item:last-child .g-club__hystory-decor-icon::after {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 12px;
  height: 30000px;
  background: #d4d4d4;
}
.g-club__hystory-year {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
  margin-bottom: 50px;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #ef4833;
  border-radius: 50%;
}
.g-club__hystory-year::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 90px;
  aspect-ratio: 1/1;
  background: #ef4833;
  border-radius: 50%;
}
.g-club__hystory-year > * {
  font-size: 22px;
  color: #fff;
}
@media screen and (max-width: 1536px) {
  .g-club__hystory-year > * {
    font-size: calc(16px + 6 * ((100vw - 320px) / 1216));
  }
}
.g-club__hystory-month {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.g-club__hystory-month > * {
  background: #ef4833;
  border-radius: 30px;
  padding: 0.6em 2rem;
  font-family: "HelveticaNeueCyr-Heavy";
  color: #fff;
}
.g-club__hystory-item-inner {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .g-club__hystory-item-inner {
    grid-template-columns: 1fr;
  }
  .g-club__hystory-item-inner > * {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .g-club__hystory-item-inner > *:nth-child(1) {
    order: 1 !important;
    margin-bottom: 50px;
  }
  .g-club__hystory-item-inner > *:nth-child(1) > * {
    margin: 0 !important;
  }
  .g-club__hystory-item-inner > *:nth-child(2) {
    order: 2;
  }
  .g-club__hystory-item-inner > *:nth-child(3) {
    order: 3 !important;
  }
  .g-club__hystory-item-inner > *:nth-child(3) > * {
    margin: 0 !important;
  }
}
.g-club__hystory-item-inner:not(:last-child) {
  margin-bottom: 50px;
}
.g-club__hystory-item-inner.reverse > *:nth-child(1) {
  order: 2;
  padding: 0;
  padding-left: 50px;
}
.g-club__hystory-item-inner.reverse > *:nth-child(1) > * {
  margin: 0;
  margin-right: auto;
}
.g-club__hystory-item-inner.reverse > *:nth-child(2) {
  order: 1;
}
.g-club__hystory-item-inner.reverse > *:nth-child(3) {
  order: 0;
  padding: 0;
  padding-right: 10px;
}
.g-club__hystory-item-inner.reverse > *:nth-child(3) > * {
  margin: 0;
  margin-left: auto;
}
.g-club__hystory-item-inner > *:nth-child(1) {
  padding: 0;
  padding-right: 50px;
}
.g-club__hystory-item-inner > *:nth-child(1) > * {
  margin: 0;
  margin-left: auto;
}
.g-club__hystory-item-inner > *:nth-child(2) {
  margin: 0 auto;
}
.g-club__hystory-item-inner > *:nth-child(3) {
  padding-left: 10px;
}
.g-club__hystory-item-inner > *:nth-child(3) > * {
  margin: 0;
  margin-right: auto;
}
.g-club__hystory-item-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.g-club__hystory-decor-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}
.g-club__hystory-decor-icon svg {
  width: 100%;
  height: 100%;
}
.g-club__hystory-item-date {
  display: flex;
}
.g-club__hystory-item-date > * {
  font-family: "HelveticaNeueCyr-Roman";
  font-size: 24px;
  color: gray;
}
@media screen and (max-width: 1536px) {
  .g-club__hystory-item-date > * {
    font-size: calc(16px + 8 * ((100vw - 320px) / 1216));
  }
}

.g-club-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 370px;
}
.g-club-card__img {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.g-club-card__img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 80%;
}
.g-club-card__img img,
.g-club-card__img svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.g-club-card__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  background: #f2f2f2;
}
