.Footer-module__Grjkva__container {
  width: 93%;
  height: 244px;
  min-height: 244px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 24px;
  font-family: var(--font-bagoss);
  border-radius: 24px;
  background: var(--surface-surface-emphasized, #1d53bf);
  color: var(--text-text-inverted, #fff);
  margin: 20px auto
  }
  
  .Footer-module__Grjkva__flex-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .Footer-module__Grjkva__action-links {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
  }
  
  .Footer-module__Grjkva__flex-1 {
    flex: 1;
  }
  
  .Footer-module__Grjkva__title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
  }
  
  .Footer-module__Grjkva__tags {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
    white-space: nowrap;
  }
  
  @media (width <= 520px) {
    .Footer-module__Grjkva__container {
      min-height: 516px;
    }
  
    .Footer-module__Grjkva__title {
      font-size: 28px;
      line-height: 32px;
    }
  
    .Footer-module__Grjkva__flex-container, .Footer-module__Grjkva__action-links {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .Footer-module__Grjkva__flex-container {
      gap: 48px;
    }
  
    .Footer-module__Grjkva__action-links {
      gap: 16px;
    }
  }
  
  
  /* [project]/src/components/Button/Button.module.css [app-client] (css) */
  .Button-module__e7WGRa__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    height: 40px;
    min-width: 120px;
    min-height: 40px;
    max-height: 40px;
    flex-direction: column;
    align-items: center;
    border-radius: var(--spacing-s, 8px);
    text-align: center;
    text-overflow: ellipsis;
    font-family: var(--font-bagoss);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: .32px;
    transition: transform .2s ease-in-out;
    cursor: pointer;
  }
  
  .Button-module__e7WGRa__btn:hover {
    transform: translateY(-3px);
  }
  
  .Button-module__e7WGRa__text {
    color: var(--text-text-emphasized, #1d53bf);
    background: none;
  }
  
  .Button-module__e7WGRa__secondary {
    color: var(--text-text-inverted, #fff);
    background: var(--surface-surface-emphasized, #1d53bf);
  }
  
  
  /* [project]/src/components/Header/Header.module.css [app-client] (css) */
  .Header-module__ldgnoG__header {
    width: 100%;
    max-width: 1392px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 8px;
    font-family: var(--font-bagoss);
    position: fixed;
    top: 0;
    z-index: 18;
    background: var(--background);
  }
  
  .Header-module__ldgnoG__header svg {
    min-width: 100px;
  }
  
  .Header-module__ldgnoG__navigation_actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-l, 24px);
    margin-right: 32px;
  }
  
  .Header-module__ldgnoG__navigation_actions > a {
    color: var(--text-text-default, #1f2733);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
    position: relative;
  }
  
  .Header-module__ldgnoG__navigation_actions > a:before {
    transition: all .3s;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #1f2733;
  }
  
  .Header-module__ldgnoG__navigation_actions > a:before {
    width: 0%;
    bottom: -10px;
  }
  
  .Header-module__ldgnoG__navigation_actions > a:hover:before {
    width: 100%;
  }
  
  .Header-module__ldgnoG__auth_actions {
    margin-left: var(--spacing-l, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .Header-module__ldgnoG__mobile_menu {
    display: none;
    cursor: pointer;
  }
  
  .Header-module__ldgnoG__dropdown {
    width: max-content;
    background-color: #fff;
    border-radius: 8px;
    color: #1f2733;
    padding: 8px 12px;
    box-shadow: 0 4px 4px #0003;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 43px;
    right: 0;
    z-index: 12;
  }
  
  @media (width <= 1024px) {
    .Header-module__ldgnoG__navigation_actions > a {
      display: none;
    }
  
    .Header-module__ldgnoG__auth_actions > button:first-child {
      display: none;
    }
  
    .Header-module__ldgnoG__mobile_menu {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 1.5rem;
      position: relative;
    }
  
    .Header-module__ldgnoG__burger_text {
      color: var(--text-text-emphasized, #1d53bf);
      font-family: var(--font-bagoss);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: .18px;
    }
  }
  
  @media (width <= 568px) {
    .Header-module__ldgnoG__burger_text {
      display: none;
    }
  }
  
  
  /* [project]/src/components/Banner/Banner.module.css [app-client] (css) */
  .Banner-module__AkIBaq__banner-section {
    width: 100%;
    max-width: 1392px;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: var(--surface-surface-suppressed, #bbcbeb);
    padding: 24px;
  }
  
  .Banner-module__AkIBaq__banner-section img {
    width: 100%;
    object-fit: cover;
  }
  
  .Banner-module__AkIBaq__title {
    position: absolute;
    left: var(--spacing-l, 24px);
    top: 40%;
    display: flex;
    width: 432px;
    padding: var(--spacing-l, 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
  }
  
  @media (width <= 1024px) {
    .Banner-module__AkIBaq__title {
      position: relative;
    }
  }
  
  @media (width <= 520px) {
    .Banner-module__AkIBaq__banner-section {
      padding: 0;
      height: calc(100vh - 230px);
    }
  
    .Banner-module__AkIBaq__title {
      width: 70%;
      position: inherit;
      font-size: 28px;
      font-style: normal;
      line-height: 32px;
      padding: 0;
      top: 0;
      left: 0;
      padding: 24px;
    }
  }
  
  
  /* [project]/src/components/Article/Article.module.css [app-client] (css) */
  .Article-module__JBDGbG__section {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 12px;
  }
  
  .Article-module__JBDGbG__title {
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .22px;
  }
  
  .Article-module__JBDGbG__description {
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 12px;
  }
  
  @media (width <= 1024px) {
    .Article-module__JBDGbG__section {
      max-width: 576px;
    }
  
    .Article-module__JBDGbG__description {
      font-size: 28px;
      line-height: 32px;
    }
  }
  
  @media (width <= 520px) {
    .Article-module__JBDGbG__section {
      max-width: 90%;
    }
  }
  
  
  /* [project]/src/components/Gallery/Gallery.module.css [app-client] (css) */
  .Gallery-module__Sa_FLW__gallery-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
  }
  
  .Gallery-module__Sa_FLW__flex-container {
    height: 585px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
  
  .Gallery-module__Sa_FLW__video-container {
    position: relative;
    border-radius: 12px;
    padding: 24px;
    height: 585px;
    width: 708px;
    background: #bbcbeb;
  }
  
  .Gallery-module__Sa_FLW__play_button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
    top: 45%;
    left: 45%;
    z-index: 15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0 5px 10px 2px #223c5033;
    -moz-box-shadow: 0 5px 10px 2px #223c5033;
    box-shadow: 0 5px 10px 2px #223c5033;
    cursor: pointer;
  }
  
  .Gallery-module__Sa_FLW__video-container div, .Gallery-module__Sa_FLW__video-container iframe {
    border-radius: 12px;
    width: 100%;
    height: 537px !important;
  }
  
  .Gallery-module__Sa_FLW__absolute_bottom {
    position: absolute;
    right: -126px;
    bottom: -110px;
  }
  
  .Gallery-module__Sa_FLW__absolute_top {
    position: absolute;
    right: -96px;
    top: -74px;
  }
  
  .Gallery-module__Sa_FLW__video {
    width: 100% !important;
    height: 100% !important;
  }
  
  .Gallery-module__Sa_FLW__description-container {
    height: 100%;
    background: var(--background);
    display: flex;
    flex-direction: column;
    font-family: var(--font-bagoss);
    align-self: stretch;
    border-radius: 24px;
    align-items: flex-start;
    justify-content: center;
    padding: 0 84px;
  }
  
  .Gallery-module__Sa_FLW__description-container h2 {
    width: 100%;
    color: var(--text-text-default);
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    margin-bottom: 48px;
  }
  
  .Gallery-module__Sa_FLW__description-container p {
    color: var(--text-text-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
    margin-bottom: 24px;
  }
  
  .Gallery-module__Sa_FLW__ml-24 {
    margin-left: 24px;
  }
  
  .Gallery-module__Sa_FLW__mr-24 {
    margin-right: 32px;
  }
  
  .Gallery-module__Sa_FLW__thumbnail_container {
    display: flex;
    position: relative;
    z-index: 10;
  }
  
  .Gallery-module__Sa_FLW__image-thumbnail {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
  }
  
  .Gallery-module__Sa_FLW__mobile {
    display: none;
  }
  
  @media (width <= 1024px) {
    .Gallery-module__Sa_FLW__gallery-section {
      max-width: 576px;
    }
  
    .Gallery-module__Sa_FLW__flex-container {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      gap: 64px;
      margin-bottom: 104px;
    }
  
    .Gallery-module__Sa_FLW__absolute_bottom, .Gallery-module__Sa_FLW__absolute_top, .Gallery-module__Sa_FLW__web {
      display: none;
    }
  
    .Gallery-module__Sa_FLW__video-container {
      width: 100%;
      height: auto;
      min-height: max-content;
    }
  
    .Gallery-module__Sa_FLW__video-container div, .Gallery-module__Sa_FLW__video-container iframe, .Gallery-module__Sa_FLW__video {
      min-height: 306px;
      height: auto !important;
    }
  
    .Gallery-module__Sa_FLW__image-thumbnail {
      width: 100%;
      height: 306px;
    }
  
    .Gallery-module__Sa_FLW__description-container {
      padding: 0;
    }
  
    .Gallery-module__Sa_FLW__description-container h2 {
      margin-bottom: 24px;
    }
  
    .Gallery-module__Sa_FLW__mobile {
      display: flex;
    }
  
    .Gallery-module__Sa_FLW__ml-24, .Gallery-module__Sa_FLW__mr-24 {
      margin: 0;
    }
  }
  
  @media (width <= 520px) {
    .Gallery-module__Sa_FLW__description-container {
      max-width: 90%;
      margin: 0 auto;
    }
  
    .Gallery-module__Sa_FLW__video-container div, .Gallery-module__Sa_FLW__video-container iframe, .Gallery-module__Sa_FLW__video {
      min-height: 196px;
      height: auto !important;
    }
  
    .Gallery-module__Sa_FLW__image-thumbnail {
      width: 100%;
      height: 196px;
    }
  
    .Gallery-module__Sa_FLW__play_button {
      top: 40%;
      left: 43%;
    }
  }
  
  
  /* [project]/src/components/FAQ/FAQ.module.css [app-client] (css) */
  .FAQ-module__YTKPaG__main-section {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 12px;
    font-family: var(--font-bagoss);
  }
  
  .FAQ-module__YTKPaG__tag {
    color: var(--text-text-default, #1f2733);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .22px;
  }
  
  .FAQ-module__YTKPaG__title {
    color: var(--text-text-default, #1f2733);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
  }
  
  .FAQ-module__YTKPaG__accordion {
    width: 100%;
    border: none;
    overflow: hidden;
  }
  
  .FAQ-module__YTKPaG__item {
    border-bottom: 1px solid #353d47;
  }
  
  .FAQ-module__YTKPaG__item:last-child {
    border-bottom: none;
  }
  
  .FAQ-module__YTKPaG__question {
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 22px;
    font-style: normal;
    line-height: 24px;
    letter-spacing: .22px;
    width: 100%;
    background: none;
    padding: 32px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    outline: none;
    font-weight: 500;
  }
  
  .FAQ-module__YTKPaG__icon {
    transition: transform .3s;
  }
  
  .FAQ-module__YTKPaG__rotate {
    transform: rotate(180deg);
  }
  
  .FAQ-module__YTKPaG__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s;
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
  }
  
  .FAQ-module__YTKPaG__show {
    max-height: max-content;
    padding-bottom: 32px;
  }
  
  .FAQ-module__YTKPaG__content a {
    color: #2076f8;
    font-weight: 500;
    text-decoration: underline;
  }
  
  .FAQ-module__YTKPaG__content a:hover {
    text-decoration: none;
  }
  
  .FAQ-module__YTKPaG__note {
    color: var(--text-text-default, #1f2733);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
    margin-top: 16px;
  }
  
  .FAQ-module__YTKPaG__note a {
    color: var(--text-text-emphasized, #1d53bf);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
  
  @media (width <= 1024px) {
    .FAQ-module__YTKPaG__main-section {
      max-width: 576px;
    }
  
    .FAQ-module__YTKPaG__tag {
      font-size: 20px;
      line-height: 20px;
      letter-spacing: .2px;
    }
  
    .FAQ-module__YTKPaG__title {
      font-size: 28px;
      line-height: 32px;
    }
  
    .FAQ-module__YTKPaG__question {
      padding: 16px 0;
      font-size: 18px;
      line-height: 24px;
      letter-spacing: .18px;
    }
  }
  
  @media (width <= 520px) {
    .FAQ-module__YTKPaG__main-section {
      padding: 0 20px;
    }
  }
  
  
  /* [project]/src/components/Form/Form.module.css [app-client] (css) */
  .Form-module__PMwpBq__form_container {
    width: 100%;
    max-width: 1392px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 48px;
    border-radius: 24px;
    background: var(--surface-surface-suppressed, #bbcbeb);
  }
  
  .Form-module__PMwpBq__title {
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 14px;
  }
  
  .Form-module__PMwpBq__subtitle {
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
    margin-bottom: 38px;
  }
  
  .Form-module__PMwpBq__flex_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }
  
  .Form-module__PMwpBq__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
  }
  
  .Form-module__PMwpBq__form button {
    margin-top: 16px;
    min-height: 56px;
  }
  
  @media (width <= 1024px) {
    .Form-module__PMwpBq__flex_container {
      flex-direction: column;
    }
  }
  
  @media (width <= 520px) {
    .Form-module__PMwpBq__form_container {
      padding: 48px 24px;
    }
  
    .Form-module__PMwpBq__form button {
      width: 100% !important;
    }
  }
  
  
  /* [project]/src/components/Input/Input.module.css [app-client] (css) */
  .Input-module__aqcCqa__field {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .Input-module__aqcCqa__field label {
    color: var(--text-text-default, #1f2733);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-bagoss);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
    margin-bottom: 8px;
  }
  
  .Input-module__aqcCqa__field input {
    display: flex;
    height: 56px;
    padding: var(--spacing-m, 16px);
    align-items: center;
    gap: var(--spacing-m, 16px);
    align-self: stretch;
    border-radius: var(--spacing-sm, 12px);
    border: 2px solid var(--surface-surface-accent, #e8edf8);
    background: var(--surface-surface-background, #fff);
    color: var(--text-text-default, #1f2733);
    outline: none;
    font-family: var(--font-bagoss);
  }
  
  
  /* [project]/src/components/Textarea/Textarea.module.css [app-client] (css) */
  .Textarea-module__kZN2IW__field {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
  }
  
  .Textarea-module__kZN2IW__field label {
    color: var(--text-text-default, #1f2733);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-bagoss);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .18px;
    margin-bottom: 8px;
  }
  
  .Textarea-module__kZN2IW__field textarea {
    display: flex;
    height: 112px;
    padding: var(--spacing-m, 16px);
    align-items: flex-start;
    gap: var(--spacing-m, 16px);
    align-self: stretch;
    font-family: var(--font-bagoss);
    border-radius: var(--spacing-sm, 12px);
    border: 2px solid var(--surface-surface-accent, #e8edf8);
    background: var(--surface-surface-background, #fff);
    color: var(--text-text-default, #1f2733);
    outline: none;
    resize: none;
  }
  
  .Textarea-module__kZN2IW__char_count {
    position: absolute;
    bottom: 5px;
    right: 10px;
    margin-top: 5px;
    font-size: .9rem;
    color: var(--text-text-suppressed, #6187d3);
    text-align: right;
    font-family: var(--font-bagoss);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .12px;
  }