* {
  margin: 0;
  padding: 0;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.l-col {
  float: left;
  width: 25%;
}

.r-col {
  float: right;
  width: 74%;
  padding-left: 1%;
}

.justify {
  text-align: justify;
}
@media (max-width: 767px) {
  .justify {
    text-align: left;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.gray {
  color: #dbdbdb;
}

.green {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #79a219;
}

.black {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: inherit;
  line-height: inherit;
  color: #000;
}

.l-green {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 24px;
  color: #7fb500;
}

.uppercase {
  text-transform: uppercase;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: #eee;
}

@media (max-width: 991px) {
  .desctop-only {
    display: none;
  }
}
@media (min-width: 992px) {
  .mobile-only {
    display: none;
  }
}
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
@media (max-width: 767px) {
  body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    padding: 0 15px;
  }
}
body p {
  letter-spacing: 0.5px;
}

#back-top {
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 45px;
  font-size: 40px;
  color: #96ba41;
  cursor: pointer;
  border-radius: 50%;
  display: none;
}
@media (max-width: 767px) {
  #back-top {
    bottom: 10px;
  }
}

#menuBtn {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
  background-color: #96ba41;
  padding: 10px;
  transition: 300ms;
  cursor: pointer;
}
#menuBtn > span {
  display: block;
  background-color: #FFF;
  border-radius: 1.5px;
  height: 4px;
  width: 100%;
  margin-top: 13px;
  transition: height 100ms;
}
#menuBtn > span:after, #menuBtn > span:before {
  content: '';
  display: block;
  background-color: #FFF;
  border-radius: 1.5px;
  height: 4px;
  width: 100%;
  position: relative;
  transition: all 200ms;
}
#menuBtn > span:before {
  top: -8px;
  transition: 300ms;
}
#menuBtn > span:after {
  bottom: -4px;
  transition: 300ms;
}
#menuBtn > span.click {
  transition: 300ms;
  background-color: transparent;
}
#menuBtn > span.click:before {
  top: 2px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 300ms;
}
#menuBtn > span.click:after {
  bottom: 2px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: 300ms;
}

nav#mobile-nav {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: fixed;
  right: -475px;
  top: -370px;
  z-index: 9999;
  background-color: #96ba41;
  transition: 500ms;
}
nav#mobile-nav ul {
  margin-top: 250px;
  margin-right: 85px;
}
nav#mobile-nav ul li.act {
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  float: right;
  height: 16px;
  cursor: pointer;
}
nav#mobile-nav ul li.act > span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000;
}
nav#mobile-nav ul li.act > span span {
  font-weight: 900;
  color: #fff;
}

header {
  width: 1140px;
  margin: 80px auto 30px auto;
}
@media (max-width: 1169px) {
  header {
    width: 962px;
  }
}
@media (max-width: 991px) {
  header {
    width: 738px;
  }
}
@media (max-width: 767px) {
  header {
    width: 100%;
  }
}
header #logo {
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  header #logo img {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}
header nav {
  background-color: #96ba41;
}
header nav ul {
  list-style: none;
  text-align: center;
  height: 52px;
}
header nav ul li.menu-link {
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  padding: 0 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
header nav ul li.menu-link:hover .menu-first-word, header nav ul li.menu-link:focus .menu-first-word {
  transform: translate3d(0, -105%, 0);
}
header nav ul li.menu-link:hover .menu-second-word, header nav ul li.menu-link:focus .menu-second-word {
  transform: translate3d(0, 105%, 0);
}
header nav ul li.menu-link .menu-title {
  display: inline-block;
  overflow: hidden;
}
header nav ul li.menu-link .menu-title .menu-first-word,
header nav ul li.menu-link .menu-title .menu-second-word {
  display: inline-block;
  position: relative;
  transition: transform .3s;
}
header nav ul li.menu-link .menu-title .menu-first-word::before,
header nav ul li.menu-link .menu-title .menu-second-word::before {
  position: absolute;
  content: attr(data-hover);
}
header nav ul li.menu-link .menu-title .menu-first-word {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 52px;
  color: #fff;
}
header nav ul li.menu-link .menu-title .menu-first-word::before {
  top: 105%;
  color: #000;
}
header nav ul li.menu-link .menu-title .menu-second-word {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 52px;
  color: #000;
}
header nav ul li.menu-link .menu-title .menu-second-word::before {
  bottom: 105%;
  color: #fff;
}

section {
  width: 100%;
  border-bottom: 1px solid #eee;
  overflow-x: hidden;
}
section:first-child {
  border-bottom: none;
}
section:last-child {
  border-bottom: none;
  margin-bottom: 265px;
}
@media (max-width: 991px) {
  section:last-child {
    margin-bottom: 0;
  }
}
section .content {
  width: 1140px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 55px;
}
@media (max-width: 1169px) {
  section .content {
    width: 962px;
  }
}
@media (max-width: 991px) {
  section .content {
    width: 738px;
  }
}
@media (max-width: 767px) {
  section .content {
    width: 100%;
  }
}
section .content.intro .l-col {
  position: relative;
}
section .content.intro .l-col:after {
  content: "";
  width: 100vmax;
  height: 12px;
  background: #b1ca76;
  position: absolute;
  right: 20px;
  bottom: -75px;
}
@media (max-width: 1169px) {
  section .content.intro .l-col:after {
    right: 0;
    bottom: -127px;
  }
}
@media (max-width: 1169px) {
  section .content.intro .l-col img {
    width: 100%;
  }
}
section .content.intro .r-col {
  margin-top: 0;
}
@media (max-width: 991px) {
  section .content.intro .r-col {
    width: 100%;
    padding-left: 0;
  }
}
section .content.intro .r-col .green {
  width: 60%;
  position: relative;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  section .content.intro .r-col .green {
    width: 100%;
  }
}
@media (max-width: 991px) {
  section .content.intro .r-col .green {
    text-align: left;
  }
}
section .content.intro .r-col .green:after {
  content: "";
  width: 200vmax;
  height: 1px;
  background-color: #eee;
  position: absolute;
  left: 0;
  bottom: -50px;
}
@media (max-width: 991px) {
  section .content.intro .r-col .green:after {
    left: -50vmax;
  }
}
section .content.number1 {
  padding-top: 20px;
  padding-bottom: 80px;
}
section .content.number1 .l-col > span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 128px;
  line-height: 128px;
  color: #181818;
}
@media (max-width: 1169px) {
  section .content.number1 .l-col > span {
    font-size: 108px;
    line-height: 108px;
  }
}
@media (max-width: 991px) {
  section .content.number1 .l-col > span {
    font-size: 88px;
    line-height: 88px;
  }
}
@media (max-width: 767px) {
  section .content.number1 .l-col > span {
    width: 100%;
  }
}
section .content.number1 .l-col:first-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  section .content.number1 .l-col.mobile {
    width: 100%;
  }
  section .content.number1 .l-col.mobile .thumb {
    width: 30%;
    margin-left: 12%;
    float: left;
  }
  section .content.number1 .l-col.mobile .description {
    width: 30%;
    margin-left: 4%;
    float: left;
  }
}
@media (max-width: 767px) {
  section .content.number1 .l-col.mobile {
    width: 100%;
  }
  section .content.number1 .l-col.mobile .thumb {
    width: 80%;
    margin-left: 10%;
  }
  section .content.number1 .l-col.mobile .thumb img {
    max-width: 265px;
  }
  section .content.number1 .l-col.mobile .description {
    width: 80%;
    margin-left: 5%;
    margin-bottom: 20px;
  }
}
section .content.number1 .r-col {
  margin-top: 51px;
}
@media (max-width: 991px) {
  section .content.number1 .r-col {
    margin-top: 41px;
  }
}
@media (max-width: 767px) {
  section .content.number1 .r-col {
    width: 100%;
    margin-top: 0;
    position: relative;
  }
}
@media (max-width: 991px) {
  section .content.number1 .r-col.mobile {
    width: 100%;
  }
}
section .content.number1 .r-col span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 30px;
  color: #000;
}
@media (max-width: 1169px) {
  section .content.number1 .r-col span {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (max-width: 991px) {
  section .content.number1 .r-col span {
    font-size: 20px;
    line-height: 20px;
  }
}
section .content.number1 .r-col span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 60px;
  color: #000;
}
@media (max-width: 1169px) {
  section .content.number1 .r-col span:first-child {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  section .content.number1 .r-col span:first-child {
    font-size: 40px;
    line-height: 40px;
  }
}
section .content.number1 .r-col a#www-site {
  width: 70px;
  height: 54px;
  margin-top: 10px;
  padding: 14px 0 2px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 11px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background-color: #8dc63f;
  border-radius: 50%;
  transition: 300ms;
}
@media (max-width: 1169px) {
  section .content.number1 .r-col a#www-site {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  section .content.number1 .r-col a#www-site {
    position: absolute;
    right: 0;
    top: -70px;
  }
}
section .content.number1 .r-col a#www-site:hover {
  background-color: #000;
  transition: 300ms;
}
section .content.number1 .r-col a#www-site i {
  font-size: 30px;
}
section .content.number1 .r-col .black {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  color: #000;
}
@media (max-width: 767px) {
  section .content.number1 .r-col .black {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    color: #000;
  }
}
section .content .l-col > span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 86px;
  line-height: 86px;
  color: #181818;
}
@media (max-width: 1169px) {
  section .content .l-col > span {
    font-size: 78px;
  }
}
@media (max-width: 991px) {
  section .content .l-col > span {
    font-size: 60px;
    line-height: 78px;
  }
}
@media (max-width: 767px) {
  section .content .l-col > span {
    width: 100%;
  }
}
@media (max-width: 1169px) {
  section .content .l-col .thumb img {
    width: 100%;
  }
}
section .content .l-col .description {
  border: 4px solid #e8e8e8;
  padding: 35px 25px;
}
section .content .l-col .description p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}
section .content .l-col:first-child {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  section .content .l-col:first-child {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  section .content .l-col.mobile {
    width: 100%;
  }
  section .content .l-col.mobile .thumb {
    width: 30%;
    margin-left: 12%;
    float: left;
  }
  section .content .l-col.mobile .description {
    width: 30%;
    margin-left: 4%;
    float: left;
  }
}
@media (max-width: 767px) {
  section .content .l-col.mobile {
    width: 100%;
  }
  section .content .l-col.mobile .thumb {
    width: 80%;
    margin-left: 10%;
  }
  section .content .l-col.mobile .thumb img {
    max-width: 265px;
  }
  section .content .l-col.mobile .description {
    width: 80%;
    margin-left: 5%;
    margin-bottom: 20px;
    padding: 8% 5%;
  }
}
section .content .r-col {
  margin-top: 18px;
}
@media (max-width: 767px) {
  section .content .r-col {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  section .content .r-col.mobile {
    width: 100%;
  }
}
section .content .r-col span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 26px;
  color: #000;
}
@media (max-width: 1169px) {
  section .content .r-col span {
    font-size: 20px;
  }
}
section .content .r-col span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 60px;
  color: #000;
}
@media (max-width: 1169px) {
  section .content .r-col span:first-child {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  section .content .r-col span:first-child {
    font-size: 35px;
  }
}
section .content .r-col p {
  margin-bottom: 20px;
  margin-left: 7px;
}
@media (max-width: 991px) {
  section .content .r-col p {
    margin-left: 0;
  }
}
section .content.poradnik strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: inherit;
  line-height: inherit;
  color: #000;
}
section .content.poradnik h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 40px;
  line-height: 50px;
  color: #000;
  margin-bottom: 35px;
}
@media (max-width: 1169px) {
  section .content.poradnik h1 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  section .content.poradnik h1 {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  section .content.poradnik h1 {
    line-height: 27px;
  }
}
section .content.poradnik h1 strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  color: #000;
}
section .content.poradnik p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 27px;
  color: #000;
  margin-bottom: 35px;
}
@media (max-width: 1169px) {
  section .content.poradnik p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  section .content.poradnik p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  section .content.poradnik p {
    font-size: 16px;
    line-height: 22px;
  }
}
section .content.poradnik p.l-green {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  color: #7fb500;
}
@media (max-width: 991px) {
  section .content.poradnik p.l-green {
    font-size: 18px;
    line-height: 24px;
  }
}
section .content.antyporadnik strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: inherit;
  line-height: inherit;
  color: #000;
}
section .content.antyporadnik h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 51px;
  line-height: 66px;
  color: #000;
  margin-bottom: 80px;
}
@media (max-width: 1169px) {
  section .content.antyporadnik h1 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  section .content.antyporadnik h1 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  section .content.antyporadnik h1 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 40px;
  }
}
section .content.antyporadnik h1 strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  color: #000;
}
section .content.antyporadnik p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 27px;
  color: #000;
  margin-bottom: 35px;
}
@media (max-width: 1169px) {
  section .content.antyporadnik p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  section .content.antyporadnik p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  section .content.antyporadnik p {
    font-size: 16px;
    line-height: 22px;
  }
}
section .content.antyporadnik p.l-green {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  color: #7fb500;
}
@media (max-width: 991px) {
  section .content.antyporadnik p.l-green {
    font-size: 18px;
    line-height: 24px;
  }
}

footer {
  background-color: #8dc63f;
  width: 100%;
  height: 45px;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  footer {
    height: 20px;
    width: 100%;
    position: absolute;
    left: 0;
  }
}
footer a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 45px;
  color: #fff;
  text-decoration: none;
  transition: 300ms;
}
@media (max-width: 767px) {
  footer a {
    line-height: 20px;
  }
}
footer a:hover {
  color: #000;
  transition: 300ms;
}

/*# sourceMappingURL=style.css.map */
