/*! project-name v0.0.1 | (c) 2020 YOUR NAME | MIT License | http://link-to-your-git-repo.com */
/* Box sizing rules */
/* line 2, src/sass/components/_reset.scss */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
/* line 9, src/sass/components/_reset.scss */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
/* line 15, src/sass/components/_reset.scss */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
html {
  overflow-x: hidden;
}
/* Set core body defaults */
/* line 31, src/sass/components/_reset.scss */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
  min-width: 320px;
  overflow-x: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* line 39, src/sass/components/_reset.scss */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* line 45, src/sass/components/_reset.scss */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
a {
  transition: all ease 0.5s;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
p {
  margin: 0;
}
.green {
  color: #4f9d3a !important;
}
/* Make images easier to work with */
/* line 50, src/sass/components/_reset.scss */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
/* line 56, src/sass/components/_reset.scss */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
/* line 61, src/sass/components/_reset.scss */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Blur images when they have no alt attribute */
/* line 69, src/sass/components/_reset.scss */
img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
@media (max-width: 768px) {
  .container {
    max-width: 740px !important;
  }
}

.uk-first-column {
  padding-left: 0px !important;
}

.fsec3-left-items > * {
  padding-left: 30px;
}

.tm-f24eu-footer-share-button:hover {
  color: #72bf44;
  background: #ffffff;
}

.tm-f24eu-footer-share-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  background: #f5f5f5;
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.tm-f24eu-footer-share-button svg {
  width: 20px;
  height: 20px;
}

.hsec1-form-body {
  position: relative;
}

.hsec1-form-error1,
.hsec1-form-error2 {
  margin-top: 8px;
  width: 241px;
  font-family: "GoodPro";
  font-style: normal;
  font-weight: 350;
  font-size: 13px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.7);
  display: none;
  margin: 0 0 10px;
}

.hsec1-form-error2 {
  left: 270px;
}

.hsec1-form-error1 b,
.hsec1-form-error2 b {
  font-weight: 350;
  width: 85%;
}

.hsec1-form-error1 svg,
.hsec1-form-error2 svg {
  width: 13%;
  margin-top: 6px;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  /* line 75, src/sass/components/_reset.scss */
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "GoodPro";
}
.wrapper {
  max-width: 990px;
  padding: 0 15px;
  margin: 0 auto;
}
.first {
  background: url(../img/first.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 95px;
}
.first__header {
  padding: 22px 0;
  background: #f8f8f8;
  position: fixed;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.first__header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.first__burger {
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  cursor: pointer;
  display: none;
}
.first__burger span {
  height: 2px;
  width: 20px;
  display: block;
  background: #999;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.first__burger span:nth-child(2) {
  width: 16px;
}
.first__logo img {
  width: 100%;
}
.first__nav {
  display: none;
}
.first__nav .first__open {
  width: 100%;
  max-width: 460px;
  display: flex;
  margin: 15px auto;
  margin-top: 40px;
}
.first__links {
  max-width: 505px;
  width: 55%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 19px;
}
.first__links a {
  position: relative;
  text-decoration: none;
  color: #010106;
}
.first__links a:hover {
  opacity: 0.8;
}
.first__links a:hover:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  bottom: -31px;
  left: 0;
  background: #72bf44;
}
.first__open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 122px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 14px;
  line-height: 17px;
  border: 1px solid #6ebf58;
  border-radius: 2px;
  color: #6ebf58;
  margin: 0 5px;
  text-decoration: none;
}
.first__open:hover {
  cursor: pointer;
  background: #6ebf58;
  color: #fff;
  text-decoration: none;
}
.first__langs {
  width: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 19px;
}
.first__langs a {
  color: #a7a9ac;
  text-decoration: none;
}
.first__langs a:hover {
  color: #000;
}
h1 {
  max-width: 560px;
  font-weight: 500;
  font-size: 44px;
  line-height: 110.4%;
  padding-top: 159px;
  margin-bottom: 46px;
  color: #ffffff;
  opacity: 0.9;
}
.first__list p {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 135%;
  padding-left: 45px;
  position: relative;
  color: #ffffff;
  margin-bottom: 8px;
  opacity: 0.9;
}
.first__list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 30px;
  border-bottom: 3px solid #49a149;
}
h2 {
  font-weight: 500;
  font-size: 44px;
  line-height: 110.4%;
  color: #000000;
  text-align: center;
  opacity: 0.8;
}
h2 span {
  color: #4a9038;
}
.video {
  padding-top: 90px;
  background: #fff;
}
.video h2 {
  text-align: left;
  max-width: 670px;
}
.video__info {
  margin: 65px 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.video__info p {
  width: 48%;
  max-width: 488px;
  font-weight: normal;
  font-size: 16px;
  line-height: 125%;
  color: #000000;
}
p.video__green {
  max-width: 400px;
  color: #4a9038;
}
.video__block {
  width: 100%;
  height: 442px;
  background: url(../img/video.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  border: 19px solid #ffffff;
  box-shadow: 0px 4px 145px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  position: relative;
}
.video__preview {
  width: 100%;
}
.video__play {
  position: absolute;
  left: calc(50% - 65px);
  top: calc(50% - 41px);
}
.video__block:hover {
  cursor: pointer;
}
.video__block:hover .video__play {
  opacity: 0.8;
}
.why {
  padding-top: 100px;
}
.why__line {
  margin-top: 80px;
  position: relative;
}
.why__line .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.why__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}
.why__icon {
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.why__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #4f9d3a;
  border-radius: 17px;
}
.why__text {
  margin-top: 26px;
}
.why__text h3 {
  max-width: 400px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 34px;
  line-height: 110.4%;
  text-align: center;
  color: #000000;
  opacity: 0.7;
}
.why__text p {
  margin: 0 auto;
  margin-top: 10px;
  max-width: 282px;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #000000;
  opacity: 0.5;
}
.why__line::before {
  position: absolute;
  width: 100%;
  left: 0;
  top: 40px;
  opacity: 0.1;
  content: "";
  border-top: 1px solid #000000;
}
.invest {
  padding-top: 120px;
  padding-bottom: 80px;
}
.invest .wrapper {
  max-width: 1040px;
}
.invest__list {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.invest__item {
  width: 50%;
  padding: 22px 30px;
  padding-bottom: 57px;
  padding-right: 10px;
}
.invest-active {
  background: #ffffff;
  box-shadow: 0px 24px 86px -9px rgba(73, 174, 78, 0.1);
  border-radius: 10px;
  padding-right: 30px;
}
.invest__item h3 {
  font-weight: 500;
  font-size: 34px;
  line-height: 110.4%;
  color: #000;
  opacity: 0.9;
  margin-bottom: 33px;
}
.invest__item h3 span {
  color: #49ae4e;
}
.invest__text {
  position: relative;
}
.invest__text::before {
  content: "";
  position: absolute;
  height: calc(100% - 30px);
  left: 9px;
  top: 0;
  border-left: 1px dashed #49ae4e;
}
.invest__text p {
  padding-left: 43px;
  font-size: 16px;
  line-height: 125%;
  color: #000000;
  margin-bottom: 30px;
  position: relative;
}
.invest__text p::before {
  content: "";
  z-index: 10;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  border: 6px solid #49ae4e;
  position: absolute;
  left: 0;
  top: 0;
}
.form {
  padding-top: 60px;
  padding-bottom: 75px;
  background: url(../img/form.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.form__logo {
  width: 218px;
  margin-bottom: 52px;
}
.form__logo img {
  width: 100%;
}
.form h2 {
  max-width: 740px;
  text-align: left;
}
.form form {
  margin-top: 40px;
  display: flex;
  max-width: 770px;
  justify-content: space-between;
  align-items: center;
}
.form input {
  width: 241px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  padding-left: 30px;
  background: transparent;
  outline: none;
  font-size: 13px;
  line-height: 16px;
  color: #000000;
  transition: all 0.2s ease-in-out;
}
.form input:focus {
  border-color: #72bf44;
}
.form input:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.form input::placeholder {
  color: #000000;
  opacity: 0.7;
}
.form button {
  width: 232px;
  height: 42px;
  background: #72bf44;
  border: 0;
  border-radius: 2px;
  font-size: 16px;
  line-height: 125%;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
}
.form button:hover {
  background: #6ebf58;
}
.protect {
  padding-top: 120px;
}
.protect__list {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.protect__item {
  width: 50%;
  max-width: 440px;
  padding-left: 89px;
  position: relative;
  margin-bottom: 50px;
}
.protect__item h3 {
  font-weight: 500;
  font-size: 34px;
  line-height: 110.4%;
  color: #4f9d3a;
  margin-bottom: 6px;
}
.protect__item p {
  font-size: 16px;
  line-height: 125%;
  color: #000000;
  margin: 0;
  opacity: 0.8;
}
.protect__item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 55px;
  height: 55px;
  background: url(../img/protect.svg) no-repeat;
}
.digits {
  padding: 120px 0;
}
.digits-mobile {
  display: none;
}
.digits__content {
  margin-top: 90px;
  position: relative;
  width: 100%;
  height: 599px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 66px;
}
.counted {
  opacity: 0;
}
.counted1 {
  opacity: 0;
}
.counted2 {
  opacity: 0;
}
.digits__content::after {
  content: "";
  width: 599px;
  height: 599px;
  position: absolute;
  top: 0;
  left: calc(50% - 300px);
  background: url(../img/digits.svg) no-repeat;
  background-size: contain;
  z-index: 1;
}
.digits__content::before {
  content: "";
  width: 108px;
  height: 123px;
  position: absolute;
  top: calc(50% - 62px);
  left: calc(50% - 54px);
  background: url(../img/cert-logo.svg) no-repeat;
  background-size: contain;
  z-index: 5;
}
.digits__item h3 {
  font-weight: 500;
  font-size: 44px;
  line-height: 110.4%;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.digits__item p {
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #000000;
  opacity: 0.8;
}
.digits__green {
  color: #4f9d3a;
}
.digits__line-1 {
  width: 808px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.digits__line-2 {
  width: 530px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.digits__line-3 {
  width: 903px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.digits__top {
  position: relative;
  top: 30px;
}
.rotate {
  position: absolute;
  top: 0;
  left: calc(50% - 300px);
  width: 599px;
  height: 599px;
}
.rotate::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: calc(50% - 5px);
  top: -4px;
  border-radius: 100%;
  background: #72bf44;
}
.rotate::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: calc(50% - 5px);
  bottom: -4px;
  border-radius: 100%;
  background: #72bf44;
}
.rotate2 {
  position: absolute;
  top: calc(50% - 182px);
  left: calc(50% - 182px);
  width: 364px;
  height: 364px;
}
.rotate2::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: calc(50% - 5px);
  top: -4px;
  border-radius: 100%;
  background: #ededed;
}
.rotate2::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: calc(50% - 5px);
  bottom: -4px;
  border-radius: 100%;
  background: #ededed;
}
.team {
  background: #f9f9f9;
  padding-top: 50px;
  padding-bottom: 30px;
}
.team__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
  justify-content: space-between;
}
.team__item {
  display: flex;
  width: 459px;
  flex-wrap: wrap;
  height: 180px;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.team__photo {
  width: 191px;
}
.team__photo img {
  width: 100%;
}
.team__text {
  width: 268px;
  padding-left: 45px;
  background: #fff;
  padding-top: 20px;
}
.team__text h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 135%;
  color: #000000;
  margin-bottom: 10px;
}
.team__text a {
  font-weight: 500;
  font-size: 13px;
  line-height: 125%;
  text-decoration: none;
  margin-top: 10px;
  color: #4f9d3a;
}
.team__text a:hover {
  opacity: 0.8;
}
.team__text p {
  font-size: 16px;
  line-height: 125%;
  margin: 0;
  color: #000000;
}

.team__left {
  flex-direction: row;
}
.team__right {
  flex-direction: row-reverse;
}
.how {
  padding-top: 100px;
}
.how__sub {
  margin-top: 50px;
  font-weight: 500;
  font-size: 34px;
  line-height: 110.4%;
  color: #000000;
  opacity: 0.7;
  text-align: center;
}
.how__list {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.how__item {
  width: 50%;
  max-width: 466px;
  position: relative;
  padding: 35px 35px;
  background: #ffffff;
  box-shadow: 0px 24px 86px -9px rgba(73, 174, 78, 0.07);
  transition: all 0.2s ease-in-out;
}
.how__item:hover {
  background: #49ae4e;
  box-shadow: 0px 24px 86px -9px rgba(73, 174, 78, 0.58);
  color: #fff;
}
.how__item:hover h3,
.how__item:hover p,
.how__item:hover .how__digit {
  color: #ffffff;
}
.how__item h3 {
  font-weight: 500;
  font-size: 34px;
  line-height: 110.4%;
  color: #49ae4e;
  opacity: 0.9;
}
.how__item p {
  font-size: 16px;
  line-height: 125%;
  color: #49ae4e;
  opacity: 0.8;
  margin-top: 20px;
}
.how__digit {
  position: absolute;
  top: 0;
  right: 8px;
  font-weight: 500;
  font-size: 90px;
  line-height: 110.4%;
  color: #49ae4e;
  opacity: 0.2;
}
.cert {
  padding-top: 140px;
  padding-bottom: 120px;
}
.cert__logo {
  margin: 0 auto;
  width: 86px;
  margin-bottom: 20px;
}
.cert__logo img {
  width: 100%;
}
.certificate {
  max-height: 650px;
  display: inline-block;
}
.cert__block {
  text-align: center;
  width: 100%;
  border: 11px solid #ffffff;
  box-shadow: 0px 22px 58px -16px rgba(73, 174, 78, 0.36);
  border-radius: 12px;
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  margin-top: 50px;
}
.cert__text {
  margin: 0 auto;
  margin-top: 69px;
  max-width: 830px;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #000000;
}
.steps {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f9f9f9;
}
.steps__list {
  margin-top: 71px;
  margin-bottom: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
}
.steps__list::after {
  width: 702px;
  height: 71px;
  left: calc(50% - 351px);
  position: absolute;
  content: "";
  top: 100%;
  border: 2px dashed #49ae4e;
  border-top: 0;
}
.steps__list::before {
  width: 1px;
  height: 126px;
  left: calc(50% - 1px);
  position: absolute;
  content: "";
  top: calc(100% - 30px);
  border-left: 2px dashed #49ae4e;
  border-top: 0;
}
.steps__item {
  min-height: auto;
  position: relative;
  z-index: 10;
  width: 33%;
  max-width: 259px;
  background: #ffffff;
  box-shadow: 0px 24px 29px -11px rgba(0, 0, 0, 0.05);
  padding-top: 24px;
  padding-bottom: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps__icon {
  height: 61px;
  margin-bottom: 13px;
}
.steps__item p {
  width: 154px;
  font-size: 24px;
  line-height: 135%;
  text-align: center;
  color: #000000;
  opacity: 0.9;
}
.steps button {
  margin: 0 auto;
  display: block;
  width: 232px;
  height: 53px;
  background: #49ae4e;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  position: relative;
}

.steps button:hover {
  background: #6ebf58;
}
.footer {
  background: #eceff1;
  padding-top: 55px;
  padding-bottom: 50px;
}
.footer h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #000000;
  opacity: 0.8;
}
.footer__el {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
}
.footer__top {
  padding-bottom: 29px;
}
.footer__top .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__contacts {
  width: 275px;
}
.footer__contact br {
  display: none;
}
.footer__contact {
  margin-top: 16px;
}
.footer__contact p {
  padding-left: 19px;
  font-size: 13px;
  line-height: 125%;
  color: #000000;
  opacity: 0.8;
  position: relative;
  margin-bottom: 7px;
}
.footer__contact a {
  color: #72bf44;
  text-decoration: none;
  display: block;
  margin-bottom: 33px;
}
.footer__contact a:hover {
  opacity: 0.8;
}

.footer__contact p img {
  position: absolute;
  left: 0;
  top: 1px;
  opacity: 0.5;
}
.footer__contact p span {
  font-weight: 500;
}
.footer__menu {
  margin-top: 16px;
}
.footer__menu a {
  margin-bottom: 7px;
  font-size: 13px;
  display: block;
  line-height: 125%;
  color: #000000;
  opacity: 0.8;
  text-decoration: none;
}
.footer__menu a:hover {
  opacity: 1;
}
.footer__logos {
  width: 260px;
}
.footer__safe {
  margin-top: 11px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer__safe img {
  margin-right: 20px;
  margin-bottom: 30px;
}
.footer__way img {
  margin-right: 14px;
  margin-bottom: 23px;
}
img.footer__last {
  margin-right: 0;
}
.footer__way {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
}
.footer__el .wrapper {
  display: flex;
  justify-content: space-between;
}
.footer__left {
  width: 159px;
}
.footer__soc {
  display: flex;
  justify-content: space-between;
  width: 93px;
  margin-top: 20px;
}
.footer__soc a:hover {
  opacity: 0.8;
}
.footer__text {
  width: 444px;
  font-size: 12px;
  line-height: 125%;
  color: #000000;
  opacity: 0.5;
}
.footer__text p {
  margin-bottom: 20px;
}
.footer__right {
  width: 260px;
}
.footer__app {
  margin-top: 25px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.footer__app a:hover {
  opacity: 0.8;
}
.footer__license {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 229px;
  padding-top: 30px;
  position: relative;
  margin-top: -30px;
  background: #f5f5f5;
  padding-left: 32px;
  transition: box-shadow 0.2s ease-in-out;
}
.footer__license:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.footer__license img {
  margin-bottom: 15px;
}
.footer__license h3 {
  font-weight: 500;
  font-size: 13px;
  line-height: 125%;
  color: #000000;
  opacity: 0.5;
}
.footer__license p {
  max-width: 170px;
  font-size: 13px;
  line-height: 125%;
  font-weight: 300;
  color: #000000;
  opacity: 0.5;
  margin-top: 15px;
}
.modal {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  z-index: 200;
  overflow-y: scroll;
}
.modal__over {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}
.modal__body {
  z-index: 10;
  background: #fff;
  padding: 30px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 500px;
  width: 100%;
}
.modal__body img {
  margin-bottom: 20px;
  width: 100px;
}
.modal__body h2 {
  width: 100%;
  font-size: 26px;
}
.modal::-webkit-scrollbar {
  display: none;
}
@media (max-width: 950px) {
  .fsec3-left-items > * {
    padding-left: 20px;
  }

  .wrapper,
  .invest .wrapper {
    max-width: 740px;
    padding: 0 20px;
  }
  .first__header .wrapper {
    width: 100%;
    padding: 0 25px;
    max-width: 100%;
  }
  .first__links {
    display: none;
  }
  .first__nav a {
    text-decoration: none;
    color: #010106;
  }
  .first__nav {
    display: none;
    width: 100%;
    height: calc(100vh - 75px);
    position: absolute;
    top: calc(100%);
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    z-index: 40;
  }
  .first__nav-inner {
    background: #fff;
    padding: 5px 20px;
  }
  .first__nav a {
    display: block;
    font-size: 16px;
    margin: 25px auto;
    max-width: 100%;
    position: relative;
  }
  .first__nav a:not(:last-child)::after {
    content: "";
    display: block;
    width: 45px;
    position: absolute;
    bottom: -15px;
    left: 0;
    border-bottom: 1px solid #e8e8e8;
  }
  .first__logo {
    padding-left: 16px;
  }
  .first__logo img {
    width: 128px;
  }
  .first__burger {
    display: flex;
  }
  .first__header {
    background: #fff;
  }
  .first__open {
    width: 122px;
    height: 30px;
  }
  .first__open:hover {
    text-decoration: none;
  }
  .first {
    background: url(../img/first.jpg) no-repeat;
    padding-bottom: 105px;
    background-position: center;
    background-size: cover;
  }
  h1 {
    padding-top: 175px;
    margin-bottom: 65px;
    font-weight: 500;
    font-size: 48px;
    max-width: 360px;
    line-height: 110.4%;
  }
  .first__list p {
    margin-bottom: 15px;
    max-width: 360px;
  }
  .video {
    padding-top: 47px;
  }
  .video h2 {
    text-align: center;
  }
  .video__info {
    margin: 43px 0;
    flex-direction: column;
    margin-top: 18px;
  }
  .video__info p {
    width: 100%;
    margin-top: 25px;
  }
  p.video__green {
    max-width: 100%;
  }
  .video__block {
    width: 100%;
    height: 250px;
    border: 19px solid #ffffff;
    box-shadow: 0px 4px 145px rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    position: relative;
    margin: 25px 0;
  }
  .video__preview {
    width: 100%;
  }
  .video__play {
    position: absolute;
    width: 82px;
    left: calc(50% - 41px);
    top: calc(50% - 23px);
  }
  .video__block:hover {
    cursor: pointer;
  }
  .video__block:hover .video__play {
    opacity: 0.8;
  }
  .why {
    padding-top: 43px;
  }
  .why__line {
    margin-top: 0px;
  }
  .why__line .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .why__item {
    width: 100%;
    position: relative;
    margin-top: 40px;
    z-index: 10;
  }
  .why__text {
    margin-top: 26px;
  }
  .why__icon {
    position: relative;
    z-index: 10;
  }
  .why__line::before {
    display: none;
  }
  .why__item::before {
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
    opacity: 0.1;
    content: "";
    border-top: 1px solid #000000;
  }
  .invest {
    padding-top: 67px;
    padding-bottom: 61px;
  }
  .invest .wrapper {
    padding: 0;
  }
  .invest__list {
    margin-top: 1px;
    display: flex;
    flex-direction: column;
  }
  .invest__item {
    width: 100%;
    padding: 0;
    padding-bottom: 34px;
    padding-top: 54px;
    background: #ffffff;
    box-shadow: 0px 24px 86px -9px rgba(73, 174, 78, 0.1);
    border-radius: 10px;
    margin-bottom: 50px;
  }
  .invest-active {
    background: #ffffff;
    box-shadow: 0px 24px 86px -9px rgba(73, 174, 78, 0.1);
    border-radius: 10px;
    padding: 0;
    padding-bottom: 34px;
    padding-top: 54px;
  }
  .invest__item h3 {
    font-weight: normal;
    font-size: 24px;
    line-height: 135%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 435px;
    margin-bottom: 50px;
    text-align: center;
  }
  .invest__text {
    position: relative;
  }
  .invest__text::before {
    display: none;
  }
  .invest__text p {
    padding-left: 0;
    text-align: center;
    margin-bottom: 16px;
    padding: 0 40px;
    position: relative;
  }
  .invest__text p::before {
    content: "";
    z-index: 10;
    margin: 0 auto;
    margin-bottom: 10px;
    display: block;
    position: relative;
    left: 0;
    top: 0;
  }
  .invest__text p::after {
    content: "";
    z-index: 5;
    position: absolute;
    height: 20px;
    width: 60px;
    background: #fff;
    top: 0;
    left: calc(50% - 30px);
  }
  .invest__text span {
    border-top: 1px solid #000000;
    z-index: 1;
    position: absolute;
    width: 100%;
    opacity: 0.1;
    top: 10px;
    left: 0;
  }
  .form {
    padding-top: 60px;
    padding-bottom: 75px;
    background: url(../img/form-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .form__logo {
    width: 218px;
    margin: 0 auto;
    margin-bottom: 32px;
  }
  .form__logo img {
    width: 100%;
  }
  .form h2 {
    text-align: center;
  }
  .form__box {
    display: flex;
    justify-content: center;
  }
  .form form {
    flex-direction: column;
    padding: 0 50px;
    max-width: 450px;
    min-width: 320px;
  }
  .form input {
    width: 100%;
    margin-bottom: 20px;
  }

  .form button {
    width: 100%;
    height: 42px;
  }
  .form button:hover {
    background: #6ebf58;
  }
  .protect {
    padding-top: 68px;
  }
  .protect__list {
    margin-top: 68px;
    flex-direction: column;
  }
  .protect__item {
    width: 100%;
    margin-bottom: 33px;
  }
  .digits {
    padding: 120px 0;
    display: none;
  }
  .digits-mobile {
    display: block;
    padding: 60px 0;
    padding-top: 30px;
  }
  .digits-mobile__content img {
    margin-bottom: 26px;
  }
  .digits-mobile__content {
    height: 534px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .digits-mobile__content button {
    margin-top: 26px;
    width: 232px;
    height: 42px;
    background: #72bf44;
    border-radius: 2px;
    font-size: 16px;
    line-height: 125%;
    border: 0;
    color: rgba(255, 255, 255, 0.9);
  }
  .digits-mobile__content button:hover {
    background: #6ebf58;
  }
  .digits-mobile__content::before {
    content: "";
    width: 534px;
    height: 534px;
    position: absolute;
    top: 20px;
    left: calc(50% - 267px);
    background: url(../img/digits-mob.svg) no-repeat;
    background-position: center;
    z-index: -1;
  }
  .digits-mobile h2 {
    max-width: 410px;
  }
  .team {
    padding-bottom: 15px;
  }
  .team .wrapper {
    padding: 0;
  }
  .team__list {
    flex-direction: column;
    align-items: center;
  }
  .team__item {
    justify-content: center;
    margin-bottom: 32px;
  }

  .team__left {
    flex-direction: row;
  }
  .team__right {
    flex-direction: row;
  }
  .team__item:nth-child(odd) {
    flex-direction: row;
  }
  .team__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .how {
    padding-top: 95px;
  }
  .how__list {
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
  }
  .how__item {
    width: 100%;
    margin-bottom: 27px;
  }
  .cert {
    padding-top: 37px;
    padding-bottom: 84px;
  }
  .cert__block {
    width: 100%;
    margin: 0 auto;
    margin-top: 27px;
  }
  .cert__block img {
    max-height: 650px !important;
  }
  .cert__text {
    margin: 0 auto;
    margin-top: 39px;
  }
  .cert__flex {
    display: flex;
    flex-direction: column-reverse;
  }
  .steps {
    padding-top: 33px;
    padding-bottom: 40px;
  }
  .steps h2 {
    max-width: 410px;
    margin: 0 auto;
  }
  .steps__list {
    margin-top: 50px;
    margin-bottom: 5px;
    flex-direction: column;
    align-items: center;
  }
  .steps__list::after {
    display: none;
  }
  .steps__list::before {
    height: 496px;
    left: calc(50% - 2px);
    top: 145px;
    border-left: 2px dashed #49ae4e;
  }
  .steps__item {
    width: 100%;
    max-width: 100%;
    padding-top: 24px;
    margin-bottom: 40px;
    padding-bottom: 19px;
  }
  .steps__item p {
    width: 100%;
    max-width: 300px;
  }
  .footer {
    background: #eceff1;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .footer__el {
    border-top: 0px solid rgba(0, 0, 0, 0.1);
    padding: 0;
  }
  .footer__top {
    padding-bottom: 40px;
  }
  .footer__el .wrapper {
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__top .wrapper {
    flex-direction: column;
    padding: 0;
  }
  .footer__contacts {
    width: 100%;
    order: 2;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
    padding-top: 23px;
    padding-bottom: 77px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
  }
  .footer__contact {
    margin-top: 16px;
    display: table;
  }
  .footer__contacts h3 {
    width: 100%;
  }
  .footer__contact br {
    display: block;
  }
  .footer__docs {
    width: 100%;
    padding: 0 20px;
    order: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .footer__menu {
    padding-left: 20px;
  }
  .footer__logos {
    width: 100%;
    margin-top: -11px;
    padding: 0 20px;
    order: 3;
  }
  .footer__safe {
    margin-top: 11px;
  }
  .footer__way img {
    margin-right: 14px;
    margin-bottom: 23px;
  }
  .footer__safe img.footer__last {
    margin-right: 50px;
  }
  .footer__way img.footer__last {
    margin-right: 17px;
  }
  .footer__way {
    margin-top: 14px;
    display: flex;
    max-width: 300px;
    flex-wrap: wrap;
  }
  .footer__left.footer__logo {
    display: none;
  }
  .footer__left {
    width: auto;
    display: table;
  }
  .footer__soc a:hover {
    opacity: 0.8;
  }
  .footer__text {
    width: 100%;
    padding: 0 20px;
    padding-top: 26px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .footer__left.footer__sub {
    order: 2;
    padding-right: 20px;
  }
  .footer__text.footer__copy {
    order: 3;
  }
  .footer__right {
    width: 100%;
  }
  .footer__right.footer__apps {
    width: auto;
    order: 1;
    padding-left: 20px;
    display: table;
  }
  .why .wrapper {
    padding: 0;
  }
  .footer__app {
    margin-top: 25px;
    flex-direction: column;
  }
  .footer__app a {
    margin-bottom: 25px;
  }
  .footer__app a:hover {
    opacity: 0.8;
  }
  .footer__license {
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 155px;
    padding-top: 18px;
    margin-top: 17px;
    padding-left: 27px;
    margin-bottom: 27px;
  }
  .footer__license img {
    margin-bottom: 25px;
    width: 36px;
  }
  .footer__license p {
    max-width: 100%;
    font-size: 14px;
    margin-top: 5px;
  }
}
@media (max-width: 500px) {
  .first {
    background: url(../img/first-mob.jpg) no-repeat;
    padding-bottom: 105px;
    background-position: center;
  }
}

@media only screen and (max-width: 967px) and (min-width: 768px) {
  .first__button {
    display: flex;
    flex-grow: 1;
    justify-content: end;
  }
  .form form {
    min-width: 450px;
    max-width: 500px;
  }
  .video__block {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .wrapper {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .first h1 {
    padding-top: 120px;
    font-size: 40px;
  }
  h2 {
    font-size: 36px;
  }
  .why__text h3 {
    font-size: 30px;
  }
  .protect__item h3 {
    font-size: 30px;
  }
}
.video__play-triangle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .first__logo {
    flex-grow: 1;
  }
  .first__button--mob-hidden {
    display: none;
  }
}

@media (min-width: 951px) {
  .hsec1-form-error1,
  .hsec1-form-error2 {
    margin-top: 8px;
    position: absolute;
    top: 42px;
  }
}

@media (min-width: 950px) {
  .steps__item {
    min-height: 250px;
  }
}
