@charset "UTF-8";
/* Общее */
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
}

body {
  max-width: 100%;
  font-family: "Roboto";
  overflow-x: hidden;
}

b {
  font-weight: 900;
}

.content {
  width: 100%;
  padding: 0 7.8vw;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.content-left {
  width: 54.65%;
  flex-shrink: 0;
}

.content-border-ico {
  padding-left: 9.6vw;
  position: relative;
}

.content-border-ico .ico-elem::before,
.content-border-ico .ico-elem::after {
  content: "";
  display: block;
  width: 4.5vw;
  height: 4.5vw;
  position: absolute;
  top: 0.2vw;
  left: 0.5vw;
}

.content-border-ico::after {
  content: "";
  display: block;
  width: 2px;
  height: 96%;
  position: absolute;
  top: 0px;
  left: 6.9vw;
  background: #fff;
}

.content-right {
  width: 41.3%;
  flex-shrink: 0;
}

.title {
  font-size: 2.15vw;
  font-weight: 900;
  margin-bottom: 2.25vw;
}

.text {
  font-size: 1.21vw;
  line-height: 1.4;
  letter-spacing: -0.012vw;
}

.flex-text {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.text p {
  margin-bottom: 1.55vw;
}

.big {
  font-size: 1.35vw;
  line-height: 1.3;
}

.bigger {
  font-size: 123%;
}

.first {
  background: #39ab49 url(../img/first.png) center center/cover;
  background-attachment: fixed;
  color: #fff;
}

.logo-block {
  padding: 20.7vw 32px 9.5vw;
  border-bottom: 1px solid #fff;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5);
  text-align: center;
}

.logo-block img {
  width: 25.1vw;
}

.about-block {
  padding-top: 2.9vw;
  padding-bottom: 3.75vw;
}

.second {
  min-height: 100vh;
  color: #fff;
  background: url(../img/second.png) center center/cover;
  padding-top: 6.55vw;
  padding-bottom: 12.2vw;
  position: relative;
  background-attachment: fixed;
}

.lines-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6vh;
  background-image: url("../img/line.png");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 1vw;
  animation: scroll 1000s infinite linear;
}
@keyframes scroll {
  from {background-position: 0 0;}
  to {background-position: 1000% 0;}
}
@keyframes rotateAnim {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

.second .content-left {
  max-width: 88%;
}

.second .content-left .ico-elem::before {
  background: url("../img/ico1-i.png") center center/cover no-repeat;
}
.second .content-left .ico-elem::after {
  background: url("../img/ico1-r.png") center center/cover no-repeat;
  animation: rotateAnim 30s infinite linear;
}

.second .content-left .text {
  max-width: 88%;
}

.second .content-right .title {
  margin-bottom: 5vw;
}

.third {
  min-height: 100vh;
  padding-top: 5.6vw;
  padding-bottom: 8.84vw;
  background: #39ab49;
  position: relative;
}

.third .content-left {
  max-width: 49%;
  color: #fff;
}


.third .content-left .ico-elem::before {
  background: url("../img/ico2-i.png") center center/cover no-repeat;
}
.third .content-left .ico-elem::after {
  background: url("../img/ico2-r.png") center center/cover no-repeat;
  animation: rotateAnim 20s infinite linear;
}

.content-border-ico::after {
  height: 107%;
}

.leaf {
  position: absolute;
  top: 7vw;
  left: -1.8vw;
  width: 8.7vw;
}

.third .content-right {
  position: relative;
}

.third .content-right::before {
  content: "";
  display: block;
  width: calc(100% + 12vw);
  height: calc(100% + 14.45vw);
  min-height: 100vh;
  position: absolute;
  top: -5.6vw;
  left: -3.55vw;
  background: #fff url("../img/thrid.png") left bottom/100% auto no-repeat;
  pointer-events: none;
}

.third .content-right .title,
.third .content-right .text {
  position: relative;
  z-index: 1;
}

.third .content-right .title {
  color: #39ab49;
}

.half-text {
  width: 58%;
  flex-shrink: 0;
}

.half-text + .half-text {
  width: 46%;
  margin-left: 12%;
}

.green-block {
  background: #39ab49;
  color: #fff;
  font-weight: 900;
  padding: 1vw 0.7vw;
  position: relative;
  left: -1.2vw;
  width: calc(100% + 3.4vw);
  padding-right: 4.4vw;
}

.green-block::before {
  content: "";
  display: block;
  width: 3.2vw;
  height: 3.2vw;
  position: absolute;
  top: 1vw;
  right: 0.7vw;
  background: url("../img/ico3.png") center center/cover no-repeat;
}

.lines-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 53.8%;
  height: 12vh;
  background-image: url("../img/line2.png");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 1vw;
  animation: scroll  1000s infinite linear;
  transform: rotate(180deg);
}

.fourth {
  padding-top: 4.7vw;
  padding-bottom: 1vw;
}

.fourth .border {
  width: 100%;
  border-bottom: 2px solid #404040;
  margin-top: 3.8vw;
}

.fourth .title {
  color: #39ab49;
  margin-bottom: 1.5vw;
}

.fourth .content-left .text {
  max-width: 82%;
}

.contact-right {
  margin-left: auto;
  font-weight: 900;
}

.contact-right a {
  color: #e57c00;
}

.contact-border {
  width: 100%;
  height: 0.25vw;
  background: #e57c00;
  margin: 0.8vw 0;
}

.footer {
  padding-bottom: 2vw;
}

.footer-logo {
  width: 15vw;
}

.footer .text {
  margin-top: 2.6vw;
  font-size: 1.19vw;
}

@media (max-width: 768px) {
  .logo-block {
    border-width: 1px;
  }
  .logo-block img {
    width: 200px;
  }
  .content {
    padding: 0 16px;
  }
  .about-block {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .content-left {
    width: 100%;
  }
  .content-right {
    margin-top: 32px;
    width: 100%;
  }
  .title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .text {
    font-size: 14px;
    letter-spacing: 0;
  }
  .big {
    font-size: 110%;
  }
  .content-border-ico {
    padding-left: 0;
  }
  .content-border-ico::before {
    display: none;
  }
  .content-border-ico::after {
    left: -8px;
    height: 100%;
  }
  .third .content-left {
    max-width: unset;
  }
  .leaf {
    display: none;
  }
  .third {
    padding-bottom: 16px;
  }
  .third .content-right {
    padding-bottom: 60px;
  }
  .third .content-right::before {
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    min-height: unset;
    position: absolute;
    top: -16px;
    left: -16px;
    background: #fff url("../img/thrid.png") left bottom/100% auto no-repeat;
    pointer-events: none;
  }
  .lines-2 {
    display: none;
  }
  .half-text {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .flex-text {
    flex-wrap: wrap;
  }
  .green-block br {
    display: none;
  }
  .fourth {
    padding-bottom: 32px;
  }
  .contact-left,
.contact-right {
    width: 100%;
  }
  .contact-right {
    margin-top: 16px;
  }
  .fourth .border {
    border-width: 1px;
  }
  .contact-border {
    background: none;
  }
  .footer {
    padding-bottom: 32px;
  }
  .footer-logo {
    width: 200px;
    margin: 0 auto;
    display: block;
  }
  .footer .text {
    margin-top: 0;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */