@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  height: 100%;
  line-height: 1;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("/fonts/SF-Pro-Display/SFProDisplay-Regular.eot");
  src: url("/fonts/SF-Pro-Display/SFProDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/SF-Pro-Display/SFProDisplay-Regular.woff") format("woff"), url("/fonts/SF-Pro-Display/SFProDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("/fonts/SF-Pro-Display/SFProDisplay-Medium.eot");
  src: url("/fonts/SF-Pro-Display/SFProDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("/fonts/SF-Pro-Display/SFProDisplay-Medium.woff") format("woff"), url("/fonts/SF-Pro-Display/SFProDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
:root {
  --akcent: #ff8902;
  --stroke: rgba(0, 0, 0, 0.12);
  --font-family: "Roboto Flex", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "SF Pro Display", sans-serif;
  --container-size: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: calc(var(--container-size) + 30px);
  width: 100%;
}

.black-color {
  color: #000;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.notification {
  margin: 0 auto;
  padding: 10px;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  background-color: var(--akcent);
  border-radius: 0 0 6px 6px;
}

.header__container {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header .nav {
  padding-left: 165px;
}
@media (max-width: 945px) {
  .header .nav {
    display: none;
  }
}
.header__link {
  padding: 8px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  border: 1px solid currentColor;
  border-radius: 100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__link:hover {
  opacity: 0.5;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.nav__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.nav__link:hover {
  color: rgb(0, 0, 0);
}

.section:not(.section--hero) {
  padding: 12px 0;
}
.section__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.section__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #000;
}
.section__tag {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
}
.section--hero {
  padding: 24px 0 12px 0;
}
.section--hero .section__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: 24px;
}
.section--hero .section__start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  background-color: var(--akcent);
  border-radius: 16px;
}
.section--hero .section__start::after {
  content: "";
  display: block;
  max-width: 560px;
  width: 100%;
  min-height: 250px;
  background-image: url("/img/hero/start-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 20px 6px 6px 20px;
}
.section--hero .section__start-inner {
  padding: 80px 30px 80px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .section--hero .section__start-inner {
    padding: 30px;
  }
}
.section--hero .section__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.section--hero .section__center .item {
  padding: 22px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 350px;
          flex: 1 0 350px;
  border-radius: 12px;
  background-color: #f6f7f8;
}
.section--hero .section__center .item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.section--hero .section__center .item__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #000;
}
.section--hero .section__center .item__description {
  margin-top: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
}
.section--hero .section__end {
  padding: 32px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  background-color: #f7f7f8;
  border-radius: 16px;
}
.section--hero .section__end::after {
  content: "";
  display: block;
  max-width: 405px;
  width: 100%;
  min-height: 250px;
  background-image: url("/img/hero/end-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 6px;
}
.section--hero .section__end-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.section--hero .section__end .section__title, .section--hero .section__end .section__description, .section--hero .section__end span:not([class]) {
  text-align: right;
}
.section--hero .section__start, .section--hero .section__end {
  position: relative;
}
.section--hero .section__start span:not([class]), .section--hero .section__end span:not([class]) {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #274f37;
}
.section--hero .section__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #fff;
}
.section--hero .section__description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
}
.section--about .section__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: 24px;
}
.section--about .section__content {
  padding: 32px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  background-color: #000;
  border-radius: 16px;
}
.section--about .section__content::after {
  content: "";
  display: block;
  max-width: 405px;
  width: 100%;
  min-height: 250px;
  background-image: url("/img/about/image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 6px;
}
.section--about .section__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.section--about .section__content-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #fff;
}
.section--about .section__content {
  position: relative;
}
.section--about .section__content span:not([class]) {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--akcent);
}
.section--about .section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.section--about .section__description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
}
.section--blogers .section__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: 24px;
}
.section--blogers .section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .section--blogers .section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section--blogers .section__inner-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #fff;
}
.section--blogers .section__inner-description {
  margin-top: 12px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}
.section--blogers .section__content {
  padding: 45px;
  max-width: 50%;
  width: 100%;
  background-color: var(--akcent);
  border-radius: 6px;
  background-image: url("/img/advantages/background.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
}
@media (max-width: 768px) {
  .section--blogers .section__content {
    max-width: 100%;
  }
}
.section--blogers .section__content .section__title {
  color: #fff;
  text-align: left;
}
.section--blogers .section__features {
  max-width: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px 16px;
}
@media (max-width: 768px) {
  .section--blogers .section__features {
    max-width: 100%;
  }
}
.section--blogers .section__features .item {
  padding: 10px 12px 55px 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 285px;
          flex: 1 0 285px;
  background-color: #f5f5f5;
  border-radius: 6px;
}
.section--blogers .section__features .item__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--akcent);
}
.section--blogers .section__features .item__description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
}
.section--advantages .section__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: 24px;
}
.section--advantages .section__content {
  padding: 32px 25px;
  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;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: #000;
}
.section--advantages .section__content-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
}
.section--advantages .section__content-description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}
.section--advantages .section__image {
  min-height: 270px;
  width: 100%;
  background-image: url("/img/advantages/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 65%;
  border-radius: 6px;
}
.section--advantages .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section--advantages .list .item {
  padding: 6px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--akcent);
  border-radius: 6px;
  background-color: rgba(241, 157, 39, 0.24);
}
.section--work .section__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: 24px;
}
.section--work .logo {
  position: absolute;
  top: 22px;
  left: 22px;
}
.section--work .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.section--work .layout .item {
  padding: 22px;
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 350px;
          flex: 1 0 350px;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  background-color: #f6f7f8;
  border-radius: 8px;
}
@media (max-width: 585px) {
  .section--work .layout .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
.section--work .layout .item__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.section--work .layout .item__name {
  margin-top: -5px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
}
.section--work .layout .item__image {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 585px) {
  .section--work .layout .item__image {
    max-width: 100%;
  }
}
.section--work .layout .item__body {
  padding: 12px 0;
  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;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.section--work .layout .item__description {
  padding: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--akcent);
  background-color: rgba(241, 157, 39, 0.15);
  border-radius: 6px;
}
.section--work .layout .item__list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
  list-style-position: inside;
}
.section--work .layout .item__list li::marker {
  content: "— ";
}
.section--work .layout .item__list li:not(:first-child) {
  margin-top: 10px;
}
.section--work .layout .item__link {
  color: var(--akcent);
  background-color: transparent;
  border: 1px solid var(--akcent);
}
.section--work .layout .item__link:hover {
  color: #fff;
  background-color: var(--akcent);
  opacity: 1;
}
.section--download .section__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;
  gap: 24px;
}
.section--download .section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f5f5f5;
  border-radius: 6px;
}
@media (max-width: 1280px) {
  .section--download .section__content {
    -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;
  }
}
.section--download .section__info {
  padding: 40px;
  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: start;
  gap: 16px;
}
.section--download .section__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
  text-align: left;
}
.section--download .section__image {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  border-radius: 0 6px 6px 0;
}
@media (max-width: 1280px) {
  .section--download .section__image {
    border-radius: 50px 50px 0 0;
  }
}

.footer {
  margin-top: 50px;
  padding: 25px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px 12px 0 0;
  background-color: #406f55;
}
@media (max-width: 768px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.footer .nav__list {
  gap: 40px;
}
@media (max-width: 768px) {
  .footer .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.footer .nav__link {
  font-weight: 500;
  color: #fff;
}
.footer .nav__link:hover {
  opacity: 0.8;
}

.action {
  padding: 12px 22px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  background-color: var(--akcent);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.action:hover {
  opacity: 0.8;
}