@charset "UTF-8";
:root {
  --vh-100: 100vh;
  --wrapper-space: 60px;
}
@media screen and (max-width: 1279px) {
  :root {
    --wrapper-space: 20px;
  }
}

.form__grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-top: 32px;
}
.form__grid:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .form__grid {
    margin-top: 16px;
  }
}
.form .tag {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .form .tag {
    margin-bottom: 16px;
  }
}
.form__name {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .form__name {
    line-height: 24px;
  }
}
.form__name {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .form__name {
    margin-bottom: 12px;
  }
}
.form__line {
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}
.form__line--50 {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767px) {
  .form__line--50 {
    width: 100%;
  }
}
.form__line--50:nth-last-of-type(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .form__line--50:nth-last-of-type(2) {
    margin-bottom: 8px;
  }
}
.form__line:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .form__line {
    margin-bottom: 8px;
  }
  .form__line + .form__policy {
    margin-top: 8px;
  }
}
.form__line .input-clear,
.form__line .input-show,
.form__line .input-calendar {
  width: 40px;
  height: 100%;
  max-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.form__line .input-clear .icon,
.form__line .input-show .icon,
.form__line .input-calendar .icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--grey-black);
  transition: var(--trans);
}
@media screen and (max-width: 1280px) {
  .form__line .input-clear,
  .form__line .input-show,
  .form__line .input-calendar {
    max-height: 44px;
  }
}
.form__line .input-clear:hover,
.form__line .input-show:hover,
.form__line .input-calendar:hover {
  stroke: var(--accent-violet);
}
.form__line .input-calendar {
  opacity: 1;
  cursor: pointer;
  width: 24px;
  right: 24px;
}
.form__line .input-calendar .icon {
  stroke: none;
  fill: var(--accent-violet);
}
.form__line .input-show {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.form__line .input-show .icon {
  stroke: var(--grey);
}
.form__line--calendar .input-clear {
  right: 52px;
}
.form__line--add {
  flex-wrap: nowrap;
  display: flex;
}
.form__line--add .input-delet {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  transition: var(--trans);
}
@media screen and (max-width: 767px) {
  .form__line--add .input-delet {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-left: 8px;
  }
}
.form__line--add .input-delet .icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--grey-black);
  transition: var(--trans);
}
.form__line--add .input-delet:hover .icon {
  stroke: var(--accent-violet);
}
.form__label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--grey-50);
  transition: var(--trans);
  padding: 16px 24px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  pointer-events: none;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1280px) {
  .form__label {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 16px;
  }
}
.form__input {
  display: block;
  width: 100%;
  height: 56px;
  outline: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--grey-black);
  margin: 0;
  padding: 19px 67px 9px 23px;
  transition: var(--trans);
  box-shadow: none;
  overflow: auto;
  resize: none;
  border-radius: 16px;
  border: 1px solid var(--additional-stroke);
  background: var(--white);
}
@media screen and (max-width: 1280px) {
  .form__input {
    border-radius: 12px;
    padding: 11px 44px 7px 15px;
    font-size: 14px;
    line-height: 20px;
    height: 44px;
    font-size: 14px;
    line-height: 20px;
  }
}
.form__input--search {
  border: 1px solid var(--additional-grey);
  background: var(--additional-grey);
  padding: 16px 16px 16px 60px;
}
.form__input--search::placeholder {
  opacity: 1 !important;
}
@media screen and (max-width: 1280px) {
  .form__input--search {
    padding: 11px 11px 11px 52px;
  }
}
.form__input::placeholder {
  opacity: 0;
}
.form__input:hover {
  border-color: var(--additional-stroke);
}
.form__input:hover ~ .form__label {
  color: var(--grey);
}
.form__input:focus {
  box-shadow: 0px 0px 0px 4px rgb(205, 205, 205);
  border-color: var(--additional-stroke);
}
.form__input:focus ~ .form__label {
  color: var(--grey-50);
  font-size: 10px;
  line-height: 10px;
  padding-top: 8px;
}
@media screen and (max-width: 1280px) {
  .form__input:focus ~ .form__label {
    padding-top: 4px;
    left: 4px 15px;
  }
}
.form__input.filled {
  border-color: var(--additional-stroke);
}
.form__input.filled:focus {
  box-shadow: 0px 0px 0px 4px rgb(205, 205, 205);
  border-color: var(--additional-stroke);
}
.form__input.filled ~ .input-clear {
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
}
.form__input.filled ~ .form__label {
  color: var(--grey-50);
  font-size: 10px;
  line-height: 10px;
  padding-top: 12px;
}
@media screen and (max-width: 1280px) {
  .form__input.filled ~ .form__label {
    padding-top: 4px;
    left: 4px 15px;
  }
}
.form__input.just-validate-error-field {
  border-color: #F75A40;
}
.form__input[disabled] {
  background: var(--additional-grey);
  border-color: var(--additional-grey);
  border-color: var(--grey-05);
  pointer-events: none;
}
.form__input[disabled]::placeholder {
  color: var(--grey-50);
}
.form__input[disabled] ~ .input-clear {
  display: none;
}
.form__input[type=password] ~ .input-show .icon--close {
  display: none;
}
.form__input[type=password] ~ .input-show .icon--show {
  display: block;
}
.form__input[type=text] ~ .input-show .icon--show {
  display: none;
}
.form__input[type=text] ~ .input-show .icon--close {
  display: block;
}
.form__policy {
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1280px) {
  .form__policy {
    line-height: 14px;
  }
}
.form__policy {
  color: rgba(51, 51, 51, 0.8);
}
.form__policy a {
  color: var(--grey-black);
  text-decoration: underline;
  transition: var(--trans);
}
.form__policy a:hover {
  color: var(--accent-violet);
}
.form__footer {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .form__footer {
    margin-top: 16px;
  }
}
.form__footer--offset {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .form__footer--offset {
    margin-top: 54px;
  }
}
.form__footer + .form__desc {
  margin-top: 24px;
}
.form textarea {
  min-height: 165px;
}
@media screen and (max-width: 1280px) {
  .form textarea {
    min-height: 104px;
  }
}
.form__caption {
  margin-top: 4px;
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1280px) {
  .form__caption {
    line-height: 14px;
  }
}
.form__caption {
  color: rgba(37, 37, 37, 0.5);
}
.form__desc {
  text-align: center;
  margin-top: 16px;
}
.form__subtext {
  display: inline-block;
  color: var(--grey);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .form__subtext {
    margin-bottom: 16px;
  }
}
.form__file {
  margin-bottom: 24px;
}
.form__file.add-photo .add-photo__preview {
  background: var(--white);
}
@media screen and (max-width: 767px) {
  .form__file.add-photo {
    flex-direction: column;
  }
  .form__file.add-photo .add-photo__preview {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .form__file.add-photo .add-photo__preview img {
    max-width: 100%;
    width: auto;
    background-size: contain;
    background-position: center;
  }
  .form__file.add-photo .add-photo__btn {
    width: 100%;
  }
}

.just-validate-error-label {
  display: block;
  color: #F75A40 !important;
  font-size: 10px;
  line-height: 10px;
  padding-left: 24px;
  white-space: nowrap;
  order: 1;
  position: absolute;
  top: calc(100% + 4px);
}
@media screen and (max-width: 1280px) {
  .just-validate-error-label {
    padding-left: 16px;
  }
}
@media screen and (max-width: 767px) {
  .just-validate-error-label {
    position: static;
    padding-top: 4px;
  }
}

.input-checkbox {
  cursor: pointer;
  font-weight: 500;
}
.input-checkbox input {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  opacity: 0;
}
.input-checkbox input:checked ~ .input-checkbox__content {
  color: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .input-checkbox input:checked ~ .input-checkbox__content {
    background: var(--accent-light-violet);
    border-color: var(--accent-light-violet);
  }
}
.input-checkbox input:checked ~ .filters__close {
  opacity: 1;
  pointer-events: all;
}

.code-input {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .code-input {
    margin-bottom: 24px;
  }
}
.code-input__wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .code-input__wrapper {
    gap: 8px;
  }
}
.code-input__cell {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 1px solid var(--additional-stroke);
  text-align: center;
  outline: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--grey-black);
  margin: 0;
  transition: var(--trans);
  box-shadow: none;
  overflow: auto;
  resize: none;
  background: var(--white);
}
.code-input__cell::placeholder {
  color: var(--grey-50);
  transition: var(--trans);
}
.code-input__cell:focus::placeholder {
  opacity: 0;
  font-size: 0;
}
@media screen and (max-width: 1280px) {
  .code-input__cell {
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .code-input__cell {
    width: 44px;
    height: 44px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
  }
}
.code-input__cell[data-just-validate-fallback-disabled=false] {
  border-color: #F75A40;
}
.code-input__value[data-just-validate-fallback-disabled=false] + .code-input__error {
  display: flex;
}
.code-input__error {
  display: none;
  margin-top: 16px;
  justify-content: center;
  color: #F75A40;
}

.form-save .tag {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .form-save .tag {
    margin-bottom: 12px;
  }
}
.form-save h4.form__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .form-save h4.form__name {
    line-height: 20px;
  }
}
.form-save h4.form__name {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .form-save h4.form__name {
    margin-bottom: 36px;
  }
}
.form-save__button {
  display: none !important;
}
.form-save__btns {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .form-save__btns {
    margin-top: 16px;
    gap: 8px;
    flex-direction: column;
  }
  .form-save__btns > * {
    flex: 1 1 auto;
  }
}
.form-save.ready-post .form-save__button {
  display: flex !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  vertical-align: middle;
  white-space: nowrap;
  transition: var(--trans);
  cursor: pointer;
  border: none;
  border-radius: 16px;
  text-align: center;
  box-shadow: none;
  max-width: 100%;
  text-overflow: ellipsis;
  border: 1px solid transparent;
  padding: 15px 23px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.button .icon {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  transition: var(--trans);
}
.button .icon--rotated {
  transform: rotate(180deg);
}
.button:disabled, .button.disabled {
  pointer-events: none;
  cursor: auto;
}
@media screen and (max-width: 1280px) {
  .button {
    padding: 11px 15px;
    border-radius: 12px;
    height: 44px;
    font-size: 14px;
    line-height: 1.4;
  }
}
.button--100 {
  width: 100%;
}
.button--small {
  padding: 10px;
  width: 44px;
  height: 44px;
}
.button--small .icon {
  fill: none !important;
  stroke: var(--white);
}
.button--right {
  flex: 1 1 auto !important;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .button--right {
    margin-left: 8px;
  }
}
.button--no-event {
  pointer-events: none;
}
.button--white {
  background: var(--white);
  border-color: var(--white);
  color: var(--grey-black);
}
.button--white .icon {
  fill: var(--accent-violet);
}
@media screen and (min-width: 1280px) {
  .button--white:hover {
    background: var(--accent-light-violet);
    border-color: var(--accent-light-violet);
    color: var(--grey-black);
  }
  .button--white:hover .icon {
    fill: var(--accent-violet);
  }
}
.button--white:active {
  background: var(--accent-light-violet);
  border-color: var(--accent-light-violet);
  color: var(--grey-black);
}
.button--white:active .icon {
  fill: var(--accent-violet);
}
.button--white:disabled, .button--white.disabled {
  color: var(--additional-stroke);
}
.button--white:disabled .icon, .button--white.disabled .icon {
  fill: var(--additional-stroke);
}
.button--violet {
  background: var(--accent-violet);
  border-color: var(--accent-violet);
  color: var(--white);
}
.button--violet .icon {
  fill: var(--white);
}
@media screen and (min-width: 1280px) {
  .button--violet:hover {
    background: var(--accent-light-violet);
    border-color: var(--accent-light-violet);
    color: var(--accent-violet);
  }
  .button--violet:hover .icon {
    fill: var(--accent-violet);
  }
}
.button--violet:active {
  background: var(--accent-light-violet);
  border-color: var(--accent-light-violet);
  color: var(--accent-violet);
}
.button--violet:active .icon {
  fill: var(--accent-violet);
}
.button--violet:disabled, .button--violet.disabled {
  background: var(--accent-violet);
  color: var(--white-40);
}
.button--violet:disabled .icon, .button--violet.disabled .icon {
  fill: var(--white-40);
}
.button--red {
  background: rgb(217, 9, 18);
  border-color: rgb(217, 9, 18);
  color: var(--white);
}
.button--red .icon {
  fill: var(--white);
}
@media screen and (min-width: 1280px) {
  .button--red:hover {
    background: var(--accent-light-violet);
    border-color: var(--accent-light-violet);
    color: var(--accent-violet);
  }
  .button--red:hover .icon {
    fill: var(--accent-violet);
  }
}
.button--red:active {
  background: var(--accent-light-violet);
  border-color: var(--accent-light-violet);
  color: var(--accent-violet);
}
.button--red:active .icon {
  fill: var(--accent-violet);
}
.button--transparent-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.button--transparent-white .icon {
  fill: var(--white);
}
@media screen and (min-width: 1280px) {
  .button--transparent-white:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--accent-violet);
  }
  .button--transparent-white:hover .icon {
    fill: var(--accent-violet);
  }
}
.button--transparent-white:active {
  background: var(--white);
  border-color: var(--white);
  color: var(--accent-violet);
}
.button--transparent-white:active .icon {
  fill: var(--accent-violet);
}
.button--transparent-white:disabled, .button--transparent-white.disabled {
  background: transparent;
  color: var(--additional-stroke);
  border-color: var(--additional-stroke);
}
.button--transparent-white:disabled .icon, .button--transparent-white.disabled .icon {
  fill: var(--additional-stroke);
}
.button--transparent-grey {
  background: transparent;
  border-color: var(--additional-stroke);
  color: var(--grey-black);
}
.button--transparent-grey .icon {
  fill: var(--accent-violet);
}
@media screen and (min-width: 1280px) {
  .button--transparent-grey:hover {
    border-color: var(--accent-violet);
    color: var(--accent-violet);
  }
  .button--transparent-grey:hover .icon {
    fill: var(--accent-violet);
  }
}
.button--transparent-grey:active {
  border-color: var(--accent-violet);
  color: var(--accent-violet);
}
.button--transparent-grey:active .icon {
  fill: var(--accent-violet);
}
.button--transparent-grey:disabled, .button--transparent-grey.disabled {
  background: transparent;
  color: var(--additional-stroke);
  border-color: var(--additional-stroke);
}
.button--transparent-grey:disabled .icon, .button--transparent-grey.disabled .icon {
  fill: var(--additional-stroke);
}
.button--transparent-dark {
  background: transparent;
  border-color: var(--accent-violet);
  color: var(--accent-violet);
}
.button--transparent-dark .icon {
  fill: var(--accent-violet);
}
@media screen and (min-width: 1280px) {
  .button--transparent-dark:hover {
    background: var(--accent-violet);
    border-color: var(--accent-violet);
    color: var(--white);
  }
  .button--transparent-dark:hover .icon {
    fill: var(--white);
  }
}
.button--transparent-dark:active {
  background: var(--accent-violet);
  border-color: var(--accent-violet);
  color: var(--white);
}
.button--transparent-dark:active .icon {
  fill: var(--white);
}
.button--transparent-dark:focus {
  box-shadow: 0px 0px 0px 4px rgb(205, 205, 205);
  border-color: var(--additional-stroke);
  background: transparent;
  color: var(--accent-violet);
}
.button--transparent-dark:focus .icon {
  fill: var(--accent-violet);
}
.button--transparent-dark:disabled, .button--transparent-dark.disabled {
  background: transparent;
  color: var(--additional-stroke);
  border-color: var(--additional-stroke);
}
.button--transparent-dark:disabled .icon, .button--transparent-dark.disabled .icon {
  fill: var(--additional-stroke);
}
.button--link {
  padding: 0;
  color: var(--accent-violet);
}
.button--link .icon {
  margin-top: 0;
  fill: var(--accent-violet);
}
.button--vk {
  background: #0077FF;
  border: 1px solid #0077FF;
  color: var(--white);
}
.button--vk .icon {
  fill: var(--white);
}
.button--vk:hover {
  background: var(--white);
  color: #0077FF;
}
.button--vk:hover .icon {
  fill: #0077FF;
}

.btn-active {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: var(--trans);
  border: 1px solid var(--additional-stroke);
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex: 0 0 auto;
  position: relative;
}
.btn-active .icon {
  width: 24px;
  height: 24px;
  fill: var(--grey-black);
}
.btn-active::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent-mint);
  border-radius: 100%;
  position: absolute;
  top: 8px;
  right: 8px;
  opacity: 0;
  pointer-events: none;
}
.btn-active.checked::after {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .btn-active ~ .button {
    height: 52px;
  }
}

.link-content {
  display: inline-flex;
  padding: 7px;
  border: 1px solid var(--additional-stroke);
  border-radius: 16px;
  max-width: 100%;
  position: relative;
  background: var(--white);
  scroll-padding: 0 7px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.link-content::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.link-content::-webkit-scrollbar-thumb, .link-content::-webkit-scrollbar-track {
  background: transparent;
}
.link-content--fix {
  position: sticky;
  top: 72px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .link-content--fix {
    width: 100%;
  }
}
.link-content + .section__link {
  align-self: center;
}
@media screen and (max-width: 767px) {
  .link-content {
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
  }
}
.link-content--visible {
  overflow: visible;
}
.link-content__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  vertical-align: middle;
  white-space: nowrap;
  transition: var(--trans);
  cursor: pointer;
  border: none;
  border-radius: 12px;
  text-align: center;
  box-shadow: none;
  max-width: 100%;
  text-overflow: ellipsis;
  padding: 8px 24px;
  background: transparent;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .link-content__check {
    line-height: 20px;
  }
}
.link-content__check .info {
  flex: 0 0 auto;
  position: relative;
}
.link-content__check .info .icon {
  width: 16px;
  height: 16px;
}
.link-content__check .info__desc {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .link-content__check .info__desc {
    line-height: 20px;
  }
}
.link-content__check .info__desc {
  color: var(--grey-black);
  padding: 8px 16px;
  background: var(--white);
  font-weight: 500;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  display: none;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.link-content__check:hover {
  color: var(--accent-violet);
}
.link-content__check:hover .info__desc {
  display: block;
}
.link-content__check.active {
  background: var(--accent-light-violet);
  color: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .link-content__check {
    width: 100%;
    padding: 8px 24px;
  }
}

.button--vector .icon--vector {
  stroke: var(--grey-black);
  transition: var(--trans);
}
.button--vector:hover .icon--vector {
  stroke: var(--accent-violet);
}

.footer {
  background: var(--accent-violet);
  padding-top: 100px;
  margin-top: -34px;
}
.footer__top {
  display: flex;
  gap: 20px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--white-40);
}
.footer__top > * {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1280px) {
  .footer__top {
    flex-wrap: wrap;
  }
  .footer__top > * {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .footer__top {
    gap: 36px;
  }
  .footer__top > * {
    width: 100%;
  }
}
.footer__bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  .footer__bottom {
    justify-content: flex-end;
  }
}
.footer__bottom a {
  color: var(--white);
  transition: var(--trans);
}
.footer__bottom a:hover {
  color: var(--accent-middle-violet);
}
.footer__bottom > * {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1280px) {
  .footer__bottom > * {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 36px;
  }
  .footer__bottom > * {
    width: 100%;
  }
  .footer__bottom > *:nth-child(1) {
    margin-left: 0;
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__col--logo {
  justify-content: flex-start;
  gap: 40px;
}
.footer__col--logo a {
  display: flex;
  height: 74px;
}
.footer__col--logo a img {
  height: 100%;
}
.footer__col--logo a:nth-child(2) {
  height: 130px;
}
@media screen and (max-width: 767px) {
  .footer__col--logo {
    justify-content: space-between;
  }
  .footer__col--logo a {
    height: 52px;
  }
}
.footer__col .social-list {
  margin-top: 36px;
}
.footer__col ul li {
  margin-bottom: 12px;
  color: var(--white-40);
  max-width: 280px;
}
.footer__col ul li.contact {
  margin-top: 39px;
}
.footer__col ul li a {
  display: inline-flex;
  color: var(--white);
  transition: var(--trans);
}
.footer__col ul li a:hover {
  color: var(--accent-middle-violet);
}
.footer__col ul li:last-child {
  margin-bottom: 0;
}

.social-list {
  display: flex;
  gap: 8px;
}
.social-list li {
  margin-bottom: 0 !important;
  width: auto;
}
.social-list a {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 16px;
}
.social-list a .icon {
  width: 24px;
  height: 24px;
  fill: var(--white);
  transition: var(--trans);
}
.social-list a:hover {
  background: var(--white);
}
.social-list a:hover .icon {
  fill: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .social-list a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}
.social-list--header a {
  border: 1px solid var(--additional-stroke);
}
.social-list--header a .icon {
  fill: var(--accent-violet);
}
.social-list--header a:hover {
  background: var(--accent-violet);
  border-color: var(--accent-violet);
}
.social-list--header a:hover .icon {
  fill: var(--white);
}

.footer-top-link {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--additional-stroke);
  transition: var(--trans);
  z-index: 999;
  position: fixed;
  right: 60px;
  bottom: 32px;
  background: var(--white);
}
@media screen and (min-width: 768px) {
  .footer-top-link:hover {
    background: var(--accent-light-violet);
    border-color: var(--accent-light-violet);
  }
}
.footer-top-link .icon {
  width: 24px;
  height: 24px;
  transition: var(--trans);
  fill: none;
  stroke: var(--grey-black);
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .footer-top-link {
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

.header {
  width: 100vw;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}
.header__wrapper {
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    height: 68px;
  }
}
.header__activities {
  display: flex;
  gap: 8px;
  pointer-events: all;
}
.header__item {
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .header__item {
    padding: 4px;
    gap: 2px;
  }
}
.header__logo {
  width: 272px;
  height: 80px;
  pointer-events: all;
}
.header__logo img {
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 163px;
    height: 48px;
  }
}
.header__active {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--additional-grey);
  transition: var(--trans);
}
@media screen and (max-width: 767px) {
  .header__active {
    width: 44px;
    height: 44px;
  }
}
.header__active--close {
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 1280px) {
  .header__active--close {
    width: 44px;
    height: 44px;
  }
}
.header__active .icon {
  width: 24px;
  height: 24px;
  stroke: var(--grey-black);
  fill: none;
  transition: var(--trans);
}
.header__active:hover {
  background: var(--accent-light-violet);
}
.header__active:hover .icon {
  stroke: var(--accent-violet);
}
.header__user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: var(--trans);
}
.header__user img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  transition: var(--trans);
}
.header__user:hover {
  color: var(--accent-violet);
}

.header-menu {
  border-radius: 12px;
  background: var(--white);
  position: absolute;
  top: 20px;
  left: 20px;
  height: calc(100dvh - 40px);
  pointer-events: all;
  width: calc(100% - 40px);
  padding: 0 40px 0;
  transition: var(--trans);
  height: 0;
  opacity: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header-menu {
    top: 12px;
    padding: 0 20px 0;
  }
}
.header-menu__top .header__logo {
  position: absolute;
  top: 0;
  left: 0;
}
.header-menu__top .header__logo img {
  filter: none;
}
.header-menu__top .header__active {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header-menu__top .header__active {
    top: 4px;
    right: 4px;
  }
}
.header-menu::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100dvh;
  position: absolute;
  left: -20px;
  top: -20px;
  z-index: -1;
  background: var(--grey-50);
  transition: var(--trans);
  opacity: 0;
  transition-delay: 0.31s;
}
@media screen and (max-width: 767px) {
  .header-menu::before {
    top: -12px;
  }
}
.header-menu__wrapper {
  overflow-y: auto;
  height: 100%;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-menu__wrapper {
    padding-bottom: 20px;
  }
}
.header-menu__grid {
  display: grid;
  grid-template-columns: minmax(240px, max-content) minmax(400px, max-content) minmax(400px, auto);
  grid-template-rows: auto auto;
  gap: 32px;
}
@media screen and (max-width: 1679px) {
  .header-menu__grid {
    grid-template-columns: auto auto auto;
  }
}
@media screen and (max-width: 1280px) {
  .header-menu__grid {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header-menu__grid {
    gap: 16px;
  }
}
.header-menu .header-menu__col {
  display: flex;
  flex-direction: column;
}
.header-menu .header-menu__col > ul {
  max-width: 400px;
}
.header-menu .header-menu__col:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 1679px) {
  .header-menu .header-menu__col:nth-child(1) {
    grid-row: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .header-menu .header-menu__col:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
.header-menu .header-menu__col:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 1679px) {
  .header-menu .header-menu__col:nth-child(2) {
    grid-row: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .header-menu .header-menu__col:nth-child(2) {
    grid-column: 1/4;
    grid-row: 2/3;
  }
}
.header-menu .header-menu__col:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (max-width: 1679px) {
  .header-menu .header-menu__col:nth-child(3) {
    grid-row: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .header-menu .header-menu__col:nth-child(3) {
    grid-column: 1/4;
    grid-row: 3/4;
  }
}
.header-menu .header-menu__col:nth-child(4) {
  grid-column: 3/4;
  grid-row: 2/3;
}
@media screen and (max-width: 1679px) {
  .header-menu .header-menu__col:nth-child(4) {
    grid-column: 1/4;
  }
}
@media screen and (max-width: 767px) {
  .header-menu .header-menu__col:nth-child(4) {
    grid-row: 4/5;
    margin-top: 16px;
  }
}
.header-menu .header-menu__col > ul li {
  margin-bottom: 24px;
}
.header-menu .header-menu__col > ul li:last-child {
  margin-bottom: 0;
}
.header-menu .header-menu__col > ul li a {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .header-menu .header-menu__col > ul li a {
    line-height: 24px;
  }
}
.header-menu .header-menu__col > ul li a {
  transition: var(--trans);
}
.header-menu .header-menu__col > ul li a:hover {
  color: var(--accent-violet);
}
@media screen and (max-width: 1280px) {
  .header-menu .header-menu__col > ul li {
    margin-bottom: 16px;
  }
}
.header-menu__item {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .header-menu__item {
    margin-bottom: 16px;
  }
}
.header-menu__item:last-child {
  margin-bottom: 0;
}
.header-menu__item-head {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .header-menu__item-head {
    line-height: 24px;
  }
}
.header-menu__item-head {
  display: flex;
  justify-content: space-between;
}
.header-menu__item-head > a {
  transition: var(--trans);
}
.header-menu__item-head > a:hover {
  color: var(--accent-violet);
}
.header-menu__item-head.show-toggle .icon {
  transform: rotate(-180deg);
}
.header-menu__item-drop {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header-menu__item-drop {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .header-menu__item-drop .icon {
    display: block;
    width: 16px;
    height: 16px;
    fill: var(--accent-violet);
    transition: var(--trans);
  }
}
.header-menu__item-list {
  padding-top: 16px;
}
.header-menu__item-list li {
  padding: 0 20px 16px 20px;
}
.header-menu__item-list li a {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .header-menu__item-list li a {
    line-height: 20px;
  }
}
.header-menu__item-list li a {
  color: var(--grey);
  transition: var(--trans);
}
.header-menu__item-list li a:hover {
  color: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .header-menu__item-list li {
    padding: 0 20px 12px 20px;
  }
}
@media screen and (max-width: 1280px) {
  .header-menu__item-list {
    display: none;
  }
}
.header-menu__decor {
  position: absolute;
  right: 15px;
  top: 30px;
  display: flex;
  align-items: flex-end;
}
.header-menu__decor::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -25px;
  left: -10px;
  transform: rotate(60deg);
  background: url("../assets/images/content/gallery-lines-5.svg") no-repeat top/contain;
  z-index: 1;
}
@media screen and (max-width: 1679px) {
  .header-menu__decor {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header-menu__decor {
    display: flex;
    top: 18px;
    right: 5px;
  }
  .header-menu__decor::before {
    top: -18px;
    left: 14px;
    width: 20px;
    height: 20px;
    background: url("../assets/images/content/gallery-lines-5_small.svg") no-repeat top/contain;
    transform: rotate(0);
  }
}
.header-menu__decor .image {
  display: flex;
  border-radius: 32px;
  overflow: hidden;
  border: 5px solid var(--white);
  width: 210px;
  height: 210px;
  transform: rotate(-11deg) translate3d(50px, 0, 0);
}
.header-menu__decor .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-menu__decor .image--small {
  width: 110px;
  height: 110px;
  transform: rotate(15deg) translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .header-menu__decor .image {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    transform: rotate(-11deg) translate3d(27px, -10px, 0);
  }
  .header-menu__decor .image--small {
    width: 50px;
    height: 50px;
    transform: rotate(15deg) translate3d(0, 0, 0);
  }
}

.social-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.social-nav__row {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .social-nav__row {
    flex-direction: column;
  }
}
.social-nav__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 8px;
  border-radius: 32px;
  background: var(--additional-grey);
  flex: 1 1 100%;
}
.social-nav__item > span {
  display: inline-block;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .social-nav__item > span {
    line-height: 20px;
  }
}
.social-nav__item > span {
  color: var(--grey);
}
@media screen and (max-width: 767px) {
  .social-nav__item {
    padding: 16px;
    border-radius: 24px;
    gap: 4px;
  }
}
.social-nav__item--social {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .social-nav__item--social {
    margin-top: 24px;
    padding: 0;
    background: transparent;
  }
}
.social-nav .copy-link {
  display: inline-block;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .social-nav .copy-link {
    line-height: 20px;
  }
}
.social-nav .copy-link {
  color: var(--accent-violet);
  position: relative;
  cursor: pointer;
  transition: var(--trans);
  margin-top: auto;
}
.social-nav .copy-link::after {
  content: "Скопировано";
  display: block;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 12px;
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.1));
  position: absolute;
  bottom: 100%;
  right: -2px;
  transition: var(--trans-slow);
  pointer-events: none;
  opacity: 0;
}
.social-nav .copy-link:hover {
  color: var(--accent-middle-violet);
}
.social-nav .copy-link.save::after {
  opacity: 1;
}

.search-header {
  display: none;
  position: fixed;
  width: 100vw;
  margin: 0;
  bottom: 0;
  left: 0;
  top: 0;
  height: 100dvh;
  z-index: 10;
  margin-bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: all;
  animation-duration: var(--modal-duration);
  animation-timing-function: var(--cubic);
  animation-fill-mode: forwards;
}
.search-header__line {
  display: flex;
  gap: 16px;
}
.search-header__container {
  border-radius: 12px;
  background: var(--white);
  position: absolute;
  top: 20px;
  left: 20px;
  min-height: 492px;
  width: calc(100% - 40px);
  transition: var(--trans);
  display: flex;
  padding: 12px 0;
}
.search-header__container .header__logo {
  position: absolute;
  top: 0;
  left: 0;
}
.search-header__container .header__logo img {
  filter: none;
}
@media screen and (max-width: 1280px) {
  .search-header__container .header__logo {
    top: 6px;
    width: 200px;
    height: 60px;
  }
}
.search-header__container .modal__close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .search-header__container .modal__close-btn {
    top: 16px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .search-header__container {
    min-height: auto;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 24px 20px;
    border-radius: 32px 32px 0 0;
    animation-duration: var(--modal-duration);
    animation-timing-function: var(--cubic);
    animation-fill-mode: forwards;
  }
  .search-header__container .header__logo {
    display: none;
  }
  .search-header__container .modal__title {
    margin-bottom: 28px;
  }
}
.search-header__wrapper {
  display: flex;
  align-items: flex-start;
  margin-top: 52px;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .search-header__wrapper {
    gap: 35px;
    flex-direction: column;
    align-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  .search-header__wrapper {
    margin-top: 20px;
  }
}
.search-header[aria-hidden=false] {
  animation-name: shadeIn;
}
@media screen and (max-width: 767px) {
  .search-header[aria-hidden=false] .search-header__container {
    animation-name: slideInMobile;
  }
}
.search-header[aria-hidden=true] {
  animation-name: shadeOut;
}
@media screen and (max-width: 767px) {
  .search-header[aria-hidden=true] .search-header__container {
    animation-name: slideOutMobile;
  }
}
.search-header.show {
  display: block;
}
@media screen and (max-width: 767px) {
  .search-header.show .search-header__container {
    transform: translate3d(0, 0, 0);
  }
}

.search-container {
  position: relative;
  max-width: 1244px;
  margin-left: 280px;
  width: calc(100% - 380px);
}
@media screen and (min-width: 1920px) {
  .search-container {
    max-width: calc(100% - 560px);
  }
}
@media screen and (max-width: 1280px) {
  .search-container {
    margin-left: 200px;
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 767px) {
  .search-container {
    margin-left: 0;
    width: 100%;
  }
}

#autocomplete-list {
  max-width: 676px;
  display: flex;
  flex-direction: column;
}

.autocomplete {
  display: flex;
  flex-direction: column;
}
.autocomplete__title {
  display: inline-block;
  color: var(--grey);
  margin-bottom: 20px;
}
.autocomplete__list {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  transition: var(--trans);
}
.autocomplete__item {
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--additional-grey);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .autocomplete__item {
    line-height: 20px;
  }
}
.autocomplete__item {
  transition: var(--trans);
  cursor: pointer;
}
.autocomplete__item:hover {
  background: var(--accent-light-violet);
}
@media screen and (max-width: 767px) {
  .autocomplete__item {
    padding: 12px 16px;
    border-radius: 12px;
  }
}

.breadcrumbs {
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}
.breadcrumbs__list {
  display: flex;
}
.breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  height: 40px;
  gap: 8px;
  border-radius: 8px;
  background: var(--accent-light-violet);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .breadcrumbs__link {
    line-height: 20px;
  }
}
.breadcrumbs__link {
  color: var(--accent-violet);
  transition: var(--trans);
}
.breadcrumbs__link .icon {
  width: 14px;
  height: 14px;
  fill: var(--accent-middle-violet);
  transition: var(--trans);
  transform: rotate(180deg);
}
.breadcrumbs__link:hover, .breadcrumbs__link:active {
  background: var(--accent-violet);
  color: var(--white);
}
.breadcrumbs__link:focus {
  box-shadow: 0px 0px 0px 4px rgb(205, 205, 205);
  background: var(--accent-light-violet);
  color: var(--accent-violet);
}
@media screen and (max-width: 1280px) {
  .breadcrumbs__link {
    height: 32px;
    gap: 6px;
    border-radius: 8px;
    padding: 4px 8px;
  }
}

.pagination-page {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .pagination-page {
    margin-top: 24px;
  }
}
.pagination-page__list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 32px;
}
.pagination-page__list:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1280px) {
  .pagination-page__list {
    margin-top: 16px;
  }
}
.pagination-page__more {
  width: 100%;
}
.pagination-page__link {
  display: flex;
  width: 32px;
  height: 24px;
  justify-content: center;
  text-align: center;
  transition: var(--trans);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .pagination-page__link {
    line-height: 20px;
  }
}
.pagination-page__link {
  color: var(--grey-50);
  border-radius: 6px;
}
@media screen and (max-width: 1280px) {
  .pagination-page__link {
    width: 26px;
    height: 20px;
  }
}
.pagination-page__link:hover, .pagination-page__link:active {
  color: var(--accent-middle-violet);
}
.pagination-page__link.active {
  color: var(--accent-violet);
}
.pagination-page__link:focus {
  box-shadow: 0px 0px 0px 4px rgb(205, 205, 205);
}
.pagination-page__prev, .pagination-page__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid var(--additional-stroke);
  border-radius: 12px;
  transition: var(--trans);
}
.pagination-page__prev .icon, .pagination-page__next .icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent-mint);
  fill: none;
  transition: var(--trans);
}
.pagination-page__prev:hover, .pagination-page__prev:active, .pagination-page__next:hover, .pagination-page__next:active {
  border-color: var(--accent-violet);
}
.pagination-page__prev:hover .icon, .pagination-page__prev:active .icon, .pagination-page__next:hover .icon, .pagination-page__next:active .icon {
  stroke: var(--accent-violet);
}
.pagination-page__prev.disabled, .pagination-page__next.disabled {
  pointer-events: none;
}
.pagination-page__prev.disabled .icon, .pagination-page__next.disabled .icon {
  stroke: var(--additional-stroke);
}
@media screen and (max-width: 1280px) {
  .pagination-page__prev, .pagination-page__next {
    width: 44px;
    height: 44px;
  }
}
.pagination-page__prev {
  margin-right: 22px;
}
@media screen and (max-width: 1280px) {
  .pagination-page__prev {
    margin-right: 17px;
  }
}
.pagination-page__next {
  margin-left: 22px;
}
@media screen and (max-width: 1280px) {
  .pagination-page__next {
    margin-left: 17px;
  }
}

.filters {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .filters--single .filters__content {
    opacity: 1;
    pointer-events: all;
    top: 0;
  }
  .filters--single .filters__header {
    display: none;
  }
}
.filters__wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .filters__wrapper {
    position: relative;
    overflow: hidden;
    flex-direction: column;
    margin-top: auto;
    gap: 0;
    background: var(--white);
    height: calc(100% - 64px);
    max-height: 740px;
    border-radius: 32px 32px 0 0;
    padding: 26px 20px;
    border: 1px solid var(--additional-stroke);
    animation-duration: var(--modal-duration);
    animation-timing-function: var(--cubic);
    animation-fill-mode: forwards;
  }
  .filters__wrapper .toggle-switch {
    margin-bottom: 8px;
  }
  .filters__wrapper .toggle-switch:last-child {
    margin-bottom: 0;
  }
  .filters__wrapper .search-select > .icon {
    margin-left: auto;
  }
}
.filters__tittle {
  margin-bottom: 34px;
  text-align: center;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .filters__tittle {
    line-height: 20px;
  }
}
.filters__tittle {
  display: none;
}
@media screen and (max-width: 767px) {
  .filters__tittle {
    display: block;
  }
}
.filters__close-modal, .filters__back-modal {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: var(--trans);
  display: flex;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid var(--additional-stroke);
  position: absolute;
  top: 16px;
}
.filters__close-modal .icon, .filters__back-modal .icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--grey-black);
}
.filters__close-modal {
  right: 20px;
}
.filters__back-modal {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .filters {
    display: none;
    flex-direction: column;
    position: fixed;
    width: 100vw;
    margin: 0;
    bottom: 0;
    left: 0;
    top: 0;
    height: 100dvh;
    z-index: 10;
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    animation-duration: var(--modal-duration);
    animation-timing-function: var(--cubic);
    animation-fill-mode: forwards;
  }
  .filters[aria-hidden=false] {
    animation-name: shadeIn;
  }
  .filters[aria-hidden=false] .filters__wrapper {
    animation-name: slideInMobile;
  }
  .filters[aria-hidden=true] {
    animation-name: shadeOut;
  }
  .filters[aria-hidden=true] .filters__wrapper {
    animation-name: slideOutMobile;
  }
  .filters.show {
    display: flex !important;
    z-index: 999999;
  }
  .filters.show .filters__wrapper {
    transform: translate3d(0, 0, 0);
  }
}
.filters__footer {
  display: none;
}
@media screen and (max-width: 767px) {
  .filters__footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    gap: 8px;
    z-index: 10;
  }
}
.filters__block {
  position: relative;
}
@media screen and (min-width: 768px) {
  .filters__block:hover .filters__header .icon {
    transform: rotate(-90deg);
  }
  .filters__block:hover .filters__content {
    top: calc(100% + 8px);
    opacity: 1;
    pointer-events: all;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .filters__block {
    position: static;
  }
}
.filters__header .icon {
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .filters__header {
    margin-bottom: 8px;
    width: 100%;
    justify-content: space-between;
  }
  .filters__header .icon {
    transform: none;
  }
}
.filters__content {
  width: 384px;
  border-radius: 16px;
  border: 1px solid var(--additional-grey);
  padding: 8px 16px;
  background: var(--white);
  transition: var(--trans);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  z-index: -1;
}
.filters__content::before {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
  position: absolute;
  top: -9px;
}
@media screen and (max-width: 767px) {
  .filters__content {
    pointer-events: all;
    padding: 26px 20px 130px 20px;
    opacity: 1;
    z-index: 1;
    width: 100vw;
    left: -20px;
    border: none;
    height: 100%;
  }
  .filters__content::before {
    display: none;
  }
  .filters__content {
    pointer-events: none;
    opacity: 0;
    left: 0;
    top: 30px;
    display: flex;
    flex-direction: column;
  }
  .filters__content.show {
    top: 0;
    pointer-events: all;
    opacity: 1;
  }
}
.filters__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .filters__list {
    height: 100%;
    overflow-y: auto;
  }
}
.filters__item {
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.filters__item:hover {
  color: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .filters__item {
    margin-bottom: 8px;
    padding: 0;
  }
  .filters__item:last-child {
    margin-bottom: 0;
  }
  .filters__item .input-checkbox {
    width: 100%;
  }
  .filters__item .input-checkbox__content {
    display: inline-block;
    width: 100%;
    border: 1px solid var(--additional-stroke);
    border-radius: 12px;
    padding: 11px 30px 11px 15px;
    transition: var(--trans);
  }
}
.filters__close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(0, -50%, 0);
}
.filters__close .icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent-violet);
  stroke-width: 2px;
}
@media screen and (max-width: 767px) {
  .filters__close {
    right: 8px;
  }
}

.all-filters {
  width: 100%;
  transition: var(--trans);
  overflow: hidden;
  margin-top: 28px;
}
.all-filters--offset_bottom {
  margin-bottom: 54px;
}
.all-filters__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.all-filters__item, .all-filters__clear {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .all-filters__item, .all-filters__clear {
    line-height: 20px;
  }
}
.all-filters__item, .all-filters__clear {
  color: var(--accent-violet);
}
.all-filters__close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.all-filters__close .icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent-violet);
  stroke-width: 2px;
}
.all-filters__item {
  background: var(--accent-light-violet);
  gap: 8px;
  white-space: nowrap;
  display: none;
}
.all-filters__item.active {
  display: flex;
}
.all-filters__clear {
  display: none;
}
.all-filters__clear.show {
  display: block;
}
.all-filters__clear {
  background: var(--additional-grey);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .all-filters {
    display: none;
  }
}

@keyframes loader {
  from {
    transform: translate3d(0, 100%, 0) rotate(0);
  }
  to {
    transform: translate3d(0, 100%, 0) rotate(360deg);
  }
}
.loader, .filter-content:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(var(--accent-light-violet) 10%, var(--accent-violet));
  mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  animation: loader 1s infinite linear;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.filter-content {
  position: relative;
  z-index: 1;
  transition: var(--trans);
}
.filter-content .card-base {
  -webkit-animation: shadeIn 0.5s var(--cubic);
  animation: shadeIn 0.5s var(--cubic);
}
.filter-content:before {
  display: none;
  position: sticky;
  z-index: 10;
  top: 50%;
  left: 0;
  transform: translate3d(0, 100%, 0);
  margin: -40px auto 0 auto;
}
.filter-content--loading {
  pointer-events: none;
}
.filter-content--loading:before {
  display: block;
}
.filter-content--loading > * {
  opacity: 0.1;
}
.filter-content--loading:before {
  display: block;
}

.search-filter {
  position: relative;
}
.search-filter__header .icon {
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .search-filter__modal {
    display: none;
    flex-direction: column;
    position: fixed;
    width: 100vw;
    margin: 0;
    bottom: 0;
    left: 0;
    top: 0;
    height: 100dvh;
    z-index: 10;
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    animation-duration: var(--modal-duration);
    animation-timing-function: var(--cubic);
    animation-fill-mode: forwards;
  }
  .search-filter__modal[aria-hidden=false] {
    animation-name: shadeIn;
  }
  .search-filter__modal[aria-hidden=false] .search-filter__content {
    animation-name: slideInMobile;
  }
  .search-filter__modal[aria-hidden=true] {
    animation-name: shadeOut;
  }
  .search-filter__modal[aria-hidden=true] .search-filter__content {
    animation-name: slideOutMobile;
  }
  .search-filter__modal.show {
    display: flex;
  }
  .search-filter__modal.show .search-filter__content {
    transform: translate3d(0, 0, 0);
  }
}
.search-filter__content {
  width: 280px;
  border-radius: 16px;
  border: 1px solid var(--additional-grey);
  padding: 8px 16px;
  background: var(--white);
  transition: var(--trans);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  z-index: -1;
}
.search-filter__content::before {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
  position: absolute;
  top: -9px;
}
@media screen and (max-width: 1280px) {
  .search-filter__content {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .search-filter__content {
    pointer-events: all;
    padding: 26px 20px 130px 20px;
    opacity: 1;
    z-index: 1;
    width: 100vw;
    left: 0;
    top: 0;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    background: var(--white);
    height: calc(100% - 64px);
    max-height: 740px;
    border-radius: 32px 32px 0 0;
    border: 1px solid var(--additional-stroke);
  }
  .search-filter__content::before {
    display: none;
  }
  .search-filter__content {
    animation-duration: var(--modal-duration);
    animation-timing-function: var(--cubic);
    animation-fill-mode: forwards;
  }
}
@media screen and (min-width: 768px) {
  .search-filter__modal {
    display: block !important;
  }
  .search-filter:hover .search-filter__header .icon {
    transform: rotate(-90deg);
  }
  .search-filter:hover .search-filter__content {
    top: calc(100% + 8px);
    opacity: 1;
    pointer-events: all;
    z-index: 10;
  }
}

@media screen and (max-width: 767px) {
  .filters-wrapper {
    display: flex;
    gap: 16px;
  }
}

@media screen and (max-width: 1280px) {
  .program-primary {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .program-primary__button {
    width: 100% !important;
  }
}
.program-primary__banner {
  height: 822px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .program-primary__banner {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .program-primary__banner {
    height: auto;
    display: flex;
    justify-content: center;
  }
}
.program-primary .section__header {
  margin-bottom: 36px;
}
.program-primary .section__header .tag {
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .program-primary .section__header .tag {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .program-primary .section__header {
    align-items: flex-start;
    margin-bottom: 24px;
  }
}
.program-primary .section__title {
  font-size: var(--text-h1-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .program-primary .section__title {
    line-height: 32px;
  }
}
.program-primary .section__title {
  max-width: 1200px;
}
.program-primary__img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.program-primary__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 290px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../assets/images/content/banner_layout.svg");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom;
  background-size: cover;
}
.program-primary__img--no-after::after {
  display: none;
}
.program-primary__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .program-primary__img {
    position: absolute;
    border-radius: 24px;
  }
}
.program-primary .box-about {
  width: 850px;
  min-height: 296px;
  transform: rotate(3deg);
  display: flex;
  flex-direction: column;
  z-index: 2;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 35px 40px 40px;
  border-radius: 32px;
  background: var(--white);
  position: absolute;
  bottom: 60px;
  left: 58px;
}
@media screen and (max-width: 1280px) {
  .program-primary .box-about {
    max-width: calc(100% - 40px);
    left: 20px;
    min-height: 168px;
    bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .program-primary .box-about {
    position: static;
    max-width: calc(100% - 8px);
    padding: 24px;
    border-radius: 14px;
    margin-top: 150px;
  }
}
.program-primary .box-about__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .program-primary .box-about__title {
    line-height: 20px;
  }
}
.program-primary .box-about__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .program-primary .box-about__title {
    font-size: var(--text-paragraph);
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .program-primary .box-about__title {
    line-height: 20px;
  }
}
.program-primary .box-about__text {
  color: var(--grey);
  margin-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  .program-primary .box-about__text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .program-primary .box-about__text {
    font-size: var(--text-caption);
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .program-primary .box-about__text {
    line-height: 14px;
  }
}
.program-primary .box-about__footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  gap: 20px;
}
.program-primary .box-about__footer > a:nth-child(1) {
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .program-primary .box-about__footer {
    flex-wrap: wrap;
    gap: 8px;
  }
  .program-primary .box-about__footer > a {
    width: calc(50% - 4px);
  }
  .program-primary .box-about__footer > a:nth-child(1) {
    margin-right: 0;
    width: 100%;
  }
}
.program-primary .box-about__btn100 {
  margin: 0;
  width: 100%;
}
.program-primary .box-about::after {
  content: "";
  display: block;
  width: 28px;
  height: 38px;
  transform: translate3d(-50%, -50%, 0);
  position: absolute;
  top: 0;
  left: 0;
  background: url("../assets/images/content/gallery-lines-4.svg");
  background-size: contain;
}
@media screen and (max-width: 1280px) {
  .program-primary .box-about::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .program-primary .box-about::after, .program-primary .box-about::before {
    display: none;
  }
}

.section__addition {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1280px) {
  .section__addition {
    justify-content: flex-start;
  }
}
.section__addition-box {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1280px) {
  .section__addition-box {
    flex-direction: row-reverse;
    gap: 20px;
  }
}
.section__addition-text {
  width: 190px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .section__addition-text {
    line-height: 20px;
  }
}
.section__addition-text {
  color: #252525;
}
@media screen and (max-width: 1280px) {
  .section__addition-image {
    max-width: 156px;
  }
}
.section--mb-large {
  margin-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .section--mb-large {
    margin-bottom: 0;
  }
}

.hike-banner {
  position: relative;
}
.hike-banner__badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .hike-banner__badge {
    bottom: auto;
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hike-banner__badge {
    max-width: 64px;
  }
}

.materials__grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 22px;
  margin-left: -11px;
  margin-right: -11px;
}
.materials__grid > * {
  flex: 0 0 auto;
  width: 25%;
}
@media screen and (max-width: 1280px) {
  .materials__grid > * {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .materials__grid > * {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .materials__grid {
    row-gap: 8px;
    margin-left: -4px;
    margin-right: -4px;
  }
}
.materials__col {
  padding-left: 11px;
  padding-right: 11px;
}
@media screen and (max-width: 767px) {
  .materials__col {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.materials__item {
  height: 100%;
}

.file-card {
  border-radius: 32px;
  background: var(--additional-grey);
  padding: 32px;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  position: relative;
}
@media screen and (max-width: 767px) {
  .file-card {
    padding: 24px;
    border-radius: 24px;
    min-height: 152px;
  }
}
.file-card:hover {
  transform: rotate(2deg);
}
.file-card:hover .file-card__icon {
  border-color: var(--accent-violet);
}
.file-card:hover .file-card__icon .load-row {
  opacity: 0 !important;
}
.file-card__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .file-card__name {
    line-height: 24px;
  }
}
.file-card__name {
  font-size: 20px;
  transition: var(--trans);
  margin-bottom: 16px;
  padding-right: 54px;
  width: calc(100% - 50px);
}
@media screen and (max-width: 767px) {
  .file-card__name {
    padding-right: 0;
    -webkit-line-clamp: 2;
    margin-bottom: 12px;
  }
}
.file-card__logo {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  z-index: 1;
  opacity: 1;
}
.file-card__logo img {
  max-width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .file-card__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    top: 24px;
    right: 24px;
  }
}
.file-card__bot {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  text-transform: uppercase;
  margin-top: auto;
}
.file-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--additional-stroke);
  border-radius: 16px;
  transition: var(--trans);
}
.file-card__icon .icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--grey-black);
}
.file-card__icon .icon .load-row {
  transition: var(--trans-slow);
}
@media screen and (max-width: 767px) {
  .file-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

.card-base {
  display: flex;
  flex-direction: column;
  background: var(--additional-grey);
  border-radius: 32px;
  padding: 32px;
  transition: var(--trans);
}
.card-base:hover {
  transform: rotate(-1.5deg);
}
.card-base__tooltip {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  background: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-base__tooltip .icon {
  width: 16px;
  height: 16px;
  fill: #000;
  stroke: none;
}
.card-base__tooltip-text {
  position: absolute;
  top: 100%;
  right: 100%;
  background: #FFF;
  width: 200px;
  border-radius: 16px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .card-base__tooltip-text {
    line-height: 20px;
  }
}
.card-base__tooltip-text {
  color: var(--accent-violet);
  padding: 10px;
  pointer-events: none;
  opacity: 0;
  transition: var(--trans);
}
.card-base__tooltip:hover .card-base__tooltip-text {
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  .card-base {
    min-height: 550px;
    padding: 24px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .card-base {
    min-height: 468px;
  }
}
.card-base--large {
  width: 100%;
}
.card-base--way .card-base__preview {
  border-radius: 16px;
}
.card-base--way .card-base__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .card-base--way .card-base__name {
    line-height: 24px;
  }
}
.card-base--way .card-base__text {
  -webkit-line-clamp: 5;
}
.card-base--modal .card-base__text {
  -webkit-line-clamp: 5;
}
.card-base__preview {
  display: flex;
  width: 100%;
  aspect-ratio: 523/392;
  height: auto;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 24px;
}
.card-base__preview img {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .card-base__preview {
    border-radius: 24px;
  }
}
.card-base__preview .tag-list {
  display: flex;
  gap: 4px;
  position: absolute;
  top: 16px;
  left: 16px;
}
.card-base__preview .tag-list li {
  padding: 8px 16px;
  border-radius: 12px;
  background: var(--white);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .card-base__preview .tag-list li {
    line-height: 20px;
  }
}
.card-base__preview .tag-list li {
  color: var(--accent-violet);
}
@media screen and (max-width: 1280px) {
  .card-base__preview .tag-list li {
    padding: 4px 8px;
    border-radius: 8px;
  }
}
.card-base__label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 16px;
  left: 16px;
  border-radius: 16px;
  min-width: 56px;
  height: 56px;
  background: var(--white);
}
.card-base__label img {
  max-height: 100%;
}
.card-base__label .icon {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1280px) {
  .card-base__label {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}
.card-base__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
}
.card-base__note {
  position: absolute;
  right: 0;
  top: 0;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .card-base__note {
    line-height: 20px;
  }
}
.card-base__note {
  color: var(--grey);
}
.card-base__list {
  margin-bottom: 12px;
}
.card-base__list li {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  margin-bottom: 4px;
}
.card-base__list li:last-child {
  margin-bottom: 0;
}
.card-base__list li .icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: var(--accent-mint);
}
.card-base__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .card-base__name {
    line-height: 20px;
  }
}
.card-base__name {
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.card-base__name--small {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .card-base__name--small {
    line-height: 24px;
  }
}
@media screen and (max-width: 1679px) {
  .card-base__name {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
  }
}
@media screen and (max-width: 1679px) and (max-width: 1280px) {
  .card-base__name {
    line-height: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .card-base__name {
    font-size: var(--text-h4-size);
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (max-width: 1280px) and (max-width: 1280px) {
  .card-base__name {
    line-height: 20px;
  }
}
.card-base__text {
  color: var(--grey);
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
}
.card-base__text:last-child {
  margin-bottom: 0;
}
.card-base__link {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .card-base__link {
    margin-top: 20px;
  }
}
.card-base__link--offset {
  margin-top: auto;
}
.card-base__button {
  margin-top: auto;
}
.card-base__button .icon--vector {
  stroke: var(--grey-black);
  transition: var(--trans);
}
.card-base__button:hover .icon--vector {
  stroke: var(--accent-violet);
}
.card-base__description {
  display: flex;
  padding-top: 12px;
  gap: 32px;
  margin-top: auto;
  color: var(--grey-50);
}
.card-base__description:last-child {
  margin-bottom: 0;
}
.card-base__description dl {
  display: flex;
  gap: 4px;
  flex-direction: column;
  margin: 0;
}
.card-base__description dl dd {
  font-weight: 500;
  color: var(--grey-black);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .card-base__description dl {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1280px) {
  .card-base__description {
    padding-top: 8px;
    flex-direction: column;
    gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .card-base__description {
    width: 100%;
    margin-top: 16px;
  }
}

.check-list-type {
  display: flex;
  font-weight: 500;
  margin: 0;
  margin-top: auto;
}
.check-list-type dt {
  color: var(--grey);
}
.check-list-type dd {
  margin-left: 20px;
  position: relative;
}
.check-list-type dd::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--grey);
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translate3d(0, -50%, 0);
}
.check-list-type__true {
  color: #019EA7;
}
.check-list-type__load {
  color: #FD6801;
}

.event-modal .text-content > img {
  width: 100%;
}
.event-modal .text-content > h2, .event-modal .text-content h3, .event-modal .text-content h4, .event-modal .text-content h5, .event-modal .text-content h6, .event-modal .text-content p {
  max-width: 740px;
}
.event-modal__footer {
  margin-top: 8px;
  border-radius: 32px;
  padding: 32px;
  background: var(--additional-grey);
  position: relative;
}
.event-modal__footer > *:not(.author-event__photo) {
  width: calc(100% - 152px);
  max-width: 656px;
}
.event-modal__footer h5 {
  margin-bottom: 16px;
}
.event-modal__footer ul {
  margin-top: 32px;
}
.event-modal__footer ul li {
  margin-bottom: 8px;
  display: flex;
}
.event-modal__footer ul li:last-child {
  margin-bottom: 0;
}
.event-modal__footer ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.event-modal__footer ul li a .icon {
  width: 24px;
  height: 24px;
  fill: var(--accent-mint);
}
@media screen and (max-width: 767px) {
  .event-modal__footer {
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .event-modal__footer ul {
    margin-top: 24px;
  }
}

.grade-type {
  font-weight: 500;
  margin-top: auto;
}
.grade-type--approved {
  color: #019EA7;
}
.grade-type--wait, .grade-type--load {
  color: #FD6801;
}

.author-event__title {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .author-event__title {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .author-event__title {
    margin-bottom: 12px;
  }
}
.author-event__photo {
  display: flex;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  border: 3px solid var(--accent-mint);
  overflow: hidden;
  position: absolute;
  top: 32px;
  right: 32px;
  transform: rotate(3deg);
}
.author-event__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .author-event__photo {
    position: static;
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
  }
}

.card-icon {
  min-height: 224px;
  border-radius: 32px;
  padding: 40px;
  background: var(--additional-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .card-icon {
    padding: 24px;
    min-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .card-icon {
    padding: 16px;
    min-height: 140px;
    align-items: flex-start;
    text-align: left;
    border-radius: 24px;
  }
}
.card-icon .text span {
  color: var(--accent-violet);
}
.card-icon .icon {
  width: 68px;
  height: 68px;
  fill: var(--accent-violet);
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .card-icon .icon {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .card-icon .icon {
    margin-bottom: 16px;
    width: 32px;
    height: 32px;
  }
}

.card-advantages {
  padding: 32px 32px 40px 32px;
  border-radius: 32px;
  background: var(--additional-grey);
}
@media screen and (max-width: 767px) {
  .card-advantages {
    padding: 24px;
    border-radius: 24px;
  }
}
.card-advantages__icon {
  display: inline-flex;
  width: 68px;
  height: 68px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
  .card-advantages__icon {
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 767px) {
  .card-advantages__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
  }
}
.card-advantages__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .card-advantages__name {
    line-height: 24px;
  }
}
.card-advantages__name {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .card-advantages__name {
    font-size: var(--text-h4-size);
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .card-advantages__name {
    line-height: 20px;
  }
}
.card-advantages__text {
  color: var(--grey);
}

.card-long {
  min-height: 132px;
  background: var(--white-10);
  border-radius: 32px;
  padding: 32px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .card-long {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .card-long {
    min-height: 96px;
    border-radius: 24px;
    padding: 16px 16px;
  }
}
.card-long__title {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .card-long__title {
    line-height: 24px;
  }
}
.card-long__title {
  margin-bottom: 16px;
  color: var(--white);
  max-width: 760px;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  .card-long__title {
    padding-right: 72px;
    margin-bottom: 12px;
  }
}
.card-long__text {
  color: var(--white-80);
  max-width: 600px;
  width: calc(100% - 80px);
}
@media screen and (max-width: 767px) {
  .card-long__text {
    width: calc(100% - 40px);
  }
}
.card-long__img {
  width: 68px;
  height: 68px;
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-long__img img {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .card-long__img {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .card-long__img {
    width: 32px;
    height: 32px;
    top: 16px;
    right: 16px;
  }
}

.card-image {
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border-radius: 32px;
  background: var(--additional-grey);
  position: relative;
}
@media screen and (max-width: 1280px) {
  .card-image {
    padding: 24px 16px 16px;
    border-radius: 24px;
    min-height: 132px;
  }
}
.card-image__content {
  max-width: 490px;
}
.card-image__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .card-image__name {
    line-height: 20px;
  }
}
.card-image__name {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .card-image__name {
    margin-bottom: 12px;
    max-width: calc(100% - 90px);
  }
}
.card-image__text {
  color: var(--grey-black);
}
.card-image__image {
  display: flex;
  width: 200px;
  height: 200px;
  flex: 0 0 auto;
  border-radius: 32px;
  border: 5px solid var(--white);
  overflow: hidden;
  margin-left: 16px;
}
.card-image__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .card-image__image {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .card-image__image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border: 3px solid var(--white);
    position: absolute;
    right: 16px;
    top: -25px;
  }
}
.card-image:nth-child(2n+1) .card-image__image {
  transform: rotate(1.5deg);
}
.card-image:nth-child(2n) .card-image__image {
  transform: rotate(-1.5deg);
}

.grid-content__col:nth-child(2n+1) .card-image__image {
  transform: rotate(0deg);
}
.grid-content__col:nth-child(2n) .card-image__image {
  transform: rotate(0deg);
}

.card-text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 192px;
  border-radius: 32px;
  background: var(--additional-grey);
}
.card-text__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .card-text__name {
    line-height: 20px;
  }
}
.card-text__text {
  color: rgba(51, 51, 51, 0.8);
}
@media screen and (max-width: 1280px) {
  .card-text {
    padding: 24px 16px 16px;
    gap: 12px;
    border-radius: 24px;
    min-height: auto;
  }
}

.card-count {
  padding: 40px;
  border-radius: 32px;
  background: var(--additional-grey);
  text-align: center;
}
.card-count__name {
  font-size: var(--text-h2-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .card-count__name {
    line-height: 24px;
  }
}
.card-count__name {
  color: var(--accent-violet);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-count__name span {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .card-count__name span {
    line-height: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .card-count__name {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }
  .card-count__name span {
    font-size: var(--text-h2-size);
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (max-width: 1280px) and (max-width: 767px) {
  .card-count__name span {
    line-height: 24px;
  }
}
.card-count__text {
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .card-count {
    padding: 24px;
    border-radius: 24px;
    text-align: left;
  }
  .card-count__name {
    margin-bottom: 16px;
  }
}

.story-card {
  display: flex;
  gap: 20px;
  border-radius: 32px;
  padding: 32px;
  background: var(--additional-grey);
  min-height: 560px;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .story-card {
    min-height: 467px;
  }
}
@media screen and (max-width: 767px) {
  .story-card {
    padding: 24px;
    border-radius: 16px;
    flex-direction: column-reverse;
    height: auto;
    gap: 24px;
  }
}
.story-card > * {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .story-card > * {
    flex: 0 0 auto;
    width: 100%;
  }
}
.story-card__preview {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 403/496;
  align-self: flex-start;
}
.story-card__preview .tag {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 8px 16px;
  background: var(--white);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .story-card__preview .tag {
    line-height: 20px;
  }
}
.story-card__preview .tag {
  color: var(--accent-violet);
}
.story-card__preview picture {
  display: flex;
  width: 100%;
  height: 100%;
}
.story-card__preview picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .story-card__preview {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    max-width: 500px;
  }
  .story-card__preview .tag {
    top: 12px;
    left: 12px;
    padding: 4px 8px;
  }
}
.story-card__preview > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.story-card__preview > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-slow);
}
.story-card__preview > a::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: var(--trans);
}
.story-card__preview > a .icon {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  fill: var(--white);
  z-index: 2;
  pointer-events: none;
  transition: var(--trans);
}
@media screen and (max-width: 767px) {
  .story-card__preview > a .icon {
    width: 56px;
    height: 56px;
  }
}
.story-card__preview > a:hover::after {
  background: rgba(0, 0, 0, 0.2);
}
.story-card__preview > a:hover img {
  transform: scale(1.2) rotate(2deg);
}
.story-card__content {
  display: flex;
  flex-direction: column;
  height: auto;
}
.story-card__content > *:nth-last-child(2) {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .story-card__content > *:nth-last-child(2) {
    margin-bottom: 12px;
  }
}
.story-card__content .tag {
  align-self: flex-start;
}
.story-card__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .story-card__name {
    line-height: 20px;
  }
}
.story-card__name {
  margin-bottom: 24px;
  transition: var(--trans);
}
.story-card__name:hover {
  color: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .story-card__name {
    margin-bottom: 16px;
  }
}
.story-card__text {
  max-width: 383px;
  margin-bottom: 24px;
  color: rgba(37, 37, 37, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1280px) {
  .story-card__text {
    -webkit-line-clamp: 10;
  }
}
@media screen and (max-width: 767px) {
  .story-card__text {
    margin-bottom: 32px;
    max-width: none;
    -webkit-line-clamp: 4;
  }
}
.story-card__author {
  margin-top: auto;
}
.story-card__author > * {
  display: block;
}
.story-card__author > *:nth-child(1) {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .story-card__author > *:nth-child(1) {
    line-height: 20px;
  }
}
.story-card__audio {
  margin-bottom: 32px;
}

.player {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.player--time {
  flex-direction: column;
  align-items: flex-start;
}
.player--time .player-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.player--time .player-time {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .player--time .player-time {
    line-height: 20px;
  }
}
.player--time .player-time {
  margin-top: 16px;
}
@media screen and (max-width: 1280px) {
  .player--time .player-time {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .player--time .player-time {
    margin-top: 4px;
  }
}

.card-audio {
  display: block;
  padding: 32px;
  border-radius: 32px;
  background: var(--additional-grey);
}
.card-audio__name {
  display: inline-block;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .card-audio__name {
    line-height: 24px;
  }
}
.card-audio__name {
  margin-top: 24px;
}
.card-audio a.card-audio__name {
  transition: var(--trans);
}
.card-audio a.card-audio__name:hover {
  color: var(--accent-violet);
}
.card-audio__desc {
  width: 100%;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}
.card-audio__desc .player-time {
  margin-top: 0;
}
.card-audio .player-page {
  color: var(--accent-violet);
  font-weight: 500;
}
.card-audio__text {
  margin-top: 8px;
  color: var(--grey);
  max-width: 462px;
}
@media screen and (max-width: 1280px) {
  .card-audio {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .card-audio {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .card-audio .card-audio__name {
    margin-top: 12px;
  }
}

.progress-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.controls {
  flex: 0 0 auto;
  width: 32px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.play-btn {
  color: var(--grey-black);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.play-btn .icon {
  display: none;
  width: 24px;
  height: 24px;
  fill: var(--grey-black);
  transition: var(--trans);
}
.play-btn .icon.active {
  display: block;
}
.play-btn .icon.active:hover {
  fill: var(--grey);
}

.play-btn:hover {
  color: var(--accent-middle-violet);
}

.play-btn:active {
  color: var(--accent-violet);
}

.visualizer-container {
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .visualizer-container {
    height: 45px;
  }
}

canvas {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}

.tour-card {
  min-height: 379px;
  padding: 32px;
  border-radius: 32px;
  background: var(--white-10);
  display: flex;
  gap: 55px;
  position: relative;
  transition: var(--trans-slow);
}
.tour-card.target-atantion {
  background: var(--white-40);
  transform: scale(1.05);
}
@media screen and (max-width: 1280px) {
  .tour-card {
    min-height: 220px;
    padding: 24px;
    border-radius: 24px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tour-card {
    min-height: 132px;
    padding: 24px 16px 16px 16px;
  }
}
.tour-card__left {
  display: flex;
  flex-direction: column;
}
.tour-card__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .tour-card__name {
    line-height: 20px;
  }
}
.tour-card__name {
  margin-bottom: 12px;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .tour-card__name {
    max-width: 240px;
  }
}
.tour-card__text {
  margin-top: auto;
  color: var(--white-80);
}
.tour-card__text ul li::before {
  background: var(--accent-mint);
}
.tour-card__img {
  width: 200px;
  height: 200px;
  border-radius: 32px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 3px solid var(--white);
  margin-left: auto;
}
.tour-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .tour-card__img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .tour-card__img {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 24px;
    top: 0;
    top: -25px;
  }
}
.tour-card:nth-child(2n) .tour-card__img {
  transform: rotate(-3.6deg);
}
.tour-card:nth-child(2n+1) .tour-card__img {
  transform: rotate(3.2deg);
}

.card-illustration {
  width: 100%;
  height: 587px;
  border-radius: 32px;
  padding: 32px;
  background: var(--additional-grey);
  position: relative;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 1280px) {
  .card-illustration {
    height: 380px;
    padding: 24px;
    border-radius: 24px;
  }
}
.card-illustration__num {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .card-illustration__num {
    line-height: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .card-illustration__num {
    top: 24px;
    left: 24px;
  }
}
.card-illustration__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .card-illustration__name {
    line-height: 20px;
  }
}
.card-illustration__name {
  margin-bottom: 24px;
}
@media screen and (max-width: 1280px) {
  .card-illustration__name {
    margin-bottom: 12px;
  }
}
.card-illustration__text {
  color: var(--grey);
  max-width: 460px;
}
.card-illustration__img {
  width: 260px;
  height: 260px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-illustration__img img {
  object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .card-illustration__img {
    width: 120px;
    height: 120px;
  }
}
.card-illustration .button {
  margin-top: 32px;
}
@media screen and (max-width: 1280px) {
  .card-illustration .button {
    margin-top: 20px;
  }
}

.card-people {
  padding: 32px;
  border-radius: 32px;
  max-width: 100%;
  min-height: 723px;
  background: var(--additional-grey);
}
.card-people__photo {
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  margin-bottom: 24px;
  border-radius: 32px;
  overflow: hidden;
}
.card-people__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-people__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .card-people__name {
    line-height: 24px;
  }
}
.card-people__name {
  margin-bottom: 12px;
}
.card-people__text {
  color: var(--grey);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1280px) {
  .card-people {
    border-radius: 24px;
    padding: 24px;
    min-height: auto;
  }
}

.role-card {
  padding: 32px;
  border-radius: 32px;
  background: var(--additional-grey);
  height: 355px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .role-card {
    border-radius: 24px;
    padding: 24px;
    height: 244px;
  }
}
.role-card__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .role-card__name {
    line-height: 20px;
  }
}
.role-card__name {
  margin-bottom: 12px;
}
.role-card__text {
  color: var(--grey);
  margin-bottom: 20px;
}
.role-card__footer {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.goverlay {
  background: rgba(0, 0, 0, 0.4);
}

.gslide-media {
  border-radius: 32px;
  overflow: hidden;
}

.glightbox-clean .gclose {
  width: 56px;
  height: 56px;
  top: 100px;
  right: 24px;
  border-radius: 16px;
  background-color: var(--grey-50);
  transition: var(--trans);
}

.glightbox-clean .gclose svg {
  width: 14px;
  height: 14px;
}

.plyr button.plyr__control--overlaid {
  width: 80px;
  height: 80px;
  border-radius: 16px;
}

.plyr__control--overlaid {
  background-color: var(--grey-50);
  align-items: center;
  justify-content: center;
}

.plyr--video .plyr__control:hover {
  background: rgba(0, 0, 0, 0.7);
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: flex;
}

.plyr__control--overlaid svg {
  width: 32px;
  height: 32px;
}

.plyr--video .plyr__controls {
  padding: 32px;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  transition: var(--trans);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--white);
}
.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg {
  display: none;
}
.glightbox-clean .gnext::after,
.glightbox-clean .gprev::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 24px;
  height: 24px;
  background: url("../assets/images/icons/arrowRight-green.svg") no-repeat center/contain;
}

.glightbox-clean .gprev::after {
  transform: translate3d(-50%, -50%, 0) rotate(180deg);
}

.trail-card {
  display: flex;
  flex-direction: column;
  width: 432px;
  border-radius: 32px;
  height: 636px;
  padding: 12px;
  position: relative;
  background: var(--white);
}
@media screen and (max-width: 1280px) {
  .trail-card {
    width: 320px;
    height: auto;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .trail-card {
    width: 100%;
    border-radius: 24px 24px 0 0;
    animation-duration: var(--modal-duration);
    animation-timing-function: var(--cubic);
    animation-fill-mode: forwards;
  }
}
.trail-card--small {
  box-shadow: none;
  height: 100%;
  width: 100%;
  background: var(--additional-grey);
  border-radius: 24px;
  transition: var(--trans);
}
.trail-card--small:hover {
  transform: rotate(1.5deg);
}
.trail-card__image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 302px;
  flex: 0 0 auto;
  display: flex;
}
.trail-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .trail-card__image {
    height: 246px;
    border-radius: 24px;
  }
}
.trail-card__content {
  padding: 36px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 1280px) {
  .trail-card__content {
    padding: 28px 8px 8px 8px;
  }
}
.trail-card__content .button {
  margin-top: auto;
  align-self: flex-start;
}
.trail-card__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .trail-card__name {
    line-height: 24px;
  }
}
.trail-card__name {
  margin-bottom: 12px;
}
.trail-card__name:has(+ .button) {
  margin-bottom: 20px;
}
.trail-card__text {
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.trail-card__text--no-clamp {
  overflow: visible;
  text-overflow: clip;
  display: block;
  line-clamp: unset;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}
.trail-card__desc {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .trail-card__desc {
    margin-bottom: 24px;
  }
}
.trail-card__desc:last-child {
  margin-bottom: 0;
}
.trail-card__desc dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.trail-card__desc dl dt {
  color: var(--grey-50);
}
.trail-card__desc dl dd {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .trail-card__desc dl dd {
    line-height: 20px;
  }
}
.trail-card__desc dl dd {
  margin: 0;
}
.trail-card__close {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  position: absolute;
  top: 32px;
  right: 32px;
}
.trail-card__close .icon {
  width: 24px;
  height: 24px;
  stroke: var(--grey-black);
}
@media screen and (max-width: 1280px) {
  .trail-card__close {
    width: 44px;
    height: 44px;
    top: 24px;
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .trail-card__close {
    top: 20px;
    right: 20px;
  }
}
.trail-card a.button {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .trail-card a.button {
    margin-top: 24px;
    width: 100%;
  }
}

.taril-map {
  position: relative;
}
.taril-map__items {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
}
.taril-map__item {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .taril-map__item {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - (100vh - 100%));
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    align-items: flex-end;
    justify-content: center;
    animation-duration: var(--modal-duration);
    animation-timing-function: var(--cubic);
    animation-fill-mode: forwards;
  }
  .taril-map__item[aria-hidden=false] {
    animation-name: shadeIn;
  }
  .taril-map__item[aria-hidden=false] .trail-card {
    animation-name: slideInMobile;
  }
  .taril-map__item[aria-hidden=true] {
    animation-name: shadeOut;
  }
  .taril-map__item[aria-hidden=true] .trail-card {
    animation-name: slideOutMobile;
  }
}
.taril-map__item.show {
  display: flex;
}

.main-map .taril-map__map {
  width: 100%;
  height: 700px;
  border-radius: 32px;
  border: 1px solid var(--additional-stroke);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .main-map .taril-map__map {
    height: auto;
    max-height: 600px;
    aspect-ratio: 320/423;
    border-radius: 24px;
  }
}

.ymaps-2-1-79-float-button {
  width: 56px;
  height: 56px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
@media screen and (max-width: 767px) {
  .ymaps-2-1-79-float-button {
    width: 44px;
    height: 44px !important;
    border-radius: 12px !important;
  }
}

.ymaps-2-1-79-zoom {
  height: 60px !important;
}
@media screen and (max-width: 767px) {
  .ymaps-2-1-79-zoom {
    height: 36px !important;
  }
}

.ymaps-2-1-79-zoom__scale {
  display: none;
}

.ymaps-2-1-79-float-button-icon {
  display: inline-block;
  width: 24px !important;
  height: 24px !important;
  border: none !important;
  position: static !important;
}

.ymaps-2-1-79-controls-pane {
  top: auto !important;
  bottom: 0;
  z-index: 9999;
}

.ymaps-2-1-79-controls__control {
  width: 56px !important;
  inset: auto 32px 108px auto !important;
}
@media screen and (max-width: 767px) {
  .ymaps-2-1-79-controls__control {
    width: 44px !important;
    inset: auto 16px 80px auto !important;
  }
}

.ymaps-2-1-79-controls__toolbar {
  margin: 0 !important;
}

.ymaps-2-1-79-controls__control_toolbar {
  position: absolute !important;
  inset: auto 32px 244px auto !important;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .ymaps-2-1-79-controls__control_toolbar {
    inset: auto 16px 192px auto !important;
    width: 44px !important;
  }
}
.ymaps-2-1-79-controls__control_toolbar .ymaps-2-1-79-listbox__button {
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--additional-grey) !important;
}
@media screen and (max-width: 767px) {
  .ymaps-2-1-79-controls__control_toolbar .ymaps-2-1-79-listbox__button {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }
}
.ymaps-2-1-79-controls__control_toolbar .ymaps-2-1-79-listbox {
  height: 56px !important;
  width: 56px !important;
}
@media screen and (max-width: 767px) {
  .ymaps-2-1-79-controls__control_toolbar .ymaps-2-1-79-listbox {
    height: 44px !important;
  }
}

.ymaps-2-1-79-listbox__button-icon.ymaps-2-1-79-_icon_layers {
  border: none !important;
  width: 24px;
  height: 24px;
  background-image: url(../assets/images/icons/layers.svg) !important;
}

.ymaps-2-1-79-float-button-icon_icon_geolocation {
  background-image: url(../assets/images/icons/gps.svg) !important;
}

.ymaps-2-1-79-routerRoutes-pane {
  opacity: 1 !important;
}

.ymaps-2-1-79-listbox__button-text {
  display: none !important;
}

.ymaps-2-1-79-listbox__button-arrow {
  display: none !important;
}

.ymaps-2-1-79-map-copyrights-promo {
  display: none;
}

.ymaps-2-1-79-zoom__plus .ymaps-2-1-79-zoom__icon {
  background-image: url(../assets/images/icons/plus.svg) !important;
}

.ymaps-2-1-79-zoom__minus .ymaps-2-1-79-zoom__icon {
  background-image: url(../assets/images/icons/minus.svg) !important;
}

.ymaps-2-1-79-transport-pin_size_small {
  display: none !important;
}

.ymaps-2-1-79-controls__control_toolbar.ymaps-2-1-79-user-selection-none {
  inset: auto 32px 32px auto !important;
}
@media screen and (max-width: 767px) {
  .ymaps-2-1-79-controls__control_toolbar.ymaps-2-1-79-user-selection-none {
    inset: auto 16px 16px auto !important;
  }
}

.ymaps-2-1-79-image-with-content-content {
  top: 10px !important;
  left: 50% !important;
  transform: translate3d(-50%, 0, 0);
  width: auto !important;
  height: auto !important;
}
@media screen and (max-width: 1280px) {
  .ymaps-2-1-79-image-with-content-content {
    top: 5px !important;
  }
}

.ymap-cluster-count {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .ymap-cluster-count {
    line-height: 24px;
  }
}
.ymap-cluster-count {
  font-family: var(--font-main);
  color: var(--white);
}
@media screen and (max-width: 1280px) {
  .ymap-cluster-count {
    font-size: var(--text-paragraph);
    font-weight: 500;
    line-height: 24px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 1280px) {
  .ymap-cluster-count {
    line-height: 20px;
  }
}

.ymaps-2-1-79-balloon {
  top: -95px !important;
  left: 50% !important;
  transform: translate3d(-50%, 0, 0);
  padding: 0 !important;
  box-shadow: none !important;
}
.ymaps-2-1-79-balloon .ymaps-2-1-79-balloon__tail {
  display: none;
}
.ymaps-2-1-79-balloon .ymaps-2-1-79-balloon__layout {
  background: transparent !important;
}
.ymaps-2-1-79-balloon .ymaps-2-1-79-balloon__content {
  padding: 8px 16px !important;
  border-radius: 16px;
  background: var(--accent-violet);
  color: var(--white);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .ymaps-2-1-79-balloon .ymaps-2-1-79-balloon__content {
    line-height: 20px;
  }
}
.ymaps-2-1-79-balloon .ymaps-2-1-79-balloon__content {
  white-space: nowrap;
  font-family: var(--font-main);
}
.ymaps-2-1-79-balloon .ymaps-2-1-79-balloon__content > * {
  height: auto !important;
}
.ymaps-2-1-79-balloon .ymaps-2-1-79-balloon__close {
  display: none;
}
.ymaps-2-1-79-balloon .ymaps-2-1-79-balloon__close + .ymaps-2-1-79-balloon__content {
  margin: 0;
}

.label-f-start {
  padding: 8px 16px;
  background: var(--accent-violet);
  border-radius: 16px;
  font-family: var(--font-main);
  white-space: nowrap;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .label-f-start {
    line-height: 20px;
  }
}
.label-f-start {
  color: var(--white);
  position: absolute;
  bottom: 60px;
  transform: translate3d(-50%, 0, 0);
}
@media screen and (max-width: 767px) {
  .label-f-start {
    padding: 4px 8px;
    border-radius: 8px;
    bottom: 40px;
  }
}

.ymaps-2-1-79-balloon_layout_panel {
  background: transparent !important;
}

.image-block-section {
  padding-bottom: 140px;
}
@media screen and (max-width: 1280px) {
  .image-block-section {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .image-block-section {
    padding-bottom: 20px;
  }
}

.image-block {
  display: flex;
  gap: 20px;
  min-height: 806px;
}
.image-block > * {
  flex: 1 1 50%;
}
@media screen and (max-width: 1280px) {
  .image-block {
    min-height: 580px;
  }
}
@media screen and (max-width: 767px) {
  .image-block {
    gap: 54px;
    min-height: auto;
    flex-direction: column;
  }
}
.image-block__content {
  position: relative;
}
.image-block__content .decor {
  position: absolute;
  bottom: 60px;
  right: 120px;
}
@media screen and (max-width: 767px) {
  .image-block__content .decor {
    display: none;
  }
}
.image-block__title {
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .image-block__title {
    line-height: 24px;
  }
}
.image-block__title {
  max-width: 740px;
  width: calc(100% - 150px);
}
@media screen and (max-width: 1280px) {
  .image-block__title {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .image-block__title {
    width: 100%;
  }
}
.image-block__text {
  color: var(--grey);
  max-width: 740px;
  width: calc(100% - 150px);
}
@media screen and (max-width: 1280px) {
  .image-block__text {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .image-block__text {
    width: 100%;
  }
}
.image-block__img {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 32px;
  overflow: hidden;
}
.image-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-block__small-img {
  position: absolute;
}
.image-block__small-img picture {
  border-radius: 32px;
  border: 5px solid var(--white);
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.image-block__small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-block__small-img:nth-child(2) {
  width: 169px;
  height: 169px;
  left: 0;
  top: 108px;
  transform: translate3d(-50%, 0, 0) rotate(-15deg);
}
@media screen and (max-width: 1280px) {
  .image-block__small-img:nth-child(2) {
    width: 140px;
    height: 140px;
    transform: translate3d(-30%, 0, 0) rotate(-15deg);
  }
}
@media screen and (max-width: 767px) {
  .image-block__small-img:nth-child(2) {
    width: 100px;
    height: 100px;
    left: auto;
    top: auto;
    bottom: -25px;
    right: 0;
    transform: translate3d(0, 0, 0) rotate(15deg);
  }
}
.image-block__small-img:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  width: 50px;
  height: 50px;
  transform: translate3d(100%, -100%, 0);
  background: url("../assets/images/content/gallery-lines-3-light.svg") no-repeat top/contain;
}
@media screen and (max-width: 767px) {
  .image-block__small-img:nth-child(2)::after {
    right: auto;
    left: -20px;
    width: 30px;
    height: 30px;
    transform: translate3d(0%, -100%, 0) scaleX(-1);
  }
}
.image-block__small-img:nth-child(3) {
  width: 204px;
  height: 204px;
  left: 35%;
  bottom: 0;
  transform: translate3d(0, 40%, 0) rotate(8deg);
}
.image-block__small-img:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 40px;
  display: block;
  width: 50px;
  height: 50px;
  transform: translate3d(-100%, 100%, 0);
  background: url("../assets/images/content/gallery-lines-5.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .image-block__small-img:nth-child(3)::after {
    width: 80px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .image-block__small-img:nth-child(3)::after {
    display: none;
  }
}
.image-block__small-img:nth-child(3)::before {
  display: none;
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  transform: translate3d(100%, -100%, 0);
  background: url("../assets/images/content/gallery-lines-3.svg") no-repeat top/contain;
}
@media screen and (max-width: 767px) {
  .image-block__small-img:nth-child(3)::before {
    width: 30px;
    height: 30px;
    transform: translate3d(120%, -100%, 0) rotate(10deg);
  }
}
@media screen and (max-width: 1280px) {
  .image-block__small-img:nth-child(3) {
    display: none;
  }
}
.image-block__preview {
  position: relative;
}
@media screen and (max-width: 767px) {
  .image-block__preview {
    width: 100%;
    aspect-ratio: 320/290;
    flex: 0 0 auto;
  }
}

.program-fest {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .program-fest {
    padding-bottom: 40px;
  }
}
.program-fest__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .program-fest__list {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .program-fest .section__links {
    flex-direction: column;
  }
  .program-fest .section__links > * {
    width: 100%;
  }
}

.load-program {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 32px;
  border-radius: 32px;
  background: var(--additional-grey);
}
@media screen and (max-width: 1280px) {
  .load-program {
    padding: 32px 24px;
  }
}
@media screen and (max-width: 767px) {
  .load-program {
    padding: 24px;
    border-radius: 24px;
    align-items: flex-start;
  }
}
.load-program__event {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .load-program__event {
    line-height: 20px;
  }
}
.load-program__event {
  transition: var(--trans);
}
@media screen and (max-width: 767px) {
  .load-program__event {
    padding: 12px 0;
  }
}
.load-program__end {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .load-program__end {
    line-height: 24px;
  }
}
.load-program__end {
  color: var(--grey);
}
@media screen and (max-width: 1280px) {
  .load-program__end {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .load-program__end {
    font-size: 0;
    gap: 0;
  }
}
.load-program__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--white);
  transition: var(--trans);
}
.load-program__icon .icon {
  width: 24px;
  height: 24px;
  stroke: var(--grey-black);
  transition: var(--trans);
}
@media screen and (max-width: 767px) {
  .load-program__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}
.load-program:hover .load-program__event {
  color: var(--accent-violet);
}
.load-program:hover .load-program__icon {
  background: var(--accent-light-violet);
}
.load-program:hover .load-program__icon .icon {
  stroke: var(--accent-violet);
}

.primary {
  margin-top: -140px;
}
@media screen and (max-width: 767px) {
  .primary {
    margin-top: -88px;
  }
}

.primary-swiper {
  height: 1080px;
  max-height: 100vh;
}
.primary-swiper__pagination {
  display: flex;
  align-items: center;
  position: absolute;
  gap: 30px;
  left: 60px;
  bottom: 32px;
}
@media screen and (min-width: 1920px) {
  .primary-swiper__pagination {
    left: calc((100vw - 1800px) / 2);
  }
}
.primary-swiper__pagination .swiper-pagination {
  position: static;
}
.primary-swiper__pagination .swiper-pagination .swiper-pagination-bullet {
  transition: var(--trans);
  opacity: 1;
  background: var(--white-40);
  border-radius: 12px;
  width: 12px;
  height: 12px;
  margin: 0 4px !important;
}
.primary-swiper__pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--white);
  width: 36px;
}
@media screen and (max-width: 767px) {
  .primary-swiper__pagination .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .primary-swiper__pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 28px;
  }
}
.primary-swiper__pagination .swiper-pagination .swiper-pagination-bullet:hover, .primary-swiper__pagination .swiper-pagination .swiper-pagination-bullet:active {
  background: var(--white);
}
.primary-swiper__pagination .swiper-pagination .swiper-pagination-bullet:first-child {
  margin-left: 0;
}
.primary-swiper__pagination .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1280px) {
  .primary-swiper__pagination {
    bottom: 52px;
  }
}
@media screen and (max-width: 767px) {
  .primary-swiper__pagination {
    bottom: 255px;
    left: 20px;
  }
}
.primary-swiper__btn-prev, .primary-swiper__btn-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 2;
  border-radius: 2px;
}
.primary-swiper__btn-prev .icon, .primary-swiper__btn-next .icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent-mint);
  fill: none;
  transition: var(--trans);
}
.primary-swiper__btn-prev:focus, .primary-swiper__btn-next:focus {
  box-shadow: 0px 0px 0px 4px rgb(205, 205, 205);
}
@media screen and (max-width: 767px) {
  .primary-swiper__btn-prev, .primary-swiper__btn-next {
    display: none;
  }
}
.primary-swiper[data-value=slide-white] .primary-slide__title {
  color: var(--white);
}
.primary-swiper[data-value=slide-white] .primary-slide__description::after {
  background: url("../assets/images/content/banner-line-main.svg") no-repeat top/contain;
}
.primary-swiper[data-value=slide-white] .primary-swiper__btn-prev .icon,
.primary-swiper[data-value=slide-white] .primary-swiper__btn-next .icon {
  stroke: var(--accent-mint);
}
.primary-swiper[data-value=slide-white] .primary-swiper__btn-prev:hover .icon, .primary-swiper[data-value=slide-white] .primary-swiper__btn-prev:active .icon,
.primary-swiper[data-value=slide-white] .primary-swiper__btn-next:hover .icon,
.primary-swiper[data-value=slide-white] .primary-swiper__btn-next:active .icon {
  stroke: var(--accent-light-violet);
}
.primary-swiper[data-value=slide-violet] .primary-slide__title {
  color: var(--accent-violet);
}
.primary-swiper[data-value=slide-violet] .primary-slide__description::after {
  background: url("../assets/images/content/banner-line-white.svg") no-repeat top/contain;
}
.primary-swiper[data-value=slide-violet] .primary-swiper__btn-prev .icon,
.primary-swiper[data-value=slide-violet] .primary-swiper__btn-next .icon {
  stroke: var(--accent-violet);
}
.primary-swiper[data-value=slide-violet] .primary-swiper__btn-prev:hover .icon,
.primary-swiper[data-value=slide-violet] .primary-swiper__btn-next:hover .icon {
  stroke: var(--accent-middle-violet);
}

.primary-slide {
  display: flex !important;
  align-items: flex-end;
}
.primary-slide[data-swiper-slide-index="0"] .primary-slide__layout {
  background-image: url("../assets/images/content/primary_layout_violet.svg");
}
@media screen and (max-width: 767px) {
  .primary-slide[data-swiper-slide-index="0"] .primary-slide__layout {
    background-image: url("../assets/images/content/primary_layout_violet-mobile.svg");
  }
}
.primary-slide[data-swiper-slide-index="1"] .primary-slide__layout {
  background-image: url("../assets/images/content/primary_layout_wave.svg");
}
@media screen and (max-width: 767px) {
  .primary-slide[data-swiper-slide-index="1"] .primary-slide__layout {
    background-image: url("../assets/images/content/primary_layout_wave-mobile.svg");
  }
}
.primary-slide[data-swiper-slide-index="2"] .primary-slide__layout {
  background-image: url("../assets/images/content/primary_layout_mountsvg.svg");
}
@media screen and (max-width: 767px) {
  .primary-slide[data-swiper-slide-index="2"] .primary-slide__layout {
    background-image: url("../assets/images/content/primary_layout_mountsvg-mobile.svg");
  }
}
.primary-slide[data-swiper-slide-index="3"] .primary-slide__layout {
  background-image: url("../assets/images/content/primary_layout_road.svg");
}
@media screen and (max-width: 767px) {
  .primary-slide[data-swiper-slide-index="3"] .primary-slide__layout {
    background-image: url("../assets/images/content/primary_layout_road-mobile.svg");
  }
}
.primary-slide__layout {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  top: -123px;
  left: 0;
  right: 0;
  height: 135%;
  z-index: 0;
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: top;
  background-size: inherit;
  transition: var(--trans-slow);
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}
@media screen and (min-width: 1920px) {
  .primary-slide__layout {
    left: calc((1920px - 100vw) / 2);
    background-size: cover;
    background-position-x: center;
  }
}
@media screen and (max-width: 1280px) {
  .primary-slide__layout {
    height: 150%;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .primary-slide__layout {
    height: 200%;
    background-position-x: center;
    background-size: cover;
  }
}
.primary-slide__content {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  padding-bottom: 32px;
}
.primary-slide__content > * {
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .primary-slide__content {
    padding-bottom: 112px;
  }
}
@media screen and (max-width: 767px) {
  .primary-slide__content {
    padding-bottom: 24px;
    flex-direction: column;
    align-items: stretch;
  }
}
.primary-slide__img {
  display: flex;
  position: absolute;
  inset: 0;
  width: 100%;
}
.primary-slide__img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.primary-slide__title {
  font-size: var(--text-h1-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .primary-slide__title {
    line-height: 32px;
  }
}
.primary-slide__title {
  max-width: 944px;
  padding-bottom: 84px;
  transition: var(--trans);
}
@media screen and (max-width: 1280px) {
  .primary-slide__title {
    max-width: 650px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .primary-slide__title {
    max-width: 330px;
  }
}
.primary-slide__description {
  border-radius: 32px;
  padding: 26px 33px;
  background: var(--white);
  max-width: 629px;
  width: 33%;
  right: 8%;
  transition: var(--trans);
  transform: rotate(0deg) translateY(-24%);
  transition-delay: 0.2s;
  position: absolute;
  top: 0;
  right: 168px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .primary-slide__description {
    line-height: 20px;
  }
}
.primary-slide__description {
  color: var(--grey-black);
}
.primary-slide__description::after {
  content: "";
  position: absolute;
  left: 80px;
  bottom: -240px;
  display: block;
  width: 130px;
  height: 200px;
  transition: var(--trans);
}
@media screen and (max-width: 1280px) {
  .primary-slide__description::after {
    display: none;
  }
}
@media screen and (max-width: 1679px) {
  .primary-slide__description {
    right: 60px;
    transform: rotate(0deg) translateY(-50%);
  }
}
@media screen and (max-width: 1280px) {
  .primary-slide__description {
    width: 49%;
    right: 20px;
    transform: rotate(0deg) translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .primary-slide__description {
    padding: 12px 15px;
    border-radius: 14px;
    width: 230px;
    min-width: 230px;
    font-size: var(--text-caption);
    font-weight: 400;
    line-height: 20px;
    right: 14px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .primary-slide__description {
    line-height: 14px;
  }
}
.primary-slide__links {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 32px;
  right: var(--wrapper-space);
}
@media screen and (max-width: 1280px) {
  .primary-slide__links {
    bottom: 52px;
  }
}
@media screen and (max-width: 767px) {
  .primary-slide__links {
    width: 100%;
    flex-direction: column;
    position: static;
    gap: 8px;
  }
}
.primary-slide.swiper-slide-active .primary-slide__layout {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.primary-slide.swiper-slide-active .primary-slide__description {
  transform: rotate(-3deg) translateY(-24%);
}
@media screen and (max-width: 1679px) {
  .primary-slide.swiper-slide-active .primary-slide__description {
    transform: rotate(-3deg) translateY(-100%);
  }
}
@media screen and (max-width: 1280px) {
  .primary-slide.swiper-slide-active .primary-slide__description {
    transform: rotate(-3deg) translateY(-129%);
  }
}
@media screen and (max-width: 767px) {
  .primary-slide.swiper-slide-active .primary-slide__description {
    transform: rotate(-3deg) translateY(-115%);
  }
}

.programs {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .programs {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.programs--violet {
  background: var(--accent-violet);
  color: var(--white);
  padding-bottom: 80px;
  padding-top: 160px;
}
@media screen and (max-width: 1280px) {
  .programs--violet {
    padding-top: 100px;
  }
}
.programs--violet .programs__desc {
  color: var(--white-80);
}
@media screen and (max-width: 767px) {
  .programs--violet {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.programs--violet .programs__scroll {
  max-width: 890px;
}
@media screen and (max-width: 767px) {
  .programs--violet .programs__scroll {
    padding-bottom: 0;
  }
}
.programs--violet .programs__left {
  max-width: 820px;
  top: 160px;
}
@media screen and (max-width: 767px) {
  .programs--violet .programs__left > *:not(.programs__link, .programs__img) {
    margin-left: 0;
    text-align: left;
  }
}
.programs--violet .programs__left .vector {
  position: absolute;
  bottom: -70px;
  right: 20px;
  display: block;
  width: 177px;
  height: 177px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 1280px) {
  .programs--violet .programs__left .vector {
    width: 140px;
    height: 140px;
    bottom: -50px;
  }
}
@media screen and (max-width: 767px) {
  .programs--violet .programs__left .vector {
    display: none;
  }
}
.programs--no-fix {
  padding-top: 80px;
  padding-bottom: 80px;
}
.programs--no-fix .programs__wrapper {
  align-items: stretch;
}
.programs--no-fix .programs__left {
  position: static;
  height: auto;
}
@media screen and (max-width: 1280px) {
  .programs--no-fix {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .programs--no-fix .programs__wrapper {
    gap: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .programs__line {
    display: none !important;
  }
}
.programs__info {
  margin-top: 20px;
  padding-left: 48px;
  position: relative;
  max-width: 556px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .programs__info {
    line-height: 24px;
  }
}
.programs__info span {
  color: #8ADBAB;
}
@media screen and (max-width: 767px) {
  .programs__info--offset {
    margin-top: 40px;
  }
}
.programs__info .icon {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  stroke: none;
  fill: var(--white);
}
@media screen and (max-width: 767px) {
  .programs__info {
    padding-left: 32px;
  }
  .programs__info .icon {
    width: 24px;
    height: 24px;
  }
}
.programs__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 54px;
}
@media screen and (max-width: 767px) {
  .programs__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.programs__left {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  position: sticky;
  top: 120px;
  height: calc(100vh - 210px);
}
@media screen and (max-width: 1280px) {
  .programs__left {
    height: calc(100vh - 180px);
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 767px) {
  .programs__left {
    max-width: none;
    width: 100%;
    position: static;
    text-align: center;
  }
  .programs__left > *:not(.programs__link) {
    max-width: 464px;
    margin-left: auto;
    margin-right: auto;
  }
}
.programs__img {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .programs__img {
    margin-top: 20px;
    margin-bottom: 0;
    max-height: 172px;
  }
  .programs__img img {
    height: 100%;
    max-height: inherit;
  }
}
.programs__img--mb0 {
  margin-bottom: 0;
}
.programs__img--large {
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  max-width: 773px;
  aspect-ratio: 772/580;
  margin-top: 64px;
}
.programs__img--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .programs__img--large {
    max-height: 420px;
    margin-top: 20px;
    max-width: none !important;
    border-radius: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .programs__link {
    width: 100%;
  }
}
.programs__tag {
  margin-bottom: 16px;
}
.programs__title {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .programs__title {
    line-height: 24px;
  }
}
.programs__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .programs__title {
    margin-bottom: 12px;
  }
}
.programs__desc {
  margin-bottom: 24px;
  color: var(--grey);
}
@media screen and (max-width: 767px) {
  .programs__desc {
    margin-bottom: 20px;
  }
}
.programs__desc--width-limit {
  max-width: 490px;
}
.programs__scroll {
  flex: 1 1 50%;
  max-width: 1000px;
}
.programs__scroll .programs-swiper__wrapper {
  flex-direction: column;
  gap: 19px;
}
@media screen and (max-width: 1280px) {
  .programs__scroll .programs-swiper__wrapper {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .programs__scroll .programs-swiper__wrapper {
    flex-direction: row;
    gap: 0;
  }
}
.programs__scroll .programs-swiper__slide {
  width: auto !important;
}
@media screen and (max-width: 767px) {
  .programs__scroll .programs-swiper__slide {
    width: 320px !important;
  }
}
.programs__scroll .programs-swiper .programs-pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .programs__scroll .programs-swiper .programs-pagination {
    display: block;
    position: static;
    line-height: 0;
    margin-top: 10px;
  }
  .programs__scroll .programs-swiper .programs-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 12px;
    background: var(--accent-light-violet);
    opacity: 1;
    transition: var(--trans);
  }
  .programs__scroll .programs-swiper .programs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-violet);
    width: 28px;
  }
}
@media screen and (max-width: 767px) {
  .programs__scroll .programs-swiper {
    margin-right: -20px;
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .programs__scroll {
    flex: 1 1 100%;
    min-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .programs__scroll {
    max-width: none;
    min-width: auto;
    width: 100%;
    padding-bottom: 20px;
  }
}

.programs-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 76px 32px 32px;
  border-radius: 32px;
  background: var(--additional-grey);
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .programs-card {
    padding: 140px 24px 24px;
    border-radius: 24px;
    min-height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .programs-card {
    min-height: 380px;
  }
}
.programs-card__num {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .programs-card__num {
    line-height: 20px;
  }
}
.programs-card__num {
  color: var(--grey-black);
  position: absolute;
  top: 32px;
  left: 32px;
}
@media screen and (max-width: 1280px) {
  .programs-card__num {
    top: 24px;
    left: 24px;
  }
}
.programs-card__content {
  width: 100%;
  max-width: 472px;
}
.programs-card__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .programs-card__name {
    line-height: 20px;
  }
}
.programs-card__name {
  margin-bottom: 24px;
}
@media screen and (max-width: 1280px) {
  .programs-card__name {
    margin-bottom: 12px;
  }
}
.programs-card__text {
  margin-bottom: 32px;
  color: var(--grey);
}
@media screen and (max-width: 1280px) {
  .programs-card__text {
    margin-bottom: 20px;
  }
}
.programs-card__img {
  width: 260px;
  height: 260px;
  min-width: 200px;
  margin-left: 30px;
  display: flex;
  align-items: flex-end;
}
.programs-card__img img {
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}
@media screen and (max-width: 1280px) {
  .programs-card__img {
    min-width: auto;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
  background: var(--accent-light-violet);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .tag {
    line-height: 20px;
  }
}
.tag {
  color: var(--accent-violet);
}
.tag--violet {
  background: var(--white-10);
  color: var(--white);
}
.tag--green {
  background: #CFEBEC;
  color: #019EA7;
}
.tag--orange {
  background: #FFE7D3;
  color: #FD6801;
}
.tag--white {
  background: var(--white);
}
@media screen and (max-width: 1280px) {
  .tag {
    border-radius: 8px;
    padding: 4px 8px;
  }
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .tour-list + .programs__link {
    margin-top: 40px;
  }
}

.banner-wrapper {
  padding-bottom: 60px;
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .banner-wrapper {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.banner-wrapper--small {
  padding: 16px 0;
}

.banner {
  min-height: 500px;
  display: flex;
  height: auto;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .banner {
    min-height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    border-radius: 24px;
    margin-top: 40px;
    min-height: 900px;
    flex-direction: column;
  }
}
.banner__close {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  transition: var(--trans);
}
.banner__close .icon {
  width: 24px;
  height: 24px;
  stroke: var(--grey-black);
}
.banner__close:hover {
  background: var(--accent-light-violet);
}
.banner__close:hover .icon {
  stroke: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .banner__close {
    width: 44px;
    height: 44px;
    top: 16px;
    right: 16px;
    border-radius: 12px;
  }
}
.banner__layout {
  padding: 60px;
  width: 65%;
  min-width: 900px;
  min-height: 100%;
  background: var(--accent-violet);
  mask-image: url("../assets/images/content/banner_mask.svg");
  mask-size: cover;
  mask-position: right;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 1280px) {
  .banner__layout {
    min-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .banner__layout {
    padding: 32px 24px;
    min-width: 100%;
    width: 100%;
    min-height: 432px;
    mask-image: url("../assets/images/content/banner_mask_mobile.svg");
    mask-position: bottom;
  }
}
.banner__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  width: 70%;
  justify-content: flex-end;
}
.banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .banner__img {
    top: auto;
    bottom: 0;
    width: 100%;
    align-items: flex-end;
    height: 100%;
  }
  .banner__img img {
    width: 100%;
    object-position: bottom;
    object-fit: cover;
  }
}
.banner__info {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
}
.banner__info::after {
  content: "";
  position: absolute;
  right: 100px;
  bottom: 10px;
  display: block;
  width: 130px;
  height: 200px;
  background: url("../assets/images/content/banner-lines.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .banner__info::after {
    width: 100px;
    height: 150px;
    right: 80px;
    bottom: -25px;
    transform: rotate(22deg);
  }
}
@media screen and (max-width: 767px) {
  .banner__info::after {
    width: 50px;
    height: 80px;
    right: -30px;
    bottom: 20px;
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 1280px) {
  .banner__info {
    width: 90%;
    max-width: 520px;
  }
}
.banner__title {
  font-size: var(--text-h2-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .banner__title {
    line-height: 24px;
  }
}
.banner__title {
  color: var(--white);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .banner__title {
    margin-bottom: 12px;
  }
}
.banner__text {
  color: var(--white);
  margin-bottom: 48px;
  max-width: 550px;
}
@media screen and (max-width: 767px) {
  .banner__text {
    margin-bottom: 20px;
  }
}
.banner__link {
  margin-top: auto;
}
.banner.close {
  display: none;
}
.banner--small {
  min-height: 464px;
}
@media screen and (max-width: 1679px) {
  .banner--small .banner__layout {
    min-width: 700px;
    padding: 32px;
  }
  .banner--small .banner__title {
    font-size: var(--text-h3-size);
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (max-width: 1679px) and (max-width: 767px) {
  .banner--small .banner__title {
    line-height: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .banner--small {
    min-height: 380px;
    margin: 20px 0;
  }
  .banner--small .banner__layout {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .banner--small {
    min-height: 600px;
  }
  .banner--small .banner__layout {
    margin-top: auto;
    transform: rotate(180deg);
    transform-origin: center;
    padding: 32px 24px 24px 32px;
  }
  .banner--small .banner__info {
    transform: rotate(-180deg);
    width: 100%;
    max-width: none;
  }
  .banner--small .banner__info::after {
    right: -10px;
    bottom: 10px;
  }
}

.base-swiper {
  padding-bottom: 15px !important;
  padding-top: 15px !important;
  margin-top: -15px !important;
  margin-left: calc(-1 * var(--wrapper-space)) !important;
  margin-right: calc(-1 * var(--wrapper-space)) !important;
  padding-left: var(--wrapper-space) !important;
  padding-right: var(--wrapper-space) !important;
}
@media screen and (max-width: 767px) {
  .base-swiper {
    padding-bottom: 0 !important;
  }
}
.base-swiper__slide {
  height: auto !important;
}
.base-swiper__slide .card-base,
.base-swiper__slide .card-people {
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .base-swiper__slide {
    width: calc((100% - 16px) / 3) !important;
    min-width: 320px;
  }
}
.base-swiper .base-swiper-pagination {
  margin-top: 10px;
}
@media screen and (max-width: 1280px) {
  .base-swiper .base-swiper-pagination {
    display: block;
  }
}

.base-swiper-pagination {
  display: block;
  position: static !important;
  width: auto !important;
  line-height: 0;
}
.base-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: var(--accent-light-violet);
  opacity: 1;
  transition: var(--trans);
}
.base-swiper-pagination .swiper-pagination-bullet:nth-child(1) {
  margin-left: 0 !important;
}
.base-swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0 !important;
}
@media screen and (max-width: 767px) {
  .base-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.base-swiper-pagination .swiper-pagination-bullet:hover, .base-swiper-pagination .swiper-pagination-bullet:active {
  background: var(--accent-violet);
}
.base-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-violet);
  height: 12px;
  width: 36px;
}
@media screen and (max-width: 767px) {
  .base-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 28px;
    height: 10px;
  }
}
.base-swiper-pagination .swiper-pagination-bullet:focus {
  background: var(--accent-light-violet);
  box-shadow: 0px 0px 0px 4px rgb(205, 205, 205);
}
.base-swiper-pagination--violet .swiper-pagination-bullet:hover, .base-swiper-pagination--violet .swiper-pagination-bullet:active {
  background: var(--white);
}
.base-swiper-pagination--violet .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--white);
}

.base-swiper__btns {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.base-swiper__btns .base-swiper-pagination {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .base-swiper__btns {
    margin-top: 10px;
  }
  .base-swiper__btns .base-swiper__btn-prev,
  .base-swiper__btns .base-swiper__btn-next {
    display: none;
  }
}

.base-swiper__btn-prev,
.base-swiper__btn-next {
  position: static;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.base-swiper__btn-prev .icon,
.base-swiper__btn-next .icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent-mint);
  transition: var(--trans);
  fill: none;
}
.base-swiper__btn-prev:hover .icon, .base-swiper__btn-prev:active .icon,
.base-swiper__btn-next:hover .icon,
.base-swiper__btn-next:active .icon {
  stroke: var(--accent-light-violet);
}
.base-swiper__btn-prev.swiper-button-disabled,
.base-swiper__btn-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.gallery-photo {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
  padding-left: 50px;
  padding-left: var(--wrapper-space);
}
@media screen and (min-width: 1920px) {
  .gallery-photo {
    padding-left: calc((100vw - 1800px) / 2);
    padding-right: calc((100vw - 1800px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo {
    flex-direction: column;
    height: auto;
    max-width: 328px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
.gallery-photo__item {
  display: flex;
  border-radius: 32px;
  height: auto;
  overflow: hidden;
  transition: var(--trans);
}
.gallery-photo__item picture {
  display: flex;
  width: 100%;
}
.gallery-photo__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.gallery-photo__item .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
}
.gallery-photo__item .icon-play .icon {
  width: 85px;
  height: 85px;
  fill: var(--white);
}
.gallery-photo__item:hover {
  transform: rotate(0deg) !important;
}
.gallery-photo__item:hover img {
  filter: brightness(0.8);
}
.gallery-photo__item--video img {
  filter: brightness(0.8);
}
.gallery-photo__item--video:hover img {
  filter: brightness(0.7);
}
.gallery-photo__col {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .gallery-photo__col {
    align-items: center;
  }
}
.gallery-photo__col--large {
  gap: 50px;
  align-items: flex-end;
}
@media screen and (max-width: 1920px) {
  .gallery-photo__col--large {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--large {
    gap: 10px;
  }
}
.gallery-photo__col--large::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -100px;
  display: block;
  width: 112px;
  height: 124px;
  transform: rotate(33deg);
  background: url("../assets/images/content/gallery-lines.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--large::after {
    width: 62px;
    height: 74px;
    transform: rotate(0);
    right: -50px;
    top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--large::after {
    right: 40px;
    top: -20px;
  }
}
.gallery-photo__col--large .gallery-photo__item:nth-child(1) {
  width: 38vw;
  aspect-ratio: 728/499;
  transform: rotate(0.71deg);
}
@media screen and (max-width: 1920px) {
  .gallery-photo__col--large .gallery-photo__item:nth-child(1) {
    aspect-ratio: 728/469;
  }
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--large .gallery-photo__item:nth-child(1) {
    width: 436px;
    height: 299px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--large .gallery-photo__item:nth-child(1) {
    width: 260px;
    height: 160px;
    margin-right: auto;
  }
}
.gallery-photo__col--large .gallery-photo__item:nth-child(2) {
  width: 11vw;
  aspect-ratio: 1/1;
  transform: rotate(-1.84deg);
}
@media screen and (max-width: 1920px) {
  .gallery-photo__col--large .gallery-photo__item:nth-child(2) {
    width: 9vw;
  }
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--large .gallery-photo__item:nth-child(2) {
    width: 122px;
    height: 122px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--large .gallery-photo__item:nth-child(2) {
    width: 100px;
    height: 100px;
  }
}
.gallery-photo__col--middle {
  gap: 50px;
  align-items: flex-end;
  margin-top: -20px;
}
.gallery-photo__col--middle::after {
  content: "";
  position: absolute;
  right: -63px;
  top: 87%;
  display: block;
  width: 200px;
  height: 105px;
  background: url("../assets/images/content/gallery-lines-2.svg") no-repeat top/contain;
  transform: rotate(10deg);
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--middle::after {
    width: 120px;
    height: 42px;
    top: 380px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--middle::after {
    top: 84px;
    transform: rotate(150deg);
    left: 90px;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--middle {
    margin: 0;
    gap: 0;
  }
}
.gallery-photo__col--middle .gallery-photo__item:nth-child(1) {
  width: 7vw;
  aspect-ratio: 1/1;
  transform: rotate(-3.51deg);
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--middle .gallery-photo__item:nth-child(1) {
    width: 82px;
    height: 82px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 767px) {
  .gallery-photo__col--middle .gallery-photo__item:nth-child(1) {
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
    margin-top: 20px;
  }
}
.gallery-photo__col--middle .gallery-photo__item:nth-child(2) {
  width: 20.5vw;
  aspect-ratio: 396/333;
  transform: rotate(-1.04deg);
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--middle .gallery-photo__item:nth-child(2) {
    width: 237px;
    height: 199px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--middle .gallery-photo__item:nth-child(2) {
    width: 200px;
    height: 172px;
    margin-right: auto;
    margin-top: -230px;
  }
}
.gallery-photo__col--middle:last-child {
  margin-bottom: 50px;
}
.gallery-photo__col--middle:last-child::after {
  display: none;
}
.gallery-photo__col--video .gallery-photo__item {
  width: 20.5vw;
  aspect-ratio: 395/589;
  transform: rotate(0.9deg);
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--video .gallery-photo__item {
    width: 237px;
    height: 353px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--video .gallery-photo__item {
    width: 286px;
    height: 404px;
    margin-top: 60px;
  }
}
.gallery-photo__col--small {
  justify-content: center;
}
.gallery-photo__col--small::after {
  content: "";
  position: absolute;
  left: 0;
  top: 110px;
  display: block;
  width: 50px;
  height: 35px;
  background: url("../assets/images/content/gallery-lines-3.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--small::after {
    top: 80px;
    width: 30px;
    height: 25px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--small::after {
    left: auto;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--small {
    margin: 0;
    margin-bottom: 10px;
  }
}
.gallery-photo__col--small .gallery-photo__item {
  width: 20.5vw;
  aspect-ratio: 396/333;
  transform: rotate(-3.62deg);
}
@media screen and (max-width: 1280px) {
  .gallery-photo__col--small .gallery-photo__item {
    width: 237px;
    height: 199px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-photo__col--small .gallery-photo__item {
    width: 300px;
    height: 188px;
    margin-top: 20px;
  }
}

.scroll-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .scroll-section {
    margin-top: 40px;
    padding-bottom: 20px;
  }
}
.scroll-section .section__links {
  position: relative;
  z-index: 2;
}
.scroll-section .section__links a.button img {
  width: 24px;
  height: 24px;
  display: flex;
  transition: var(--trans);
}
.scroll-section .section__links a.button:hover img {
  transform: rotate(5deg);
}
.scroll-section .section__links--col {
  flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  .scroll-section .section__header {
    margin-bottom: 50px;
    flex-direction: column;
  }
}

.story-swiper {
  margin-left: calc(-1 * var(--wrapper-space)) !important;
  margin-right: calc(-1 * var(--wrapper-space)) !important;
  padding-left: var(--wrapper-space) !important;
  padding-right: var(--wrapper-space) !important;
}
.story-swiper__slide {
  width: 890px !important;
  height: auto !important;
}
@media screen and (max-width: 1280px) {
  .story-swiper__slide {
    width: 720px !important;
  }
}
@media screen and (max-width: 767px) {
  .story-swiper__slide {
    width: 320px !important;
  }
}
.story-swiper__slide .story-card {
  height: 100%;
}
.story-swiper__slide .story-card__content {
  flex: 1 1 auto;
}
.story-swiper + .section__links {
  margin-top: 52px;
}
@media screen and (max-width: 1280px) {
  .story-swiper + .section__links {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .story-swiper + .section__links {
    margin-top: 24px;
  }
}

.scroll-card-container {
  margin-top: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 56px;
}
.scroll-card-container .section__name {
  max-width: 740px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .scroll-card-container {
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 767px) {
  .scroll-card-container {
    padding-bottom: 12px;
    margin-top: 40px;
  }
}
.scroll-card-container .show-more {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
@media screen and (max-width: 767px) {
  .scroll-card-container .show-more {
    width: 100%;
  }
}

.scroll-cards {
  position: relative;
  width: 100%;
  height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .scroll-cards {
    height: 750px;
  }
}
.scroll-cards__item {
  position: absolute;
  width: 100%;
  max-width: 610px;
  padding: 32px;
  border-radius: 32px;
  background: #E5EFFF;
  border: 1px solid rgba(189, 206, 234, 0.5019607843);
}
@media screen and (max-width: 1280px) {
  .scroll-cards__item {
    width: 50vw;
    min-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .scroll-cards__item {
    padding: 24px;
    border-radius: 24px;
  }
}
.scroll-cards__item:nth-child(2n+1) .scroll-cards__photo {
  border-color: #3AB16A;
  transform: rotate(-7deg);
}
.scroll-cards__item:nth-child(2n) .scroll-cards__photo {
  border-color: #FC6700;
  transform: rotate(5deg);
}
.scroll-cards__item:first-child::before {
  content: "";
  width: 226px;
  height: 421px;
  display: block;
  position: absolute;
  left: -10px;
  top: 70px;
  background: url("../assets/images/content/card-line-progress.svg") no-repeat top/contain;
  transform: translate3d(-100%, -100%, 0);
}
@media screen and (max-width: 1280px) {
  .scroll-cards__item:first-child::before {
    width: 140px;
    height: 300px;
  }
}
.scroll-cards__item:first-child::after {
  content: "";
  width: 130px;
  height: 290px;
  display: block;
  position: absolute;
  left: 100%;
  top: 207px;
  background: url("../assets/images/content/card-line-progress2.svg") no-repeat top/contain;
  transform: translate3d(0%, 0%, 0) rotate(5deg);
}
@media screen and (max-width: 1280px) {
  .scroll-cards__item:first-child::after {
    width: 90px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .scroll-cards__item:first-child::before, .scroll-cards__item:first-child::after {
    display: none;
  }
}
.scroll-cards__item:last-child {
  z-index: 0;
  bottom: 0;
  transform: scale(0.9);
  transition: var(--trans-slow);
}
.scroll-cards__item:last-child::after {
  content: "";
  width: 42px;
  height: 38px;
  display: block;
  position: absolute;
  right: 100%;
  top: 100%;
  background: url("../assets/images/content/gallery-lines-4.svg") no-repeat top/contain;
  transform: translate3d(0%, 0%, 0) rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .scroll-cards__item:last-child::after {
    display: none;
  }
}
.scroll-cards__item:last-child.finish {
  transform: scale(1.05);
}
.scroll-cards__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .scroll-cards__name {
    line-height: 24px;
  }
}
.scroll-cards__name {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .scroll-cards__name {
    margin-bottom: 12px;
  }
}
.scroll-cards__text {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .scroll-cards__text {
    margin-bottom: 40px;
  }
}
.scroll-cards__footer {
  display: flex;
  align-items: center;
  gap: 24px;
}
.scroll-cards__photo {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
}
.scroll-cards__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cookie-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 428px;
  padding: 16px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.cookie-notice__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--grey-black);
}
.cookie-notice__title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.cookie-notice__description {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.cookie-notice__description a {
  color: #252525;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--accent-violet);
  text-underline-offset: 2px;
  transition: var(--trans);
}
.cookie-notice__description a:hover {
  color: var(--accent-violet);
}
.cookie-notice__actions {
  display: flex;
  gap: 8px;
}
.cookie-notice__button {
  margin: 0;
  flex: 0 0 auto;
  padding: 15px 23px;
  border-radius: 16px;
  height: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.cookie-notice__button--ok {
  width: 118px;
}
.cookie-notice__button--more {
  width: 148px;
}
@media screen and (max-width: 1280px) {
  .cookie-notice {
    right: 20px;
    bottom: 20px;
  }
  .cookie-notice__text {
    gap: 4px;
  }
  .cookie-notice__title {
    font-size: 18px;
    line-height: 24px;
  }
  .cookie-notice__description {
    font-size: 10px;
    line-height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .cookie-notice {
    right: 20px;
    left: 20px;
    bottom: 20px;
    max-width: none;
    width: auto;
  }
  .cookie-notice__button {
    padding: 15px 23px;
    border-radius: 16px;
    height: auto;
    font-size: 18px;
    line-height: 24px;
  }
  .cookie-notice__button--ok {
    width: 132px;
  }
}

@media screen and (max-width: 767px) {
  .programs-grid {
    margin-top: 26px;
  }
}
.programs-grid__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 60px;
}
.programs-grid__list > * {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1280px) {
  .programs-grid__list > * {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .programs-grid__list > * {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .programs-grid__list {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .programs-grid__list {
    row-gap: 8px;
    padding-bottom: 0;
  }
}
.programs-grid__item {
  height: auto;
}
.programs-grid__item .card-icon {
  height: 100%;
}
.programs-grid__cards {
  display: flex;
  gap: 60px;
  margin-top: 70px;
  padding-bottom: 60px;
  align-items: flex-start;
}
.programs-grid__cards > * {
  flex: 1 1 auto;
  width: calc(50% - 30px);
}
.programs-grid__cards > *:nth-child(1) {
  transform: rotate(-1.5deg);
}
.programs-grid__cards > *:nth-child(1)::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -165px;
  display: block;
  width: 75px;
  height: 140px;
  background: url("../assets/images/content/banner-lines-bold.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .programs-grid__cards > *:nth-child(1)::after {
    display: none;
  }
}
.programs-grid__cards > *:nth-child(2) {
  transform: rotate(1.5deg);
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .programs-grid__cards:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 1280px) {
  .programs-grid__cards {
    padding-bottom: 20px;
    margin-top: 44px;
    flex-wrap: wrap;
    gap: 32px;
  }
  .programs-grid__cards > * {
    flex: 0 0 auto;
    width: 70%;
    min-width: 680px;
  }
  .programs-grid__cards > *:nth-child(2) {
    margin: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .programs-grid__cards > * {
    width: 100%;
    min-width: auto;
  }
  .programs-grid__cards > *:nth-child(1) {
    transform: rotate(-1.5deg);
  }
  .programs-grid__cards > *:nth-child(2) {
    margin: 0;
  }
}

.grid-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px;
  background: var(--additional-grey);
  border-radius: 32px;
  min-height: 278px;
}
@media screen and (max-width: 767px) {
  .grid-card {
    flex-direction: column-reverse;
    padding: 24px 35px 24px 24px;
    border-radius: 32px;
    align-items: flex-start;
    gap: 20px;
  }
}
.grid-card__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 490px;
}
.grid-card__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .grid-card__name {
    line-height: 20px;
  }
}
.grid-card__name {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .grid-card__name {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .grid-card__name {
    line-height: 24px;
  }
}
.grid-card__text {
  color: rgba(51, 51, 51, 0.8);
}
.grid-card a.button {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .grid-card a.button {
    margin-top: 20px;
  }
}
.grid-card__img {
  width: 298px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-width: 140px;
}
.grid-card__img img {
  max-width: 100%;
  object-fit: contain;
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .grid-card__img {
    width: auto;
    height: 90px;
  }
}

.partners {
  display: flex;
  padding-bottom: 24px;
}
.partners:last-child {
  padding-bottom: 60px;
}
.partners > * {
  flex: 1 1 100%;
}
@media screen and (max-width: 1280px) {
  .partners {
    flex-wrap: wrap;
    column-gap: 12px;
    padding-bottom: 20px;
  }
  .partners > * {
    flex: 1 1 auto;
    width: calc(50% - 6px);
  }
}
@media screen and (max-width: 767px) {
  .partners {
    padding: 0 20px;
  }
  .partners > * {
    width: calc(50% - 6px);
  }
  .partners:last-child {
    padding-bottom: 0;
  }
}
.partners__item {
  height: 74px;
  display: flex;
  justify-content: center;
  position: relative;
}
.partners__item img {
  object-fit: contain;
}
.partners__item::after {
  content: "";
  display: block;
  height: calc(100% - 2px);
  width: 1px;
  background: rgba(0, 0, 0, 0.1019607843);
  position: absolute;
  right: 0;
  top: 1px;
}
.partners__item:last-child::after {
  display: none;
}
@media screen and (max-width: 1280px) {
  .partners__item {
    height: 63px;
    padding-bottom: 15px;
  }
  .partners__item::after {
    display: none;
  }
}

.direct {
  padding-bottom: 60px;
  overflow: visible;
}
.direct .section__header {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .direct {
    padding-bottom: 20px;
  }
}

.direct-swiper__wrapper {
  padding-left: var(--wrapper-space);
  align-items: stretch;
}
@media screen and (min-width: 1920px) {
  .direct-swiper__wrapper {
    padding-left: calc((100vw - 1800px) / 2);
    padding-right: calc((100vw - 1800px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .direct-swiper {
    padding-left: var(--wrapper-space) !important;
    padding-right: var(--wrapper-space) !important;
    padding-top: 60px !important;
    margin-top: -60px !important;
  }
  .direct-swiper__wrapper {
    padding-left: 0;
  }
}
.direct-swiper .base-swiper-pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .direct-swiper .base-swiper-pagination {
    display: block;
    margin-top: 10px;
  }
}

.direct-swiper__slide {
  min-width: 1202px;
  margin-right: 20px;
  height: auto !important;
  width: 62.5vw !important;
}
.direct-swiper__slide:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1280px) {
  .direct-swiper__slide {
    min-width: 720px;
  }
  .direct-swiper__slide .direct-card {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .direct-swiper__slide {
    min-width: auto;
    width: 320px !important;
  }
}
.direct-swiper__slide:nth-child(1) .img-small::after {
  content: "";
  display: block;
  width: 85px;
  height: 102px;
  background: url("../assets/images/content/gallery-lines.svg") no-repeat top/contain;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-90deg) translate3d(50%, -50%, 0);
}
@media screen and (max-width: 1280px) {
  .direct-swiper__slide:nth-child(1) .img-small::after {
    width: 36px;
    height: 47px;
    left: auto;
    right: 0;
    transform: rotate(15deg) translate3d(60%, -20%, 0);
    background: url("../assets/images/content/gallery-lines-bold.svg") no-repeat top/contain;
  }
}
.direct-swiper__slide:nth-child(2) .img-small::after {
  content: "";
  display: block;
  width: 41px;
  height: 41px;
  background: url("../assets/images/content/gallery-lines-5.svg") no-repeat top/contain;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(70deg) translate3d(-100%, 50%, 0);
}
@media screen and (max-width: 1280px) {
  .direct-swiper__slide:nth-child(2) .img-small::after {
    width: 26px;
    height: 20px;
    left: auto;
    right: 0;
    transform: rotate(-190deg) translate3d(-50%, 50%, 0);
  }
}
.direct-swiper__slide:nth-child(3) .img-small::after {
  content: "";
  display: block;
  width: 70px;
  height: 48px;
  background: url("../assets/images/content/gallery-lines-6.svg") no-repeat top/contain;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(0, -100%, 0);
}
@media screen and (max-width: 1280px) {
  .direct-swiper__slide:nth-child(3) .img-small::after {
    width: 40px;
    height: 27px;
    transform: translate3d(60%, -100%, 0);
  }
}
@media screen and (max-width: 767px) {
  .direct-swiper__slide:nth-child(3) .img-small::after {
    left: auto;
    right: 0;
    transform: rotate(100deg) translate3d(-10%, -100%, 0);
  }
}
.direct-swiper__slide:nth-child(3) .img-small::before {
  content: "";
  display: block;
  width: 22px;
  height: 32px;
  background: url("../assets/images/content/gallery-lines-7.svg") no-repeat top/contain;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(-120%, 70%, 0);
}
@media screen and (max-width: 1280px) {
  .direct-swiper__slide:nth-child(3) .img-small::before {
    width: 18px;
    height: 27px;
    transform: translate3d(-100%, 70%, 0);
  }
}
@media screen and (max-width: 767px) {
  .direct-swiper__slide:nth-child(3) .img-small::before {
    left: auto;
    right: 0;
    transform: rotate(80deg) translate3d(-150%, 80%, 0);
  }
}
.direct-swiper__slide:nth-child(4) .img-small::after {
  content: "";
  display: block;
  width: 100px;
  height: 70px;
  background: url("../assets/images/content/gallery-lines-8.svg") no-repeat top/contain;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(-70%, -50%, 0);
}
@media screen and (max-width: 1280px) {
  .direct-swiper__slide:nth-child(4) .img-small::after {
    width: 57px;
    height: 40px;
    transform: rotate(30deg) translate3d(-50%, -50%, 0);
  }
}
@media screen and (max-width: 767px) {
  .direct-swiper__slide:nth-child(4) .img-small::after {
    width: 50px;
    height: 35px;
    left: auto;
    right: 0;
    transform: rotate(100deg) translate3d(-50%, -70%, 0);
  }
}
.direct-swiper__slide:nth-child(5) .img-small::after {
  content: "";
  display: block;
  width: 41px;
  height: 60px;
  background: url("../assets/images/content/gallery-lines-9.svg") no-repeat top/contain;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(10deg) translate3d(-30%, -20%, 0);
}
@media screen and (max-width: 1280px) {
  .direct-swiper__slide:nth-child(5) .img-small::after {
    width: 30px;
    height: 50px;
    transform: rotate(10deg) translate3d(-20%, -10%, 0);
  }
}
@media screen and (max-width: 767px) {
  .direct-swiper__slide:nth-child(5) .img-small::after {
    width: 20px;
    height: 35px;
    left: auto;
    right: 0;
    transform: rotate(90deg) translate3d(-70%, 0%, 0);
  }
}
.direct-swiper__slide:nth-child(5) .img-small::before {
  content: "";
  display: block;
  width: 62px;
  height: 23px;
  background: url("../assets/images/content/gallery-lines-10.svg") no-repeat top/contain;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(10deg) translate3d(-30%, 100%, 0);
}
@media screen and (max-width: 1280px) {
  .direct-swiper__slide:nth-child(5) .img-small::before {
    width: 50px;
    height: 15px;
    transform: rotate(10deg) translate3d(-20%, 90%, 0);
  }
}
@media screen and (max-width: 767px) {
  .direct-swiper__slide:nth-child(5) .img-small::before {
    width: 40px;
    height: 9px;
    left: auto;
    right: 0;
    transform: rotate(-60deg) translate3d(20%, 160%, 0);
  }
}

.direct-card {
  display: flex;
  gap: 40px;
  width: 100%;
  border-radius: 32px;
  padding: 32px;
  background: var(--additional-grey);
}
.direct-card > * {
  flex: 1 1 50%;
}
.direct-card {
  aspect-ratio: 1202/771;
}
@media screen and (max-width: 1280px) {
  .direct-card {
    min-height: 560px;
    padding: 24px;
    border-radius: 24px;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 767px) {
  .direct-card {
    padding: 24px 24px 48px 24px;
    min-height: auto;
    gap: 0;
  }
}
.direct-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 544px;
}
.direct-card__content > p {
  max-width: calc(100% - 54px);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .direct-card__content > p {
    max-width: none;
  }
}
.direct-card__content .subtitle {
  font-weight: 500;
  margin-top: 24px;
}
.direct-card__content .subtitle + p {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .direct-card__content .subtitle {
    margin-top: 16px;
  }
}
.direct-card__content h3 {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .direct-card__content h3 {
    line-height: 24px;
  }
}
.direct-card__content h3 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .direct-card__content h3 {
    margin-bottom: 16px;
  }
}
.direct-card__content .tag {
  background: var(--white);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .direct-card__content {
    flex: 1 1 100%;
  }
  .direct-card__content .tag {
    display: none;
  }
}
.direct-card__subtitle {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .direct-card__subtitle {
    line-height: 24px;
  }
}
.direct-card__subtitle {
  margin-top: 32px;
}
@media screen and (max-width: 1280px) {
  .direct-card__subtitle {
    margin-top: 20px;
  }
}
.direct-card__name {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .direct-card__name {
    line-height: 24px;
  }
}
.direct-card__name {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .direct-card__name {
    margin-bottom: 12px;
    max-width: 70%;
  }
}
.direct-card__text {
  color: var(--grey);
}
.direct-card__text--limit {
  max-width: 490px;
  color: #252525;
}
@media screen and (max-width: 767px) {
  .direct-card__text--limit {
    margin-top: 4px;
  }
}
@media screen and (max-width: 1280px) {
  .direct-card__text {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .direct-card__text {
    max-width: none;
  }
}
.direct-card__num {
  margin-top: 32px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .direct-card__num {
    line-height: 24px;
  }
}
.direct-card__num--large {
  font-size: var(--text-h2-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .direct-card__num--large {
    line-height: 24px;
  }
}
.direct-card__num--large {
  color: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .direct-card__num {
    margin-top: 20px;
  }
}
.direct-card__desc {
  max-width: 340px;
  margin-top: 8px;
}
.direct-card__preview {
  border-radius: 32px;
  position: relative;
}
.direct-card__preview--video .img-large img {
  transition: var(--trans-slow);
}
.direct-card__preview--video:hover .img-large {
  overflow: hidden;
}
.direct-card__preview--video:hover .img-large img {
  transform: scale(1.2) rotate(2deg);
}
@media screen and (max-width: 767px) {
  .direct-card__preview--video .about__play {
    top: 0;
    z-index: 2;
    width: 24px;
    height: 24px;
    transform: translate3d(0, 0, 0) rotate(-15deg);
    left: -50px;
    top: -22px;
  }
  .direct-card__preview--video .about__play svg {
    height: 100%;
    width: 100%;
  }
}
.direct-card__preview .prize {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
}
@media screen and (max-width: 1280px) {
  .direct-card__preview .prize {
    top: 12px;
    right: 12px;
    left: 12px;
  }
}
@media screen and (max-width: 767px) {
  .direct-card__preview .prize {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
  }
}
.direct-card__preview .img-large {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  transition: var(--trans);
}
.direct-card__preview .img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .direct-card__preview .img-large {
    display: none;
  }
}
.direct-card__preview .img-small {
  display: block;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 130px;
  left: 0;
  transform: translate3d(-50%, 0, 0) rotate(-11deg);
}
.direct-card__preview .img-small picture {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 32px;
}
.direct-card__preview .img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .direct-card__preview .img-small {
    width: 120px;
    height: 120px;
    bottom: 50%;
  }
}
@media screen and (max-width: 767px) {
  .direct-card__preview .img-small {
    width: 80px;
    height: 80px;
    bottom: auto;
    top: -50px;
    transform: translate3d(-100%, 0, 0) rotate(-15deg);
  }
  .direct-card__preview .img-small picture {
    border: 2px solid var(--white);
    border-radius: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .direct-card__preview {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .direct-card__preview {
    flex: 1 1 0%;
    width: 0 !important;
  }
}
.direct-card__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.direct-card__footer .button {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .direct-card__footer .button {
    margin-top: 24px;
  }
}
.direct-card__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  max-width: 490px;
}
@media screen and (max-width: 767px) {
  .direct-card__list {
    gap: 16px;
    margin-top: 16px;
  }
}
.direct-card__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.direct-card__sub-heading {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .direct-card__sub-heading {
    line-height: 20px;
  }
}
.direct-card__sub-heading {
  color: #252525;
}
.direct-card__sub-description {
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .direct-card__sub-description {
    line-height: 20px;
  }
}
.direct-card__sub-description {
  color: #252525;
}

.prize {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: 32px;
  padding: 21px;
  border: 3px solid var(--additional-grey);
}
.prize__btn {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.prize__btn img {
  max-width: 100%;
  object-fit: contain;
}
.prize__content {
  display: flex;
  flex-direction: column;
  color: var(--grey);
}
.prize__content span {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--grey-black);
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .prize {
    border: 1px solid var(--additional-grey);
    padding: 8px 16px;
    gap: 12px;
    border-radius: 24px;
  }
  .prize__btn {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .prize {
    padding: 0;
    border: 0;
  }
  .prize__content {
    border-radius: 24px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    width: 272px;
    transition: var(--trans);
    opacity: 0;
    pointer-events: none;
  }
  .prize__btn {
    padding: 10px;
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    pointer-events: all;
  }
  .prize__btn:active ~ .prize__content, .prize__btn:focus ~ .prize__content {
    opacity: 1;
  }
}

.page-search__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 140px;
  padding-top: 80px;
}
@media screen and (max-width: 1679px) {
  .page-search__wrapper {
    gap: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .page-search__wrapper {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-search__wrapper {
    padding-top: 16px;
  }
}
.page-search__content {
  flex: 1 1 auto;
}
.page-search__aside {
  width: 460px;
  flex: 0 0 auto;
  position: sticky;
  top: 140px;
}
@media screen and (max-width: 1280px) {
  .page-search__aside {
    display: none;
  }
}
.page-search__header {
  margin-bottom: 40px;
  gap: 32px;
  display: flex;
}
.page-search__header .filters {
  margin-top: 0;
}
@media screen and (max-width: 1280px) {
  .page-search__header {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .page-search__header {
    flex-direction: column;
    gap: 8px;
  }
}
.page-search__result {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-search__null {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-search__null {
    padding-bottom: 0px;
  }
}
.page-search__null picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  margin-bottom: 40px;
}
.page-search__null picture img {
  max-width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .page-search__null picture {
    margin-bottom: 20px;
  }
}
.page-search__null h4 {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .page-search__null h4 {
    line-height: 20px;
  }
}
.page-search__null h4 {
  margin-bottom: 12px;
}

.ad-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  padding: 32px 24px;
  border-radius: 32px;
  background: var(--additional-grey);
}
.ad-block > * {
  max-width: 320px;
}
@media screen and (max-width: 1280px) {
  .ad-block {
    padding: 32px 24px;
    border-radius: 24px;
  }
}
.ad-block__decor {
  position: absolute;
  right: -40px;
  top: 60px;
  transform: rotate(-11deg);
  width: 130px;
  height: 130px;
}
.ad-block__decor::before {
  content: "";
  display: block;
  width: 80px;
  height: 40px;
  position: absolute;
  bottom: 100%;
  right: 0;
  background: url("../assets/images/content/gallery-lines-mint.svg") no-repeat top/contain;
  z-index: 1;
}
.ad-block__decor picture {
  display: flex;
  border-radius: 24px;
  border: 5px solid var(--white);
  overflow: hidden;
}
.ad-block__decor picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .ad-block__decor {
    width: 80px;
    height: 80px;
    right: 10px;
    top: -23px;
  }
  .ad-block__decor::before {
    width: 49px;
    height: 22px;
    transform: rotate(40deg) translate3d(20px, -10px, 0);
  }
}
.ad-block__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .ad-block__name {
    line-height: 24px;
  }
}
.ad-block__name {
  margin-bottom: 12px;
  max-width: calc(100% - 60px);
}
.ad-block .button {
  margin-top: 28px;
}
@media screen and (max-width: 1280px) {
  .ad-block--small {
    padding: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .ad-block--small .button {
    display: none;
    margin-top: 0;
    margin-left: 28px;
  }
  .ad-block--small .button--small {
    display: flex;
  }
  .ad-block--small .ad-block__decor {
    display: none;
  }
  .ad-block--small .ad-block__text {
    display: none;
  }
  .ad-block--small .ad-block__name {
    margin: 0;
  }
}

.search-page {
  display: flex;
  gap: 16px;
  position: relative;
  align-items: center;
  max-width: 958px;
  width: 100%;
}
.search-page__icon {
  position: absolute;
  display: flex;
  left: 24px;
  top: 16px;
}
.search-page__icon .icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--grey-black);
}
@media screen and (max-width: 1280px) {
  .search-page__icon {
    top: 10px;
    left: 16px;
  }
}
.search-page__label {
  width: 100%;
  position: relative;
}
.search-page .form__input {
  width: 100%;
}

.item-search {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px;
  border-radius: 32px;
  background: var(--additional-grey);
  position: relative;
  cursor: pointer;
  transition: var(--trans);
}
.item-search:hover {
  color: var(--accent-violet);
  transform: rotate(1deg);
}
.item-search:hover .icon-box .icon {
  stroke: var(--accent-violet);
}
@media screen and (max-width: 1280px) {
  .item-search {
    padding: 16px;
    border-radius: 24px;
  }
}
.item-search .icon-box {
  position: absolute;
  right: 32px;
  bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .item-search .icon-box {
    position: static;
    margin-top: 20px;
  }
}
.item-search__tag {
  display: inline-block;
  color: var(--accent-violet);
  margin-bottom: 20px;
  font-weight: 500;
}
.item-search__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .item-search__title {
    line-height: 20px;
  }
}
.item-search__title {
  margin-bottom: 12px;
  max-width: 800px;
}
.item-search__desc {
  color: var(--grey);
  max-width: 800px;
  width: calc(100% - 70px);
}

.modal {
  display: none;
}
@media screen and (min-width: 768px) {
  .modal.filters {
    display: block;
  }
}
.modal__overlay {
  position: fixed;
  top: 0;
  display: flex;
  left: 0;
  width: 100%;
  height: calc(100vh - (100vh - 100%));
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  animation-duration: var(--modal-duration);
  animation-timing-function: var(--cubic);
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .modal__overlay {
    align-items: flex-end;
  }
}
.modal__overlay--block {
  display: block;
}
.modal__container {
  margin: 40px auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 10px);
  max-width: 1016px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  height: auto;
  max-height: calc(100vh - 80px);
  border-radius: 32px;
  background: var(--white);
  animation-duration: var(--modal-duration);
  animation-timing-function: var(--cubic);
  animation-fill-mode: forwards;
  z-index: 5;
}
.modal__container--small {
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .modal__container {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px 32px 0 0;
    max-width: none;
    padding: 16px 20px 0 20px;
    max-height: calc(100dvh - 64px);
  }
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .modal__header {
    margin-bottom: 24px;
  }
}
.modal__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  padding: 5px;
  margin: -5px;
}
@media screen and (max-width: 767px) {
  .modal__body {
    max-height: none;
    padding-bottom: 16px;
  }
}
.modal__close-btn {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: var(--trans);
  display: flex;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  background: var(--additional-grey);
  transition: var(--trans);
}
.modal__close-btn .icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--grey-black);
  transition: var(--trans);
}
@media screen and (max-width: 1280px) {
  .modal__close-btn {
    width: 44px;
    height: 44px;
  }
}
.modal__close-btn:hover {
  background: var(--accent-light-violet);
}
.modal__close-btn:hover .icon {
  stroke: var(--accent-violet);
}
.modal__close-btn:active {
  background: var(--accent-light-violet);
}
.modal__close-btn:active .icon {
  stroke: var(--accent-violet);
}
.modal[aria-hidden=false] .modal__overlay {
  animation-name: shadeIn;
}
@media screen and (max-width: 767px) {
  .modal[aria-hidden=false] .modal__container {
    animation-name: slideInMobile;
  }
}
.modal[aria-hidden=true] .modal__overlay {
  animation-name: shadeOut;
}
@media screen and (max-width: 767px) {
  .modal[aria-hidden=true] .modal__container {
    animation-name: slideOutMobile;
  }
}
.modal.show {
  display: flex;
}
.modal--lk .modal__container {
  max-width: 1409px;
}
.modal--xs .modal__container {
  max-width: 656px;
  padding: 60px;
}
@media screen and (max-width: 1280px) {
  .modal--xs .modal__container {
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  .modal--xs .modal__container {
    max-width: 100%;
    padding: 24px;
    max-height: none;
    height: auto;
  }
}
.modal--xs .modal__body {
  padding: 0;
  margin: 0;
}
.modal--xs .modal__header {
  display: none;
}
.modal--share .modal__container {
  max-width: 656px;
  padding: 60px;
}
@media screen and (max-width: 1280px) {
  .modal--share .modal__container {
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  .modal--share .modal__container {
    max-width: 100%;
    padding: 24px;
    max-height: none;
    height: auto;
  }
}
.modal--share .modal__body {
  padding: 0;
}
.modal--share .modal__title {
  display: none;
}
@media screen and (max-width: 767px) {
  .modal--share .modal__title {
    display: block;
  }
}
.modal--share .modal__header {
  margin: 0;
  position: absolute;
  right: 32px;
  top: 32px;
}
@media screen and (max-width: 767px) {
  .modal--share .modal__header {
    position: static;
    top: 24px;
    right: 24px;
  }
}

.сompetitions-swiper__slide {
  width: 436px !important;
  height: auto !important;
}
.сompetitions-swiper__slide .project-card {
  height: 100%;
}
.сompetitions-swiper__slide:last-child {
  margin-right: 0 !important;
}
@media screen and (max-width: 1280px) {
  .сompetitions-swiper__slide {
    width: 340px !important;
  }
}
@media screen and (max-width: 767px) {
  .сompetitions-swiper__slide {
    width: 320px !important;
  }
}
@media screen and (max-width: 1280px) {
  .сompetitions-swiper {
    margin-left: calc(-1 * var(--wrapper-space)) !important;
    margin-right: calc(-1 * var(--wrapper-space)) !important;
    padding-left: var(--wrapper-space) !important;
    padding-right: var(--wrapper-space) !important;
  }
}

.project-card {
  border-radius: 32px;
  padding: 32px;
  background: var(--additional-grey);
  min-height: 634px;
  display: flex;
  flex-direction: column;
  height: auto;
}
@media screen and (max-width: 1280px) {
  .project-card {
    min-height: 520px;
    padding: 24px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .project-card {
    min-height: 460px;
  }
}
.project-card--partner {
  min-height: 542px;
}
@media screen and (max-width: 767px) {
  .project-card--partner {
    min-height: 400px;
  }
}
.project-card__image {
  display: block;
  margin-bottom: 20px;
  height: 74px;
  object-fit: contain;
  object-position: left;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .project-card__image {
    height: 48px;
  }
}
.project-card__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .project-card__name {
    line-height: 20px;
  }
}
.project-card__name {
  margin-bottom: 12px;
}
.project-card__text {
  margin-bottom: 12px;
  color: var(--grey);
}
.project-card__text p {
  margin-bottom: 8px;
}
@media screen and (max-width: 1280px) {
  .project-card__text p {
    margin-bottom: 4px;
  }
}
.project-card__text--truncate {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.project-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: start;
  margin-bottom: 24px;
}
.project-card__list:last-child {
  margin-bottom: 0;
}
.project-card__list li {
  max-height: 48px;
  display: flex;
  align-items: center;
}
.project-card__list li img {
  max-height: 100%;
  object-fit: contain;
}
.project-card__list li.more {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 100%;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .project-card__list li.more {
    line-height: 20px;
  }
}
.project-card__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.project-card__footer--justify_end {
  justify-content: flex-end;
}

.icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--additional-stroke);
  transition: var(--trans);
}
.icon-box .icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--grey-black);
  transition: var(--trans);
}
@media screen and (max-width: 1280px) {
  .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}
.icon-box--link:hover {
  border-color: var(--accent-violet);
}
.icon-box--link:hover .icon {
  stroke: var(--accent-violet);
}

.callback-form {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.callback-form--no-height {
  min-height: 0 !important;
}
.callback-form > * {
  flex: 1 1 50%;
}
@media screen and (max-width: 767px) {
  .callback-form {
    gap: 0;
  }
}
.callback-form__form {
  border-radius: 32px;
  background: var(--additional-grey);
  padding: 80px 120px;
}
@media screen and (max-width: 1679px) {
  .callback-form__form {
    padding: 40px;
    min-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .callback-form__form {
    min-width: auto;
    padding: 24px 16px 24px 24px;
  }
  .callback-form__form .form__name {
    max-width: calc(100% - 80px);
  }
}
.callback-form__img {
  width: 100%;
  height: auto;
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  border-radius: 32px;
  overflow: hidden;
}
.callback-form__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.callback-form__small-img {
  position: absolute;
}
.callback-form__small-img picture {
  border-radius: 32px;
  border: 5px solid var(--white);
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.callback-form__small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.callback-form__small-img:nth-child(2) {
  width: 169px;
  height: 169px;
  left: 0;
  top: 108px;
  transform: translate3d(-50%, 0, 0) rotate(-15deg);
}
@media screen and (max-width: 1280px) {
  .callback-form__small-img:nth-child(2) {
    display: none;
  }
}
.callback-form__small-img:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  width: 50px;
  height: 50px;
  transform: translate3d(100%, -100%, 0);
  background: url("../assets/images/content/gallery-lines-3.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .callback-form__small-img:nth-child(2)::after {
    width: 120px;
    height: 42px;
  }
}
.callback-form__small-img:nth-child(3) {
  width: 204px;
  height: 204px;
  left: 45%;
  bottom: 0;
  transform: translate3d(0, 40%, 0) rotate(8deg);
}
.callback-form__small-img:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 40px;
  display: block;
  width: 50px;
  height: 50px;
  transform: translate3d(-100%, 100%, 0);
  background: url("../assets/images/content/gallery-lines-5.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .callback-form__small-img:nth-child(3)::after {
    width: 80px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .callback-form__small-img:nth-child(3)::after {
    display: none;
  }
}
.callback-form__small-img:nth-child(3)::before {
  display: none;
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  transform: translate3d(100%, -100%, 0);
  background: url("../assets/images/content/gallery-lines-3.svg") no-repeat top/contain;
}
@media screen and (max-width: 767px) {
  .callback-form__small-img:nth-child(3)::before {
    width: 30px;
    height: 30px;
    transform: translate3d(120%, -100%, 0) rotate(10deg);
  }
}
@media screen and (max-width: 1280px) {
  .callback-form__small-img:nth-child(3) {
    width: 140px;
    height: 140px;
    bottom: auto;
    top: 40px;
    left: 0;
    transform: translate3d(-30%, 0, 0) rotate(-15deg);
  }
}
@media screen and (max-width: 767px) {
  .callback-form__small-img:nth-child(3) {
    top: 0;
    left: auto;
    right: 0;
    width: 100px;
    height: 100px;
    transform: translate3d(-5px, -10px, 0) rotate(-15deg);
  }
}
.callback-form__preview {
  position: relative;
  display: flex;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .callback-form__preview {
    width: 0;
    flex: 0 0 auto;
  }
}

.learning .section__title {
  text-align: center;
}
.learning .grid-content {
  margin-bottom: 96px;
}
.learning .grid-content:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .learning .grid-content {
    margin-bottom: 80px;
  }
  .learning .grid-content:last-child {
    margin-bottom: 0;
  }
}
.learning__additional {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  padding-bottom: 65px;
}
@media screen and (max-width: 1280px) {
  .learning__additional {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .learning__additional {
    padding-top: 12px;
    flex-direction: column;
    padding-bottom: 74px;
  }
}
.learning__additional > * {
  width: 100%;
}
.learning__additional > *:nth-child(1) {
  transform: rotate(-1.5deg);
}
.learning__additional > *:nth-child(2) {
  transform: rotate(1.5deg);
  margin-top: 108px;
}
@media screen and (max-width: 767px) {
  .learning__additional > *:nth-child(2) {
    margin-top: 0;
    margin-left: auto;
  }
}

.article__wrapper {
  padding-top: 30px;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .article__wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.article__hero {
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .article__hero {
    padding-top: 40px;
  }
}
.article__header h1 {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .article__header h1 {
    line-height: 24px;
  }
}
.article__header h1 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .article__header h1 {
    margin-bottom: 16px;
  }
}
.article__header {
  margin-bottom: 79px;
}
.article__header img {
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  .article__header img {
    border-radius: 24px;
  }
}
.article__header picture + .button {
  margin-top: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .article__header {
    margin-bottom: 61px;
  }
}
.article__links {
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .article__links {
    width: 100%;
    margin-top: 32px;
  }
  .article__links > * {
    width: 100%;
  }
}
.article__info {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}
.article__info data {
  color: var(--grey);
  margin-left: 20px;
}
.article__info .button {
  margin-left: auto;
}
.article__info .button + .button {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .article__info .button + .button {
    margin-left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .article__info {
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .article__share {
    width: 100%;
  }
}

.author-news {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-news__info {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .author-news__info {
    flex-direction: column;
    align-items: flex-start;
  }
  .author-news__info data {
    margin-left: 0;
  }
}
.author-news img {
  width: 40px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
  border-radius: 100% !important;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .author-news img {
    width: 44px;
    height: 44px;
  }
}

.article-swiper {
  margin-bottom: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .article-swiper {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: calc(-1 * var(--wrapper-space)) !important;
    margin-right: calc(-1 * var(--wrapper-space)) !important;
    padding-left: var(--wrapper-space) !important;
    padding-right: var(--wrapper-space) !important;
  }
}
.article-swiper__wrapper {
  height: 501px !important;
  width: 100%;
  aspect-ratio: 890/501;
  margin-bottom: 38px !important;
}
@media screen and (max-width: 767px) {
  .article-swiper__wrapper {
    height: auto !important;
    margin-bottom: 10px !important;
  }
}
.article-swiper__slide {
  border-radius: 32px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .article-swiper__slide {
    border-radius: 24px;
  }
}
.article-swiper__slide picture {
  display: flex;
  width: 100%;
  height: 100%;
}
.article-swiper__slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.article-swiper__desc {
  margin-top: 16px;
  color: var(--grey);
}

.story-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.story-hero__photo {
  display: block;
  width: 220px;
  height: 220px;
  flex: 0 0 auto;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 32px;
}
.story-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .story-hero__photo {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
  }
}
.story-hero__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .story-hero__name {
    line-height: 20px;
  }
}
.story-hero__name {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .story-hero__name {
    margin-bottom: 4px;
  }
}
.story-hero__info {
  color: var(--grey);
}
.story-hero__social {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}
.story-hero__social img {
  border-radius: 0;
  transition: var(--trans);
}
.story-hero__social a.button:hover img {
  transform: rotate(-5deg);
}
@media screen and (max-width: 767px) {
  .story-hero__social {
    margin-top: 24px;
    gap: 8px;
    width: 100%;
    justify-content: center;
  }
  .story-hero__social > * {
    width: 100%;
    max-width: 156px;
  }
}

.section.trail .section__links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .section.trail .section__links {
    margin-top: 40px;
    flex-direction: column;
    align-items: stretch;
  }
  .section.trail .section__links .link-content {
    width: 100%;
  }
}

.trail-detail {
  display: flex;
  gap: 20px;
  min-height: 840px;
  padding-bottom: 40px;
}
.trail-detail > * {
  width: 50%;
  flex: 1 1 auto;
}
@media screen and (max-width: 1280px) {
  .trail-detail {
    flex-direction: column;
    height: auto;
    padding-bottom: 40px;
  }
  .trail-detail > * {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .trail-detail {
    gap: 8px;
    padding-bottom: 20px;
  }
}
.trail-detail--way {
  padding-bottom: 0px;
}
.trail-detail__map {
  border: 1px solid var(--additional-stroke);
  border-radius: 32px;
  overflow: hidden;
  background: var(--accent-mint);
}
@media screen and (max-width: 1280px) {
  .trail-detail__map {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .trail-detail__map {
    height: 423px;
    border-radius: 24px;
  }
}
.trail-detail__block {
  padding: 64px;
  border-radius: 32px;
  background: var(--additional-grey);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .trail-detail__block {
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  .trail-detail__block {
    padding: 24px;
    border-radius: 24px;
  }
}
.trail-detail__name {
  margin: 24px 0;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .trail-detail__name {
    line-height: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .trail-detail__name {
    margin: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .trail-detail__name {
    margin: 12px 0;
  }
}
.trail-detail__text {
  color: var(--grey);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .trail-detail__text {
    margin-bottom: 12px;
  }
}
.trail-detail__player {
  margin-top: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .trail-detail__player {
    margin-top: 40px;
  }
}
.trail-detail__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.trail-detail__footer h4 {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .trail-detail__footer h4 {
    line-height: 20px;
  }
}
.trail-detail__desc {
  padding-top: 8px;
  display: flex;
  gap: 48px;
}
.trail-detail__desc--col {
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .trail-detail__desc--col {
    margin-top: 16px;
  }
}
.trail-detail__desc dl {
  margin: 0;
}
.trail-detail__desc dl dt {
  color: var(--grey-50);
}
.trail-detail__desc dl dd {
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .trail-detail__desc {
    flex-direction: column;
    gap: 16px;
  }
}
.trail-detail__desc + .button {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .trail-detail__desc + .button {
    margin-top: 24px;
  }
}
.trail-detail__location {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .trail-detail__location {
    line-height: 20px;
  }
}
.trail-detail__location .icon {
  width: 24px;
  height: 24px;
  fill: var(--accent-mint);
}
.attention {
  width: 100%;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}
.attention__header {
  padding: 32px;
  border-radius: 32px;
  background: #FFD3D3;
  margin-bottom: 20px;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .attention__header {
    line-height: 20px;
  }
}
.attention__header {
  color: #E53939;
}
@media screen and (max-width: 767px) {
  .attention__header {
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 8px;
  }
}
.attention__list {
  border-radius: 32px;
  padding: 32px;
  background: var(--additional-grey);
}
@media screen and (max-width: 767px) {
  .attention__list {
    padding: 24px;
    border-radius: 24px;
  }
}

.player-name {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .player-name {
    line-height: 20px;
  }
}
.player-name {
  margin-bottom: 8px;
}

.city-search {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: auto;
}
.city-search__container {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  overflow-y: auto;
  padding-right: 7px;
}
.city-search__checkmark {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  box-shadow: inset 0px 0px 0px 1.5px var(--accent-violet);
  transition: var(--trans);
  position: relative;
}
.city-search__checkmark::after {
  content: "";
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  box-shadow: 0px 0px 0px 4px transparent;
  transition: var(--trans);
}
.city-search__item {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .city-search__item {
    line-height: 20px;
  }
}
.city-search__item {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--trans);
  order: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--additional-stroke);
}
.city-search__item:hover {
  color: var(--accent-violet);
}
.city-search__item:hover .city-search__checkmark {
  box-shadow: inset 0px 0px 0px 2px var(--accent-middle-violet);
}
.city-search__item:active .city-search__checkmark {
  box-shadow: inset 0px 0px 0px 1px var(--accent-middle-violet);
}
.city-search__item:active .city-search__checkmark::after {
  box-shadow: 0px 0px 0px 4px var(--additional-stroke);
}
.city-search__item--selected {
  order: 0 !important;
}
.city-search__item--selected .city-search__checkmark {
  box-shadow: inset 0px 0px 0px 6px var(--accent-violet);
}
.city-search__item--selected:hover {
  color: var(--accent-violet);
}
.city-search__item--selected:hover .city-search__checkmark {
  box-shadow: inset 0px 0px 0px 6px var(--accent-middle-violet);
}
@media screen and (max-width: 767px) {
  .city-search__item {
    border: none;
    padding-bottom: 0;
  }
}
.city-search__empty {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .city-search__empty {
    line-height: 24px;
  }
}

.accordion-state {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--white);
  position: relative;
  transition: var(--trans);
}
.accordion-state::before, .accordion-state::after {
  content: "";
  display: block;
  border-radius: 4px;
  background: var(--grey-black);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: var(--trans);
}
.accordion-state::after {
  width: 16px;
  height: 2px;
}
.accordion-state::before {
  width: 2px;
  height: 16px;
}
@media screen and (max-width: 1280px) {
  .accordion-state {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

.accordion-event {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .accordion-event {
    gap: 8px;
  }
}
.accordion-event__item {
  border-radius: 32px;
  background: var(--additional-grey);
}
.accordion-event__item--finished .accordion-event__name {
  color: var(--grey-50);
}
.accordion-event__item--finished .accordion-event__name::after {
  display: block;
}
@media screen and (max-width: 1280px) {
  .accordion-event__item--finished .accordion-event__name {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .accordion-event__item {
    border-radius: 24px;
  }
}
.accordion-event__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-event__header.js-menu-toggle {
  cursor: pointer;
}
.accordion-event__header {
  padding: 40px 32px;
  transition: var(--trans);
}
.accordion-event__header.show-toggle .accordion-state::before {
  transform: translate3d(-50%, -50%, 0) rotate(90deg);
}
.accordion-event__header:hover .accordion-state {
  background: var(--accent-light-violet);
}
.accordion-event__header:hover .accordion-state::before, .accordion-event__header:hover .accordion-state::after {
  background: var(--accent-violet);
}
@media screen and (max-width: 1280px) {
  .accordion-event__header {
    padding: 24px;
    align-items: flex-start;
  }
}
.accordion-event__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .accordion-event__name {
    line-height: 20px;
  }
}
.accordion-event__name {
  transition: var(--trans);
  position: relative;
  padding-bottom: 12px;
}
.accordion-event__name::after {
  content: "Завершён";
  display: inline-block;
  padding: 8px 16px;
  border-radius: 16px;
  background: var(--white);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .accordion-event__name::after {
    line-height: 20px;
  }
}
.accordion-event__name::after {
  color: var(--accent-violet);
  position: absolute;
  left: calc(100% + 20px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  display: none;
}
@media screen and (max-width: 1280px) {
  .accordion-event__name::after {
    padding: 4px 8px;
    border-radius: 8px;
    left: 0;
    top: auto;
    bottom: 0;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 1280px) {
  .accordion-event__name {
    padding-top: 12px;
  }
}
.accordion-event__content {
  display: none;
  padding: 12px 32px 40px 32px;
}
@media screen and (max-width: 1280px) {
  .accordion-event__content {
    padding: 16px 24px 24px 24px;
  }
}
.accordion-event__wrapper {
  display: flex;
  align-items: flex-end;
}
.accordion-event__wrapper .event-numbers,
.accordion-event__wrapper .info {
  margin-right: 360px;
}
.accordion-event__wrapper .info {
  max-width: 400px;
}
@media screen and (max-width: 1280px) {
  .accordion-event__wrapper .event-numbers,
  .accordion-event__wrapper .info {
    margin-right: 120px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-event__wrapper {
    flex-direction: column;
    align-items: baseline;
  }
  .accordion-event__wrapper .info {
    margin-right: 0;
    order: 2;
    margin-top: 40px;
  }
  .accordion-event__wrapper .event-numbers {
    flex-direction: row;
    gap: 20px;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.accordion-event__footer {
  flex: 0 0 auto;
}
.accordion-event__footer .contacts__link {
  width: auto;
}
@media screen and (max-width: 767px) {
  .accordion-event__footer {
    margin-top: 40px;
    order: 2;
    width: 100%;
  }
  .accordion-event__footer .contacts__link {
    width: fit-content;
  }
}

.program-rout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.program-rout__item {
  width: 100%;
  max-width: 786px;
  position: relative;
  background: var(--grey-05);
  border-radius: 32px;
  padding: 32px;
  margin-left: auto;
}
.program-rout__item--long {
  max-width: 875px;
}
.program-rout__item--long .program-rout__text {
  max-width: 720px;
}
.program-rout__item::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--accent-light-violet);
  border: 10px solid var(--accent-violet);
  position: absolute;
  top: 28px;
  left: -72px;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .program-rout__item::before {
    top: -36px;
    left: -40px;
    width: 32px;
    height: 32px;
    border: 8px solid var(--accent-violet);
  }
}
.program-rout__item::after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: var(--accent-light-violet);
  position: absolute;
  left: -54px;
  top: 64px;
}
@media screen and (max-width: 1280px) {
  .program-rout__item::after {
    left: -26px;
    top: -6px;
    height: calc(100% + 30px);
  }
}
@media screen and (max-width: 1280px) {
  .program-rout__item {
    margin-top: 36px;
    padding: 16px;
    border-radius: 24px;
    width: calc(100% - 40px);
  }
}
.program-rout__item:last-child::after {
  display: none;
}
.program-rout__item--finish::after {
  background: var(--accent-violet);
}
.program-rout__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .program-rout__title {
    line-height: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .program-rout__title {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 1280px) {
  .program-rout__title {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .program-rout__title {
    font-size: var(--text-paragraph);
    font-weight: 500;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .program-rout__title {
    line-height: 20px;
  }
}
.program-rout__time {
  position: absolute;
  right: calc(100% + 84px);
  top: 34px;
  display: flex;
  white-space: nowrap;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .program-rout__time {
    line-height: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .program-rout__time {
    left: 0;
    top: -32px;
    right: auto;
  }
}
.program-rout__text {
  margin-top: 24px;
  color: var(--grey);
}
@media screen and (max-width: 767px) {
  .program-rout__text {
    margin-top: 16px;
  }
}
.program-rout__list {
  margin-top: 24px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.program-rout__list li {
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 12px;
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1280px) {
  .program-rout__list li {
    line-height: 14px;
  }
}
.program-rout__list li {
  color: var(--grey);
  background: var(--white-40);
}
.program-rout__list li img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex: 0 0 auto;
  margin-right: 8px;
}
@media screen and (max-width: 1280px) {
  .program-rout__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .program-rout__list li {
    border-radius: 8px;
  }
  .program-rout__list li img {
    width: 24px;
    height: 24px;
  }
}

.event-numbers {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.event-numbers dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.event-numbers dl dd {
  margin: 0;
}
.event-numbers dl dt {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .event-numbers dl dt {
    line-height: 24px;
  }
}
.event-numbers dl dt.prime {
  font-size: var(--text-h2-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .event-numbers dl dt.prime {
    line-height: 24px;
  }
}
.event-numbers dl dt.prime {
  color: var(--accent-violet);
}

.info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .info {
    line-height: 24px;
  }
}
.info {
  color: var(--accent-violet);
}
.info .icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: var(--accent-violet);
}

.link-wrapper {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .link-wrapper {
    gap: 8px;
  }
}

.interest {
  display: flex;
  gap: 20px;
  min-height: 806px;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .interest {
    flex-direction: column;
    gap: 40px;
  }
}
.interest > * {
  flex: 1 1 50%;
}
@media screen and (max-width: 1280px) {
  .interest {
    min-height: 680px;
  }
}
@media screen and (max-width: 767px) {
  .interest {
    gap: 40px;
    margin-bottom: 40px;
  }
}
.interest__block {
  position: relative;
}
.interest__heading {
  margin-top: 20px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .interest__heading {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .interest__heading {
    margin-top: 16px;
  }
}
.interest__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 585px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .interest__tags {
    margin-top: 24px;
  }
}
.interest__tag {
  flex: 0 0 auto;
  padding: 16px 20px;
  border-radius: 16px;
  background: #F5F5F5;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .interest__tag {
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .interest__tag {
    padding: 12px 16px;
  }
}
.interest__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 740px;
  margin-top: 40px;
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .interest__content {
    gap: 8px;
    margin-top: 24px;
  }
}
.interest__content p {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .interest__content p {
    line-height: 20px;
  }
}
.interest__content p {
  margin: 0;
}
.interest__content p:last-of-type {
  margin-top: 8px;
}
.interest__content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .interest__content ul {
    gap: 8px;
  }
}
.interest__content li {
  position: relative;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .interest__content li {
    padding-left: 20px;
  }
}
.interest__content li::before {
  content: " ";
  position: absolute;
  left: 10px;
  top: 9px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #5236AF;
}
@media screen and (max-width: 767px) {
  .interest__content li::before {
    left: 7px;
    top: 7px;
  }
}
.interest__line {
  position: absolute;
  right: 14%;
  bottom: 7%;
}
@media screen and (max-width: 1679px) {
  .interest__line {
    right: 0;
  }
}
@media screen and (max-width: 1280px) {
  .interest__line {
    display: none;
  }
}
.interest__img {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 32px;
  overflow: hidden;
}
.interest__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interest__small-img {
  position: absolute;
}
.interest__small-img picture {
  border-radius: 32px;
  border: 5px solid var(--white);
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.interest__small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interest__small-img:nth-child(2) {
  width: 169px;
  height: 169px;
  left: 0;
  top: 108px;
  transform: translate3d(-50%, 0, 0) rotate(-15deg);
}
@media screen and (max-width: 1280px) {
  .interest__small-img:nth-child(2) {
    display: none;
  }
}
.interest__small-img:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  width: 50px;
  height: 50px;
  transform: translate3d(100%, -100%, 0);
  background: url("../../assets/images/content/gallery-lines-3.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .interest__small-img:nth-child(2)::after {
    width: 120px;
    height: 42px;
  }
}
.interest__small-img:nth-child(3) {
  width: 204px;
  height: 204px;
  left: 35%;
  bottom: 0;
  transform: translate3d(0, 40%, 0) rotate(8deg);
}
.interest__small-img:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 40px;
  display: block;
  width: 50px;
  height: 50px;
  transform: translate3d(-100%, 100%, 0);
  background: url("../../assets/images/content/gallery-lines-5.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .interest__small-img:nth-child(3)::after {
    width: 80px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .interest__small-img:nth-child(3)::after {
    display: none;
  }
}
.interest__small-img:nth-child(3)::before {
  display: none;
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  transform: translate3d(100%, -100%, 0);
  background: url("../../assets/images/content/gallery-lines-3.svg") no-repeat top/contain;
}
@media screen and (max-width: 767px) {
  .interest__small-img:nth-child(3)::before {
    width: 30px;
    height: 30px;
    transform: translate3d(120%, -100%, 0) rotate(10deg);
  }
}
@media screen and (max-width: 1280px) {
  .interest__small-img:nth-child(3) {
    width: 140px;
    height: 140px;
    bottom: auto;
    top: 40px;
    left: 0;
    transform: translate3d(-30%, 0, 0) rotate(-15deg);
  }
}
@media screen and (max-width: 767px) {
  .interest__small-img:nth-child(3) {
    top: 0;
    left: auto;
    right: 0;
    width: 100px;
    height: 100px;
    transform: translate3d(-5px, -10px, 0) rotate(-15deg);
  }
}
.interest__preview {
  position: relative;
}

:root {
  --white: #fff;
  --black: #000;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-10: rgba(255, 255, 255, 0.1019607843);
  --accent-violet: #5236AF;
  --accent-light-violet: #DBE2FD;
  --accent-middle-violet: #968CD6;
  --accent-mint: #8ADBAB;
  --accent-light-mint: #DCFFE8;
  --grey-black: #252525;
  --grey: #5C5C5C;
  --grey-50: rgba(37, 37, 37, 0.5019607843);
  --grey-05: rgba(37, 37, 37, 0.0509803922);
  --additional-grey: #F5F5F5;
  --additional-stroke: #CDCDCD;
  --additional-blue: #7E96CD;
}

.contact-cards {
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 1280px) {
  .contact-cards {
    padding-top: 40px;
  }
}
.contact-cards__line {
  position: absolute;
  left: 53%;
  top: 0;
}
@media screen and (max-width: 1280px) {
  .contact-cards__line {
    display: none;
  }
}
.contact-cards__list {
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 1280px) {
  .contact-cards__list {
    gap: 28px;
  }
}
@media screen and (max-width: 767px) {
  .contact-cards__list {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-cards__item {
  flex: 0 0 auto;
  width: calc(50% - 28px);
}
@media screen and (max-width: 1280px) {
  .contact-cards__item {
    width: calc(50% - 14px);
  }
}
@media screen and (max-width: 767px) {
  .contact-cards__item {
    width: 100%;
  }
}
.contact-cards__item:first-child {
  transform: rotate(-1.5deg);
}
.contact-cards__item:last-child {
  margin-top: 108px;
  transform: rotate(1.5deg);
}
@media screen and (max-width: 767px) {
  .contact-cards__item:last-child {
    margin: 0;
  }
}

.contact-card {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 1280px) {
  .contact-card {
    padding: 24px;
    min-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .contact-card {
    align-items: flex-start;
    border-radius: 24px;
  }
}
.contact-card__image {
  position: absolute;
  right: 5%;
  bottom: 14%;
  width: 23%;
  max-height: calc(100% - 64px);
}
@media screen and (max-width: 767px) {
  .contact-card__image {
    max-height: none;
    right: 2%;
    bottom: 30%;
    width: auto;
    height: 90px;
    position: static;
    margin-bottom: 12px;
  }
}
.contact-card__heading {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .contact-card__heading {
    line-height: 20px;
  }
}
.contact-card__heading {
  color: #252525;
}
@media screen and (max-width: 1280px) {
  .contact-card__heading {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
    font-weight: 500;
  }
}
@media screen and (max-width: 1280px) and (max-width: 1280px) {
  .contact-card__heading {
    line-height: 24px;
  }
}
.contact-card__holder {
  margin-top: 24px;
}
@media screen and (max-width: 1280px) {
  .contact-card__holder {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .contact-card__holder {
    width: 100%;
  }
}
.contact-card__link {
  display: inline-block;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .contact-card__link {
    line-height: 20px;
  }
}
.contact-card__link {
  color: #5236AF;
  word-break: break-all;
}
.contact-card__button {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .contact-card__button {
    margin-top: 16px;
  }
}
.contact-card__text {
  margin-top: 32px;
  max-width: 395px;
}
.contact-card__text span {
  color: var(--grey-black);
}
.contact-card__text {
  color: var(--grey);
}
.contact-card__text p {
  margin-top: 4px;
}
.contact-card__text p:first-child {
  margin-top: 0;
}
.contact-card--small .contact-card__link {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .contact-card--small .contact-card__link {
    line-height: 20px;
  }
}
.contact-card--small .contact-card__link {
  color: #5236AF;
}
@media screen and (max-width: 767px) {
  .contact-card--small .contact-card__link {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .contact-card--small .contact-card__link {
    line-height: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .contact-card--small .contact-card__holder {
    margin-top: 4px;
  }
}
.contact-card--small .contact-card__button {
  margin-top: 32px;
}
@media screen and (max-width: 1280px) {
  .contact-card--small .contact-card__button {
    margin-top: 24px;
  }
}

.speaker-scroll {
  background: var(--accent-violet);
  margin-top: 140px;
}
@media screen and (max-width: 1280px) {
  .speaker-scroll {
    margin-top: 80px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .speaker-scroll {
    margin-top: 60px;
  }
}
.speaker-scroll__wrapper {
  display: flex;
  align-items: flex-start;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--wrapper-space);
}
@media screen and (max-width: 1280px) {
  .speaker-scroll__wrapper {
    flex-direction: column;
  }
}
.speaker-scroll__title {
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .speaker-scroll__title {
    line-height: 24px;
  }
}
.speaker-scroll__title:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1280px) {
  .speaker-scroll__title {
    margin-bottom: 12px;
  }
}
.speaker-scroll__desc {
  color: var(--white-80);
  max-width: 490px;
}
.speaker-scroll__img {
  display: flex;
  margin-top: 16px;
  height: 196px;
}
.speaker-scroll__aside {
  padding: 160px 0 80px 0;
  position: sticky;
  top: 0;
  max-width: 800px;
  width: 100%;
  z-index: 4;
}
@media screen and (max-width: 1280px) {
  .speaker-scroll__aside {
    max-width: none;
    padding: 120px 0 60px 0;
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .speaker-scroll__aside {
    padding: 60px 0 40px 0;
  }
}
.speaker-scroll__items {
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .speaker-scroll__items {
    margin-top: 40px;
  }
}
.speaker-scroll__list {
  padding-top: 210px;
  padding-bottom: 95px;
  margin-left: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../assets/images/icons/speaker-line_all.svg");
  background-position-y: calc(50% - 180px);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1280px) {
  .speaker-scroll__list {
    background-image: none;
    padding: 0;
    margin-right: -20px;
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}

.speaker-item {
  display: flex;
  flex-direction: column;
  padding: 4px 4px 20px 4px;
  border-radius: 32px;
  background: var(--white);
  position: relative;
}
@media screen and (max-width: 1280px) {
  .speaker-item {
    border-radius: 24px;
  }
}
.speaker-item__img {
  border-radius: 32px;
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .speaker-item__img {
    border-radius: 24px;
  }
}
.speaker-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker-item__name {
  margin-bottom: 8px;
  padding: 0 16px;
}
@media screen and (max-width: 1280px) {
  .speaker-item__name {
    margin-bottom: 4px;
  }
}
.speaker-item__desc {
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1280px) {
  .speaker-item__desc {
    line-height: 14px;
  }
}
.speaker-item__desc {
  padding: 0 16px;
}
.speaker-item__info {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  transition: var(--trans);
}
.speaker-item__info .icon {
  width: 24px;
  height: 24px;
  fill: var(--grey-black);
  transition: var(--trans);
}
.speaker-item__info {
  position: absolute;
  top: 24px;
  right: 24px;
}
.speaker-item__info:hover {
  background: var(--accent-light-violet);
}
.speaker-item__info:hover .icon {
  fill: var(--accent-violet);
}

.speaker-slider {
  width: 100%;
  max-width: 740px;
  overflow: visible !important;
  margin-left: auto;
  margin-right: 0 !important;
}
@media screen and (max-width: 1280px) {
  .speaker-slider {
    max-width: none;
    overflow: hidden !important;
    margin-right: -20px !important;
    margin-left: -20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.speaker-slider__wrapper {
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .speaker-slider__wrapper {
    flex-direction: row;
  }
}
.speaker-slider__pagination {
  margin-top: 10px;
}
.speaker-slider__slide {
  width: 308px;
  max-width: 45%;
  padding: 12px;
  background: var(--accent-violet);
  border-radius: 32px;
  position: relative;
  height: auto !important;
}
@media screen and (max-width: 1280px) {
  .speaker-slider__slide {
    width: 320px !important;
    flex: 0 0 auto;
    max-width: none;
    padding: 0;
  }
  .speaker-slider__slide .speaker-item {
    height: 100%;
  }
}
@media screen and (max-width: 1280px) and (max-width: 1280px) {
  .speaker-slider__slide::after, .speaker-slider__slide::before {
    display: none !important;
  }
}
.speaker-slider__slide:nth-child(2n) {
  margin-left: auto;
}
.speaker-slider__slide:nth-child(1) {
  transform: rotate(-2deg);
}
.speaker-slider__slide:nth-child(1)::after {
  content: "";
  display: block;
  width: 60px;
  height: 73px;
  position: absolute;
  bottom: calc(100% + 10px);
  right: -20px;
  background: url("../assets/images/icons/speaker-decor.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .speaker-slider__slide:nth-child(1) {
    transform: rotate(0);
  }
}
.speaker-slider__slide:nth-child(2) {
  margin-top: -240px;
  transform: rotate(5deg);
}
@media screen and (max-width: 1280px) {
  .speaker-slider__slide:nth-child(2) {
    transform: rotate(0);
    margin: 0;
  }
}
.speaker-slider__slide:nth-child(3) {
  margin-top: 80px;
  transform: rotate(-1.5deg);
}
.speaker-slider__slide:nth-child(3)::before {
  content: "";
  display: block;
  width: 140px;
  height: 168px;
  position: absolute;
  bottom: calc(100% - 80px);
  left: -60px;
  background: url("../assets/images/icons/speaker-decor_3.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .speaker-slider__slide:nth-child(3) {
    transform: rotate(0);
    margin: 0;
  }
}
.speaker-slider__slide:nth-child(4) {
  transform: rotate(3deg);
}
@media screen and (max-width: 1280px) {
  .speaker-slider__slide:nth-child(4) {
    transform: rotate(0);
    margin: 0;
  }
}
.speaker-slider__slide:nth-child(5) {
  margin-top: -80px;
  transform: rotate(-5deg);
}
.speaker-slider__slide:nth-child(5)::before {
  content: "";
  display: block;
  width: 240px;
  height: 80px;
  position: absolute;
  bottom: calc(100% + 27px);
  right: 0;
  background: url("../assets/images/icons/speaker-decor_2.svg") no-repeat top/contain;
}
@media screen and (max-width: 1280px) {
  .speaker-slider__slide:nth-child(5) {
    transform: rotate(0);
    margin: 0;
  }
}

.speaker-window {
  display: flex;
  gap: 54px;
}
.speaker-window__img {
  width: 320px;
  height: 320px;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  flex: 0 0 auto;
  max-width: 100%;
}
.speaker-window__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker-window__text {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .speaker-window__text {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .speaker-window {
    flex-direction: column;
    gap: 36px;
  }
}

.speakers {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .speakers {
    gap: 24px;
    padding: 40px 0 20px;
  }
}
.speakers__head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.speakers__tag {
  flex: 0 0 auto;
  align-self: flex-start;
  margin: 0;
}
.speakers__heading {
  flex: 0 0 auto;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .speakers__heading {
    line-height: 24px;
  }
}
.speakers__heading {
  color: #252525;
}
.speakers__body {
  flex: 0 0 auto;
}
.speakers__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .speakers__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .speakers__list {
    grid-template-columns: 1fr;
  }
}
.speakers__item {
  display: flex;
  flex-direction: column;
}
.speakers__card {
  flex: 1 1 auto;
  min-height: 208px;
}
@media screen and (max-width: 767px) {
  .speakers__card {
    min-height: auto;
  }
}

.speaker-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .speaker-card {
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
  }
}
.speaker-card__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .speaker-card__head {
    gap: 16px;
  }
}
.speaker-card__image {
  flex: 0 0 auto;
  display: block;
  width: 96px;
  height: 96px;
  border: 3px solid #5236AF;
  border-radius: 16px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .speaker-card__image {
    width: 64px;
    height: 64px;
  }
}
.speaker-card__box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.speaker-card__position {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .speaker-card__position {
    line-height: 20px;
  }
}
.speaker-card__position {
  color: #5236AF;
}
.speaker-card__name {
  flex: 0 0 auto;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .speaker-card__name {
    line-height: 24px;
  }
}
.speaker-card__name {
  color: #252525;
}
.speaker-card__body {
  flex: 0 0 auto;
}
.speaker-card__description {
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .speaker-card__description {
    line-height: 20px;
  }
}
.speaker-card__description {
  color: #252525;
}

.experts {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .experts {
    gap: 24px;
    padding: 40px 0 20px;
  }
}
.experts__head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.experts__tag {
  flex: 0 0 auto;
  align-self: flex-start;
  margin: 0;
}
.experts__heading {
  flex: 0 0 auto;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .experts__heading {
    line-height: 24px;
  }
}
.experts__heading {
  color: #252525;
}
.experts__body {
  flex: 0 0 auto;
}
.experts__swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .experts__swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .experts__swiper-wrapper {
    display: flex !important;
    gap: 0;
  }
}
.experts__swiper-slide {
  display: flex !important;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .experts__swiper-slide {
    display: block !important;
    width: 320px !important;
  }
}
.experts__swiper-pagination {
  margin-top: 8px;
}
.experts__card {
  flex: 1 1 auto;
  min-height: 800px;
}
@media screen and (max-width: 767px) {
  .experts__card {
    min-height: 546px;
  }
}

.expert-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .expert-card {
    padding: 24px;
    border-radius: 24px;
  }
}
.expert-card__image {
  flex: 0 0 auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 32px;
}
.expert-card__info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .expert-card__info {
    gap: 8px;
  }
}
.expert-card__heading {
  flex: 0 0 auto;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .expert-card__heading {
    line-height: 24px;
  }
}
.expert-card__heading {
  color: #252525;
}
.expert-card__description {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .expert-card__description {
    line-height: 20px;
  }
}
.expert-card__description {
  color: #5C5C5C;
}
.expert-card__tag {
  flex: 0 0 auto;
  align-self: flex-start;
  display: block;
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 12px;
  background: #fff;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .expert-card__tag {
    line-height: 20px;
  }
}
.expert-card__tag {
  color: #5236AF;
}
@media screen and (max-width: 767px) {
  .expert-card__tag {
    padding: 4px 8px;
    border-radius: 8px;
  }
}

.text-cards {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .text-cards {
    gap: 24px;
    padding: 40px 0 20px;
  }
}
.text-cards__head {
  flex: 0 0 auto;
  position: relative;
}
.text-cards__line {
  position: absolute;
  left: 37%;
  bottom: 100%;
}
@media screen and (max-width: 767px) {
  .text-cards__line {
    display: none;
  }
}
.text-cards__heading {
  text-align: center;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .text-cards__heading {
    line-height: 24px;
  }
}
.text-cards__heading {
  color: #252525;
}
.text-cards__body {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.text-cards__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .text-cards__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.text-cards__item {
  display: flex;
  flex-direction: column;
}
.text-cards__card {
  flex: 1 1 auto;
}

.text-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 32px 60px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .text-card {
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
  }
}
.text-card__heading {
  flex: 0 0 auto;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .text-card__heading {
    line-height: 20px;
  }
}
.text-card__heading {
  color: #252525;
}
.text-card__description {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .text-card__description {
    line-height: 20px;
  }
}
.text-card__description {
  color: #5C5C5C;
}

.steps {
  position: relative;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .steps {
    padding: 40px 0 20px;
  }
}
.steps__line {
  display: none;
}
@media screen and (max-width: 767px) {
  .steps__line {
    position: absolute;
    left: 10px;
    top: 40px;
    display: block;
    z-index: -1;
  }
}
.steps__box {
  position: absolute;
  display: block;
  left: 60px;
  right: 348px;
  top: 65px;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .steps__box {
    display: none;
  }
}
.steps__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 60px;
}
@media screen and (max-width: 1280px) {
  .steps__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .steps__list {
    position: relative;
    overflow: hidden;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 24px;
  }
}
.steps__item {
  max-width: 372px;
}
@media screen and (max-width: 1280px) {
  .steps__item {
    max-width: none;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .step-card {
    gap: 16px;
  }
}
.step-card__head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .step-card__head {
    flex-direction: row;
    align-items: center;
  }
}
.step-card__tag {
  flex: 0 0 auto;
  position: relative;
  margin: 0;
  padding: 12px 16px;
  border-radius: 16px;
  background: #5236AF;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .step-card__tag {
    line-height: 20px;
  }
}
.step-card__tag {
  color: #fff;
}
.step-card__tag::before {
  content: " ";
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: -10px;
  top: -10px;
  z-index: -1;
  background: #fff;
}
@media screen and (max-width: 1280px) {
  .step-card__tag::before {
    left: 0;
    right: 0;
    bottom: -20px;
    top: -20px;
  }
}
@media screen and (max-width: 767px) {
  .step-card__tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 36px;
    padding: 0;
    border-radius: 12px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .step-card__tag-text {
    display: none;
  }
}
.step-card__date {
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .step-card__date {
    line-height: 20px;
  }
}
.step-card__date {
  color: #5C5C5C;
}
.step-card__body {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .step-card__body {
    padding-left: 44px;
  }
}
@media screen and (max-width: 767px) {
  .steps__item:last-child .step-card__body {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .steps__item:last-child .step-card__body::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 100%;
    background: #fff;
  }
}
.step-card__heading {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .step-card__heading {
    line-height: 24px;
  }
}
.step-card__heading {
  color: #252525;
}
.step-card__description {
  margin-top: 16px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .step-card__description {
    line-height: 20px;
  }
}
.step-card__description {
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .step-card__description {
    margin-top: 12px;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding: 80px 0;
}
.faq:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .faq {
    gap: 24px;
    padding: 40px 0 20px;
  }
}
.faq__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.faq__box {
  flex: 1 1 auto;
}
.faq__tag {
  margin: 0;
}
.faq__heading {
  margin-top: 16px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .faq__heading {
    line-height: 24px;
  }
}
.faq__heading {
  color: #252525;
}
.faq__link {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .faq__link {
    display: none;
  }
}
.faq__body {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .faq__body {
    gap: 24px;
  }
}
.faq__accordions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .faq__accordions {
    gap: 8px;
  }
}
.faq__accordion {
  flex: 0 0 auto;
}
.faq__holder {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .faq__holder .button {
    width: 100%;
  }
}
.faq__button {
  flex: 0 0 auto;
}

.accordion {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  .accordion {
    border-radius: 24px;
  }
}
.accordion-event__name {
  margin-right: 140px;
}
.accordion__button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: var(--trans);
  width: 100%;
  padding: 40px 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .accordion__button {
    padding: 24px;
  }
}
.accordion__button.show-toggle .accordion-state::before {
  transform: translate3d(-50%, -50%, 0) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .accordion__button:hover .accordion-state {
    background: var(--accent-light-violet);
  }
  .accordion__button:hover .accordion-state::before, .accordion__button:hover .accordion-state::after {
    background: var(--accent-violet);
  }
}
.accordion__button:active .accordion-state {
  background: var(--accent-light-violet);
}
.accordion__button:active .accordion-state::before, .accordion__button:active .accordion-state::after {
  background: var(--accent-violet);
}
.accordion__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.accordion__text {
  flex: 1 1 auto;
  max-width: 1200px;
  padding-top: 12px;
  text-align: left;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .accordion__text {
    line-height: 20px;
  }
}
.accordion__text {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .accordion__text {
    padding: 12px 0;
  }
}
.accordion__shape {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .accordion__shape {
    width: 44px;
    height: 44px;
  }
}
.accordion__icon--plus {
  display: block;
}
.accordion__button.show-toggle .accordion__icon--plus {
  display: none;
}
.accordion__icon--minus {
  display: none;
}
.accordion__button.show-toggle .accordion__icon--minus {
  display: block;
}
.accordion__content {
  display: none;
  padding: 0 32px 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .accordion__content {
    padding: 0 24px 24px;
  }
}
.accordion__holder {
  max-width: 858px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .accordion__holder {
    line-height: 20px;
  }
}
.accordion__holder {
  color: #5C5C5C;
}
.accordion__holder > * + * {
  margin-top: 20px;
}
.accordion__holder ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accordion__holder ul li {
  flex: 0 0 auto;
  position: relative;
  padding-left: 26px;
}
.accordion__holder ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #5236AF;
}
.accordion__holder {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .accordion__holder {
    margin-bottom: 24px;
  }
}
.accordion__holder:last-child {
  margin-bottom: 0;
}
.accordion__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.accordion__link img {
  max-height: 18px;
}
.accordion__link.max {
  min-width: 100px !important;
}
.accordion__link.max img {
  max-width: 21px;
}

.about {
  padding: 80px 0;
}
.about--pb {
  padding-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 40px 0 20px;
  }
}
.about__boxes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .about__boxes {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .about--result .about__boxes {
    gap: 8px;
  }
}
.about__box--content {
  padding: 64px;
  border-radius: 32px;
  background: var(--additional-grey);
}
@media screen and (max-width: 1280px) {
  .about__box--content {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about__box--content {
    padding: 24px;
    border-radius: 24px;
  }
}
.about__box--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-right: 150px;
}
.about__box--text .button {
  margin-top: auto;
}
@media screen and (max-width: 1280px) {
  .about__box--text {
    padding: 0;
  }
}
.about__box--media {
  display: flex;
  flex-direction: column;
}
.about__box--media .link-wrapper {
  margin-top: auto;
}
.about__box--media .link-wrapper > * {
  flex: 1 1 100%;
}
@media screen and (max-width: 767px) {
  .about__box--media .link-wrapper {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .about__box {
    width: 100%;
  }
}
.about__line {
  position: absolute;
  bottom: 18px;
  right: 52px;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .about__line {
    display: none;
  }
}
.about__tag {
  margin: 0;
}
.about__heading {
  margin-top: 20px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .about__heading {
    line-height: 24px;
  }
}
.about__heading {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .about__heading {
    margin-top: 16px;
  }
}
.about__heading:first-child {
  margin-top: 0 !important;
}
.about__count {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  column-gap: 48px;
  width: 100%;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .about__count {
    flex-direction: column;
    row-gap: 20px;
    margin-top: 54px;
  }
}
.about__count-item {
  width: calc((100% - 48px) / 2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1280px) {
  .about__count-item {
    line-height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .about__count-item {
    width: 100%;
  }
}
.about__count-num {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .about__count-num {
    line-height: 20px;
  }
}
.about__count-num.violet {
  color: var(--accent-violet);
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 80px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .about__text {
    line-height: 20px;
  }
}
.about__text {
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .about__text {
    gap: 8px;
    margin: 24px 0;
  }
}
.about__text p {
  margin: 0;
}
.about__text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .about__button {
    width: 100%;
  }
}
.about__videobox {
  position: relative;
  overflow: hidden;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 501px;
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  .about__videobox {
    position: relative;
    aspect-ratio: 1/0.56;
    min-height: auto;
  }
}
.about__videobox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  transition: var(--trans-slow);
}
.about__videobox:hover::after {
  background: rgba(0, 0, 0, 0.2);
}
.about__videobox--no-event {
  pointer-events: none;
}
.about__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-slow);
}
.about__videobox:hover .about__image {
  transform: scale(1.2) rotate(2deg);
}
.about__play {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: var(--trans);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.about__play svg {
  pointer-events: none;
  height: 65px;
}
@media screen and (max-width: 767px) {
  .about__play svg {
    height: 36px;
  }
}

.stages {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .stages {
    padding: 40px 0;
  }
}
.stages__tag {
  margin: 0;
}
.stages__heading {
  margin-top: 16px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .stages__heading {
    line-height: 24px;
  }
}
.stages__heading {
  color: #252525;
}
.stages__description {
  max-width: 527px;
  margin-top: 16px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .stages__description {
    line-height: 20px;
  }
}
.stages__description {
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .stages__description {
    margin-top: 12px;
  }
}
.stages__body {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .stages__body {
    margin-top: 24px;
  }
}
.stages__stages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .stages__stages {
    gap: 8px;
  }
}
.stages__stage {
  flex: 0 0 auto;
}

.stage {
  padding: 40px 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .stage {
    padding: 24px 80px 24px 24px;
    border-radius: 24px;
  }
}
.stage__box {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .stage__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.stage__heading {
  padding: 12px 0;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .stage__heading {
    line-height: 20px;
  }
}
.stage__heading {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .stage__heading {
    padding: 12px 0 0;
  }
}
.stage--disabled .stage__heading {
  color: rgba(37, 37, 37, 0.5);
}
.stage__status {
  padding: 8px 16px;
  border-radius: 12px;
  background: #fff;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .stage__status {
    line-height: 20px;
  }
}
.stage__status {
  color: #5236AF;
}
@media screen and (max-width: 767px) {
  .stage__status {
    padding: 4px 8px;
  }
}

.features {
  padding: 80px 0 60px;
}
@media screen and (max-width: 767px) {
  .features {
    padding: 40px 0 20px;
  }
}
.features__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.features__tag {
  flex: 0 0 auto;
  margin: 0;
}
.features__heading {
  flex: 0 0 auto;
  text-align: center;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .features__heading {
    line-height: 24px;
  }
}
.features__heading {
  color: #252525;
}
.features__body {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .features__body {
    margin-top: 24px;
  }
}
.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .features__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.features__item {
  display: flex;
  flex-direction: column;
}
.features__card {
  flex: 1 1 auto;
}

.history {
  padding: 80px 0 20px;
}
@media screen and (max-width: 767px) {
  .history {
    padding: 40px 0 20px;
  }
}
.history__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .history__head {
    align-items: flex-start;
  }
}
.history__decor {
  position: absolute;
  left: 53.5%;
  top: 100%;
}
@media screen and (max-width: 1280px) {
  .history__decor {
    display: none;
  }
}
.history__tag {
  flex: 0 0 auto;
  margin: 0;
}
.history__heading {
  flex: 0 0 auto;
  margin-top: 16px;
  text-align: center;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .history__heading {
    line-height: 24px;
  }
}
.history__heading {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .history__heading {
    text-align: left;
  }
}
.history__description {
  flex: 0 0 auto;
  text-align: center;
  max-width: 740px;
  margin-top: 16px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .history__description {
    line-height: 20px;
  }
}
.history__description {
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .history__description {
    margin-top: 12px;
    text-align: left;
  }
}
.history__body {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .history__body {
    margin-top: 8px;
  }
}
.history__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}
@media screen and (max-width: 1280px) {
  .history__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .history__list {
    gap: 28px;
  }
}
.history__item:nth-child(1) {
  transform: rotate(-1.5deg);
}
.history__item:nth-child(2) {
  transform: rotate(1.5deg);
  margin-top: 108px;
}
@media screen and (max-width: 1280px) {
  .history__item:nth-child(2) {
    margin: 0;
  }
}
.history__card {
  min-height: 278px;
}
@media screen and (max-width: 767px) {
  .history__card {
    min-height: 314px;
  }
}

.history-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .history-card {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 24px;
  }
}
.history-card__box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.history-card__heading {
  flex: 0 0 auto;
  margin-bottom: 16px;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .history-card__heading {
    line-height: 20px;
  }
}
.history-card__heading {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .history-card__heading {
    margin-bottom: 8px;
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .history-card__heading {
    line-height: 24px;
  }
}
.history-card__description {
  flex: 0 0 auto;
  margin-bottom: 10px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .history-card__description {
    line-height: 20px;
  }
}
.history-card__description {
  color: #5C5C5C;
}
.history-card__button {
  margin-top: auto;
  align-self: flex-start;
}
.history-card__media {
  flex: 0 1 274px;
}
@media screen and (max-width: 1280px) {
  .history-card__media {
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .history-card__media {
    max-width: 137px;
  }
}

.media-section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .media-section {
    padding: 60px 0 20px;
  }
}
.media-section__boxes {
  z-index: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .media-section__boxes {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.media-section__line {
  position: absolute;
  left: 42%;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .media-section__line {
    display: none;
  }
}
.media-section__line--decor {
  left: 40%;
  bottom: 25px;
  z-index: -1;
}
@media screen and (max-width: 1679px) {
  .media-section__line--decor {
    display: none;
  }
}
.media-section__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.media-section__tag {
  margin: 0;
}
.media-section__heading {
  max-width: 740px;
  margin-top: 20px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .media-section__heading {
    line-height: 24px;
  }
}
.media-section__heading {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .media-section__heading {
    margin-top: 16px;
  }
}
.media-section__text {
  max-width: 740px;
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .media-section__text {
    line-height: 20px;
  }
}
.media-section__text {
  color: #5C5C5C;
}
.media-section__text p {
  margin: 0;
}
.media-section__text p + p {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .media-section__text p + p {
    margin-top: 8px;
  }
}
.media-section__button {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .media-section__button {
    width: 100%;
  }
}
.media-section__image {
  aspect-ratio: 1/0.5617977528;
  object-fit: cover;
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  .media-section__image {
    aspect-ratio: 1/0.5625;
  }
}

.contacts {
  position: relative;
  overflow: hidden;
  padding: 149px 0 0;
}
@media screen and (max-width: 767px) {
  .contacts {
    padding: 40px 0 60px;
  }
}
.contacts__decoration {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
}
@media screen and (max-width: 1280px) {
  .contacts__decoration {
    display: none;
  }
}
.contacts__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts__tag {
  flex: 0 0 auto;
  margin: 0;
}
.contacts__heading {
  flex: 0 0 auto;
  max-width: 740px;
  margin-top: 16px;
  text-align: center;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .contacts__heading {
    line-height: 24px;
  }
}
.contacts__heading {
  color: #252525;
}
.contacts__body {
  max-width: 872px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .contacts__body {
    margin-top: 28px;
  }
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .contacts__list {
    gap: 18px;
  }
}
.contacts__item {
  padding: 32px;
  border-radius: 32px;
  background: #E5EFFF;
}
@media screen and (max-width: 767px) {
  .contacts__item {
    padding: 24px;
    border-radius: 24px;
  }
}
.contacts__item:nth-child(1) {
  transform: rotate(-1.5deg);
}
.contacts__item:nth-child(2) {
  position: relative;
  transform: rotate(1.5deg);
}
.contacts__item:nth-child(2)::before {
  position: absolute;
  top: 100%;
  right: 100%;
  content: "";
  display: block;
  width: 42px;
  height: 32px;
  background: url("../../assets/images/content/contacts-item-lines.svg");
}
@media screen and (max-width: 1280px) {
  .contacts__item:nth-child(2)::before {
    display: none;
  }
}
.contacts__item-heading {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .contacts__item-heading {
    line-height: 24px;
  }
}
.contacts__item-heading {
  color: #252525;
}
.contacts__item-box {
  margin: 16px 0 40px;
}
@media screen and (max-width: 767px) {
  .contacts__item-box {
    margin: 4px 0 20px;
  }
}
.contacts__item-link {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .contacts__item-link {
    line-height: 24px;
  }
}
.contacts__item-link {
  color: #5236AF;
}
@media screen and (max-width: 767px) {
  .contacts__item-link {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .contacts__item-link {
    line-height: 24px;
  }
}
.contacts__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .contacts__links {
    gap: 8px;
    margin-top: 27px;
  }
}
.contacts__link {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .contacts__link {
    width: fit-content;
  }
}
.contacts__link.max {
  min-width: 100px !important;
}
.contacts__link.max img {
  max-width: 21px;
}

.quotes {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .quotes {
    padding: 40px 0;
  }
}
.quotes__tag {
  margin: 0;
}
.quotes__body {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .quotes__body {
    margin-top: 24px;
  }
}
.quotes__item {
  display: flex;
  flex-direction: column-reverse;
}
.quotes__item-text {
  flex: 0 0 auto;
  max-width: 1400px;
  font-size: var(--text-h2-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .quotes__item-text {
    line-height: 24px;
  }
}
.quotes__item-text {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .quotes__item-text {
    min-height: 216px;
  }
}
.quotes__item-author {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.quotes__item-image {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border: 3px solid #5236AF;
  border-radius: 16px;
}
.quotes__item-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quotes__item-position {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .quotes__item-position {
    line-height: 20px;
  }
}
.quotes__item-position {
  display: inline-block;
  color: #5236AF;
}
.quotes__item-name {
  flex: 0 0 auto;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .quotes__item-name {
    line-height: 24px;
  }
}
.quotes__item-name {
  color: #252525;
}
.quotes__buttons {
  justify-content: flex-start;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .quotes__buttons {
    margin-top: 24px;
  }
}

.request-hero {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .request-hero {
    padding-bottom: 40px;
  }
}
.request-hero__title {
  max-width: 1193px;
  margin-top: 36px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .request-hero__title {
    line-height: 24px;
  }
}
.request-hero__title {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .request-hero__title {
    margin-top: 24px;
    font-size: var(--text-h1-size);
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .request-hero__title {
    line-height: 32px;
  }
}
.request-hero__image {
  margin-top: 36px;
  aspect-ratio: 1/0.1422222222;
  border-radius: 32ppx;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .request-hero__image {
    margin-top: 25px;
    aspect-ratio: 1/0.4;
    border-radius: 24px;
  }
}

.request-form {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .request-form {
    padding: 40px 0 60px;
  }
}
.request-form__stages {
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 328px;
}
@media screen and (max-width: 1679px) {
  .request-form__stages {
    position: relative;
    top: 0;
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
    max-width: 890px;
    margin: 0 auto 40px;
  }
}
.request-form__stages::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: #F5F5F5;
}
@media screen and (max-width: 1679px) {
  .request-form__stages::before {
    left: 0;
    right: 0;
    width: auto;
    height: 4px;
    top: 18px;
    bottom: auto;
  }
}
.request-form__line {
  display: none;
}
@media screen and (max-width: 1679px) {
  .request-form__line {
    position: absolute;
    top: 18px;
    display: block;
    height: 4px;
    background: #DBE2FD;
  }
}
.request-form__stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .request-form__stage {
    line-height: 20px;
  }
}
.request-form__stage {
  color: #252525;
}
@media screen and (max-width: 1679px) {
  .request-form__stage {
    gap: 0;
    font-size: 0;
  }
}
.request-form__stage::before {
  flex: 0 0 auto;
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border: 10px solid transparent;
  border-radius: 50%;
  background: #F5F5F5;
}
.request-form__stage--current::before {
  border-color: #5236AF;
  z-index: 2;
}
.request-form__stage--current:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 20px;
  width: 4px;
  height: 100px;
  background: #DBE2FD;
  z-index: 1;
}
@media screen and (max-width: 1679px) {
  .request-form__stage--current:not(:first-child)::after {
    width: 450px;
    height: 4px;
    left: auto;
    right: 0;
  }
}
.request-form__form {
  max-width: 890px;
  margin: 0 auto;
  padding: 80px 120px;
  border-radius: 32px;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .request-form__form {
    padding: 24px;
  }
}
.request-form__heading {
  margin-top: 10px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .request-form__heading {
    line-height: 24px;
  }
}
.request-form__heading {
  color: #252525;
}
.request-form__fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .request-form__fields {
    margin-top: 16px;
  }
}
.request-form__field {
  flex: 0 0 auto;
  width: 100%;
}
.request-form__field--50 {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .request-form__field--50 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .request-form__textarea {
    height: 104px;
  }
}
.request-form__checkboxes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .request-form__checkboxes {
    margin-top: 16px;
  }
}
.request-form__checkbox {
  flex: 0 0 auto;
}
.request-form__holder {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .request-form__holder {
    margin-top: 16px;
  }
}
.request-form__holder .button {
  flex: 0 0 auto;
}
.request-form__button {
  margin-left: auto;
}
.request-form__type {
  position: absolute;
  top: 80px;
  left: 0;
  width: 400px;
}
@media screen and (max-width: 1679px) {
  .request-form__type {
    position: static;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 54px;
    width: auto;
    max-width: 890px;
  }
}

.event-info__type {
  margin-bottom: 12px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .event-info__type {
    margin-bottom: 8px;
  }
}
.event-info__place {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey);
}
.event-info__place .icon {
  width: 24px;
  height: 24px;
  fill: var(--accent-mint);
}
.event-info__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .event-info__name {
    line-height: 24px;
  }
}
.event-info__name {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .event-info__name {
    margin-bottom: 16px;
  }
}

.labelcheck {
  position: relative;
  line-height: 0;
}
.labelcheck__label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.labelcheck__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: none;
  outline: none;
}
.labelcheck__shape {
  flex: 0 0 auto;
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 1.5px solid #5236AF;
  border-radius: 2px;
  transition: var(--trans);
}
.labelcheck__label:hover .labelcheck__shape {
  border-color: #968CD6;
}
.labelcheck__input:checked ~ .labelcheck__shape {
  background: url("../assets/images/content/check.svg") center/16px 16px no-repeat #5236AF;
}
.labelcheck__shape::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  display: block;
  border: 4px solid transparent;
  pointer-events: none;
  border-radius: 2px;
}
.labelcheck__text {
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .labelcheck__text {
    line-height: 20px;
  }
}
.labelcheck__text {
  color: #5C5C5C;
  margin-top: 2px;
}

.map-reviews {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .map-reviews {
    padding-bottom: 32px;
  }
}
.map-reviews__wrapper {
  width: 100%;
  height: 700px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--accent-mint);
  border: 1px solid var(--additional-stroke);
}
@media screen and (max-width: 1280px) {
  .map-reviews__wrapper {
    height: 580px;
  }
}
@media screen and (max-width: 767px) {
  .map-reviews__wrapper {
    height: 422px;
  }
}

.year-result .about {
  padding: 0;
}

.place-of-interest .section__header {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .place-of-interest .section__header {
    margin-bottom: 16px;
  }
}
.place-of-interest__map {
  margin-top: 16px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .place-of-interest__map {
    padding-top: 44px;
  }
}

.section--program-way {
  overflow: hidden;
}

.program-way {
  display: flex;
  gap: 64px;
  position: relative;
  padding-bottom: 16px;
  margin-top: -8px;
}
@media screen and (max-width: 1280px) {
  .program-way {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 0;
    background: url("../assets/images/content/steps-line-4.svg");
    background-repeat: no-repeat;
    background-position-x: 13px;
    background-position-y: 25px;
    margin-top: 0;
    padding-top: 18px;
  }
}
.program-way__img {
  position: absolute;
  z-index: 0;
  top: -12px;
  left: 90px;
}
@media screen and (max-width: 1280px) {
  .program-way__img {
    display: none;
  }
}
.program-way__item {
  flex: 1 1 100%;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .program-way--row {
    gap: 40px;
    background-position-x: 28px;
  }
}
@media screen and (max-width: 1280px) {
  .program-way--row .program-way__item {
    display: flex;
    align-items: center;
  }
  .program-way--row .program-way__item .program-way__title {
    padding: 0;
  }
  .program-way--row .program-way__item .program-way__step {
    padding: 4px 16px 4px 0;
  }
}
@media screen and (max-width: 767px) {
  .program-way--row .program-way__count {
    width: auto;
  }
}
.program-way__step {
  display: inline-block;
  padding: 8px 15px;
  margin-left: -15px;
  background: var(--white);
  border-radius: 16px;
}
@media screen and (max-width: 1280px) {
  .program-way__step {
    padding: 16px 8px 16px 0;
    margin-left: 0;
  }
}
.program-way__count {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--accent-violet);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .program-way__count {
    line-height: 20px;
  }
}
.program-way__count {
  color: var(--white);
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .program-way__count {
    padding: 8px 12px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .program-way__count {
    width: 36px;
    height: 36px;
  }
  .program-way__count span {
    display: none;
  }
}
.program-way__date {
  color: var(--grey);
}
@media screen and (max-width: 1280px) {
  .program-way__date {
    display: inline-block;
  }
}
.program-way__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .program-way__name {
    line-height: 24px;
  }
}
.program-way__name {
  margin-top: 24px;
}
@media screen and (max-width: 1280px) {
  .program-way__name {
    padding-left: 44px;
    margin: 0;
  }
}
.program-way__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .program-way__title {
    line-height: 20px;
  }
}
.program-way__title {
  margin-top: 16px;
}
@media screen and (max-width: 1280px) {
  .program-way__title {
    padding-left: 44px;
    margin: 0;
  }
}
.program-way__desc {
  color: var(--grey);
  font-weight: 500;
  display: inline-block;
  margin-top: 4px;
}

.final-way {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  border-radius: 24px;
}
@media screen and (min-width: 1280px) {
  .final-way {
    min-height: 340px;
  }
}
.final-way {
  background-image: url("../assets/images/content/way_vector.png");
  background-repeat: no-repeat;
  background-color: var(--accent-violet);
}
@media screen and (max-width: 1280px) {
  .final-way {
    padding: 32px;
    gap: 32px;
    background-image: url("../assets/images/content/way_vector_2.png");
    background-size: contain;
    background-position: right;
  }
  .final-way > * {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 767px) {
  .final-way {
    flex-direction: column;
    padding: 24px;
  }
}
.final-way__content {
  max-width: 437px;
}
@media screen and (max-width: 1280px) {
  .final-way__content {
    max-width: none;
  }
}
.final-way__img {
  display: flex;
  width: 519px;
  height: 293px;
  border-radius: 32px;
  overflow: hidden;
}
.final-way__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .final-way__img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 272/153;
  }
}
.final-way__step {
  background: var(--accent-violet);
  padding: 16px;
  border-radius: 16px;
  display: inline-flex;
  margin-left: -16px;
  margin-top: -16px;
}
@media screen and (max-width: 767px) {
  .final-way__step {
    padding: 8px;
    border-radius: 12px;
    margin-left: -8px;
    margin-top: -8px;
  }
}
.final-way__count {
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--white);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .final-way__count {
    line-height: 20px;
  }
}
.final-way__count {
  color: var(--accent-violet);
}
@media screen and (max-width: 767px) {
  .final-way__count {
    padding: 8px 12px;
    border-radius: 12px;
  }
}
.final-way__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .final-way__title {
    line-height: 20px;
  }
}
.final-way__title {
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .final-way__title {
    margin-bottom: 12px;
  }
}
.final-way__text {
  color: var(--white);
  font-weight: 500;
}

@media screen and (max-width: 1280px) {
  .program-way:has(+ .final-way) {
    padding-bottom: 40px !important;
  }
}

.grid-sizer,
.masonry-grid__item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 1280px) {
  .grid-sizer,
  .masonry-grid__item {
    width: calc((100% - 8px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .grid-sizer,
  .masonry-grid__item {
    width: 100%;
  }
}

.masonry-grid__item {
  margin-bottom: 20px;
  border-radius: 32px;
  overflow: hidden;
}
.masonry-grid__item img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1280px) {
  .masonry-grid__item {
    margin-bottom: 8px;
    border-radius: 24px;
  }
}

.glightbox-container .gslide {
  max-width: 90%;
}

.invite-part {
  background-color: var(--additional-grey);
  background-image: url("../assets/images/content/invite-line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 32px;
  padding-top: 80px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 893px;
}
@media screen and (max-width: 1280px) {
  .invite-part {
    padding: 32px;
    height: auto;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .invite-part {
    padding: 24px;
    border-radius: 24px;
    background-position: -5%;
    align-items: flex-start;
  }
}
.invite-part__tag {
  margin-bottom: 16px;
}
.invite-part__title {
  max-width: 506px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .invite-part__title {
    line-height: 24px;
  }
}
.invite-part__title {
  margin-bottom: 65px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .invite-part__title {
    margin-bottom: 58px;
  }
}
@media screen and (max-width: 767px) {
  .invite-part__title {
    text-align: left;
  }
}
.invite-part__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  height: 100%;
}
.invite-part__content a.button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
@media screen and (max-width: 1280px) {
  .invite-part__content {
    gap: 0;
  }
  .invite-part__content a.button {
    width: 100%;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    position: static;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 767px) {
  .invite-part__content {
    gap: 24px;
  }
}
.invite-part__item {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: end;
  position: absolute;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .invite-part__item {
    line-height: 24px;
  }
}
.invite-part__item:nth-child(2n) {
  flex-direction: row-reverse;
  text-align: left;
}
.invite-part__item:nth-child(1) {
  right: 64.5%;
  top: 0px;
  transform: rotate(3deg);
}
.invite-part__item:nth-child(2) {
  left: 64.5%;
  top: 10px;
  transform: rotate(-3deg);
}
.invite-part__item:nth-child(3) {
  right: 73.2%;
  bottom: 210px;
  transform: rotate(3deg);
}
.invite-part__item:nth-child(4) {
  left: 72%;
  bottom: 199px;
  transform: rotate(-3deg);
}
.invite-part__item:nth-child(5) {
  right: 64.5%;
  bottom: 10px;
  transform: rotate(-2deg);
}
.invite-part__item:nth-child(6) {
  left: 64.5%;
  bottom: 15px;
  transform: rotate(2deg);
}
@media screen and (max-width: 1280px) {
  .invite-part__item {
    position: static;
    transform: rotate(0deg) !important;
    width: 40%;
    max-width: none;
  }
  .invite-part__item:nth-child(2n) {
    margin-left: auto;
    justify-content: start;
  }
  .invite-part__item:nth-child(2n+1) {
    justify-content: end;
  }
}
@media screen and (max-width: 767px) {
  .invite-part__item {
    flex-direction: column-reverse;
    align-items: flex-start;
    width: auto;
    text-align: left;
    gap: 8px;
  }
  .invite-part__item br {
    display: none;
  }
  .invite-part__item:nth-child(2n) {
    flex-direction: column-reverse;
    margin: 0;
  }
}
.invite-part__img {
  display: flex;
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
  border-radius: 100%;
  overflow: hidden;
}
.invite-part__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .invite-part__img {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .invite-part__img {
    width: 60px;
    height: 60px;
  }
}

.participation {
  display: flex;
}
.participation--offset {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .participation--offset {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .participation {
    flex-direction: column;
    row-gap: 24px;
  }
}
.participation .tag {
  margin-bottom: 16px;
}
.participation__title {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .participation__title {
    line-height: 24px;
  }
}
.participation__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .participation__title {
    margin-bottom: 12px;
  }
}
.participation__text {
  color: var(--grey);
}
.participation__content {
  max-width: 527px;
  min-width: 400px;
  margin-right: 240px;
}
@media screen and (max-width: 1280px) {
  .participation__content {
    margin-right: 60px;
    max-width: 380px;
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .participation__content {
    margin-right: 0;
    max-width: 500px;
  }
}

.awards-competition {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .awards-competition {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .awards-competition {
    gap: 8px;
  }
}
.awards-competition__card {
  padding: 32px 32px 40px;
  border-radius: 32px;
  min-height: 714px;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
}
.awards-competition__card--grey {
  background: var(--additional-grey);
}
.awards-competition__card--grey .color {
  color: var(--accent-violet);
}
.awards-competition__card--grey .awards-competition__text {
  color: var(--grey);
}
.awards-competition__card--violet {
  background: var(--accent-violet);
}
.awards-competition__card--violet .awards-competition__name {
  color: var(--white);
}
.awards-competition__card--violet .awards-competition__text {
  color: var(--white-80);
}
.awards-competition__card--violet .awards-competition__text ul li::before {
  background: var(--white);
}
.awards-competition__card--light {
  background: #E5EFFF;
  border: 1px solid rgba(189, 206, 234, 0.5019607843);
}
.awards-competition__card--light .color {
  color: #019EA7;
}
.awards-competition__card--light .awards-competition__text ul li::before {
  background: #019EA7;
}
@media screen and (max-width: 1280px) {
  .awards-competition__card {
    min-height: auto;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .awards-competition__card {
    padding: 24px;
    border-radius: 24px;
  }
}
.awards-competition__name {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .awards-competition__name {
    line-height: 20px;
  }
}
.awards-competition__name {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .awards-competition__name {
    margin-bottom: 40px;
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
    line-height: 18px !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .awards-competition__name {
    line-height: 24px;
  }
}
.awards-competition__img {
  width: 320px;
  height: 320px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.awards-competition__img img {
  max-width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .awards-competition__img {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .awards-competition__img {
    position: static;
    margin-left: 0;
    margin-bottom: 16px;
  }
}
.awards-competition__text {
  margin-top: auto;
}
.awards-competition__text ul li {
  padding: 0 0 8px 26px;
  margin: 0;
  position: relative;
  z-index: 1;
}
.awards-competition__text ul li:last-child {
  padding-bottom: 0;
}
.awards-competition__text ul li::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 10px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent-violet);
}
@media screen and (max-width: 1280px) {
  .awards-competition__text ul li {
    padding: 0 0 4px 18px;
  }
  .awards-competition__text ul li::before {
    top: 7px;
    left: 7px;
  }
}
@media screen and (max-width: 1280px) {
  .awards-competition__text {
    max-width: 600px;
  }
}

.event-place {
  display: flex;
  gap: 20px;
}
.event-place > * {
  flex: 0 1 50%;
}
@media screen and (max-width: 1280px) {
  .event-place {
    flex-direction: column;
    gap: 24px;
  }
}
.event-place__preview {
  position: relative;
}
.event-place__preview > picture {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
}
.event-place__preview > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .event-place__preview > picture {
    aspect-ratio: 320/263;
    max-height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .event-place__preview {
    max-height: auto;
  }
  .event-place__preview > picture {
    border-radius: 24px;
  }
}
.event-place__info {
  padding: 32px;
  border-radius: 32px;
  background: var(--white);
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
}
.event-place__info span {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .event-place__info {
    margin-top: 8px;
    padding: 24px;
    border-radius: 24px;
    position: static;
    border-radius: 24px;
    background: var(--additional-grey);
  }
}
.event-place__date {
  margin-top: 16px;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .event-place__date {
    line-height: 20px;
  }
}
.event-place__date {
  color: var(--accent-violet);
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .event-place__date {
    flex-direction: column;
    margin-top: 40px;
    gap: 12px;
  }
}
.event-place__text {
  padding: 32px 32px 0 32px;
}
.event-place__text > * {
  max-width: 623px;
}
@media screen and (max-width: 1280px) {
  .event-place__text {
    padding: 0;
  }
  .event-place__text > * {
    max-width: none;
  }
}
.event-place__name {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .event-place__name {
    margin-bottom: 24px;
  }
}
.event-place__name h2, .event-place__name h3 {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .event-place__name h2, .event-place__name h3 {
    margin-bottom: 8px;
  }
}
.event-place__name p {
  color: var(--grey);
}
.event-place__list li {
  color: var(--grey);
}

.calendar-projects-header {
  flex-direction: column;
}
.calendar-projects-header--offset {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .calendar-projects-header--offset {
    margin-top: 60px;
    margin-bottom: 16px;
  }
}
.calendar-projects-header .link-content {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .calendar-projects-header .link-content {
    flex-shrink: 0;
  }
}
.calendar-projects-header .filters__wrapper {
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .calendar-projects-header .toggle-switch {
    margin-bottom: 8px !important;
  }
}

.calendar-projects {
  width: 100%;
}
.calendar-projects--offset {
  padding-top: 0;
}
.calendar-projects__container {
  display: flex;
  flex-direction: column;
}
.calendar-projects--gap {
  padding: 0;
}
.calendar-projects--gap .calendar-projects__container {
  padding: 0;
}
.calendar-projects__legend {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 12px;
  margin: 0 0 25px 0;
  order: 2;
}
@media screen and (max-width: 767px) {
  .calendar-projects__legend {
    gap: 12px;
    order: 3;
    margin: 25px 0 0;
  }
}
.calendar-projects__legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .calendar-projects__legend-item {
    gap: 7px;
  }
}
.calendar-projects__legend-color {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .calendar-projects__legend-color {
    width: 6px;
    height: 6px;
    border-radius: 2px;
  }
}
.calendar-projects__legend-text {
  font-size: 18px;
  line-height: 24px;
  line-height: 1.5;
  color: var(--grey);
}
@media screen and (max-width: 767px) {
  .calendar-projects__legend-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.calendar-projects__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  order: 1;
}
@media screen and (max-width: 767px) {
  .calendar-projects__navigation {
    margin-bottom: 24px;
  }
}
.calendar-projects__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--additional-stroke);
  border-radius: 16px;
  background-color: #fff;
  cursor: pointer;
  transition: var(--trans, all 0.3s ease);
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .calendar-projects__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}
.calendar-projects__nav-btn .icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent-mint);
  fill: none;
  transition: var(--trans);
}
.calendar-projects__nav-btn .icon {
  width: 20px;
  height: 20px;
}
.calendar-projects__nav-btn:hover, .calendar-projects__nav-btn:active {
  border-color: var(--accent-violet);
}
.calendar-projects__nav-btn:hover .icon, .calendar-projects__nav-btn:active .icon {
  stroke: var(--accent-violet);
}
.calendar-projects__month-year {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 500;
  color: var(--grey-black);
  width: 400px;
}
@media screen and (max-width: 767px) {
  .calendar-projects__month-year {
    font-size: 20px;
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  .calendar-projects__month-year-title {
    display: none;
  }
}
.calendar-projects__month {
  color: var(--accent-violet);
  text-transform: lowercase;
}
@media screen and (max-width: 767px) {
  .calendar-projects__month {
    text-transform: capitalize;
  }
}
.calendar-projects__today-btn {
  padding: 16px 22px;
  border: 1px solid var(--additional-stroke);
  border-radius: 16px;
  background-color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-black);
  cursor: pointer;
  white-space: nowrap;
  margin-left: auto;
  transition: var(--trans, all 0.3s ease);
}
@media screen and (max-width: 767px) {
  .calendar-projects__today-btn {
    padding: 11px 16px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
  }
}
.calendar-projects__today-btn:hover, .calendar-projects__today-btn:active {
  border-color: var(--accent-violet);
  color: var(--accent-violet);
}
.calendar-projects__calendar {
  width: 100%;
  order: 2;
}
.calendar-projects__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 8px;
}
.calendar-projects__weekday {
  padding: 0 12px;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--grey-black);
}
@media screen and (max-width: 767px) {
  .calendar-projects__weekday {
    padding: 0 16px;
    font-size: 14px;
    line-height: 20px;
  }
}
.calendar-projects__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .calendar-projects__days {
    grid-template-columns: repeat(7, 1fr);
  }
}
.calendar-projects__day {
  height: auto;
  aspect-ratio: 1/1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background-color: var(--additional-grey);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--trans, all 0.3s ease);
  box-sizing: border-box;
  border: 2px solid transparent;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: visible;
  border: 4px solid #FFFFFF;
  border-radius: 32px;
}
@media screen and (max-width: 1280px) {
  .calendar-projects__day {
    border-radius: 24px;
  }
}
.calendar-projects__day:nth-child(7n) {
  border-right: 2px solid transparent;
}
@media screen and (min-width: 768px) {
  .calendar-projects__day:nth-child(7n) .calendar-projects__event--start,
  .calendar-projects__day:nth-child(7n) .calendar-projects__event--middle,
  .calendar-projects__day:nth-child(7n) .calendar-projects__event--end {
    margin-right: -21px;
  }
}
@media screen and (min-width: 768px) {
  .calendar-projects__day:first-child .calendar-projects__event--middle,
  .calendar-projects__day:first-child .calendar-projects__event--end {
    margin-left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .calendar-projects__day {
    height: auto;
    aspect-ratio: 1;
    justify-content: space-between;
    overflow: visible;
    border-radius: 8px;
    padding: 4px;
    border-width: 3.5px;
  }
}
.calendar-projects__day:not(.calendar-projects__day--other-month) {
  cursor: pointer;
}
.calendar-projects__day:not(.calendar-projects__day--other-month):hover:not(:has(.calendar-projects__event:hover)) {
  background-color: #DBE2FD;
}
.calendar-projects__day--other-month {
  opacity: 0.3;
}
.calendar-projects__day--today {
  border-color: #5236AF;
}
.calendar-projects__day-number {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: var(--grey-black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .calendar-projects__day-number {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
    margin-top: calc(50% - 9px);
    justify-content: center;
  }
}
.calendar-projects__day--today .calendar-projects__day-number {
  color: #5236AF;
}
.calendar-projects__day:not(.calendar-projects__day--other-month):hover .calendar-projects__day-number {
  color: var(--accent-violet);
}
.calendar-projects__day-today-label {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .calendar-projects__day-today-label {
    line-height: 24px;
  }
}
.calendar-projects__day-today-label {
  font-weight: 500;
  color: #5236AF;
  padding-left: 4px;
}
.calendar-projects__events {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .calendar-projects__events {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    margin-top: auto;
  }
}
.calendar-projects__event {
  height: 41px;
  min-height: 41px;
  padding: 4px 16px;
  margin: 0 -16px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: var(--event-bg-color, transparent);
}
.calendar-projects__event:hover, .calendar-projects__event--hover {
  background-color: var(--event-hover-bg-color) !important;
}
.calendar-projects__event:hover .calendar-projects__event-name, .calendar-projects__event--hover .calendar-projects__event-name {
  color: var(--event-hover-text-color) !important;
}
@media screen and (max-width: 767px) {
  .calendar-projects__event {
    width: 4px;
    height: 4px;
    margin: 0;
    min-width: 4px;
    min-height: 4px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.calendar-projects__event--start {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: -23px;
  margin-left: -16px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .calendar-projects__event--start {
    border-radius: 50%;
    margin: 0;
  }
}
.calendar-projects__event--middle {
  border-radius: 0;
  margin-left: -25px;
  margin-right: -25px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .calendar-projects__event--middle {
    border-radius: 50%;
    margin: 0;
  }
}
.calendar-projects__event--end {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -25px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .calendar-projects__event--end {
    border-radius: 50%;
    margin: 0;
  }
}
.calendar-projects__event--single {
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .calendar-projects__event--single {
    border-radius: 50%;
  }
}
.calendar-projects__event-name {
  font-weight: 500;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: var(--event-text-color);
  transition: var(--trans, all 0.3s ease);
}
@media screen and (max-width: 767px) {
  .calendar-projects__event-name {
    display: none;
  }
}
.calendar-projects__more-btn {
  margin-top: 4px;
  padding: 4px 8px;
  border: none;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  background: transparent;
  transition: var(--trans, all 0.3s ease);
  text-align: left;
  color: var(--accent-violet);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .calendar-projects__more-btn {
    display: none;
  }
}
.calendar-projects__week {
  display: contents;
}
.calendar-projects__week--hidden {
  display: none;
}

.modal--calendar-projects .modal__container {
  max-width: 1410px;
  overflow: hidden;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .modal--calendar-projects .modal__container {
    margin-top: 24px;
  }
}
.modal--calendar-projects .modal__body {
  overflow: visible;
}

.calendar-projects-modal {
  overflow: visible;
}
.calendar-projects-modal__body {
  max-height: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-right: 28px;
  margin-right: -28px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .calendar-projects-modal__body {
    max-height: 77vh;
  }
}
.calendar-projects-modal__body {
  overflow-y: auto;
}
.calendar-projects-modal__body::-webkit-scrollbar {
  width: 6px;
}
.calendar-projects-modal__body::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 4px;
}
.calendar-projects-modal__body::-webkit-scrollbar-track {
  background: transparent;
}
.calendar-projects-modal__body {
  scrollbar-width: thin;
  scrollbar-color: #D1D5DB transparent;
}
@media screen and (max-width: 767px) {
  .calendar-projects-modal__body {
    grid-template-columns: 1fr;
  }
}
.calendar-projects-modal__body .card-base:hover {
  transform: none;
}

.toggle-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .toggle-switch {
    justify-content: space-between;
  }
}
.toggle-switch--bordered {
  border: 1px solid var(--additional-stroke);
  border-radius: 16px;
  padding: 12px 24px;
  transition: all 150ms ease;
}
@media screen and (max-width: 1280px) {
  .toggle-switch--bordered {
    padding: 11px 15px;
    border-radius: 12px;
  }
}
.toggle-switch--bordered:has(.toggle-switch__input:checked) {
  background: var(--accent-violet);
  border-color: var(--accent-violet);
}
.toggle-switch--bordered:has(.toggle-switch__input:checked) .toggle-switch__slider {
  background-color: var(--accent-violet);
  border-color: var(--white);
}
.toggle-switch--bordered:has(.toggle-switch__input:checked) .toggle-switch__slider::before {
  background-color: #FFF;
}
.toggle-switch--bordered:has(.toggle-switch__input:checked) .toggle-switch__label {
  color: var(--white);
}
.toggle-switch__label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-black);
}
@media screen and (max-width: 1280px) {
  .toggle-switch__label {
    font-size: 14px;
    line-height: 1.4;
  }
}
.toggle-switch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch__input:checked ~ .toggle-switch__slider::before {
  background: var(--accent-violet);
  left: calc(100% - 20px - 2px);
}
@media screen and (max-width: 1280px) {
  .toggle-switch__input:checked ~ .toggle-switch__slider::before {
    left: calc(100% - 16px - 2px);
  }
}
.toggle-switch__slider {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--additional-stroke);
  border-radius: 12px;
  transition: all 150ms ease;
}
@media screen and (max-width: 1280px) {
  .toggle-switch__slider {
    width: 36px;
    height: 20px;
    border-radius: 10px;
  }
}
.toggle-switch__slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-middle-violet);
  border-radius: 50%;
  transition: all 150ms ease;
}
@media screen and (max-width: 1280px) {
  .toggle-switch__slider::before {
    width: 16px;
    height: 16px;
  }
}

.points {
  padding: 80px 0;
  background: #5236AF;
}
@media screen and (max-width: 767px) {
  .points {
    padding: 60px 0;
  }
}
.points__boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .points__boxes {
    flex-direction: column;
    gap: 0;
  }
}
.points__box {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .points__box {
    display: contents;
  }
}
.points__box:nth-child(1) {
  max-width: 820px;
}
.points__box:nth-child(2) {
  max-width: 890px;
}
.points__content {
  display: flex;
  flex-direction: column;
}
.points__heading {
  order: 2;
  flex: 0 0 auto;
  margin-top: 16px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .points__heading {
    line-height: 24px;
  }
}
.points__heading {
  color: #FFF;
}
.points__description {
  order: 3;
  flex: 0 0 auto;
  margin: 16px 0 0;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .points__description {
    line-height: 20px;
  }
}
.points__description {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .points__description {
    margin-top: 12px;
  }
}
.points__tag {
  order: 1;
  flex: 0 0 auto;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .points__tag {
    line-height: 20px;
  }
}
.points__tag {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .points__tag {
    padding: 4px 8px;
  }
}
.points__picture {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .points__picture {
    justify-content: flex-end;
    padding-left: 50px;
    max-height: 215px;
  }
}
.points__image {
  flex: 0 0 auto;
}
.points__information {
  position: relative;
  max-width: 568px;
  min-height: 32px;
  padding-left: 48px;
  margin-top: 16px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .points__information {
    line-height: 24px;
  }
}
.points__information {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .points__information {
    order: 2;
    padding-left: 32px;
    margin-top: 40px;
    min-height: 24px;
  }
}
.points__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  fill: #FFF;
}
@media screen and (max-width: 767px) {
  .points__icon {
    width: 24px;
    height: 24px;
  }
}
.points__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .points__list {
    margin-top: 20px;
    gap: 20px;
  }
}
.points__item {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .points__item {
    position: relative;
    padding: 16px;
    border-radius: 24px;
  }
}
.points__item-holder {
  flex: 1 1 auto;
}
.points__item-heading {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .points__item-heading {
    line-height: 24px;
  }
}
.points__item-heading {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .points__item-heading {
    padding-right: 72px;
  }
}
.points__item-description {
  max-width: 600px;
  margin-top: 16px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .points__item-description {
    line-height: 20px;
  }
}
.points__item-description {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .points__item-description {
    margin-top: 20px;
  }
}
.points__item-picture {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 767px) {
  .points__item-picture {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}
.points__item-image {
  flex: 0 0 auto;
}

.guides-banner__breadcrumbs {
  margin: 0;
}
.guides-banner__box {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .guides-banner__box {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
  }
}
.guides-banner__title {
  flex: 1 1 auto;
  font-size: var(--text-h1-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .guides-banner__title {
    line-height: 32px;
  }
}
.guides-banner__title {
  color: #252525;
}
.guides-banner__description {
  flex: 0 1 auto;
  max-width: 587px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .guides-banner__description {
    line-height: 20px;
  }
}
.guides-banner__description {
  color: #5C5C5C;
}
.guides-banner__picture {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  border-radius: 32px;
  height: 256px;
}
@media screen and (max-width: 767px) {
  .guides-banner__picture {
    height: auto;
    aspect-ratio: 1/0.4;
    margin-top: 25px;
    border-radius: 24px;
  }
}
.guides-banner__shapes {
  position: absolute;
  right: 0;
  bottom: 0;
}
.guides-banner__contacts {
  position: relative;
  z-index: 1;
  max-width: 204px;
  height: 100%;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .guides-banner__contacts {
    position: absolute;
    right: 16px;
    bottom: 16px;
    max-width: none;
    height: auto;
    padding: 0;
  }
}
.guides-banner__contact {
  height: 100%;
  padding: 12px;
  border-radius: 24px;
  background: #FFF;
  display: block;
}
@media screen and (max-width: 767px) {
  .guides-banner__contact {
    padding: 4px 16px;
    height: auto;
    border-radius: 12px;
  }
}
.guides-banner__qr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .guides-banner__qr {
    display: none;
  }
}
.guides-banner__qr img {
  flex: 1 1 auto;
  max-height: 165px;
}
.guides-banner__link {
  margin-top: 12px;
  text-align: center;
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1280px) {
  .guides-banner__link {
    line-height: 14px;
  }
}
.guides-banner__link {
  color: #5236AF;
}
@media screen and (max-width: 767px) {
  .guides-banner__link {
    margin: 0;
  }
}

.information {
  display: grid;
  grid-template-columns: 435px 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  padding: 80px 0 16px;
}
@media screen and (max-width: 1740px) {
  .information {
    grid-template-columns: 435px 1fr;
  }
}
@media screen and (max-width: 1280px) {
  .information {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .information {
    gap: 8px;
    padding: 40px 0 20px;
  }
}
.information__card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  .information__card {
    padding: 24px;
  }
}
.information__card--main {
  position: relative;
  grid-row: span 2;
  background: #5236AF;
}
@media screen and (max-width: 1740px) {
  .information__card--main {
    grid-row: span 3;
  }
}
.information__card--wide, .information__card--short {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 276px;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .information__card--wide, .information__card--short {
    height: auto;
  }
}
.information__card--wide {
  grid-column: span 2;
}
@media screen and (max-width: 1740px) {
  .information__card--wide {
    grid-column: span 1;
  }
}
.information__card-heading {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .information__card-heading {
    line-height: 24px;
  }
}
.information__card-heading--white {
  color: #FFFFFF;
}
.information__card-heading--black {
  color: #252525;
}
.information__card-image {
  margin: 66px 0 0 102px;
}
@media screen and (max-width: 767px) {
  .information__card-image {
    position: absolute;
    right: -48px;
    bottom: -28px;
    width: 180px;
    height: 180px;
    margin: 0;
  }
}
.information__card-numbers {
  margin-top: 96px;
  font-size: var(--text-h1-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .information__card-numbers {
    line-height: 32px;
  }
}
.information__card-numbers {
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .information__card-numbers {
    margin-top: 78px;
  }
}
.information__card-text {
  margin-top: 4px;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .information__card-text {
    line-height: 20px;
  }
}
.information__card-text {
  color: rgba(255, 255, 255, 0.8);
}
.information__card-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1800px) {
  .information__card-box {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .information__card-box {
    margin-top: 40px;
    gap: 16px;
  }
}
.information__card-headline {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .information__card-headline {
    line-height: 24px;
  }
}
.information__card-headline {
  color: #5236AF;
}
.information__card-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.information__card-list--wide {
  align-items: center;
  gap: 24px;
  margin: 0 178px 34px 0;
}
@media screen and (max-width: 1800px) {
  .information__card-list--wide {
    margin: 0;
  }
}
@media screen and (max-width: 1800px) {
  .information__card-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .information__card-list {
    gap: 8px;
  }
}
.information__card-item {
  display: flex;
  gap: 4px;
  text-align: right;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .information__card-item {
    line-height: 24px;
  }
}
.information__card-item {
  color: #5C5C5C;
}
.information__card-item b {
  font-weight: 500;
  color: #252525;
}

.touch {
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 1280px) {
  .touch {
    padding-top: 40px;
  }
}
.touch__line {
  position: absolute;
  left: 53%;
  top: 0;
}
@media screen and (max-width: 1280px) {
  .touch__line {
    display: none;
  }
}
.touch__list {
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 1280px) {
  .touch__list {
    gap: 28px;
  }
}
@media screen and (max-width: 767px) {
  .touch__list {
    flex-direction: column;
    gap: 20px;
  }
}
.touch__item {
  flex: 0 0 auto;
  width: calc(50% - 28px);
}
@media screen and (max-width: 1280px) {
  .touch__item {
    width: calc(50% - 14px);
  }
}
@media screen and (max-width: 767px) {
  .touch__item {
    width: 100%;
  }
}
.touch__item:first-child {
  transform: rotate(-1.5deg);
}
.touch__item:last-child {
  margin-top: 108px;
  transform: rotate(1.5deg);
}
@media screen and (max-width: 767px) {
  .touch__item:last-child {
    margin: 0;
  }
}
.touch__card {
  position: relative;
  padding: 78px 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 1280px) {
  .touch__card {
    padding: 24px;
  }
}
.touch__card-image {
  position: absolute;
  right: 11%;
  bottom: 9%;
  width: 23%;
  max-height: 100%;
}
@media screen and (max-width: 1679px) {
  .touch__card-image {
    right: 8%;
  }
}
@media screen and (max-width: 767px) {
  .touch__card-image {
    right: 0;
    bottom: 23%;
    width: 28%;
  }
}
.touch__card-heading {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .touch__card-heading {
    line-height: 20px;
  }
}
.touch__card-heading {
  color: #252525;
}
@media screen and (max-width: 1280px) {
  .touch__card-heading {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
    font-weight: 500;
  }
}
@media screen and (max-width: 1280px) and (max-width: 1280px) {
  .touch__card-heading {
    line-height: 24px;
  }
}
.touch__card-holder {
  margin-top: 24px;
}
@media screen and (max-width: 1280px) {
  .touch__card-holder {
    margin-top: 8px;
  }
}
.touch__card-link {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .touch__card-link {
    line-height: 20px;
  }
}
.touch__card-link {
  color: #5236AF;
}

.error__header {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .error__header {
    gap: 24px;
    margin-bottom: 60px;
  }
}
.error__breadcrumbs {
  flex: 0 0 auto;
  margin: 0;
}
.error__title {
  flex: 0 0 auto;
  font-size: var(--text-h1-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .error__title {
    line-height: 32px;
  }
}
.error__title {
  color: #252525;
}
.error__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .error__box {
    gap: 20px;
  }
}
.error__image {
  flex: 0 0 auto;
}
.error__text {
  flex: 0 0 auto;
  max-width: 536px;
  text-align: center;
  color: #252525;
}
.error__heading {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .error__heading {
    line-height: 20px;
  }
}
.error__description {
  margin-top: 12px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .error__description {
    line-height: 20px;
  }
}

.map__head {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .map__head {
    gap: 0;
    margin-bottom: 40px;
  }
}
.map__breadcrumbds {
  flex: 0 0 auto;
  margin: 0;
}
.map__title {
  flex: 0 0 auto;
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .map__title {
    line-height: 24px;
  }
}
.map__title {
  color: #252525;
}
.map__body {
  max-width: 890px;
  margin: 0 auto;
}
.map__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .map__list {
    gap: 16px;
  }
}
.map__item {
  flex: 0 0 auto;
}
.map__link {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .map__link {
    line-height: 24px;
  }
}
.map__link {
  color: #252525;
}
.map__sub-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding-left: 20px;
}
.map__sub-item {
  flex: 0 0 auto;
}
.map__sub-link {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .map__sub-link {
    line-height: 20px;
  }
}
.map__sub-link {
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .map__sub-link {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .map__sub-link {
    line-height: 24px;
  }
}
.map__sub-link:hover {
  color: var(--accent-violet);
  transition: var(--trans);
}
.map__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .map__contacts {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.map__contact {
  padding: 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .map__contact {
    padding: 24px;
    border-radius: 24px;
  }
}
.map__contact-heading {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .map__contact-heading {
    line-height: 20px;
  }
}
.map__contact-heading {
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .map__contact-heading {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .map__contact-heading {
    line-height: 24px;
  }
}
.map__contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.map__contact-item {
  flex: 0 0 auto;
}
.map__contact-link {
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .map__contact-link {
    line-height: 20px;
  }
}
.map__contact-link {
  color: #5236AF;
}
@media screen and (max-width: 767px) {
  .map__contact-link {
    font-size: var(--text-h5-size);
    font-weight: 500;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1280px) {
  .map__contact-link {
    line-height: 24px;
  }
}
.map__contact-link:hover {
  color: var(--accent-middle-violet);
  transition: var(--trans);
}

.text-page__head {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .text-page__head {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.text-page__breadcrumbs {
  flex: 0 0 auto;
  margin: 0;
}
.text-page__title {
  flex: 0 0 auto;
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .text-page__title {
    line-height: 24px;
  }
}
.text-page__title {
  color: #252525;
}
.text-page__body {
  max-width: 890px;
  margin: 0 auto;
}
.text-page h2 {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .text-page h2 {
    line-height: 24px;
  }
}
.text-page h2 {
  color: #252525;
}
.text-page h2:not(:first-child) {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .text-page h2:not(:first-child) {
    margin-top: 40px;
  }
}
.text-page h3 {
  margin-top: 54px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .text-page h3 {
    line-height: 24px;
  }
}
.text-page h3 {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .text-page h3 {
    margin-top: 40px;
  }
}
.text-page h3 + p {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .text-page h3 + p {
    margin-top: 16px;
  }
}
.text-page p {
  margin: 16px 0 0;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .text-page p {
    line-height: 20px;
  }
}
.text-page p {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .text-page p {
    margin-top: 8px;
  }
}
.text-page .table {
  position: relative;
  padding-right: 20px;
  margin-right: -20px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1280px) {
  .text-page .table {
    overflow: auto;
  }
}
.text-page table {
  min-width: 100%;
  margin-top: 24px;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .text-page table {
    margin-top: 16px;
  }
}
.text-page table th,
.text-page table td {
  padding: 16px 24px 16px 0;
  vertical-align: top;
  text-align: left;
  color: #252525;
}
.text-page table th:first-child,
.text-page table td:first-child {
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .text-page table th:first-child,
  .text-page table td:first-child {
    padding-left: 0;
  }
}
.text-page table th:last-child,
.text-page table td:last-child {
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .text-page table th,
  .text-page table td {
    width: 240px;
  }
}
.text-page table th {
  background: #DBE2FD;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .text-page table th {
    line-height: 20px;
  }
}
.text-page table th:first-child {
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 767px) {
  .text-page table th:first-child {
    border-radius: 0;
  }
}
.text-page table th:last-child {
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 767px) {
  .text-page table th:last-child {
    border-radius: 0;
  }
}
.text-page table td {
  border-bottom: 1px solid #CDCDCD;
}

.select {
  position: relative;
}
.select .choices {
  margin: 0;
}
.select .choices::after {
  width: 16px !important;
  height: 16px !important;
  border: 0 !important;
  margin-top: -8px !important;
  background: url("../../assets/images/content/selecct-arrow.svg") center/contain no-repeat;
  transition: var(--trans);
  right: 23.5px !important;
}
@media screen and (max-width: 1280px) {
  .select .choices::after {
    right: 13.5px !important;
  }
}
.select .choices.is-open::after {
  transform: rotate(-180deg);
}
.select .choices .choices__inner {
  height: 56px;
  padding: 19px 67px 9px 23px !important;
  border: 1px solid #CDCDCD;
  border-radius: 16px !important;
  background: #FFF;
}
@media screen and (max-width: 1280px) {
  .select .choices .choices__inner {
    border-radius: 12px !important;
    height: auto;
    padding: 14px 12px 1px 11px !important;
  }
}
.select .choices .choices__list.choices__list--single {
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .select .choices .choices__list.choices__list--single {
    line-height: 20px;
  }
}
.select .choices .choices__list.choices__list--single {
  color: #252525;
  padding: 0;
}
.select .choices .choices__list.choices__list--dropdown {
  border-radius: 16px !important;
  z-index: 5;
}
.select .choices .choices__list.choices__list--dropdown .choices__item[data-value=""] {
  display: none;
}
.select__placeholder {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px 24px;
  line-height: 10px;
  font-size: 10px;
  color: var(--grey-50);
  transition: var(--trans);
  max-width: 80%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1280px) {
  .select__placeholder {
    padding: 7px 16px;
  }
}
.choices:has([aria-selected].choices__placeholder.choices__item--selectable) ~ .select__placeholder {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .choices:has([aria-selected].choices__placeholder.choices__item--selectable) ~ .select__placeholder {
    line-height: 20px;
  }
}
.choices:has([aria-selected].choices__placeholder.choices__item--selectable) ~ .select__placeholder {
  color: rgba(37, 37, 37, 0.5);
}
@media screen and (max-width: 1280px) {
  .choices:has([aria-selected].choices__placeholder.choices__item--selectable) ~ .select__placeholder {
    left: 17px;
  }
}
.choices.is-focused ~ .select__placeholder {
  left: 0 !important;
  top: 0 !important;
  padding: 12px 24px !important;
  line-height: 10px !important;
  font-size: 10px !important;
  color: var(--grey-50) !important;
  transition: var(--trans) !important;
  transform: none !important;
}
@media screen and (max-width: 1280px) {
  .choices.is-focused ~ .select__placeholder {
    padding: 7px 16px !important;
  }
}
.select--active .select__placeholder {
  left: 0 !important;
  top: 0 !important;
  padding: 12px 24px !important;
  line-height: 10px !important;
  font-size: 10px !important;
  color: var(--grey-50) !important;
  transition: var(--trans) !important;
  transform: none !important;
}
@media screen and (max-width: 1280px) {
  .select--active .select__placeholder {
    padding: 7px 16px !important;
  }
}
.select .choices.is-focused {
  border-radius: 16px;
  box-shadow: 0px 0px 0px 4px rgb(205, 205, 205);
  border-color: var(--additional-stroke);
}
.form-save .select {
  pointer-events: none;
}
.form-save.ready-post .select {
  pointer-events: all;
}

.select--multiple .choices .choices__item {
  margin-top: 10px;
}
.select--multiple .choices__list--multiple .choices__item--selectable {
  background: var(--accent-violet);
}
.select--multiple .select__placeholder {
  pointer-events: none;
  position: absolute;
  line-height: 10px;
  font-size: 10px;
  transition: var(--trans);
  max-width: 80%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .select--multiple .select__placeholder {
    line-height: 20px;
  }
}
.select--multiple .select__placeholder {
  color: rgba(37, 37, 37, 0.5);
}
@media screen and (max-width: 1280px) {
  .select--multiple .select__placeholder {
    left: 17px;
  }
}

.select--active.select--multiple .choices__inner {
  height: auto;
}

.base-section {
  padding: 80px 0 16px;
}
@media screen and (max-width: 767px) {
  .base-section {
    padding: 40px 0 60px;
  }
}
.base-section__heading {
  margin: 0;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .base-section__heading {
    line-height: 24px;
  }
}
.base-section__heading {
  color: #252525;
}
.base-section__tabs {
  position: sticky;
  top: 124px;
  z-index: 2;
  display: flex;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .base-section__tabs {
    top: 72px;
    margin-top: 24px;
  }
}
.base-section__tabs-box {
  position: relative;
  overflow: auto;
  display: flex;
  padding: 12px 8px;
  border: 1px solid #CDCDCD;
  border-radius: 16px;
  background: #FFF;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .base-section__tabs-box {
    padding: 8px;
  }
}
.base-section__tabs-box::-webkit-scrollbar {
  display: none;
}
.base-section__tabs-button {
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 24px;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  background: none;
  cursor: pointer;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .base-section__tabs-button {
    line-height: 20px;
  }
}
.base-section__tabs-button {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .base-section__tabs-button {
    padding: 8px 16px;
  }
}
.base-section__tabs-button--active {
  background: #DBE2FD;
  color: #5236AF;
}
.base-section__content {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .base-section__content {
    margin-top: 16px;
  }
}
.base-section__accordions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .base-section__accordions {
    gap: 8px;
  }
}
.base-section__accordion {
  flex: 0 0 auto;
}

.media {
  padding: 80px 0 40px;
}
.media__swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media screen and (max-width: 1280px) {
  .media__swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .media__swiper-wrapper {
    display: flex !important;
    gap: 0;
  }
}
.media__swiper-slide {
  box-sizing: border-box;
}
.media__swiper-pagination {
  margin-top: 8px;
}

.media-card {
  display: block;
}
.media-card__picture {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 32px;
  aspect-ratio: 1/0.5614334471;
}
@media screen and (max-width: 767px) {
  .media-card__picture {
    border-radius: 24px;
    aspect-ratio: 1/0.5625;
  }
}
.media-card__image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.media-card:hover .media-card__image {
  transform: scale(1.1);
}
.media-card__info {
  position: relative;
  margin-top: 24px;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .media-card__info {
    margin-top: 12px;
  }
}
.media-card__heading {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .media-card__heading {
    line-height: 24px;
  }
}
.media-card__heading {
  color: #252525;
}
.media-card__description {
  margin-top: 12px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .media-card__description {
    line-height: 20px;
  }
}
.media-card__description {
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .media-card__description {
    margin-top: 8px;
  }
}
.media-card__duration {
  position: absolute;
  right: 0;
  top: 0;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .media-card__duration {
    line-height: 20px;
  }
}
.media-card__duration {
  color: #252525;
}
.media-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.aspects {
  padding: 80px 0;
  background: #5236AF;
}
@media screen and (max-width: 767px) {
  .aspects {
    padding: 60px 0;
  }
}
.aspects__boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .aspects__boxes {
    flex-direction: column;
    gap: 0;
  }
}
.aspects__box {
  width: 100%;
}
.aspects__box:nth-child(1) {
  max-width: 820px;
}
.aspects__box:nth-child(2) {
  max-width: 896px;
}
@media screen and (max-width: 767px) {
  .aspects__box--text {
    display: contents;
  }
}
.aspects__content {
  display: flex;
  flex-direction: column;
}
.aspects__heading {
  order: 2;
  flex: 0 0 auto;
  margin-top: 16px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .aspects__heading {
    line-height: 24px;
  }
}
.aspects__heading {
  color: #FFF;
}
.aspects__description {
  order: 3;
  flex: 0 0 auto;
  max-width: 490px;
  margin: 16px 0 0;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .aspects__description {
    line-height: 20px;
  }
}
.aspects__description {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .aspects__description {
    margin-top: 12px;
  }
}
.aspects__tag {
  order: 1;
  flex: 0 0 auto;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .aspects__tag {
    line-height: 20px;
  }
}
.aspects__tag {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .aspects__tag {
    padding: 4px 8px;
  }
}
.aspects__image {
  flex: 0 0 auto;
  max-height: 580px;
}
@media screen and (max-width: 767px) {
  .aspects__image {
    max-height: 252px;
  }
}
.aspects__button {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .aspects__button {
    order: 1;
    margin-top: 40px;
  }
}
.aspects__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aspects__item {
  flex: 0 0 auto;
  display: flex;
  gap: 40px;
  min-height: 284px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .aspects__item {
    padding: 16px;
    min-height: 0;
  }
}
.aspects__item-holder {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.aspects__item-heading {
  max-width: 462px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .aspects__item-heading {
    line-height: 24px;
  }
}
.aspects__item-heading {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .aspects__item-heading {
    padding-right: 32px;
  }
}
.aspects__item-description {
  max-width: 600px;
  margin-top: 16px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .aspects__item-description {
    line-height: 20px;
  }
}
.aspects__item-description {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .aspects__item-description {
    margin-top: 12px;
  }
}
.aspects__item-picture {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 767px) {
  .aspects__item-picture {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}
.aspects__item-image {
  flex: 0 0 auto;
}

.add-file {
  width: 100%;
}
.add-file__name {
  color: var(--grey-50);
  font-weight: 500;
  margin-bottom: 16px;
}
.add-file__content {
  border-radius: 24px;
  padding: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add-file__title {
  color: var(--grey);
  font-weight: 500;
  margin-bottom: 4px;
}
.add-file__type {
  color: rgba(16, 16, 16, 0.6);
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1280px) {
  .add-file__type {
    line-height: 14px;
  }
}
.add-file__type {
  margin-bottom: 24px;
}
.add-file__list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-file {
  display: block;
  background: var(--white);
  border-radius: 24px;
  padding: 16px 64px 16px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .item-file {
    border-radius: 16px;
  }
}
.item-file .icon--file {
  width: 16px;
  height: 19px;
  position: absolute;
  top: 16px;
  left: 16px;
}
.item-file__name {
  margin-bottom: 4px;
}
.item-file__load {
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1280px) {
  .item-file__load {
    line-height: 14px;
  }
}
.item-file__load {
  color: rgba(16, 16, 16, 0.6);
}
.item-file__delet {
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.item-file__delet .icon {
  width: 24px;
  height: 24px;
  stroke: var(--grey-black);
  transition: var(--trans);
}
.item-file__delet:hover .icon {
  stroke: var(--accent-violet);
}

.add-input {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--grey);
  cursor: pointer;
  transition: var(--trans);
}
@media screen and (max-width: 767px) {
  .add-input {
    border-radius: 16px;
  }
}
.add-input .icon {
  width: 24px;
  height: 24px;
  stroke: var(--grey);
  transition: var(--trans);
}
.add-input:hover {
  color: var(--grey-black);
}
.add-input:hover .icon {
  stroke: var(--grey-black);
}

.success-banner {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 120px;
  border-radius: 32px;
  background: var(--additional-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .success-banner {
    padding: 32px;
  }
}
.success-banner img {
  display: block;
  width: 260px;
  height: 260px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .success-banner img {
    width: 200px;
    height: 200px;
    margin-bottom: 24px;
  }
}
.success-banner__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .success-banner__title {
    line-height: 20px;
  }
}
.success-banner__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .success-banner__title {
    margin-bottom: 12px;
  }
}
.success-banner__text {
  color: var(--grey);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .success-banner__text {
    margin-bottom: 24px;
  }
}

.lk-window {
  display: flex;
  gap: 20px;
  height: 647px;
}
@media screen and (max-width: 1280px) {
  .lk-window {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .lk-window {
    flex-direction: column;
    height: auto;
  }
}
.lk-window__col {
  padding: 32px;
  border-radius: 32px;
  background-color: var(--additional-grey);
  transition: var(--trans);
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lk-window__col:hover {
  background-color: rgba(37, 37, 37, 0.1019607843);
}
.lk-window__col--person {
  width: 50%;
  flex: 0 0 auto;
  background-color: #E5EFFF;
  border: 1px solid rgba(189, 206, 234, 0.5019607843);
  background-image: url("../assets/images/icons/lk-line.svg");
  background-repeat: no-repeat;
}
.lk-window__col--person:hover {
  background-color: #C8DDFF;
}
@media screen and (max-width: 1280px) {
  .lk-window__col--person {
    flex: 1 1 auto;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lk-window__col--person {
    height: 292px;
    flex: 0 0 auto;
    background-size: 30%;
  }
}
.lk-window__col:nth-child(3) .lk-window__img {
  margin-bottom: 77px;
}
@media screen and (max-width: 767px) {
  .lk-window__col:nth-child(3) .lk-window__img {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .lk-window__col {
    height: 260px;
    flex: 0 0 auto;
    padding: 24px;
    border-radius: 24px;
  }
}
.lk-window__img {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .lk-window__img {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
  }
}
.lk-window__name {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .lk-window__name {
    line-height: 24px;
  }
}
.lk-window__name {
  margin-bottom: 8px;
  max-width: 240px;
}
.lk-window__desc {
  color: var(--grey);
  max-width: 240px;
}

.lk-exit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lk-exit__text {
  font-weight: 400;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .lk-exit__text {
    margin-top: 8px;
  }
}
.lk-exit__img {
  max-width: 260px;
}
.lk-exit__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .lk-exit__name {
    line-height: 20px;
  }
}
.lk-exit__name {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .lk-exit__name {
    margin-top: 8px;
  }
}
.lk-exit .link-wrapper {
  margin-top: 40px;
  width: 100%;
}
.lk-exit .link-wrapper > * {
  flex: 1 1 100%;
}
@media screen and (max-width: 767px) {
  .lk-exit .link-wrapper {
    flex-direction: column;
    margin-top: 8px;
  }
}

.login-page__header {
  margin-bottom: 60px;
}
.login-page__header .breadcrumbs {
  margin: 0;
}
@media screen and (max-width: 1280px) {
  .login-page__header {
    margin-bottom: 36px;
  }
}
.login-page__title {
  font-size: var(--text-h2-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .login-page__title {
    line-height: 24px;
  }
}

.login-form {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 120px;
  border-radius: 32px;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .login-form {
    padding: 40px 80px;
  }
}
@media screen and (max-width: 767px) {
  .login-form {
    padding: 24px;
  }
}
.login-form__or {
  margin-top: 32px;
  width: 100%;
  position: relative;
  color: var(--grey);
  display: flex;
  justify-content: center;
}
.login-form__or span {
  background: #F5F5F5;
  display: inline-block;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.login-form__or::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #CDCDCD;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, 1px, 0);
}
.login-form__social {
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

.air-datepicker {
  background: var(--white);
  border-radius: 24px !important;
  border: 1px solid var(--additional-stroke) !important;
  width: min-content !important;
  box-shadow: none !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker {
    border-radius: 16px !important;
  }
}

.air-datepicker--content {
  padding: 0 16px 16px !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker--content {
    padding: 0 12px 12px !important;
  }
}

.air-datepicker-body--cells {
  row-gap: 12px;
  column-gap: 16px;
  grid-auto-rows: 44px !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker-body--cells {
    gap: 4px;
    grid-auto-rows: 32px !important;
  }
}

.air-datepicker-cell.-current- {
  color: var(--accent-violet) !important;
}

.air-datepicker-cell {
  width: 44px;
  height: 44px;
  transition: var(--trans);
  border-radius: 6px;
  font-size: 18px;
  color: var(--grey-black);
}
.air-datepicker-cell.-selected- {
  background: var(--accent-violet) !important;
  color: var(--white) !important;
}
.air-datepicker-cell.-selected-:hover {
  background: var(--accent-middle-violet) !important;
}
.air-datepicker-cell:hover {
  background: var(--accent-light-violet) !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker-cell {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
  }
}

.air-datepicker-body--day-names {
  display: flex !important;
  justify-content: space-between;
  margin: 24px 0 !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker-body--day-names {
    margin: 12px 0 !important;
  }
}

.air-datepicker-body--day-name {
  width: 44px;
  flex: 0 0 auto !important;
  font-size: 18px !important;
  line-height: 16px;
  font-weight: 500;
  text-transform: lowercase !important;
  color: var(--grey-50) !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker-body--day-name {
    width: 32px;
    font-size: 14px !important;
  }
}

.air-datepicker-nav {
  padding: 24px 16px 0 16px !important;
  border: none !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker-nav {
    padding: 20px 12px 0 12px !important;
  }
}

.air-datepicker-nav--title {
  font-size: 18px;
  font-weight: 500;
  transition: var(--trans);
}
.air-datepicker-nav--title:hover {
  background-color: var(--accent-light-violet) !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker-nav--title {
    font-size: 14px;
    line-height: 24px;
    height: 24px;
  }
}

.air-datepicker-nav--action:hover {
  background-color: var(--accent-light-violet) !important;
}
@media screen and (max-width: 767px) {
  .air-datepicker-nav--action {
    width: 24px;
    height: 24px;
  }
}

.person-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .person-content {
    flex-direction: column;
    align-items: baseline;
  }
}
.person-content__aside {
  position: sticky;
  top: 120px;
}
.person-content__aside ul {
  border-radius: 32px;
  padding: 24px;
  background: var(--additional-grey);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.person-content__aside ul li {
  display: flex;
  width: 387px;
}
@media screen and (max-width: 1679px) {
  .person-content__aside ul li {
    width: 280px;
  }
}
@media screen and (max-width: 1280px) {
  .person-content__aside ul li {
    width: auto;
  }
}
.person-content__aside ul li a {
  display: flex;
  padding: 16px 24px;
  border-radius: 16px;
  transition: var(--trans);
  white-space: nowrap;
  width: 100%;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .person-content__aside ul li a {
    line-height: 20px;
  }
}
@media screen and (max-width: 1679px) {
  .person-content__aside ul li a {
    padding: 12px 16px;
  }
}
.person-content__aside ul li a:hover {
  background: var(--white);
}
.person-content__aside ul li a.active {
  background: var(--white);
  color: var(--accent-violet);
}
.person-content__aside ul li a.exit {
  padding: 16px 24px;
  border-radius: 16px;
  color: #F75A40;
  cursor: pointer;
}
@media screen and (max-width: 1679px) {
  .person-content__aside ul li a.exit {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 1280px) {
  .person-content__aside ul li a.exit {
    padding: 8px 16px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 1280px) {
  .person-content__aside ul li a {
    padding: 8px 16px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 1679px) {
  .person-content__aside ul {
    padding: 24px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .person-content__aside ul {
    padding: 8px;
    border-radius: 12px;
    align-items: center;
  }
}
@media screen and (max-width: 1280px) {
  .person-content__aside {
    position: static;
    width: auto;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .person-content__aside::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
  }
  .person-content__aside::-webkit-scrollbar-thumb, .person-content__aside::-webkit-scrollbar-track {
    background: transparent;
  }
  .person-content__aside ul {
    width: fit-content;
    flex-direction: row;
  }
}
.person-content__main {
  width: 100%;
}
.person-content__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1280px) {
  .person-content__header {
    gap: 24px;
    flex-direction: column-reverse;
  }
}
.person-content__banner {
  margin-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  .person-content__banner {
    margin-bottom: 40px;
  }
}
.person-content__top {
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .person-content__top {
    margin-bottom: 24px;
  }
}
.person-content__form {
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .person-content__form {
    margin-top: 64px;
  }
}
.person-content__form-img {
  position: absolute;
  width: 169px;
  height: 169px;
  top: -40px;
  right: 30px;
  transform: rotate(8deg);
}
.person-content__form-img picture {
  border-radius: 32px;
  border: 5px solid var(--white);
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}
.person-content__form-img picture::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 40px;
  display: block;
  width: 50px;
  height: 50px;
  transform: translate3d(-110%, 120%, 0);
  background: url("../assets/images/content/gallery-lines-5.svg") no-repeat top/contain;
}
.person-content__form-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-content__actives {
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .person-content__actives {
    margin-bottom: 24px;
  }
}
.person-content__add {
  margin-bottom: 32px;
}
.person-content__add:last-child {
  margin-bottom: 0;
}

.add-photo {
  pointer-events: none;
  max-width: 675px;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 1280px) {
  .add-photo {
    gap: 12px;
  }
}
.add-photo__preview {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  background-color: var(--additional-grey);
  flex: 0 0 auto;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  pointer-events: all;
}
.add-photo--has-image .add-photo__preview {
  pointer-events: none;
}
.add-photo__preview::after, .add-photo__preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--trans);
}
.add-photo__preview::before {
  background-image: url("../assets/images/icons/camera-grey.svg");
  opacity: 1;
}
.add-photo__preview::after {
  background-image: url("../assets/images/icons/camera-grey-dark.svg");
  opacity: 0;
}
.add-photo__preview:hover::before {
  opacity: 0;
}
.add-photo__preview:hover::after {
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  .add-photo__preview {
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .add-photo__preview {
    width: 120px;
    height: 120px;
    border-radius: 16px;
  }
}
.add-photo__btn {
  pointer-events: all;
}
.add-photo__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.add-photo__text {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .add-photo__text {
    margin-top: 12px;
  }
}
.add-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.add-photo--has-image .add-photo__preview::before, .add-photo--has-image .add-photo__preview::after {
  display: none;
}
.add-photo--has-image .add-photo__preview:hover img {
  opacity: 0.8;
}

.vk-join {
  max-width: 507px;
  padding: 32px;
  border-radius: 32px;
  background: #E9F3FF;
}
.vk-join__title {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .vk-join__title {
    line-height: 24px;
  }
}
.vk-join__title {
  margin-bottom: 8px;
}
.vk-join__text {
  color: var(--grey);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .vk-join__text {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .vk-join {
    max-width: none;
    width: 100%;
    padding: 24px;
    border-radius: 24px;
  }
}

.person-fields {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.person-fields:last-child {
  margin-bottom: 0;
}
.person-fields .form__grid {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .person-fields {
    flex-direction: column;
    margin-top: 24px;
    gap: 8px;
  }
  .person-fields .form__grid {
    margin-top: 0;
  }
}

.person-projects__list {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .person-projects__list {
    margin-top: 24px;
  }
}
.person-projects__header {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
}
.person-projects .filters:first-child {
  margin-top: 0;
}

.create-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 464px;
  border: 3px dashed var(--accent-violet);
  border-radius: 32px;
  transition: var(--trans);
  color: var(--accent-violet);
  gap: 8px;
  font-weight: 500;
}
.create-card:hover {
  background: var(--accent-light-violet);
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice-item {
  padding: 32px;
  border-radius: 32px;
  background: var(--additional-grey);
}
@media screen and (max-width: 1280px) {
  .notice-item {
    padding: 24px;
    border-radius: 24px;
  }
}
.notice-item--not-viewed .notice-item__date {
  padding-right: 28px;
}
@media screen and (max-width: 1280px) {
  .notice-item--not-viewed .notice-item__date {
    padding-right: 20px;
  }
}
.notice-item--not-viewed .notice-item__date::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #FD6801;
  transform: translate3d(0, -50%, 0);
}
@media screen and (max-width: 1280px) {
  .notice-item--not-viewed .notice-item__date::after {
    width: 8px;
    height: 8px;
  }
}
.notice-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
  .notice-item__top {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .notice-item__top {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
  }
}
.notice-item__top dl {
  display: flex;
  margin: 0;
  align-items: center;
}
.notice-item__top dl dd {
  margin-left: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .notice-item__top dl dd {
    margin-left: 12px;
  }
}
@media screen and (max-width: 767px) {
  .notice-item__top dl dd {
    margin-left: 8px;
  }
}
.notice-item__top dl dd.approved {
  color: #019EA7;
}
.notice-item__top dl dd.load {
  color: #FD6801;
}
.notice-item__date {
  color: var(--grey-50);
  position: relative;
}
.notice-item__content {
  max-width: calc(100% - 80px);
}
@media screen and (max-width: 1280px) {
  .notice-item__content {
    max-width: calc(100% - 60px);
  }
}
@media screen and (max-width: 767px) {
  .notice-item__content {
    max-width: calc(100% - 20px);
  }
}
.notice-item__name {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .notice-item__name {
    line-height: 20px;
  }
}
.notice-item__name {
  margin-bottom: 16px;
}
.notice-item__text {
  color: var(--grey);
  max-width: 858px;
}

.project-rating {
  width: 100%;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}
.project-rating__title {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .project-rating__title {
    line-height: 24px;
  }
}
.project-rating__title {
  margin-bottom: 64px;
}
@media screen and (max-width: 1280px) {
  .project-rating__title {
    margin-bottom: 40px;
  }
}
.project-rating__title + .tag-line {
  margin-bottom: 64px;
}
@media screen and (max-width: 1280px) {
  .project-rating__title + .tag-line {
    margin-bottom: 40px;
  }
}
.project-rating__title:has(+ .tag-line) {
  margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
  .project-rating__title:has(+ .tag-line) {
    margin-bottom: 24px;
  }
}
.project-rating__desc {
  padding: 32px;
  border-radius: 32px;
  background: var(--additional-grey);
  margin-bottom: 20px;
  position: relative;
}
.project-rating__desc p {
  max-width: calc(100% - 80px);
}
@media screen and (max-width: 767px) {
  .project-rating__desc p {
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .project-rating__desc {
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 16px;
  }
}
.project-rating__info {
  display: flex;
  gap: 32px;
  margin-bottom: 64px;
}
.project-rating__info dl {
  margin: 0;
}
.project-rating__info dl dt {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .project-rating__info dl dt {
    line-height: 24px;
  }
}
.project-rating__info dl dt {
  margin-bottom: 4px;
}
.project-rating__info dl dd {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .project-rating__info {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
  }
}
.project-rating__preview {
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 890/667;
  margin-bottom: 40px;
  border-radius: 32px;
  overflow: hidden;
}
.project-rating__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .project-rating__preview {
    border-radius: 24px;
    margin-bottom: 24px;
  }
}

.person-grade {
  padding-top: 40px;
}
.person-grade .tag {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .person-grade .tag {
    margin-bottom: 12px;
  }
}
.person-grade__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .person-grade__title {
    line-height: 20px;
  }
}
.person-grade__title {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .person-grade__title {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 767px) {
  .person-grade {
    padding-top: 24px;
  }
}

.table-grade__row {
  display: flex;
  padding: 0 16px;
  min-height: 56px;
}
.table-grade__row--header {
  background: var(--accent-light-violet);
  border-radius: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .table-grade__row--header {
    ndrs: 12px;
  }
}
@media screen and (max-width: 767px) {
  .table-grade__row {
    padding: 0 12px;
  }
}
.table-grade__col {
  padding: 16px 24px 16px 0;
  flex: 1 1 100%;
  display: flex;
  align-items: center;
}
.table-grade__col:nth-child(2) {
  text-align: right;
  justify-content: flex-end;
}
.table-grade__col .icon {
  width: 16px;
  height: 16px;
  fill: var(--accent-violet);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .table-grade__col {
    padding: 12px 16px 12px 0;
  }
}
.table-grade a.table-grade__row {
  transition: var(--trans);
  border-radius: 16px;
}
.table-grade a.table-grade__row .table-grade__col {
  border-top: 1px solid var(--additional-stroke);
  transition: var(--trans);
}
.table-grade a.table-grade__row:nth-of-type(1) .table-grade__col {
  border-top: none;
}
.table-grade a.table-grade__row:nth-last-of-type(1) .table-grade__col {
  border-bottom: 1px solid var(--additional-stroke);
}
.table-grade a.table-grade__row:hover {
  background: var(--additional-grey);
}
.table-grade a.table-grade__row:hover .table-grade__col {
  border-color: var(--additional-grey);
}
.table-grade a.table-grade__row:hover + a.table-grade__row .table-grade__col {
  border-top: 1px solid var(--additional-grey);
}

.project-info {
  padding: 32px;
  border-radius: 32px;
  background: var(--accent-violet);
  display: flex;
  flex-direction: column;
  min-height: 276px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .project-info {
    padding: 24px;
    border-radius: 24px;
    min-height: 240px;
    margin-bottom: 16px;
  }
}
.project-info__decor {
  width: 80px;
  height: 160px;
  position: absolute;
  right: 34px;
  top: 32px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .project-info__decor {
    top: auto;
    bottom: 70px;
    width: 50px;
    height: 120px;
    right: 24px;
    transform: rotate(40deg);
  }
}
.project-info__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .project-info__title {
    line-height: 20px;
  }
}
.project-info__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .project-info__title {
    margin-bottom: 12px;
  }
}
.project-info__text {
  color: var(--white-80);
  max-width: calc(100% - 160px);
  margin-bottom: 24px;
}
.project-info__text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .project-info__text {
    max-width: none;
  }
}
.project-info__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.project-info__bottom dl {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .project-info__bottom dl {
    max-width: calc(100% - 50px);
  }
}
.project-info__bottom dl dt {
  font-weight: 500;
}
.project-info__bottom dl dd {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .project-info__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }
}

.application-details {
  padding: 32px;
  border-radius: 32px;
  background: var(--additional-grey);
}
@media screen and (max-width: 767px) {
  .application-details {
    padding: 24px;
    border-radius: 24px;
  }
}

.project-place {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .project-place {
    margin-top: 40px;
  }
}
.project-place .tag {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .project-place .tag {
    margin-bottom: 12px;
  }
}
.project-place__title {
  margin-bottom: 48px;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .project-place__title {
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .project-place__title {
    margin-bottom: 36px;
  }
}
.project-place__map {
  width: 100%;
  height: auto;
  aspect-ratio: 890/700;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--additional-stroke);
}
@media screen and (max-width: 767px) {
  .project-place__map {
    border-radius: 24px;
  }
}

.person-rating__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .person-rating__row {
    flex-direction: column;
    gap: 40px;
  }
}
.person-rating__aside {
  flex: 0 0 auto;
  width: 435px;
  padding: 24px;
  border-radius: 32px;
  background: var(--additional-grey);
  position: sticky;
  top: 140px;
}
@media screen and (max-width: 1280px) {
  .person-rating__aside {
    width: 300px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .person-rating__aside {
    width: 100%;
    position: static;
  }
}
.person-rating__aside dl {
  margin: 0;
  margin-bottom: 16px;
  max-width: 240px;
}
.person-rating__aside dl:last-child {
  margin-bottom: 0;
}
.person-rating__aside dl dt {
  color: var(--grey);
  margin-bottom: 4px;
}
.person-rating__aside dl dd {
  font-weight: 500;
  margin: 0;
}
.person-rating__type {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--grey);
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .person-rating__type {
    margin-bottom: 24px;
  }
}
.person-rating__title {
  margin-bottom: 80px;
  margin-left: 455px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .person-rating__title {
    line-height: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .person-rating__title {
    margin-bottom: 40px;
    margin-left: 320px;
  }
}
@media screen and (max-width: 767px) {
  .person-rating__title {
    margin-bottom: 24px;
    margin-left: 0;
  }
}
.person-rating__subtitle {
  margin-bottom: 40px;
  margin-left: 455px;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .person-rating__subtitle {
    line-height: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .person-rating__subtitle {
    margin-bottom: 24px;
    margin-left: 320px;
  }
}
@media screen and (max-width: 767px) {
  .person-rating__subtitle {
    margin-left: 0;
  }
}

.request-faq {
  padding: 40px 32px;
  border-radius: 32px;
  background: var(--additional-grey);
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .request-faq {
    padding: 24px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .request-faq {
    margin-bottom: 8px;
  }
}
.request-faq:last-of-type {
  margin-bottom: 0;
}
.request-faq__name {
  margin-bottom: 12px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .request-faq__name {
    line-height: 24px;
  }
}
.request-faq p {
  color: var(--grey);
  max-width: 705px;
}

.types-of-ratings {
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .types-of-ratings {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .types-of-ratings {
    margin-top: 40px;
  }
}
.types-of-ratings__stars {
  display: inline-flex;
  padding: 20px;
  border-radius: 16px;
  background: var(--additional-grey);
}
@media screen and (max-width: 767px) {
  .types-of-ratings__stars {
    padding: 16px;
    border-radius: 12px;
  }
}
.types-of-ratings__stars ul {
  display: flex;
}
.types-of-ratings__stars ul li {
  cursor: pointer;
  padding: 0 6px;
}
.types-of-ratings__stars ul li:first-child {
  padding-left: 0;
}
.types-of-ratings__stars ul li:last-child {
  padding-right: 0;
}
.types-of-ratings__stars ul li .icon {
  width: 24px;
  height: 24px;
  fill: transparent;
  stroke: var(--accent-violet);
  transition: var(--trans);
}
.types-of-ratings__stars ul li.active .icon {
  fill: var(--accent-violet);
}
.types-of-ratings__stars ul:hover li .icon {
  fill: var(--accent-violet);
}
.types-of-ratings__stars ul li:hover ~ * .icon {
  fill: transparent;
}
.types-of-ratings__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .types-of-ratings__title {
    line-height: 20px;
  }
}
.types-of-ratings__title {
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .types-of-ratings__title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .types-of-ratings__title {
    margin-bottom: 24px;
  }
}
.types-of-ratings__item {
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .types-of-ratings__item {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .types-of-ratings__item {
    margin-bottom: 24px;
  }
}
.types-of-ratings__item:last-of-type {
  margin-bottom: 0;
}
.types-of-ratings__name {
  margin-bottom: 8px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .types-of-ratings__name {
    line-height: 24px;
  }
}
.types-of-ratings__text {
  color: var(--grey);
  margin-bottom: 20px;
  max-width: 660px;
}
@media screen and (max-width: 767px) {
  .types-of-ratings__text {
    margin-bottom: 16px;
  }
}
.types-of-ratings__result {
  padding: 32px;
  border-radius: 32px;
  background: var(--additional-grey);
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  color: var(--grey);
}
@media screen and (max-width: 1280px) {
  .types-of-ratings__result {
    padding: 24px;
    border-radius: 24px;
    gap: 24px;
  }
}

.person-comment {
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .person-comment {
    margin-top: 64px;
  }
}
.person-comment__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .person-comment__title {
    line-height: 20px;
  }
}
.person-comment__title {
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .person-comment__title {
    margin-bottom: 32px;
  }
}
.person-comment .form__line {
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .person-comment .form__line {
    margin-bottom: 32px;
  }
}
.person-comment__footer {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .person-comment__footer {
    flex-direction: column;
    gap: 8px;
  }
  .person-comment__footer > * {
    width: 100%;
  }
}

.ratings-all {
  position: relative;
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
@media screen and (max-width: 1280px) {
  .ratings-all {
    width: 130px;
    height: 130px;
  }
}

.rating-circle {
  width: 100%;
  height: 100%;
  position: relative;
}

.rating-progress {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.rating-bg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 10;
}

.rating-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.8s ease, stroke 0.5s ease;
}

.rating-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .rating-value {
    line-height: 24px;
  }
}
.rating-value {
  color: var(--additional-stroke);
}

.share {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.share__img {
  height: 180px;
  display: block;
  margin-bottom: 40px;
}
.share__title {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .share__title {
    line-height: 20px;
  }
}
.share__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .share__title {
    display: none;
  }
}
.share .a2a_kit {
  display: flex;
  gap: 8px;
}
.share__item {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--additional-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans) !important;
}
.share__item .icon {
  width: 24px;
  height: 24px;
  fill: var(--accent-violet);
  transition: var(--trans) !important;
}
.share__item:hover {
  background: var(--accent-violet);
}
.share__item:hover .icon {
  fill: var(--white);
}

.useful {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 74px;
  padding: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .useful {
    gap: 28px;
    padding: 60px 0 24px;
  }
}
.useful__line {
  position: absolute;
  left: 51%;
  top: 184px;
}
@media screen and (max-width: 1280px) {
  .useful__line {
    display: none;
  }
}
.useful__head, .useful__body {
  flex: 0 0 auto;
}
.useful__heading {
  margin-top: 20px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .useful__heading {
    line-height: 24px;
  }
}
.useful__heading {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .useful__heading {
    margin-top: 16px;
  }
}
.useful__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
}
@media screen and (max-width: 1280px) {
  .useful__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .useful__list {
    gap: 32px;
  }
}
.useful__item:nth-child(1) {
  transform: rotate(-1.5deg);
}
.useful__item:nth-child(2) {
  margin-top: 100px;
  transform: rotate(1.5deg);
}
@media screen and (max-width: 1280px) {
  .useful__item:nth-child(2) {
    margin: 0;
  }
}
.useful__card {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding: 32px 70px 32px 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .useful__card {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 24px 32px 24px 24px;
    gap: 20px;
  }
}
.useful__card-box {
  max-width: 490px;
}
.useful__card-heading {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .useful__card-heading {
    line-height: 20px;
  }
}
.useful__card-heading {
  color: #252525;
}
.useful__card-description {
  margin-top: 16px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .useful__card-description {
    line-height: 20px;
  }
}
.useful__card-description {
  color: rgba(51, 51, 51, 0.8);
}
@media screen and (max-width: 767px) {
  .useful__card-description {
    margin: 8px 0 0;
  }
}
.useful__card-holder {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .useful__card-holder {
    margin-top: 20px;
  }
}
.useful__card img {
  flex: 0 1 260px;
}
@media screen and (max-width: 767px) {
  .useful__card img {
    flex: 0 0 auto;
    max-width: 128px;
  }
}

.platform-header {
  margin: 80px 0 54px;
}
@media screen and (max-width: 767px) {
  .platform-header {
    margin: 40px 0 16px;
  }
}
.platform-header__heading {
  margin-top: 16px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .platform-header__heading {
    line-height: 24px;
  }
}
.platform-header__heading {
  color: #252525;
}
.platform-header__button {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .platform-header__button {
    margin-top: 24px;
  }
}

.details {
  padding: 80px 0 60px;
}
@media screen and (max-width: 1280px) {
  .details {
    padding: 60px 0 20px;
  }
}
.details__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.details__tag {
  flex: 0 0 auto;
}
.details__heading {
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
  max-width: 752px;
  margin-top: 16px;
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .details__heading {
    line-height: 24px;
  }
}
.details__heading {
  color: #252525;
}
.details__description {
  flex: 0 0 auto;
  width: 100%;
  max-width: 900px;
  margin-top: 16px;
  text-align: center;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .details__description {
    line-height: 20px;
  }
}
.details__description {
  color: #5C5C5C;
}
@media screen and (max-width: 1280px) {
  .details__description {
    margin-top: 12px;
  }
}
.details__description p {
  margin: 0;
}
.details__description p + p {
  margin-top: 10px;
}
.details__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 54px;
}
@media screen and (max-width: 1679px) {
  .details__main {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media screen and (max-width: 1280px) {
  .details__main {
    gap: 8px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.details__box {
  background: #f4f4f7;
  border-radius: 32px;
  padding: 40px;
}
@media screen and (max-width: 1280px) {
  .details__box {
    position: relative;
    padding: 24px;
  }
}
.details__box--main {
  width: 435px;
  grid-row: 1/3;
}
@media screen and (max-width: 1679px) {
  .details__box--main {
    width: auto;
    grid-row: 1/4;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 1280px) {
  .details__box--main {
    grid-row: auto;
    grid-column: auto;
    width: auto;
  }
}
.details__box--lg {
  grid-column: 2/5;
}
@media screen and (max-width: 1679px) {
  .details__box--lg {
    grid-column: 2/4;
  }
}
@media screen and (max-width: 1280px) {
  .details__box--lg {
    grid-column: auto;
  }
}
.details__box--md {
  width: 662px;
  grid-column: 2/3;
}
@media screen and (max-width: 1920px) {
  .details__box--md {
    width: auto;
  }
}
@media screen and (max-width: 1679px) {
  .details__box--md {
    grid-column: 2/4;
  }
}
@media screen and (max-width: 1280px) {
  .details__box--md {
    grid-column: auto;
    width: auto;
  }
}
@media screen and (max-width: 1679px) {
  .details__box--sm:nth-of-type(1) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 1280px) {
  .details__box--sm:nth-of-type(1) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media screen and (max-width: 1679px) {
  .details__box--sm:nth-of-type(2) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 1280px) {
  .details__box--sm:nth-of-type(2) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media screen and (max-width: 1679px) {
  .details__box--sm:nth-of-type(3) {
    grid-column: 2/4;
    grid-row: 4/5;
  }
}
@media screen and (max-width: 1280px) {
  .details__box--sm:nth-of-type(3) {
    grid-column: auto;
    grid-row: auto;
  }
}
.details__headline {
  font-size: var(--text-h3-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .details__headline {
    line-height: 24px;
  }
}
.details__headline {
  color: #5236AF;
}
.details--red .details__headline {
  color: rgb(217, 9, 18);
}
.details__list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
@media screen and (max-width: 1280px) {
  .details__list {
    margin-top: 40px;
  }
}
.details__list--point {
  gap: 12px;
}
@media screen and (max-width: 1280px) {
  .details__list--point {
    gap: 8px;
  }
}
.details__list--no-point {
  gap: 16px;
}
@media screen and (max-width: 1280px) {
  .details__list--no-point {
    gap: 8px;
  }
}
.details__item {
  flex: 0 0 auto;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .details__item {
    line-height: 24px;
  }
}
.details__item {
  color: #5C5C5C;
}
.details__list--point .details__item {
  position: relative;
  padding-left: 26px;
}
.details__list--point .details__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  top: 10px;
  display: block;
  width: 8px;
  height: 8px;
  background: #5236AF;
  border-radius: 2px;
}
.details__item span {
  color: #252525;
}
.details__text {
  margin-top: 56px;
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .details__text {
    line-height: 24px;
  }
}
.details__text {
  color: #252525;
}
@media screen and (max-width: 1280px) {
  .details__text {
    margin-top: 40px;
  }
}
.details__title {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .details__title {
    line-height: 24px;
  }
}
.details__title {
  color: #5C5C5C;
}
.details__caption {
  margin-top: 40px;
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .details__caption {
    line-height: 20px;
  }
}
.details__caption {
  color: #252525;
}
@media screen and (max-width: 767px) {
  .details__caption {
    margin-top: 80px;
    max-width: 171px;
  }
}
.details__caption span {
  font-size: var(--text-h1-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .details__caption span {
    line-height: 32px;
  }
}
.details__caption span {
  color: #5236AF;
}
.details--red .details__caption span {
  color: rgb(217, 9, 18);
}
@media screen and (max-width: 1280px) {
  .details__caption span {
    display: block;
  }
}
.details__image {
  margin-top: 66px;
  margin-left: 78px;
}
@media screen and (max-width: 1280px) {
  .details__image {
    position: absolute;
    max-width: 180px;
    margin: 0;
    right: -42px;
    top: 94px;
  }
}

.upload-picture {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .upload-picture {
    gap: 12px;
  }
}
.upload-picture__input {
  display: none;
}
.upload-picture__preview {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 200px;
  border-radius: 24px;
  background: #F5F5F5;
  cursor: pointer;
}
.upload-picture:has(input:disabled) .upload-picture__preview {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .upload-picture__preview {
    width: 120px;
    height: 120px;
    border-radius: 16px;
  }
}
.upload-picture__camera, .upload-picture__image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.upload-picture__camera:not(:only-child) {
  display: none;
}
.upload-picture__camera::before, .upload-picture__camera::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--trans);
}
.upload-picture__camera::before {
  background-image: url("../assets/images/icons/camera-grey.svg");
  opacity: 1;
}
.upload-picture__camera::after {
  background-image: url("../assets/images/icons/camera-grey-dark.svg");
  opacity: 0;
}
.upload-picture__camera:hover::before {
  opacity: 0;
}
.upload-picture__camera:hover::after {
  opacity: 1;
}
.upload-picture__image {
  object-fit: cover;
}
.upload-picture__block {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
  max-width: 443px;
}
@media screen and (max-width: 767px) {
  .upload-picture__block {
    gap: 12px;
  }
}
.upload-picture__button {
  flex: 0 0 auto;
}
.upload-picture:has(input:disabled) .upload-picture__button {
  pointer-events: none;
  opacity: 0.5;
}
.upload-picture:has(.upload-picture__image) .upload-picture__button--create {
  display: none;
}
.upload-picture__button--delete {
  display: none;
}
.upload-picture:has(.upload-picture__image) .upload-picture__button--delete {
  display: block;
}
.upload-picture__text {
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .upload-picture__text {
    line-height: 20px;
  }
}
.upload-picture__text {
  color: #5C5C5C;
}

.form__row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .form__row {
    gap: 8px;
    margin-bottom: 8px;
  }
}
.form__row .form__line {
  margin: 0;
}

.form__line--place {
  display: flex;
  align-items: center;
}

.main {
  z-index: auto;
}

.place__modal {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.place__window {
  position: relative;
  width: 100%;
  height: 100%;
}
.place__map {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.place__close {
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  margin: 0 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #FFF;
  width: 56px;
  height: 56px;
  z-index: 2;
}
.place__close .icon {
  width: 24px;
  height: 24px;
  stroke: #252525;
}
@media screen and (max-width: 767px) {
  .place__close {
    border-radius: 12px;
    width: 44px;
    height: 44px;
    margin: 0 0 0 8px;
  }
}
.place__button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #FFF;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 767px) {
  .place__button {
    border-radius: 12px;
    width: 44px;
    height: 44px;
  }
}
.place__button .icon {
  flex: 0 0 auto;
  display: block;
  width: 24px;
  height: 24px;
  fill: #5236AF;
}
.place__button:hover .place__button .icon {
  fill: #5236AF;
}
.place__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.feedback__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .feedback__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.feedback__item {
  position: static;
  transform: none;
  width: 100%;
  max-width: none;
}
.feedback__item:last-child {
  transform: none;
}
.feedback__item::before, .feedback__item::after {
  display: none !important;
}

.lk-project-wrapper {
  max-width: 890px;
  margin: 0 auto;
}
.lk-project-info {
  position: relative;
  padding: 32px 120px 32px 32px;
  border-radius: 32px;
  background: #5236AF;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lk-project-info {
    padding: 32px;
  }
}
.lk-project-info__heading {
  font-size: var(--text-h4-size);
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1280px) {
  .lk-project-info__heading {
    line-height: 20px;
  }
}
.lk-project-info__text {
  margin-top: 20px;
}
.lk-project-info__text h3 {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .lk-project-info__text h3 {
    line-height: 24px;
  }
}
.lk-project-info__text h3 + p {
  margin-top: 20px;
}
.lk-project-info__text p {
  margin-bottom: 8px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-info__text p {
    line-height: 20px;
  }
}
.lk-project-info__text p {
  color: rgba(255, 255, 255, 0.8);
}
.lk-project-info__text p + p {
  margin-bottom: 8px;
}
.lk-project-info__button {
  margin-top: 32px;
}
.lk-project-info__line {
  position: absolute;
  right: 44px;
  top: 44px;
}
@media screen and (max-width: 767px) {
  .lk-project-info__line {
    display: none;
  }
}
.lk-project-time {
  margin-top: 20px;
  padding: 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
.lk-project-time__tag {
  background: #fff;
  color: #5236AF;
}
.lk-project-time__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .lk-project-time__list {
    grid-template-columns: 1fr;
  }
}
.lk-project-time__item {
  display: flex;
  flex-direction: column-reverse;
}
.lk-project-time__key {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-time__key {
    line-height: 20px;
  }
}
.lk-project-time__key {
  color: rgba(25, 25, 25, 0.5);
}
.lk-project-time__val {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-time__val {
    line-height: 20px;
  }
}
.lk-project-time__val {
  color: #252525;
}
.lk-project-picture {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 32px;
  aspect-ratio: 1/0.7494382022;
}
.lk-project-picture__logo {
  position: absolute;
  left: 32px;
  top: 32px;
  z-index: 1;
}
.lk-project-picture__image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lk-project-route {
  margin-top: 20px;
  padding: 32px;
  border-radius: 32px;
  background: #5236AF;
}
.lk-project-route__tag {
  background: #fff;
  color: #5236AF;
}
.lk-project-route__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .lk-project-route__list {
    grid-template-columns: 1fr;
  }
}
.lk-project-route__item {
  display: flex;
  flex-direction: column-reverse;
}
.lk-project-route__key {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-route__key {
    line-height: 20px;
  }
}
.lk-project-route__key {
  color: rgba(255, 255, 255, 0.8);
}
.lk-project-route__val {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-route__val {
    line-height: 20px;
  }
}
.lk-project-route__val {
  color: #fff;
}
.lk-project-platform {
  position: relative;
  margin-top: 20px;
  padding: 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
.lk-project-platform__tag {
  background: #fff;
  color: #5236AF;
}
.lk-project-platform__line {
  position: absolute;
  right: 36px;
  top: 44px;
}
.lk-project-platform__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.lk-project-platform__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lk-project-platform__key {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-platform__key {
    line-height: 20px;
  }
}
.lk-project-platform__key {
  color: rgba(25, 25, 25, 0.5);
}
.lk-project-platform__val {
  flex: 0 0 auto;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-platform__val {
    line-height: 20px;
  }
}
.lk-project-platform__val {
  color: #252525;
}
.lk-project-results {
  margin-top: 20px;
  padding: 32px;
  border-radius: 32px;
  background: #5236AF;
}
.lk-project-results__tag {
  background: #fff;
  color: #5236AF;
}
.lk-project-results__text {
  margin-top: 32px;
}
.lk-project-results__text p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.lk-project-docs {
  margin-top: 20px;
  padding: 32px;
  border-radius: 32px;
  background: #F5F5F5;
}
.lk-project-docs__tag {
  background: #fff;
  color: #5236AF;
}
.lk-project-docs__list {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  gap: 8px;
}
.lk-project-docs__item {
  flex: 0 0 auto;
}
.lk-project-map {
  margin-top: 20px;
  aspect-ratio: 1/0.8988764045;
}
.lk-project-data {
  margin-top: 54px;
}
.lk-project-data__heading {
  font-size: var(--text-h5-size);
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 1280px) {
  .lk-project-data__heading {
    line-height: 24px;
  }
}
.lk-project-data__heading {
  color: #252525;
}
.lk-project-data__box {
  position: relative;
  overflow: auto;
}
.lk-project-data__table {
  width: 100%;
  margin-top: 24px;
}
.lk-project-data__table th {
  padding: 16px;
  background: #DBE2FD;
  font-size: var(--text-paragraph);
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-data__table th {
    line-height: 20px;
  }
}
.lk-project-data__table th {
  color: #252525;
  text-align: center;
}
.lk-project-data__table th:first-child {
  border-radius: 16px 0 0 16px;
  text-align: left;
}
.lk-project-data__table th:last-child {
  border-radius: 0 16px 16px 0;
}
.lk-project-data__table td {
  padding: 16px;
  font-size: var(--text-paragraph);
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .lk-project-data__table td {
    line-height: 20px;
  }
}
.lk-project-data__table td {
  text-align: center;
  color: #5236AF;
}
.lk-project-data__table td:first-child {
  text-align: left;
}
.lk-project-data__table .success {
  background: none;
  color: #019EA7;
}
.lk-project-data__table .error {
  background: none;
  color: #F75A40;
}
.lk-project-data__button {
  width: 100%;
  margin-top: 54px;
}

.application-details {
  margin-top: 20px;
}

body .bvi-body a.bvi-link {
  top: 120px !important;
}

body .bvi-body .header__activities .header__item .header__active .icon * {
  fill: none !important;
}

body .bvi-body[data-bvi-theme=white] .header__activities .header__item .header__active .icon * {
  stroke: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .header__activities .header__item .header__active .icon * {
  stroke: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .header__activities .header__item .header__active .icon * {
  stroke: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .header__activities .header__item .header__active .icon * {
  stroke: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .header__activities .header__item .header__active .icon * {
  stroke: #a9e44d !important;
}

body .bvi-body .primary-swiper__btn-prev:not(.bvi-no-styles),
body .bvi-body .primary-swiper__btn-next:not(.bvi-no-styles) {
  transform: scale(1.5) !important;
}

body .bvi-body .primary-swiper__btn-prev:not(.bvi-no-styles) .icon *,
body .bvi-body .primary-swiper__btn-next:not(.bvi-no-styles) .icon * {
  fill: none !important;
}

body .bvi-body .card-base:not(.bvi-no-styles) {
  border-width: 1px !important;
  border-style: solid !important;
}

body .bvi-body :not(.bvi-no-styles) a:not(.bvi-no-styles):hover:not(.bvi-no-styles).card-base:hover {
  background: none !important;
}

body .bvi-body[data-bvi-theme=white] .card-base:not(.bvi-no-styles) {
  border-color: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .card-base:not(.bvi-no-styles) {
  border-color: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .card-base:not(.bvi-no-styles) {
  border-color: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .card-base:not(.bvi-no-styles) {
  border-color: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .card-base:not(.bvi-no-styles) {
  border-color: #a9e44d !important;
}

body .bvi-body .base-swiper__btn-prev:not(.bvi-no-styles),
body .bvi-body .base-swiper__btn-next:not(.bvi-no-styles) {
  font-size: 0 !important;
  transform: scale(1.5);
}

body .bvi-body .base-swiper__btn-prev:not(.bvi-no-styles) .icon *,
body .bvi-body .base-swiper__btn-next:not(.bvi-no-styles) .icon * {
  fill: none !important;
}

body .bvi-body .program-primary .box-about {
  transform: rotate(0) !important;
}

body .bvi-body .programs-grid__card.grid-card {
  transform: rotate(0) !important;
}

body .bvi-body .file-card__icon .icon *,
body .bvi-body .project-card__footer .icon * {
  fill: none !important;
}

body .bvi-body[data-bvi-theme=white] .file-card__icon .icon *,
body .bvi-body[data-bvi-theme=white] .project-card__footer .icon * {
  stroke: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .file-card__icon .icon *,
body .bvi-body[data-bvi-theme=black] .project-card__footer .icon * {
  stroke: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .file-card__icon .icon *,
body .bvi-body[data-bvi-theme=blue] .project-card__footer .icon * {
  stroke: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .file-card__icon .icon *,
body .bvi-body[data-bvi-theme=brown] .project-card__footer .icon * {
  stroke: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .file-card__icon .icon *,
body .bvi-body[data-bvi-theme=green] .project-card__footer .icon * {
  stroke: #a9e44d !important;
}

body .bvi-body .file-card:not(.bvi-no-styles) {
  border-width: 1px !important;
  border-style: solid !important;
}

body .bvi-body :not(.bvi-no-styles) a:not(.bvi-no-styles):hover:not(.bvi-no-styles).file-card:hover {
  background: none !important;
}

body .bvi-body[data-bvi-theme=white] .file-card:not(.bvi-no-styles) {
  border-color: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .file-card:not(.bvi-no-styles) {
  border-color: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .file-card:not(.bvi-no-styles) {
  border-color: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .file-card:not(.bvi-no-styles) {
  border-color: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .file-card:not(.bvi-no-styles) {
  border-color: #a9e44d !important;
}

body .bvi-body .form__label:not(.bvi-no-styles) {
  background: none !important;
  font-size: 18px !important;
}

body .bvi-body .form__input:focus ~ .form__label,
body .bvi-body .form__input.filled ~ .form__label {
  font-size: 10px !important;
}

body .bvi-body[data-bvi-theme=white] .toggle-switch__slider::before,
body .bvi-body[data-bvi-theme=white] .toggle-switch--bordered:has(.toggle-switch__input:checked) .toggle-switch__slider::before {
  background: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .toggle-switch__slider::before,
body .bvi-body[data-bvi-theme=black] .toggle-switch--bordered:has(.toggle-switch__input:checked) .toggle-switch__slider::before {
  background: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .toggle-switch__slider::before,
body .bvi-body[data-bvi-theme=blue] .toggle-switch--bordered:has(.toggle-switch__input:checked) .toggle-switch__slider::before {
  background: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .toggle-switch__slider::before,
body .bvi-body[data-bvi-theme=brown] .toggle-switch--bordered:has(.toggle-switch__input:checked) .toggle-switch__slider::before {
  background: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .toggle-switch__slider::before,
body .bvi-body[data-bvi-theme=green] .toggle-switch--bordered:has(.toggle-switch__input:checked) .toggle-switch__slider::before {
  background: #a9e44d !important;
}

body .bvi-body .calendar-projects__nav-btn .icon * {
  fill: none !important;
}

body .bvi-body[data-bvi-theme=white] .calendar-projects__nav-btn .icon * {
  stroke: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .calendar-projects__nav-btn .icon * {
  stroke: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .calendar-projects__nav-btn .icon * {
  stroke: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .calendar-projects__nav-btn .icon * {
  stroke: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .calendar-projects__nav-btn .icon * {
  stroke: #a9e44d !important;
}

body .bvi-body .item-search:not(.bvi-no-styles),
body .bvi-body .tour-card:not(.bvi-no-styles),
body .bvi-body .accordion:not(.bvi-no-styles),
body .bvi-body .accordion-event__item:not(.bvi-no-styles),
body .bvi-body .card-long:not(.bvi-no-styles),
body .bvi-body .contact-card:not(.bvi-no-styles) {
  border-width: 1px !important;
  border-style: solid !important;
  position: relative;
  overflow: hidden;
}

body .bvi-body :not(.bvi-no-styles) a:not(.bvi-no-styles):hover:not(.bvi-no-styles).item-search:hover,
body .bvi-body[data-bvi-theme] :not(.bvi-no-styles) .accordion__button:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme] :not(.bvi-no-styles) .accordion__button:hover:not(.bvi-no-styles) {
  background: none !important;
}

body .bvi-body[data-bvi-theme=white] .item-search:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=white] .tour-card:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=white] .accordion:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=white] .accordion-event__item:not(.bvi-no-styles) {
  border-color: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .item-search:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=black] .tour-card:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=black] .accordion:not(.bvi-no-styles) {
  border-color: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .item-search:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=blue] .tour-card:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=blue] .accordion:not(.bvi-no-styles) {
  border-color: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .item-search:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=brown] .tour-card:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=brown] .accordion:not(.bvi-no-styles) {
  border-color: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .item-search:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=green] .tour-card:not(.bvi-no-styles),
body .bvi-body[data-bvi-theme=green] .accordion:not(.bvi-no-styles) {
  border-color: #a9e44d !important;
}

body .bvi-body .item-search .icon *,
body .bvi-body .search-page__icon .icon *,
body .bvi-body .modal__close-btn .icon * {
  fill: none !important;
}

body .bvi-body[data-bvi-theme=white] .item-search .icon *,
body .bvi-body[data-bvi-theme=white] .search-page__icon .icon *,
body .bvi-body[data-bvi-theme=white] .modal__close-btn .icon * {
  stroke: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .item-search .icon *,
body .bvi-body[data-bvi-theme=black] .search-page__icon .icon *,
body .bvi-body[data-bvi-theme=black] .modal__close-btn .icon * {
  stroke: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .item-search .icon *,
body .bvi-body[data-bvi-theme=blue] .search-page__icon *,
body .bvi-body[data-bvi-theme=blue] .modal__close-btn .icon * {
  stroke: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .item-search .icon *,
body .bvi-body[data-bvi-theme=brown] .search-page__icon .icon *,
body .bvi-body[data-bvi-theme=brown] .modal__close-btn .icon * {
  stroke: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .item-search .icon *,
body .bvi-body[data-bvi-theme=green] .search-page__icon .icon *,
body .bvi-body[data-bvi-theme=green] .modal__close-btn .icon * {
  stroke: #a9e44d !important;
}

body .bvi-body[data-bvi-theme=white] .accordion-state::before,
body .bvi-body[data-bvi-theme=white] .accordion-state::after {
  background: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .accordion-state::before,
body .bvi-body[data-bvi-theme=black] .accordion-state::after {
  background: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .accordion-state::before,
body .bvi-body[data-bvi-theme=blue] .accordion-state::after {
  background: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .accordion-state::before,
body .bvi-body[data-bvi-theme=brown] .accordion-state::after {
  background: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .accordion-state::before,
body .bvi-body[data-bvi-theme=green] .accordion-state::after {
  background: #a9e44d !important;
}

body .bvi-body[data-bvi-theme=white] .notice-item__date::after,
body .bvi-body[data-bvi-theme=white] .accordion__holder ul li::before {
  background: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .notice-item__date::after,
body .bvi-body[data-bvi-theme=black] .accordion__holder ul li::before {
  background: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .notice-item__date::after,
body .bvi-body[data-bvi-theme=blue] .accordion__holder ul li::before {
  background: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .notice-item__date::after,
body .bvi-body[data-bvi-theme=brown] .accordion__holder ul li::before {
  background: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .notice-item__date::after,
body .bvi-body[data-bvi-theme=green] .accordion__holder ul li::before {
  background: #a9e44d !important;
}

body .bvi-body .rating-star .icon * {
  fill: none !important;
}

body .bvi-body[data-bvi-theme=white] .rating-star.active .icon * {
  fill: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .rating-star.active .icon * {
  fill: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .rating-star.active .icon * {
  fill: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .rating-star.active .icon * {
  fill: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .rating-star.active .icon * {
  fill: #a9e44d !important;
}

body .bvi-body[data-bvi-theme=white] .program-rout__item::before {
  border-color: #000 !important;
  background: #FFF !important;
}

body .bvi-body[data-bvi-theme=black] .program-rout__item::before {
  border-color: #FFF !important;
  background: #000 !important;
}

body .bvi-body[data-bvi-theme=blue] .program-rout__item::before {
  border-color: #063462 !important;
  background: #9dd1ff !important;
}

body .bvi-body[data-bvi-theme=brown] .program-rout__item::before {
  border-color: #4d4b43 !important;
  background: #f7f3d6 !important;
}

body .bvi-body[data-bvi-theme=green] .program-rout__item::before {
  border-color: #a9e44d !important;
  background: #3b2716 !important;
}

body .bvi-body[data-bvi-theme=white] .program-rout__item::after {
  background: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .program-rout__item::after {
  background: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .program-rout__item::after {
  background: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .program-rout__item::after {
  background: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .program-rout__item::after {
  background: #a9e44d !important;
}

body .bvi-body .program-way__img.bvi-img {
  display: none;
}

body .bvi-body .form__row .place__box .icon * {
  stroke: none !important;
}

body .bvi-body[data-bvi-theme=white] .form__row .place__box .icon * {
  fill: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .form__row .place__box .icon * {
  fill: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .form__row .place__box .icon * {
  fill: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .form__row .place__box .icon * {
  fill: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .form__row .place__box .icon * {
  fill: #a9e44d !important;
}

body .bvi-body[data-bvi-theme=white] .link-content__check .icon *,
body .bvi-body[data-bvi-theme=white] .banner__close .icon *,
body .bvi-body[data-bvi-theme=white] .all-filters__close .icon *,
body .bvi-body[data-bvi-theme=white] .form__row .input-delet .icon * {
  stroke: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .link-content__check .icon *,
body .bvi-body[data-bvi-theme=black] .banner__close .icon *,
body .bvi-body[data-bvi-theme=black] .all-filters__close .icon *,
body .bvi-body[data-bvi-theme=black] .form__row .input-delet .icon * {
  stroke: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .link-content__check .icon *,
body .bvi-body[data-bvi-theme=blue] .banner__close .icon *,
body .bvi-body[data-bvi-theme=blue] .all-filters__close .icon *,
body .bvi-body[data-bvi-theme=blue] .form__row .input-delet .icon * {
  stroke: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .link-content__check .icon *,
body .bvi-body[data-bvi-theme=brown] .banner__close .icon *,
body .bvi-body[data-bvi-theme=brown] .all-filters__close .icon *,
body .bvi-body[data-bvi-theme=brown] .form__row .input-delet .icon * {
  stroke: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .link-content__check .icon *,
body .bvi-body[data-bvi-theme=green] .banner__close .icon *,
body .bvi-body[data-bvi-theme=green] .all-filters__close .icon *,
body .bvi-body[data-bvi-theme=green] .form__row .input-delet .icon * {
  stroke: #a9e44d !important;
}

body .bvi-body .all-filters__close .icon {
  transform: scale(1.5);
}

body .bvi-body[data-bvi-theme=white] .code-input__cell::placeholder {
  color: #000 !important;
}

body .bvi-body[data-bvi-theme=black] .code-input__cell::placeholder {
  color: #FFF !important;
}

body .bvi-body[data-bvi-theme=blue] .code-input__cell::placeholder {
  color: #063462 !important;
}

body .bvi-body[data-bvi-theme=brown] .code-input__cell::placeholder {
  color: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme=green] .code-input__cell::placeholder {
  color: #a9e44d !important;
}

body .bvi-body[data-bvi-theme] :not(.bvi-no-styles) .select__placeholder {
  font-size: 18px !important;
  background: none !important;
}

body .bvi-body[data-bvi-theme] :not(.bvi-no-styles) .select--active .select__placeholder {
  font-size: 10px !important;
}

body .bvi-body[data-bvi-theme] .guides-banner__shapes.bvi-img {
  display: none !important;
}

body .bvi-body[data-bvi-theme] .guides-banner__link {
  font-size: 16px !important;
}
body .bvi-body[data-bvi-theme] .guides-banner__link span {
  font-size: 16px !important;
}