/*
 * BEGIN global
 */
:root {
  --bg-color: #fff;
  --text-color: #222;
}
a {
  color: inherit;
}
a:hover {
  color: inherit;
}
p {
  line-height: 1.2;
  margin-bottom: 0;
}
h1,
h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 133%;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  h1,
  h2 {
    font-size: 48px;
  }
}
h2 {
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
}
@media (min-width: 992px) {
  h2 {
    font-size: 48px;
  }
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'AvenirNextCyr', Arial, Helvetica, sans-serif;
  font-size: 100%;
  color: var(--text-color);
  background: var(--bg-color);
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
.container {
  min-width: 320px;
}
@media (min-width: 992px) {
  .container {
    max-width: 1144px;
  }
}
#wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  overflow: hidden;
}
/*
 * END global
 */
/*
 * BEGIN header component
 */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 4;
  padding: 10px 0;
  background: #fff;
  -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
          box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
}
@media (min-width: 992px) {
  .header {
    padding: 20px 0;
  }
}
.header .container {
  max-width: 1144px;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 20px;
}
@media (min-width: 992px) {
  .header__wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 128px;
}
@media (min-width: 992px) {
  .header__logo {
    max-width: 148px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    max-width: inherit;
  }
}
.header__logo-light {
  display: none;
}
.header__burger {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: url("../images/elements/menu.svg") no-repeat center;
  background-size: auto;
  display: block;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}
.header__burger.active {
  background: url("../images/elements/close.svg") no-repeat center;
  background-size: auto;
}
@media (max-width: 992px) {
  .header .nav {
    position: absolute;
    top: calc(100% - 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: top 0.3s ease, opacity 0.3s ease;
    -o-transition: top 0.3s ease, opacity 0.3s ease;
    transition: top 0.3s ease, opacity 0.3s ease;
  }
  .header .nav.active {
    top: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
    width: -webkit-fill-available;
    min-height: calc(100vh - 64px);
    padding: 40px 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: #fff;
    overflow: auto;
  }
}
@media (min-width: 992px) {
  .header .nav {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.header .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px 16px;
  padding: 0;
}
@media (max-width: 992px) {
  .header .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 992px) {
  .header .nav__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .header .nav__list {
    gap: 0 22px;
  }
}
.header .nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .header .nav__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header .nav__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.header .dropdown {
  position: relative;
  cursor: pointer;
}
.header .dropdown.active .dropdown__list {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 992px) {
  .header .dropdown.active .dropdown__list {
    position: relative;
    top: 0;
    margin: 0 0 10px;
  }
}
@media (min-width: 992px) {
  .header .dropdown.active .dropdown__list {
    top: calc(100% + 10px);
  }
}
.header .dropdown > .nav__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4px;
}
.header .dropdown > .nav__link:after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 6px;
  height: 5px;
  background: #222;
  -webkit-clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
          clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
.header .dropdown__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease;
  -o-transition: opacity 0.3s ease, top 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease;
}
@media (max-width: 992px) {
  .header .dropdown__list {
    position: absolute;
    top: -10px;
  }
}
@media (min-width: 992px) {
  .header .dropdown__list {
    position: absolute;
    top: 100%;
    right: -10px;
    padding: 8px 18px 10px;
    border-radius: 0 0 4px 4px;
    background: #222;
  }
}
.header .dropdown__link {
  text-decoration: none;
  font-size: 14px;
}
@media (min-width: 992px) {
  .header .dropdown__link {
    color: #fff;
  }
}
@media (max-width: 992px) {
  .header .lang {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 992px) {
  .header .lang {
    margin: 0;
  }
}
.header .lang__link {
  text-decoration: none;
  font-size: 20px;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 16px;
}
.header__actions .btn {
  height: 40px;
  font-size: 12px;
}
.header__actions .btn:first-child {
  width: auto;
  min-width: 64px;
  background: #222;
  color: #fff;
}
@media (min-width: 1200px) {
  .header__actions .btn:first-child {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.header__actions .btn:first-child:hover {
  background: #72df2c;
}
.header__actions .btn:last-child {
  width: auto;
  background: #fff;
  color: #222;
  border: 3px solid #69ca2b;
}
@media (min-width: 992px) {
  .header__actions .btn:last-child {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
}
@media (min-width: 1200px) {
  .header__actions .btn:last-child {
    width: auto;
  }
}
.header__actions .btn:last-child:hover {
  background: #72df2c;
  border: 3px solid #72df2c;
}
.header__actions .btn .icon[data-icon="telegram"] {
  position: relative;
  left: -1px;
  width: 21px;
  height: 21px;
  -webkit-mask: url("../images/socials/tg_2.svg") no-repeat center;
          mask: url("../images/socials/tg_2.svg") no-repeat center;
  -webkit-mask-size: auto;
          mask-size: auto;
  background-color: #fff;
}
body.dark-theme .header {
  background: #040404;
}
body.dark-theme .header__logo-dark {
  display: none;
}
body.dark-theme .header__logo-light {
  display: block;
}
body.dark-theme .header__burger {
  background: #222 url("../images/elements/menu_l.svg") no-repeat center;
  background-size: auto;
}
body.dark-theme .header__burger.active {
  background: #222 url("../images/elements/close_l.svg") no-repeat center;
  background-size: auto;
}
body.dark-theme .header .nav {
  color: #fff;
}
body.dark-theme .header .nav.active {
  background: #040404;
}
body.dark-theme .header .dropdown > .nav__link:after {
  background: #fff;
}
body.dark-theme .header__actions .btn:first-child {
  background: #fff;
  color: #222;
}
body.dark-theme .header__actions .btn:first-child:hover {
  background: #72df2c;
}
body.dark-theme .header__actions .btn:last-child {
  background: #040404;
  color: #fff;
}
body.dark-theme .header__actions .btn:last-child:hover {
  background: #72df2c;
  border: 3px solid #72df2c;
}
body.dark-theme .header__actions .btn .icon[data-icon="telegram"] {
  width: 21px;
  height: 21px;
  -webkit-mask: url("../images/socials/tg_2.svg") no-repeat center;
          mask: url("../images/socials/tg_2.svg") no-repeat center;
  -webkit-mask-size: auto;
          mask-size: auto;
  background-color: #000;
}
/*
 * END header component
 */
/*
 * BEGIN footer component
 */
.footer {
  padding: 160px 0 100px;
  border-bottom: 20px solid #040404;
}
@media (min-width: 1200px) {
  .footer .container {
    max-width: 1210px;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px 20px;
}
@media (min-width: 992px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 72px 20px;
  }
}
.footer__branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 200px;
}
.footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 128px;
}
@media (min-width: 992px) {
  .footer__logo {
    max-width: 148px;
  }
}
@media (min-width: 1200px) {
  .footer__logo {
    max-width: inherit;
  }
}
@media (min-width: 992px) {
  .footer .nav {
    width: calc(100% - 300px);
  }
}
.footer .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 20px;
  width: 100%;
}
@media (max-width: 992px) {
  .footer .nav__list {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 992px) {
  .footer .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer .nav .dropdown {
  position: relative;
  cursor: pointer;
}
.footer .nav .dropdown.active .dropdown__list {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 992px) {
  .footer .nav .dropdown.active .dropdown__list {
    position: relative;
    top: 0;
    margin: 0 0 10px;
  }
}
@media (min-width: 992px) {
  .footer .nav .dropdown.active .dropdown__list {
    top: calc(100% + 10px);
  }
}
@media (max-width: 992px) {
  .footer .nav .dropdown > .nav__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 4px;
  }
  .footer .nav .dropdown > .nav__link:after {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: inline-block;
    width: 6px;
    height: 5px;
    background: #222;
    -webkit-clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
            clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  }
}
.footer .nav .dropdown__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px 0;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease;
  -o-transition: opacity 0.3s ease, top 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease;
}
@media (max-width: 992px) {
  .footer .nav .dropdown__list {
    position: absolute;
    top: -10px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
.footer .nav .dropdown__link {
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
}
.footer .nav__link {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
@media (min-width: 992px) {
  .footer .nav__link {
    margin: 0 0 14px;
  }
}
.footer__socials {
  padding: 30px 0 0;
  border-top: 1px solid #222;
}
@media (min-width: 992px) {
  .footer__socials {
    width: 100%;
    max-width: 200px;
    padding: 22px 0 0;
  }
}
.footer .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .socials__title {
  margin: 0 0 24px;
  font-weight: 500;
  font-size: 14px;
}
.footer .socials__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
}
.footer .socials__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .socials__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__events {
  padding: 30px 0 0;
  border-top: 1px solid #222;
}
@media (min-width: 992px) {
  .footer__events {
    width: calc(100% - 600px);
    padding: 22px 0 0;
  }
}
.footer .events__title {
  margin: 0 0 24px;
  font-weight: 500;
  font-size: 14px;
}
.footer .events__subtitle {
  max-width: 320px;
  font-size: 14px;
}
.footer__copyright {
  padding: 30px 0 0;
  border-top: 1px solid #222;
}
@media (min-width: 992px) {
  .footer__copyright {
    width: 100%;
    max-width: 200px;
    padding: 22px 0 0;
  }
}
.footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 992px) {
  .footer .copyright {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.footer .copyright__text {
  font-size: 14px;
}
/*
 * END footer component
 */
/*
 * BEGIN modals component
 */
/*
 * END modals component
 */
.note {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .note {
    padding: 80px 0;
  }
}
.note__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.note__wrapper.active .note__show-more {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.note__content-wrapper {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.note__content-wrapper.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
  display: block;
}
.note__content {
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 992px) {
  .note__content {
    font-size: 24px;
  }
}
.note__content p {
  margin: 20px 0 0;
  line-height: 140%;
}
.note__content p:first-child {
  margin: 0;
}
.note__content ul {
  margin: 20px 0 0;
  list-style: disc;
  padding: 0 0 0 34px;
}

.note__show-more {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-top: 10px;
}
.note__show-more:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.faq {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .faq {
    padding: 80px 0;
  }
}
.faq__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px 0;
}
@media (min-width: 992px) {
  .faq__wrapper {
    gap: 220px 0;
  }
}
.faq__block {
  position: relative;
}
.faq .num {
  font-weight: 600;
  font-size: 200px;
  line-height: 30%;
  color: #000;
  opacity: 0.05;
}
@media (min-width: 992px) {
  .faq .num {
    margin: 0 0 0 -60px;
    font-size: 300px;
    line-height: 20%;
  }
}
.faq__title {
  max-width: 700px;
  margin: 0 0 60px;
  line-height: 133%;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .faq__title {
    margin: 0 0 80px;
  }
}
.faq__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faq__item {
  padding: 24px 0;
  border-top: 1px solid #909090;
}
@media (min-width: 992px) {
  .faq__item {
    padding: 36px 20px 36px 0;
  }
}
.faq__item:first-child {
  border: none;
}
.faq__item.active .faq__toggler {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item.active .faq__answer {
  height: auto;
  margin: 20px 0 0;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.faq__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
}
.faq__question {
  font-weight: 600;
  font-size: 20px;
}
@media (min-width: 992px) {
  .faq__question {
    font-size: 24px;
  }
}
.faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, margin 0.3s ease;
  -o-transition: opacity 0.3s ease, margin 0.3s ease;
  transition: opacity 0.3s ease, margin 0.3s ease;
}
.faq__answer p {
  font-size: 18px;
  line-height: 140%;
}
@media (min-width: 992px) {
  .faq__answer p {
    font-size: 20px;
  }
}
.faq__answer ul {
  padding: 0 0 0 18px;
  list-style: disc;
}
.faq__toggler {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.reviews {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .reviews {
    padding: 80px 0;
  }
}
.reviews__title {
  max-width: 640px;
  margin: 0 0 60px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
@media (min-width: 992px) {
  .reviews__title {
    margin: 0 0 80px;
  }
}
.reviews .swiper {
  overflow: visible;
}
.reviews .slider__slide {
  height: auto;
  width: calc(100% - 38px);
}
@media (min-width: 992px) {
  .reviews .slider__slide {
    max-width: calc(100% / 2 - 10px);
  }
}
.reviews .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 20px;
  height: 100%;
  min-height: 160px;
  padding: 24px 20px 12px 12px;
  background: #f0f3ee;
  border-radius: 0 15px 15px 0;
  border-left: 10px solid #69ca2b;
}
@media (min-width: 375px) {
  .reviews .review {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .reviews .review {
    gap: 0 38px;
    min-height: 250px;
    padding: 38px 52px 20px 20px;
    border-left: 16px solid #69ca2b;
  }
}
.reviews .review__ava {
  max-width: 80px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 992px) {
  .reviews .review__ava {
    max-width: inherit;
  }
}
.reviews .review__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px 0;
  min-height: 100%;
  padding: 10px 0 0;
}
@media (min-width: 992px) {
  .reviews .review__info {
    padding: 0;
  }
}
.reviews .review__name {
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 992px) {
  .reviews .review__name {
    font-size: 18px;
  }
}
.reviews .review__text {
  font-weight: 500;
  font-size: 12px;
  line-height: 125%;
}
.reviews .review__stars {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 22px;
  margin: auto 0 0;
}
@media (min-width: 992px) {
  .reviews .review__stars {
    max-height: inherit;
  }
}
.knowledge {
  padding: 60px 0;
  background: #040404;
}
@media (min-width: 992px) {
  .knowledge {
    padding: 80px 0;
  }
}
.knowledge__title {
  max-width: 360px;
  margin: 0 0 36px;
  line-height: 112%;
  letter-spacing: 0.1em;
  color: #fff;
}
.knowledge__subtitle {
  max-width: 360px;
  margin: 0 0 60px;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (min-width: 992px) {
  .knowledge__subtitle {
    margin: 0 0 80px;
  }
}
.knowledge__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.knowledge__wrapper.active .knowledge__item:nth-child(n+4) {
  position: static;
  opacity: 1;
  max-height: 500px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.knowledge__item {
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid rgba(105,202,43,0.8);
}
@media (min-width: 992px) {
  .knowledge__item {
    padding: 36px 20px 36px 0;
  }
}
.knowledge__item:first-child {
  border: none;
}
.knowledge__item.active .knowledge__toggler {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.knowledge__item.active .knowledge__answer {
  height: auto;
  margin: 20px 0 0;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.knowledge__item:nth-child(n+4) {
  position: absolute;
  bottom: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.knowledge__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
}
.knowledge__question {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
@media (min-width: 992px) {
  .knowledge__question {
    font-size: 24px;
  }
}
.knowledge__answer {
  height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  font-size: 18px;
  line-height: 140%;
  -webkit-transition: opacity 0.3s ease, margin 0.3s ease;
  -o-transition: opacity 0.3s ease, margin 0.3s ease;
  transition: opacity 0.3s ease, margin 0.3s ease;
  color: #fff;
}
@media (min-width: 992px) {
  .knowledge__answer {
    font-size: 20px;
  }
}
.knowledge__toggler {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.knowledge__show-more {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-top: 10px;
}
.knowledge__show-more:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
/*
 * BEGIN request elements
 */
.request {
  padding: 60px 0;
  background: #040404;
}
@media (min-width: 992px) {
  .request {
    padding: 80px 0;
  }
}
.request__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .request__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.request__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .request__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 420px;
  }
}
.request__title {
  max-width: 360px;
  line-height: 112%;
  letter-spacing: 0.1em;
  color: #fff;
}
.request__logo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 134px;
}
@media (min-width: 992px) {
  .request__logo {
    max-width: inherit;
    margin: 100px auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.request__text {
  max-width: 360px;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #fff;
}
/*
 * BEGIN inputs elements
 */
/*
 * END inputs elements
 */
/*
 * BEGIN buttons elements
 */
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 12px;
}
.btn__main {
  height: 50px;
  padding: 18px;
  background: #69ca2b;
  color: #fff;
}
@media (min-width: 992px) {
  .btn__main {
    height: 62px;
  }
}
.btn__main:hover {
  background: #72df2c;
  color: #fff;
}
.btn__main:disabled {
  background: #72df2c;
  color: #fff;
}
.btn__second {
  height: 62px;
  padding: 18px;
  background: #fff;
  color: #222;
  border: 2px solid #222;
}
.btn__second:hover {
  background: #fff;
  color: #222;
  border: 2px solid #72df2c;
}
.btn__second:disabled {
  background: #fff;
  color: #222;
}
/*
 * END buttons elements
 */
/*
 * BEGIN form elements
 */
.form {
  width: 100%;
}
@media (min-width: 992px) {
  .form {
    max-width: 526px;
  }
}
.form__elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
}
.form__input,
.form__select {
  height: 40px;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
  border-bottom: 1px solid #69ca2b;
}
.form__input::-webkit-input-placeholder {
  color: #fff;
}
.form__input::-moz-placeholder {
  color: #fff;
}
.form__input:-ms-input-placeholder {
  color: #fff;
}
.form__input::-ms-input-placeholder {
  color: #fff;
}
.form__input::placeholder {
  color: #fff;
}
.form__select option {
  color: #040404;
}
.form__textarea {
  min-height: 90px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
}
.form__textarea::-webkit-input-placeholder {
  color: #040404;
}
.form__textarea::-moz-placeholder {
  color: #040404;
}
.form__textarea:-ms-input-placeholder {
  color: #040404;
}
.form__textarea::-ms-input-placeholder {
  color: #040404;
}
.form__textarea::placeholder {
  color: #040404;
}
.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  /* padding: 10px 0; */
}
.form__group .form__checkbox {
  width: calc(100% / 2 - 15px);
}
.form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
}
.form__checkbox:last-child {
  margin: 0 0 0 auto;
}
.form__checkbox label {
  color: #fff;
}
.form__note {
  margin: 16px 0 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #fff;
}
.form .policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 30px 0 0 0;
}
.form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.form__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  margin: 30px 0 0 0;
  font-weight: 600;
  font-size: 12px;
}
.form__message {
  display: none;
  margin: 30px 0 0 0;
  text-align: right;
}
.form__message.active {
  display: block;
}
.form__message .success-message {
  color: #69ca2b;
}
.form__message .error-message {
  color: #DB0000;
}
/*
 * END form elements
 */
.slider__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 70px;
  margin: 40px 0 0;
}
@media (min-width: 992px) {
  .slider__controls {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 130px;
    margin: 75px 0 0;
  }
}
.slider__prev,
.slider__next {
  width: 53px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: opacity .3s ease, -webkit-transform 0.3s ease;
  transition: opacity .3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity .3s ease;
  transition: transform 0.3s ease, opacity .3s ease;
  transition: transform 0.3s ease, opacity .3s ease, -webkit-transform 0.3s ease;
}
.slider__prev:hover,
.slider__next:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.slider__prev.swiper-button-disabled,
.slider__next.swiper-button-disabled {
  opacity: .2;
}
.slider__prev {
  background: url("../images/elements/arw_l.svg") no-repeat center;
  background-size: auto;
}
.slider__next {
  background: url("../images/elements/arw_r.svg") no-repeat center;
  background-size: auto;
}
.slider__progress {
  position: relative;
  display: block;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 50px;
  overflow: hidden;
}
.slider__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  background: #d9d9d9;
  border-radius: 50px;
}
/*
 * BEGIN articles elements
 */
.articles__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 20px;
}
.articles__hashtags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 24px;
}
@media (min-width: 992px) {
  .articles__hashtags {
    gap: 10px;
  }
}
.articles__hashtag {
  padding: 0 12px;
  font-weight: 700;
  font-size: 12px;
  color: #69ca2b;
  border: 1px solid #69ca2b;
  border-radius: 12px;
  text-decoration: none;
  -webkit-transition: background .3s ease, color .3s ease;
  -o-transition: background .3s ease, color .3s ease;
  transition: background .3s ease, color .3s ease;
}
.articles__hashtag:hover {
  background: #69ca2b;
  color: #fff;
}
@media (min-width: 992px) {
  .articles__hashtag {
    font-size: 15px;
  }
}
.article-preview {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #69ca2b;
  text-decoration: none;
}
.article-preview:hover .article-preview__upper:after {
  opacity: 0;
}
.article-preview__upper {
  position: relative;
  max-height: 198px;
  overflow: hidden;
}
.article-preview__upper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34,34,34,0.65);
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.article-preview__picture {
  width: 100%;
}
.article-preview__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 200px;
  padding: 26px 26px 20px;
}
.article-preview__tags,
.article-preview__categories {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 4px 10px;
  margin: 0 0 20px;
  background: #72df2c;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.article-preview__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-preview__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: auto 0 0;
}
.article-preview__date {
  font-weight: 500;
  font-size: 15px;
}
.article-preview__link {
  font-weight: 700;
  font-size: 16px;
}
.article-preview__arrow {
  display: inline-block;
  width: 11px;
  height: 13px;
  margin: 0 0 0 8px;
  background: #222;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
}
/*
 * BEGIN main page
 */
.start {
  padding: 100px 0 120px;
  background: #040404;
}
@media (min-width: 992px) {
  .start {
    padding: 160px 0;
  }
}
.start__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.start__animation {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 92px;
  height: 24px;
  margin: auto;
}
.start__brand {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0;
  -webkit-animation: brandSwitch 12s infinite;
          animation: brandSwitch 12s infinite;
}
.start__brand:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.start__brand:nth-child(2) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.start__brand:nth-child(3) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.start__brand:nth-child(4) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.start__brand:nth-child(5) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}
.start__brand:nth-child(6) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.start__info {
  position: relative;
  z-index: 1;
}
.start__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 220px;
  margin: 0 0 120px;
  color: #fffbfb;
}
@media (min-width: 992px) {
  .start__title {
    max-width: 332px;
    margin: 0 0 40px;
  }
}
.start__title .text-highlight {
  color: #69ca2b;
  letter-spacing: 0.13em;
}
.start__title span:last-child {
  letter-spacing: 0.22em;
}
.start__subtitle {
  max-width: 260px;
  margin: 0 0 64px;
  font-weight: 600;
  font-size: 13px;
  line-height: 138%;
  letter-spacing: 0.08em;
  color: #fff;
}
@media (min-width: 992px) {
  .start__subtitle {
    max-width: 380px;
    font-size: 15px;
  }
}
.start__btn {
  width: 100%;
  max-width: 220px;
}
.start__fade {
  position: absolute;
  top: calc(45% - 135px);
  right: -80px;
  width: 267px;
  height: 267px;
  margin: auto;
}
@media (min-width: 992px) {
  .start__fade {
    top: -60px;
    right: 60px;
    width: 488px;
    height: 488px;
  }
}
@media (min-width: 1200px) {
  .start__fade {
    top: -160px;
    right: -100px;
    width: 688px;
    height: 688px;
  }
}
.start__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.start__logo:nth-child(1) {
  -webkit-animation: orbitRotateMobile 8s infinite linear;
          animation: orbitRotateMobile 8s infinite linear;
}
@media (min-width: 992px) {
  .start__logo:nth-child(1) {
    -webkit-animation: orbitRotateTablet 8s infinite linear;
            animation: orbitRotateTablet 8s infinite linear;
  }
}
@media (min-width: 1200px) {
  .start__logo:nth-child(1) {
    -webkit-animation: orbitRotateDesktop 8s infinite linear;
            animation: orbitRotateDesktop 8s infinite linear;
  }
}
.account {
  margin: -20px 0 0;
  padding: 100px 0 60px;
  border-radius: 20px 20px 0 0;
  background: #fff;
}
@media (min-width: 992px) {
  .account {
    padding: 120px 0 60px;
  }
}
.account .num {
  font-weight: 600;
  font-size: 200px;
  line-height: 30%;
  color: #000;
  opacity: 0.05;
}
@media (min-width: 992px) {
  .account .num {
    margin: 0 0 0 -60px;
    font-size: 300px;
    line-height: 20%;
  }
}
.account__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 18px;
}
@media (min-width: 992px) {
  .account__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.account__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 38px 0;
  max-width: 360px;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .account__info {
    margin: 0 0 160px;
  }
}
.account__title {
  max-width: 640px;
  margin: 0;
}
.account__text {
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.account__btn {
  width: 100%;
  max-width: 220px;
}
.account .swiper {
  overflow: visible;
}
.account .slider__slide {
  width: 80%;
  height: 178px;
  background: #69ca2b;
  border-radius: 10px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (min-width: 992px) {
  .account .slider__slide {
    width: calc(100% / 3 - 21px);
  }
}
.account .slider__slide[data-slide="g"] {
  background: #69ca2b url("../images/logos/g.svg") no-repeat center;
  background-size: auto;
}
.account .slider__slide[data-slide="g"]:hover {
  background: #69ca2b url("../images/logos/g_color.svg") no-repeat center;
  background-size: auto;
}
.account .slider__slide[data-slide="m"] {
  background: #69ca2b url("../images/logos/m.svg") no-repeat center;
  background-size: auto;
}
.account .slider__slide[data-slide="m"]:hover {
  background: #69ca2b url("../images/logos/m_color.svg") no-repeat center;
  background-size: auto;
}
.account .slider__slide[data-slide="y"] {
  background: #69ca2b url("../images/logos/y.svg") no-repeat center;
  background-size: auto;
}
.account .slider__slide[data-slide="y"]:hover {
  background: #69ca2b url("../images/logos/y_color.svg") no-repeat center;
  background-size: auto;
}
.choice {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .choice {
    padding: 80px 0;
  }
}
.choice__wrapper {
  margin: 0 -12px;
  padding: 100px 20px 50px;
  background: #f0f3ee;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .choice__wrapper {
    margin: 0;
    padding: 100px 60px 50px;
    border-radius: 20px 20px 0 0;
  }
}
.choice .num {
  font-weight: 600;
  font-size: 200px;
  line-height: 30%;
  color: #000;
  opacity: 0.05;
}
@media (min-width: 992px) {
  .choice .num {
    margin: 0 0 0 -60px;
    font-size: 300px;
    line-height: 20%;
  }
}
.choice__title {
  max-width: 640px;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .choice__title {
    margin: 0 0 80px;
  }
}
.choice__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 30px;
}
@media (min-width: 992px) {
  .choice__grid {
    gap: 110px 60px;
  }
}
.choice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: calc(100% / 2 - 15px);
}
@media (min-width: 992px) {
  .choice__item {
    width: calc(100% / 4 - 45px);
  }
}
.choice__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 133%;
}
.clients {
  padding: 60px 0 80px;
}
@media (min-width: 992px) {
  .clients {
    padding: 80px 0 120px;
  }
}
.clients .num {
  font-weight: 600;
  font-size: 200px;
  line-height: 30%;
  color: #000;
  opacity: 0.05;
}
@media (min-width: 992px) {
  .clients .num {
    margin: 0 0 0 -60px;
    font-size: 300px;
    line-height: 20%;
  }
}
.clients__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .clients__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.clients__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 38px 0;
  max-width: 360px;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .clients__info {
    margin: 0 0 120px;
  }
}
.clients__title {
  max-width: 640px;
}
.clients__text {
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.clients__btn {
  width: 100%;
  max-width: 220px;
}
.clients .slider {
  margin: 0 0 100px;
}
@media (min-width: 992px) {
  .clients .slider {
    margin: 0 0 200px;
  }
}
.clients .slider .swiper {
  overflow: visible;
}
.clients .slider__slide {
  max-width: 820px;
}
.clients .slider .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 368px;
  background: #69ca2b;
  border-radius: 16px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  border: none;
  overflow: hidden;
}
@media (min-width: 992px) {
  .clients .slider .card {
    height: 290px;
  }
  .clients .slider .card[data-slide="agencies"] .card__info:before {
    border-radius: 0 153px 153px 0;
  }
  .clients .slider .card[data-slide="agencies"] .card__content {
    border-radius: 0 155px 155px 0;
  }
  .clients .slider .card[data-slide="brands"] .card__info:before {
    border-radius: 0 153px 153px 0;
  }
  .clients .slider .card[data-slide="brands"] .card__content {
    border-radius: 0 155px 155px 0;
  }
  .clients .slider .card[data-slide="affiliates"] .card__info:before {
    border-radius: 0 153px 153px 0;
  }
  .clients .slider .card[data-slide="affiliates"] .card__content {
    border-radius: 0 155px 155px 0;
  }
}
.clients .slider .card__picture {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clients .slider .card__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 70%;
}
@media (min-width: 992px) {
  .clients .slider .card__info {
    max-width: 60%;
  }
}
.clients .slider .card__info:before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 28px;
  background: rgba(105,202,43,0.25);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 0 153px 27px 0;
}
.clients .slider .card__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 30px;
  background: #69ca2b;
  border-radius: 0 0 155px 0;
}
@media (min-width: 992px) {
  .clients .slider .card__content {
    padding: 20px 50px 20px 72px;
  }
}
.clients .slider .card__title {
  margin: 0;
  font-size: 26px;
  color: #fff;
}
@media (min-width: 992px) {
  .clients .slider .card__title {
    font-size: 48px;
  }
}
.clients .slider .card__text {
  max-width: 90%;
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: 0.05em;
  color: #fff;
}
.clients .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 54px 0;
  position: relative;
}
@media (min-width: 992px) {
  .clients .list:before {
    content: "";
    position: absolute;
    top: -160px;
    right: 180px;
    width: 633px;
    height: 293px;
    background: url("../images/elements/pros_s@2x.png") no-repeat center;
    background-size: contain;
  }
}
.clients .list__item {
  position: relative;
  padding: 0 0 0 30px;
  background: url("../images/elements/dot_s@2x.png") no-repeat top 4px left;
  background-size: 22px;
}
@media (min-width: 992px) {
  .clients .list__item {
    padding: 0 0 0 70px;
    background: url("../images/elements/dot_s@2x.png") no-repeat top left;
    background-size: 42px;
  }
}
.clients .list__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
}
@media (min-width: 992px) {
  .clients .list__title {
    margin: 0 0 24px;
    font-size: 36px;
  }
}
.clients .list__text {
  max-width: 360px;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.sources {
  padding: 60px 0 0;
  background: #69ca2b;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 992px) {
  .sources {
    padding: 80px 0 0;
  }
}
.sources__title {
  margin: 0 0 60px;
  color: #fff;
}
@media (min-width: 992px) {
  .sources__title {
    margin: 0 0 80px;
  }
}
.sources .slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sources__slider-first {
  padding: 25px 0;
}
@media (min-width: 992px) {
  .sources__slider-first {
    padding: 58px 0;
  }
}
.sources__slider-first .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          -o-transition-timing-function: linear !important;
     transition-timing-function: linear !important;
}
.sources__slider-second {
  padding: 25px 0;
  background: #fff;
}
@media (min-width: 992px) {
  .sources__slider-second {
    padding: 58px 0;
  }
}
.sources__slider-second .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          -o-transition-timing-function: linear !important;
     transition-timing-function: linear !important;
}
/*
 * END main page
 */
@-webkit-keyframes brandSwitch {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes brandSwitch {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes orbitRotateMobile {
  0% {
    -webkit-transform: rotate(0deg) translateX(20px) rotate(0deg);
            transform: rotate(0deg) translateX(20px) rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg) translateX(20px) rotate(-90deg);
            transform: rotate(90deg) translateX(20px) rotate(-90deg);
  }
  50% {
    -webkit-transform: rotate(180deg) translateX(20px) rotate(-180deg);
            transform: rotate(180deg) translateX(20px) rotate(-180deg);
  }
  75% {
    -webkit-transform: rotate(270deg) translateX(20px) rotate(-270deg);
            transform: rotate(270deg) translateX(20px) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(20px) rotate(-360deg);
            transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}
@keyframes orbitRotateMobile {
  0% {
    -webkit-transform: rotate(0deg) translateX(20px) rotate(0deg);
            transform: rotate(0deg) translateX(20px) rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg) translateX(20px) rotate(-90deg);
            transform: rotate(90deg) translateX(20px) rotate(-90deg);
  }
  50% {
    -webkit-transform: rotate(180deg) translateX(20px) rotate(-180deg);
            transform: rotate(180deg) translateX(20px) rotate(-180deg);
  }
  75% {
    -webkit-transform: rotate(270deg) translateX(20px) rotate(-270deg);
            transform: rotate(270deg) translateX(20px) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(20px) rotate(-360deg);
            transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}
@-webkit-keyframes orbitRotateTablet {
  0% {
    -webkit-transform: rotate(0deg) translateX(35px) rotate(0deg);
            transform: rotate(0deg) translateX(35px) rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg) translateX(35px) rotate(-90deg);
            transform: rotate(90deg) translateX(35px) rotate(-90deg);
  }
  50% {
    -webkit-transform: rotate(180deg) translateX(35px) rotate(-180deg);
            transform: rotate(180deg) translateX(35px) rotate(-180deg);
  }
  75% {
    -webkit-transform: rotate(270deg) translateX(35px) rotate(-270deg);
            transform: rotate(270deg) translateX(35px) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(35px) rotate(-360deg);
            transform: rotate(360deg) translateX(35px) rotate(-360deg);
  }
}
@keyframes orbitRotateTablet {
  0% {
    -webkit-transform: rotate(0deg) translateX(35px) rotate(0deg);
            transform: rotate(0deg) translateX(35px) rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg) translateX(35px) rotate(-90deg);
            transform: rotate(90deg) translateX(35px) rotate(-90deg);
  }
  50% {
    -webkit-transform: rotate(180deg) translateX(35px) rotate(-180deg);
            transform: rotate(180deg) translateX(35px) rotate(-180deg);
  }
  75% {
    -webkit-transform: rotate(270deg) translateX(35px) rotate(-270deg);
            transform: rotate(270deg) translateX(35px) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(35px) rotate(-360deg);
            transform: rotate(360deg) translateX(35px) rotate(-360deg);
  }
}
@-webkit-keyframes orbitRotateDesktop {
  0% {
    -webkit-transform: rotate(0deg) translateX(50px) rotate(0deg);
            transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg) translateX(50px) rotate(-90deg);
            transform: rotate(90deg) translateX(50px) rotate(-90deg);
  }
  50% {
    -webkit-transform: rotate(180deg) translateX(50px) rotate(-180deg);
            transform: rotate(180deg) translateX(50px) rotate(-180deg);
  }
  75% {
    -webkit-transform: rotate(270deg) translateX(50px) rotate(-270deg);
            transform: rotate(270deg) translateX(50px) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(50px) rotate(-360deg);
            transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
@keyframes orbitRotateDesktop {
  0% {
    -webkit-transform: rotate(0deg) translateX(50px) rotate(0deg);
            transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg) translateX(50px) rotate(-90deg);
            transform: rotate(90deg) translateX(50px) rotate(-90deg);
  }
  50% {
    -webkit-transform: rotate(180deg) translateX(50px) rotate(-180deg);
            transform: rotate(180deg) translateX(50px) rotate(-180deg);
  }
  75% {
    -webkit-transform: rotate(270deg) translateX(50px) rotate(-270deg);
            transform: rotate(270deg) translateX(50px) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(50px) rotate(-360deg);
            transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
/*
 * BEGIN sources page
 */
.source {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .source {
    padding: 120px 0;
  }
}
.source__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 60px;
  gap: 18px;
}
@media (min-width: 992px) {
  .source__wrapper {
    margin: 0 0 100px;
  }
}
.source__info {
  max-width: 360px;
}
.source__title {
  max-width: 360px;
  margin: 0 0 40px;
}
.source__title .text-highlight {
  color: #69ca2b;
}
.source__subtitle {
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.source__logo {
  max-width: 81px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 992px) {
  .source__logo {
    max-width: inherit;
  }
}
.source__types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px 0;
}
@media (min-width: 992px) {
  .source__types {
    gap: 35px 0;
  }
}
.source__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 12px 6px;
  width: 100%;
}
@media (min-width: 992px) {
  .source__grid {
    gap: 34px 24px;
  }
}
.source__grid[data-quantity="1"] {
  min-height: 220px;
  grid-template-areas:
  "item1";
}
@media (min-width: 992px) {
  .source__grid[data-quantity="1"] {
    min-height: 296px;
  }
}
.source__grid[data-quantity="2"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  grid-template-areas:
  "item1 item1"
  "item2 item2";
}
@media (min-width: 992px) {
  .source__grid[data-quantity="2"] {
    min-height: 296px;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "item1 item2"
    "item1 item2";
  }
}
.source__grid[data-quantity="3"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  grid-template-areas:
  "item1 item1"
  "item2 item3";
}
@media (min-width: 992px) {
  .source__grid[data-quantity="3"] {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "item1 item2"
    "item1 item3";
  }
}
.source__grid[data-quantity="4"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas:
  "item1 item2"
  "item1 item2"
  "item3 item4";
}
@media (min-width: 992px) {
  .source__grid[data-quantity="4"] {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "item1 item2 item3"
    "item1 item2 item4";
  }
}
.source__grid[data-quantity="5"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas:
  "item1 item2"
  "item1 item3"
  "item4 item5";
}
@media (min-width: 992px) {
  .source__grid[data-quantity="5"] {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "item1 item2 item3"
    "item1 item4 item5";
  }
}
.source__grid[data-quantity="6"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas:
  "item1 item2"
  "item3 item4"
  "item5 item6";
}
@media (min-width: 992px) {
  .source__grid[data-quantity="6"] {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "item1 item2 item3"
    "item4 item5 item6";
  }
}
.source__grid .source__item:nth-child(1) {
  grid-area: item1;
}
.source__grid .source__item:nth-child(2) {
  grid-area: item2;
}
.source__grid .source__item:nth-child(3) {
  grid-area: item3;
}
.source__grid .source__item:nth-child(4) {
  grid-area: item4;
}
.source__grid .source__item:nth-child(5) {
  grid-area: item5;
}
.source__grid .source__item:nth-child(6) {
  grid-area: item6;
}
.source__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px 0;
  /* width: calc(100% / 2 - 3px); */
  min-height: 64px;
  padding: 20px;
  background: #69ca2b;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .source__item {
    /* width: calc(100% / 3 - 16px); */
    min-height: 130px;
    padding: 34px;
  }
}
.source__icon {
  max-width: 24px;
}
@media (min-width: 992px) {
  .source__icon {
    max-width: inherit;
  }
}
.source__type {
  font-weight: 600;
  font-size: 14px;
  line-height: 83%;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 992px) {
  .source__type {
    font-size: 24px;
  }
}
.source__note {
  font-size: 10px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .source__note {
    font-size: 15px;
  }
}
.ticker {
  background: #69ca2b;
}
.ticker__text {
  font-weight: 600;
  font-size: 80px;
  line-height: 67%;
  letter-spacing: 0.1em;
  word-spacing: 0.2em;
  color: #fff;
  -webkit-animation: move-right-to-left linear 20s infinite;
          animation: move-right-to-left linear 20s infinite;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .ticker__text {
    font-size: 200px;
    line-height: 70%;
  }
}
.conditions {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .conditions {
    padding: 120px 0 60px;
  }
}
.conditions__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding: 34px 24px;
  background: #f0f3ee;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .conditions__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 60px 110px;
    border-radius: 20px 20px 0 0;
  }
}
.conditions .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px 0;
  max-width: 580px;
}
@media (min-width: 992px) {
  .conditions .list {
    gap: 54px 0;
  }
}
.conditions .list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}
.conditions .list__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 22px;
  background: url("../images/elements/dot_s@2x.png") no-repeat top left;
  background-size: 22px;
  font-weight: 600;
  font-size: 10px;
  line-height: 100%;
}
@media (min-width: 992px) {
  .conditions .list__num {
    width: 42px;
    height: 42px;
    background: url("../images/elements/dot_s@2x.png") no-repeat top left;
    background-size: 42px;
    font-size: 13px;
  }
}
.conditions .list__info {
  padding: 6px 0 0;
}
.conditions .list__title {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .conditions .list__title {
    font-size: 24px;
  }
}
.conditions .list__text {
  font-size: 15px;
  line-height: 130%;
  letter-spacing: 0.05em;
}
.conditions__btn {
  position: relative;
}
.conditions__btn:after {
  content: url("../images/elements/cursor.svg");
  position: absolute;
  top: calc(100% - 7px);
  left: calc(100% + 11px);
}
.publications {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .publications {
    padding: 80px 0;
  }
}
.publications__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .publications__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.publications__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 38px 0;
  max-width: 360px;
  margin: 0 0 120px;
}
.publications__title {
  max-width: 640px;
}
.publications__text {
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.publications__btn {
  width: 100%;
  max-width: 220px;
}
.publications .slider {
  overflow: visible;
}
.publications .slider .swiper {
  overflow: visible;
}
.publications .slider__slide {
  width: 100%;
  max-width: 360px;
}
.publications .article {
  width: 100%;
}
/*
 * END sources page
 */
@-webkit-keyframes move-right-to-left {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(-550%);
            transform: translateX(-550%);
  }
}
@keyframes move-right-to-left {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(-550%);
            transform: translateX(-550%);
  }
}
/*
 * BEGIN cases page
 */
.cases {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .cases {
    padding: 120px 0;
  }
}
.cases__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .cases__wrapper {
    margin: 0 0 120px;
  }
}
.cases__info {
  max-width: 360px;
}
.cases__title {
  max-width: 360px;
  margin: 0 0 32px;
}
.cases__subtitle {
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.cases__logo {
  max-width: 81px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 992px) {
  .cases__logo {
    max-width: inherit;
  }
}
.cases .articles {
  padding: 0;
}
.cases .article-preview {
  width: 100%;
}
@media (min-width: 576px) {
  .cases .article-preview {
    width: calc(100% / 2 - 13.4px);
  }
}
@media (min-width: 992px) {
  .cases .article-preview {
    width: calc(100% / 3 - 13.4px);
  }
}
/*
 * END cases page
 */
 /*
 * BEGIN archives page
 */
.archives {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .archives {
    padding: 120px 0;
  }
}
.archives__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .archives__wrapper {
    margin: 0 0 120px;
  }
}
.archives__title {
  margin: 0 0 32px;
}
.archives__subtitle {
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.archives__logo {
  max-width: 81px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 992px) {
  .archives__logo {
    max-width: inherit;
  }
}
.archives .articles {
  padding: 0;
}
.archives .article-preview {
  width: 100%;
}
@media (min-width: 576px) {
  .archives .article-preview {
    width: calc(100% / 2 - 13.4px);
  }
}
@media (min-width: 992px) {
  .archives .article-preview {
    width: calc(100% / 3 - 13.4px);
  }
}
/*
 * END archives page
 */
/*
 * BEGIN articles page
 */
.articles {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .articles {
    padding: 120px 0;
  }
}
.articles__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .articles__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.articles__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 38px 0;
  max-width: 360px;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .articles__info {
    margin: 0 0 120px;
  }
}
.articles__title {
  max-width: 640px;
  text-transform: uppercase;
}
.articles__text {
  font-size: 15px;
}
.articles__btn {
  display: none;
  width: 100%;
  max-width: 220px;
}
@media (min-width: 992px) {
  .articles__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.articles .slider-desktop {
  display: none;
}
@media (min-width: 992px) {
  .articles .slider-desktop {
    display: block;
  }
}
@media (min-width: 992px) {
  .articles .slider-mobile {
    display: none;
  }
}
.articles .slider-mobile .slider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px 0;
}
@media (min-width: 992px) {
  .articles .slider .swiper {
    overflow: visible;
  }
}
.articles .slider__slide {
  max-width: 820px;
}
.articles .slider .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 290px;
  background: #69ca2b;
  border-radius: 16px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  border: none;
  overflow: hidden;
  text-decoration: none;
}
.articles .slider .card__picture {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles .slider .card__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 70%;
  height: 100%;
}
@media (min-width: 992px) {
  .articles .slider .card__info {
    max-width: 60%;
  }
}
.articles .slider .card__info:before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 28px;
  background: rgba(105,202,43,0.25);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 0 53px 27px 0;
}
@media (min-width: 992px) {
  .articles .slider .card__info:before {
    border-radius: 0 153px 27px 0;
  }
}
.articles .slider .card__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 30px;
  background: #69ca2b;
  border-radius: 0 0 55px 0;
}
@media (min-width: 992px) {
  .articles .slider .card__content {
    padding: 20px 50px 20px 72px;
    border-radius: 0 0 155px 0;
  }
}
.articles .slider .card__title {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
}
@media (min-width: 768px) {
  .articles .slider .card__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .articles .slider .card__title {
    -webkit-line-clamp: 4;
    font-size: 24px;
  }
}
.articles .slider .card__text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 90%;
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (min-width: 992px) {
  .articles .slider .card__text {
    -webkit-line-clamp: 4;
  }
}
/*
 * END articles page
 */
/*
 * BEGIN article page
 */
.article {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .article {
    padding: 120px 0 60px;
  }
}
@media (min-width: 1200px) {
  .article .container {
    max-width: 1300px;
  }
}
.article__head {
  position: relative;
  margin: 0 0 60px;
  padding: 30px 24px;
  border: 3px solid #69ca2b;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .article__head {
    margin: 0 0 120px;
    padding: 52px 52px 20px;
  }
}
.article__head:after {
  content: "";
  position: absolute;
  top: -63px;
  right: -63px;
  width: 126px;
  height: 126px;
  background: url("../images/logos/logo_rnd@2x.png") no-repeat center;
  background-size: cover;
}
.article__image {
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 0 32px;
  border-radius: 20px;
}
.article__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .article__title {
    font-size: 36px;
  }
}
.article__title span {
  font-weight: 700;
}
.article__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .article__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.article__meta,
.article__dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 36px;
}
.article__viewed,
.article__read,
.article__publish,
.article__update {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
.article__viewed p,
.article__read p,
.article__publish p,
.article__update p {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
}
@media (min-width: 1200px) {
  .article__content {
    max-width: 1166px;
    margin: 0 auto;
  }
}
.article__content >:first-child {
  margin-top: 0;
}
.article__content blockquote {
  margin: 24px 0 0;
  position: relative;
}
.article__content blockquote:before {
  content: "";
  position: absolute;
  left: -30px;
  width: 16px;
  height: 100%;
  background: #69ca2b;
}
.article__content p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 130%;
}
.article__content h2 {
  margin: 32px 0 0;
  font-weight: 600;
}
.article__content img {
  margin: 24px auto;
}
.article .reactions__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 26px;
  width: 100%;
  max-width: 188px;
  height: 70px;
  margin: 28px 0 0 auto;
  padding: 15px 26px;
  border: 2px solid #69ca2b;
  border-radius: 20px;
}
.article .reaction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  cursor: pointer;
}
.article .reaction.loading {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: .2;
  pointer-events: none;
}
/*
 * END article page
 */
/*
 * BEGIN prices page
 */
.prices {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .prices {
    padding: 80px 0;
  }
}
@media (min-width: 576px) {
  .prices .container {
    max-width: 1332px;
  }
}
.prices__title {
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .prices__title {
    margin: 0 0 80px;
  }
}
.prices .table {
  width: 100%;
  overflow: auto;
}
.prices .table__wrapper {
  width: 100%;
  min-width: 1282px;
}
@media (min-width: 992px) {
  .prices .table__wrapper {
    padding: 50px 40px;
    border: 1px solid #69ca2b;
    border-radius: 20px;
  }
}
.prices table {
  width: 100%;
  min-width: 1200px;
}
.prices table thead,
.prices table tbody {
  border: none;
}
.prices table thead th {
  padding: 0 6px 6px;
  font-weight: 700;
  font-size: 14px;
  vertical-align: bottom;
}
@media (min-width: 992px) {
  .prices table thead th {
    padding: 0 12px 12px;
    font-size: 16px;
  }
}
.prices table thead th:first-child {
  padding: 0 6px 6px 0;
}
@media (min-width: 992px) {
  .prices table thead th:first-child {
    padding: 0 12px 12px 0;
  }
}
.prices table thead th:last-child {
  padding: 0 0 6px 6px;
}
@media (min-width: 992px) {
  .prices table thead th:last-child {
    padding: 0 0 12px 12px;
  }
}
.prices table thead th img {
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .prices table thead th img {
    margin: 20px 0 0;
  }
}
.prices table tbody tr:last-child td {
  border: none;
}
.prices table tbody th {
  padding: 0 10px 0 0;
  font-weight: 600;
  font-size: 18px;
  color: #69ca2b;
}
@media (min-width: 992px) {
  .prices table tbody th {
    padding: 0 20px 0 0;
    font-size: 20px;
  }
}
.prices table tbody th a {
  text-decoration: none;
}
.prices table tbody td {
  padding: 4px 6px;
  vertical-align: bottom;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid;
}
@media (min-width: 992px) {
  .prices table tbody td {
    padding: 8px 12px;
  }
}
.prices table tbody td:nth-child(4),
.prices table tbody td:nth-child(6) {
  background: rgba(150,240,92,0.65);
}
.prices table tbody td:nth-child(5),
.prices table tbody td:nth-child(7) {
  text-align: center;
}
/*
 * END prices page
 */
/*
 * BEGIN faq page
 */
/*
 * END faq page
 */
/*
 * BEGIN partners page
 */
.partners {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .partners {
    padding: 80px 0;
  }
}
.partners__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .partners__wrapper {
    margin: 0 0 80px;
  }
}
.partners__info {
  max-width: 360px;
}
.partners__title {
  max-width: 360px;
  margin: 0 0 32px;
  line-height: 133%;
  letter-spacing: 0.1em;
}
.partners__subtitle {
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.partners__logo {
  max-width: 81px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 992px) {
  .partners__logo {
    max-width: inherit;
  }
}
.promotions__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
}
.promotions__hashtags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 24px;
}
@media (min-width: 992px) {
  .promotions__hashtags {
    gap: 10px;
  }
}
.promotions__hashtag {
  padding: 0 12px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  background: #69ca2b;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .promotions__hashtag {
    font-size: 15px;
  }
}
.promo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 400px;
  padding: 16px 38px 44px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #69ca2b;
}
@media (min-width: 576px) {
  .promo {
    width: calc(100% / 2 - 13.4px);
  }
}
@media (min-width: 992px) {
  .promo {
    width: calc(100% / 3 - 13.4px);
  }
}
.promo__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
  min-height: 70px;
  margin: 0 0 26px;
}
.promo__about {
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.promo__bonus {
  list-style: disc;
  margin: auto 0 30px;
  padding: 0 0 0 18px;
  font-weight: 700;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
.promo__btn {
  width: 100%;
  height: 50px;
  padding: 10px 22px;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1;
  background: rgba(150,240,92,0.79);
  border-radius: 10px;
  text-align: left;
}
.promo__note {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  margin: auto;
  font-weight: 300;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #222;
}
.promo__note span {
  font-weight: 500;
}
/*
 * END partners page
 */
/*
 * BEGIN contacts page
 */
.contacts {
  padding: 60px 0;
  background: #040404;
}
@media (min-width: 992px) {
  .contacts {
    padding: 120px 0 80px;
  }
}
.contacts__title {
  margin: 0 0 60px;
  color: #fff;
}
@media (min-width: 992px) {
  .contacts__title {
    margin: 0 0 80px;
  }
}
.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px 20px;
}
@media (min-width: 992px) {
  .contacts__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (min-width: 992px) {
  .contacts__info {
    gap: 0 80px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0 45px;
  }
}
.contacts .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 186px;
}
@media (min-width: 992px) {
  .contacts .contact {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contacts .contact__ava {
  margin: 0 0 20px;
  border-radius: 50%;
  border: 3px solid #69ca2b;
}
.contacts .contact__name {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
@media (min-width: 992px) {
  .contacts .contact__name {
    padding: 0 0 0 20px;
    font-size: 24px;
    text-align: left;
  }
}
.contacts .contact__position {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: #fff;
  text-align: center;
}
@media (min-width: 992px) {
  .contacts .contact__position {
    padding: 0 0 0 20px;
    text-align: left;
  }
}
.contacts .contact__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px 0;
  margin: 40px 0 0;
}
.contacts .contact__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
  text-decoration: none;
}
@media (min-width: 992px) {
  .contacts .contact__link {
    gap: 0 25px;
  }
}
.contacts .contact__link span {
  font-weight: 700;
  font-size: 12px;
  color: #69ca2b;
}
@media (min-width: 992px) {
  .contacts .contact__link span {
    font-size: 15px;
  }
}
/*
 * END contacts page
 */
/*
 * Begin 404 page
 */
.not-found__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: 120px 0 0;
}
@media (min-width: 992px) {
  .not-found__wrapper {
    padding: 160px 0 0;
    gap: 24px;
  }
}
.not-found__title {
  margin: 0;
  font-size: 100px;
  line-height: 1;
  font-weight: 700;
  color: #69ca2b;
  text-align: center;
}
@media (min-width: 992px) {
  .not-found__title {
    font-size: 120px;
  }
}
.not-found__text {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 992px) {
  .not-found__text {
    font-size: 36px;
  }
}
.not-found__button {
  margin: 32px 0 0;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .not-found__button {
    margin: 54px 0 0;
  }
}
/*
 * END 404 page
 */
/*
 * BEGIN reset
 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #000 inset !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
input[type=number] {
  -moz-appearance: textfield;
}
/*
 * END reset
 */
