:root {
  --text-color: #eaeaea;
  --accent-color: #EED811;
  --default-bg-color: #090D11;

  --app-menu-height: 100px;
}

html {
  font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
  color: var(--text-color);
}

body {
  background-color: var(--default-bg-color);
  margin: 0px !important;
  background-image:
    url("../images/effects/noise.png"),
    /* linear-gradient(252.44deg, rgba(139, 130, 65, 0) 0%, rgba(139, 130, 65, 0.12) 100%),
    linear-gradient(284.04deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%); */
    linear-gradient(252.44deg, rgba(9, 13, 17, 0.2) 0%, rgba(139, 130, 65, 0.2) 100%),
    linear-gradient(356.81deg, rgba(9, 13, 17, 0) 0%, rgba(255, 255, 255, 0.06) 100%);

}

a {
  color: var(--accent-color);
}
.section-description a,
.GridSectionItem-description a,
.AccordionSection-sections-section-description a{
  text-decoration: none;
}

.section-description a:hover,
.GridSectionItem-description a:hover,
.AccordionSection-sections-section-description a:hover{
  text-decoration: underline;
}

* {
  box-sizing: border-box !important;
}

.form {
  display: flex;
  flex-direction: column;
}

.form-description {
  margin-bottom: 1em;
}

.form-field {
  font-size: 18px;
  font-family: "Ubuntu";
  font-weight: 700;
  margin-bottom: 10px;
}

.form-input {
  background-color: inherit;
  border: 1px solid #FFFFFF45;
  border-radius: 11px;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 15px;
  word-spacing: 0;
  margin-bottom: 20px;
  color: #fff;
  transition: border .2s;

  &:hover {
    border: 1px solid #ffffff75;
  }

  &:focus {
    border: 1px solid #ffffff;
    outline: none;
  }
}

.form-send {
  cursor: pointer;
  margin: 0 auto;
}

.img-center {
  text-align: center;

  img {
    max-width: 100%;
  }
}

.screen-menu {
  text-align: left;
  width: 100%;
  color: #999;

  a {
    color: #999;
  }
}

.static-page {
  padding: calc(var(--app-menu-height) + 20px) 0 50px;
  background-color: rgba(34, 34, 34, 0.7);

  .section {
    &:first-child {
      border: none;
      background: transparent;
    }
  }
}

.static-page-content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.first-section {
  min-height: max(100dvh, 560px);
  height: max(100dvh, 560px);
  position: relative;
  overflow: hidden;
  padding-top: var(--app-menu-height);
  background-color: var(--default-bg-color);
  background-image:
    url("../images/effects/noise.png"),
    /* linear-gradient(252.44deg, rgba(139, 130, 65, 0) 0%, rgba(139, 130, 65, 0.12) 100%),
    linear-gradient(284.04deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%); */
    linear-gradient(252.44deg, rgba(9, 13, 17, 0.2) 0%, rgba(139, 130, 65, 0.2) 100%),
    linear-gradient(356.81deg, rgba(9, 13, 17, 0) 0%, rgba(255, 255, 255, 0.06) 100%);

  .background-star {
    position: absolute;
    right: 70px;
    top: 20px;
    z-index: 0;
    pointer-events: none;
  }

  .background-planet {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
  }

  .background-stars {
    position: absolute;
    left: 100px;
    top: 120px;
    z-index: 0;
    pointer-events: none;
    opacity: 80%;
    width: 100%;
  }

  .first-section-content {
    position: relative;
    z-index: 1;
  }
}

.yellow-highlight {
  color: var(--accent-color);
}

.bolder {
  font-weight: 700;
}

.hidden {
  display: none;
}

.section-anchor {
  position: absolute;
  top: -50px;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section-light {
  padding: 165px 0;
  background: linear-gradient(252.44deg, rgba(9, 13, 17, 0.2) 0%, rgba(139, 130, 65, 0.2) 100%),
    linear-gradient(356.81deg, rgba(9, 13, 17, 0) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.section-dark {
  background-color: rgba(34, 34, 34, 0.7);
  border-right-width: 0;
  border-left-width: 0;
  padding: 60px 0 100px;
}

.section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;


  &:nth-child(even) {
    padding: 100px 0;
    /* background: linear-gradient(252.44deg, rgba(9, 13, 17, 0.2) 0%, rgba(139, 130, 65, 0.2) 100%),
      linear-gradient(356.81deg, rgba(9, 13, 17, 0) 0%, rgba(255, 255, 255, 0.06) 100%); */

    .section-title {
      text-align: right;
    }
  }

  &:nth-child(odd) {
    background: linear-gradient(180deg, rgba(139, 130, 65, 0.09) 0%, rgba(13, 17, 24, 0) 5.49%);
    background-color: rgba(34, 34, 34, 0.7);
    border: 1px solid #8B8241;
    border-right-width: 0;
    border-left-width: 0;
    padding: 60px 0 100px;
  }
}

.section-title {
  font-weight: 700;
  font-size: 45px;
  margin: 0;
}


.default-button {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  padding: 9px 40px;
  border: 1px solid var(--accent-color);
  border-radius: 999px;
  background-color: transparent;

  &:hover {
    background-color: var(--accent-color);
    color: var(--default-bg-color);
  }
}

.button-primary,
.button-secondary {
  border-radius: 8px;
  padding: 15px 40px;
  gap: 10px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  border: none;
  cursor: pointer;
  display: flex;
  margin: 0 auto;
  text-decoration: none;
  text-align: center;
  justify-content: center;

  &.size-medium {
    font-size: 18px;
    padding: 12px 40px;
  }
}
.button-primary{
  transition: background-color .2s;
  background-color: var(--accent-color);
  color: var(--default-bg-color);

  &:hover {
    background-color: #E8DB65;
  }

}
.button-secondary{
  transition: background-color .2s, border-color .2s;
  background-color: none;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);

  &:hover {
    background-color: #E8DB65;
    border-color:#E8DB65;
    color: var(--default-bg-color);
  }

}

.vector {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

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

/* APP-MENU */
.AppMenu {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 500;
  transition: backdrop-filter .2s, background-color .2s;
  height: var(--app-menu-height);
  width: 100%;

  &.scrolled {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(34, 34, 34, 0.7);
  }
}

.AppMenu-content {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
}

.AppMenu-content-header {
  display: flex;
}

.AppMenu-content-header-logo {
  .AppMenu-content-header-logo-image {
    width: 70px;
    height: 70px;
  }
}

.AppMenu-content-header-toggle {
  display: none;
}

.AppMenu-content-inner {
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
}

.AppMenu-content-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.AppMenu-content-menu-item {
  color: #eaeaea;
  text-decoration: none;
  transition: opacity .2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;

  &:hover {
    opacity: 50%;
  }

  i {
    transition: transform .2s;
    display: flex;
    font-size: 19px;
  }
}

.AppMenu-content-actions {
  display: flex;
  gap: 15px;
}

.AppMenu-content-actions-langs {
  position: relative;
  font-weight: 700;
  color: var(--accent-color);

  display: flex;
  flex-direction: column;
  cursor: pointer;

  &.mobile-only {
    display: none;
  }

  &.show {
    .AppMenu-content-actions-langs-dropdown {
      display: flex;
    }

    .AppMenu-content-actions-langs-current {
      border-width: 1px;
      border-color: var(--accent-color);
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
    }
  }
}

.AppMenu-content-actions-langs-current {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid transparent;
  transition: border .2s;
  border-radius: 5px;

  &:hover {
    border: 1px solid var(--accent-color);
  }

  i {
    font-size: 23px;
  }
}

.AppMenu-content-actions-langs-dropdown {
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  color: var(--default-bg-color);
  transition: max-height .2s;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;

  .AppMenu-content-actions-langs-dropdown-item {
    color: var(--default-bg-color);
    text-decoration: none;
  }
}

.AppMenu-content-menu-item-container {
  position: relative;

  &.show {
    .AppMenu-content-menu-item-submenu {
      display: flex;
    }

    .AppMenu-content-menu-item {
      i {
        transform: rotate(180deg);
      }
    }
  }
}

.AppMenu-content-menu-item-submenu {
  position: absolute;
  background-color: #252525;
  display: none;
  flex-wrap: wrap;
  top: 50px;
  left: 0;
  padding: 30px 20px;
  border-radius: 25px;
  border: 1px solid #FFFFFF1A;
  box-shadow: 0px 0px 7px 0px #00000040;
  width: 965px;
}

.AppMenu-content-menu-item-submenu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  color: var(--text-color);
  text-decoration: none;
  height: 90px;
  width: 50%;

  &:hover {
    background-color: rgba(255, 255, 255, .05);
  }
}

.AppMenu-content-menu-item-submenu-item-icon {
  font-size: 35px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.AppMenu-content-menu-item-submenu-item-content {
  display: flex;
  flex-direction: column;
  gap: 5px;

  .AppMenu-content-menu-item-submenu-item-title {
    font-weight: 700;
    font-size: 18px;
  }

  .AppMenu-content-menu-item-submenu-item-description {
    font-weight: 400;
    font-size: 15px;
    opacity: 50%;
  }
}

/* MAIN SECTION */
.MainSection {}

.MainSection-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.6fr auto 1fr;
  text-align: center;
  width: fit-content;
  height: 100%;
}
.MainSection-content-center{
  margin: 40px 0;
}

.MainSection-content-bottom{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.MainScreen-content-subtitle {
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Montserrat';
  margin-bottom: 10px;
}

.MainScreen-content-title {
  font-size: 80px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: var(--text-color);
  text-transform: uppercase;
}

.MainScreen-content-underline {
  height: 31px;
  width: auto;
  margin-bottom: 10px;
}

.MainScreen-content-tagline {
  font-size: 20px;
  font-weight: 300;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: var(--text-color);
  margin-top: 10px;
  font-weight: 400;
  font-family: 'Montserrat';
  margin-bottom: 50px;
}

.MainScreen-content-buttons,
.PageHeadSection-content-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.MainScreen-content-buttons > a,
.PageHeadSection-content-buttons > a{
  margin: 0;
}
.PageHeadSection-content-buttons{
  margin-bottom: 20px;
}

.MainScreen-content-description,
.MainScreen-features-switcher {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}
.MainScreen-content-description {
  width: 100%;
  max-width: 700px;
  margin-top: auto;
  margin-bottom: 25px;
}

.MainScreen-features-switcher{
  margin-bottom: 25px;
  height: 2em;
  overflow: hidden;
}

.MainScreen-features-switcher-canvas{
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  --MainScreen-features-switcher-shift: 2.4em;
}

.MainScreen-features-switcher-feature{
  background: #222;
  padding: 0 20px;
  border-radius: 8px;
  height: 2em;
  margin-bottom: 0.4em;
  transition: 0.5s ease-in-out;
  text-decoration: none;
  display: block;
  color:var(--text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.MainScreen-features-switcher-feature:hover{
  color: var(--accent-color);
}

.ContactUsSection {
  padding: 50px 0 50px;
}

.ContactUsSection-container {
  backdrop-filter: blur(100px);
  border: 1px solid #FFFFFF45;
  background-color: #2222220D;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  width: fit-content;
  align-items: center;
  border-radius: 40px;
}

.ContactUsSection-label {
  font-weight: 400;
  font-size: 18px;
}

.ContactUsSection-buttons {
  display: flex;
  gap: 15px;
}

.ContactUsSection-buttons-button {
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;

  i {
    font-size: 24px;
  }
}

.SocialSection-blog {
  margin-bottom: 100px;
}

.SocialSection-blog-button {
  width: fit-content;
}

.SocialSection-blog-article {
  width: 100%;
  max-width: 1000px;
  margin: 70px auto 50px;
}

.SocialSection-partners {}

.SocialSection-partners-list {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  height: fit-content;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.Partners-logo {
  width: auto;
  max-width: 100%;
  display: block;
}

.Partners-logo-practic-gdd {
  height: 60px;
}

.Partners-logo-lawa {
  height: 150px;
}

.Partners-logo-amonixis {
  height: 160px;
}

/* BLOG SHORT ARTICLE */
.BlogShortArticle {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  background: rgba(34, 34, 34, 0.05);
}

.BlogShortArticle-date {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}

.BlogShortArticle-header {
  width: 100%;
  font-size: 22px;
  font-family: "Ubuntu";
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  cursor: pointer;
  margin: 10px 0 15px;
  display: block;
}

.BlogShortArticle-description {
  padding: 0 0 5px;
  width: 100%;
  font-family: 'Ubuntu';
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  margin-bottom: 5px;
  line-height: 1.5;

  &>p {
    margin: 0;
  }

}

.BlogShortArticle-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  margin: 0 0 0 auto;
  width: fit-content;
  text-decoration: none;
}

.BlogShortArticle-corner-bottom {
  position: absolute;
  bottom: 25px;
  left: -40px;
}

.BlogShortArticle-corner-top {
  position: absolute;
  top: -30px;
  right: 0px;
}

/* APP FOOTER */
.AppFooter {
  background-color: #222222;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 0px -10px 24px -10px #00000040;
}

.AppFooter-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1000px;
}

.AppFooter-content-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}

.AppFooter-content-brand-image {
  width: 130px;
  height: 130px;
  margin-bottom: 15px;
}

.AppFooter-content-brand-name {
  text-shadow: 0px 4px 4px #00000040;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.AppFooter-content-brand-slogan {
  text-shadow: 0px 4px 4px #00000040;
  white-space: nowrap;
}

.AppFooter-content-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
}

.AppFooter-content-sections-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.AppFooter-content-sections-column-section-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.AppFooter-content-sections-column-section {
  color: var(--text-color);
  transition: opacity .2s;
}

span.AppFooter-content-sections-column-section {
  color: var(--text-color);
  opacity: 70%;
}

a.AppFooter-content-sections-column-section {
  text-decoration: none;

  &:hover {
    opacity: 70%;
  }
}

.AppFooter-content-sections-column-section-subsections {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.AppFooter-content-community {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  width: 220px;
}

.AppFooter-content-community-link {
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;

  i {
    font-size: 24px;
  }
}

.AppFooter-rights {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 20px;
}

/* PAGE */
.PageHeadSection {
  display: flex;
  align-items: center;
}

.PageHeadSection-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  text-align: center;
  width: fit-content;
  height: 100%;
  gap: 50px;
}

.PageHeadSection-content-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;

  .button-primary,
  .button-secondary {
    margin: 0;
    font-size: 20px;
  }
}

.PageHeadSection-content-main-subtitle {
  font-family: Montserrat;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 15px;
}

.PageHeadSection-content-main-title {
  font-weight: 700;
  font-size: 55px;
  margin: 0;
  margin-bottom: 10px;
}

.PageHeadSection-content-main-underline {
  margin-bottom: 20px;
  height: 31px;
  width: auto;
}

.PageHeadSection-content-main-description {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  margin-bottom: 40px;
}

.PageHeadSection-content-image {
  flex-basis: 45%;
  flex-shrink: 0;
}

.BlogPage-content {
  display: flex;
  gap: 50px;
  flex-direction: column;

  .BlogShortArticle-corner-top,
  .BlogShortArticle-corner-bottom {
    display: none;
  }
}

.BlogPage-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  color: var(--accent-color);
  padding: 10px 18px;
  font-family: 'Ubuntu';
}

.BlogPage-pagination-item {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: border-color .2s;

  &:hover {
    border: 1px solid var(--accent-color);
  }
}

.BlogPage-pagination-item-active {
  color: var(--default-bg-color);
  background-color: var(--accent-color);
}

.BlogPage-rss {
  display: flex;
}

.BlogPage-rss-link {
  margin: 0 auto;
}

.BlogArticlePage-content-short {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #666;
  line-height: 1.5;
}

.BlogArticlePage-content-main {
  font-size: 17px;
  line-height: 1.5;
}

.BlogArticlePage-content-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  font-size: 14px;
  color: #999;
}