html {
  scroll-behavior: smooth;
}
body.modal {
  overflow: hidden;
}
body.modal > nav, body.modal > header, body.modal > section{
  opacity: 0;
}

::-moz-selection {
  text-shadow: none;
  background: rgba(102, 198, 64, 0.3);
}
::selection {
  text-shadow: none;
  background: rgba(102, 198, 64, 0.3);
}
img::selection {
  background: 0 0;
}
img::-moz-selection {
  background: 0 0;
}

nav {
  position: fixed;
  left: 0;
  right: 0;
  padding: 0 12px 0;
  border: 0;
  background-color: rgba(60, 66, 70, 0.97);
  color: #fff;
  transition: all .25s, background-color .5s;
  width: 100%;
  z-index: 99;
}
nav .in {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px){
  nav.top {
    background-color: transparent;
    padding: 25px;
  }
  nav .in {
    flex-direction: row;
  }
}
nav img {
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  transition: all .25s;
}
@media screen and (min-width: 768px){
  nav.top img {
    height: 40px;
  }
}
nav .extra {
  margin: 0 0 12px;
}
nav .brand {
  opacity: 0.82;
  transition: all .25s;
}
nav .brand:hover, nav .brand:focus {
  opacity: 1;
  color: #fff;
}
nav .brand span{
  font-size: 28px;
  margin-left: 24px;
  position: relative;
  top: 6px;
}
nav .brand i {
  color: #66c640;
  margin-right: 4px;
}
@media screen and (min-width: 768px){
  nav.top .brand span{
    top: 6px;
  }
}
nav a {
  color: #fff;
}
nav a:before {
  display: none;
}
nav a.on {
  color: #66c640;
}
.navbar-collapse {
  transition: all .15s;
  overflow: hidden;
}
.navbar-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 6px 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (min-width: 768px){
  .navbar-collapse {
    overflow: visible;
  }
  .navbar-nav {
    border-top: none;
    margin: 0;
  }
}
.navbar-nav li a{
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: block;
  padding: 10px 15px;
  line-height: 21px;
}
.navbar-nav a:hover, .navbar-nav a:focus, .navbar-nav a:active {
  color: #50aa2c;
}
@media screen and (min-width: 768px){
  .navbar-nav li{
    display: inline-block;
  }
  .navbar-nav li a{
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.menu-btn {
  position: fixed;
  top: 10px;
  right:12px;
}
nav .menu-btn:hover {
  background-color: #50aa2c;
}
@media screen and (min-width: 768px){
  .menu-btn {
    display: none;
  }
}

header {
  text-align: center;
  color: #fff;
  background-attachment: scroll;
  background-image: url(../static/header-bg2.jpg);
  background-position: center center;
  background-repeat: none;
  height: auto;
  position: static;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
header .intro-text {
  padding-top: 80px;
  padding-bottom: 36px;
}
header .intro-text {
  padding-top: 180px;
  padding-bottom: 100px;
}
header h1 {
  display: block !important;
  margin-bottom: 25px;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
header h2 {
  margin-bottom: 50px;
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
}
@media screen and (min-width: 768px){
  header h1 {
    font-size: 36px;
    line-height: 40px;
  }
  header h2 {
    font-size: 66px;
    line-height: 75px;
  }
}
header a {
  color: #fff;
  margin-left: 54px;
  margin-right: 2.5rem;
}
header a:hover, header a:focus {
  color: #fff;
}
header .btn {
  margin: 0 4px;
}

section {
  padding: 64px 0 52px;
}
section h2, section h3 {
  padding: 0 5%;
}

section h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
}
section h3 {
  margin-bottom: 32px;
  text-align: center;
  text-transform: none;
  font-size: 22px;
}
section h4 {
  margin-bottom: 12px;
  text-align: center;
  font-weight: 300;
  font-size: 22px;
}
section h5 {
  margin: 16px 0 8px;
  text-align: center;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}
section p {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 768px){
  section {
    padding: 80px 0;
  }
  section h2 {
    margin-bottom: 16px;
    font-size: 48px;
  }
  section h3 {
    margin-bottom: 40px;
    font-size: 26px;
  }
  section h4 {
    margin-bottom: 16px;
    font-size: 24px;
  }
  section h4 {
    font-size: 22px;
  }
}
footer {
  font-size: 14px;
  padding: 48px 0 0;
  text-align: center;
}
footer p {
  font-size: 14px;
}
footer a:before {
  display: none;
}

.prop > div {
  background-color: #66c640;
  border-radius: 8px;
  position: relative;
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  vertical-align: middle;
  margin-bottom: 16px;
}
.prop img {
  width: 32px;
  height: 32px;
  margin: 16px;
}

.modul > div {
  background-color: #fff;
  border-radius: 2.5px;
  box-shadow: 0 1px 3px rgba(50, 56, 59, 0.1);
  height: 100%;
  padding: 0 16px 16px;
  transition: box-shadow .25s;
}
.modul > div:hover {
  box-shadow: 0 1px 3px rgba(50, 56, 59, 0.1), 0 1px 12px rgba(50, 56, 59, 0.2);
  cursor: pointer;
}
.modul img {
  width: calc(100% + 32px);
  margin: 0 -16px
}
.modul .more {
  display: none;
}

.over {
  background: transparent;
  z-index: -1;
  transform: scale(.35);
  transition: all .25s cubic-bezier(.1, .5, .5, 1);
  transition-property: background, transform;
}
.over > a {
  display: none;
}
.over.on {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  padding: 32px 5%;
  text-align: center;
  transform: scale(1);
  z-index: 9999;
}
.over.on > div {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
  text-align: justify;
}
.over.on > a {
  display: inline;
}
.over .close {
  position: fixed;
  top: 0;
  right: 0;
  color: #555;
}
.over .close:hover {
  color: #d55;
}
.over .close i{
  font-size: 28px;
}
.over h5 {
  order: 0;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 300; 
  text-align: center;
  text-transform: uppercase;
}
.over img {
  order: 1;
  margin-bottom: 32px;
  height: auto;
  max-width: 100%;
}
.over .more {
  order: 2;
  font-size: 16px;
  line-height: 1.6;
}
.over .muted {
  display: none;
}
.over.on .abtns {
  display: flex;
  max-width: 200px;
  justify-content: center;
  order: 5;
  margin: 48px auto 32px;
}
.over .more .btn {
  margin: 0 4px;
}

@media screen and (min-width: 768px){
  .over h5 {
    font-size: 42px;
    margin-bottom: 24px;
  }
}

.counters {
  display: flex;
  flex-wrap: wrap;
}
.counter {
  flex: 1 25%;
  text-align: center;
  padding: 16px;
  min-width: 180px;
  
}
.counter img {
  width: 80px;
}
.count-num {
  font-size: 48px;
  font-weight: 300;
  color: #666;
}

#kontakt {
  background-color: #454f54;
  background-image: url(../static/mi3.png);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  color: rgba(255,255,255,0.75);
}
#kontakt h2 {
  color: #fff;
}
#kontakt label {
  display: block;
  margin: 16px 0 2px;
}
#kontakt input, #kontakt textarea {
  display: block;
  height: auto;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border-radius: 2.5px;
  border-color: #fafffb;
  border-width: 2px;
  box-shadow: none;
  color: #444;
}
#kontakt textarea {
  height: 213px;
}
#kontakt input:focus, #kontakt textarea:focus {
  border-color: #66c640;
}

#kontakt input:focus:invalid, #kontakt textarea:focus:invalid {
border-color: #eed055;
}
#kontakt .btn {
  margin: 16px 0 0 8px;
  float: right;
}

#result {
  margin: 16px 0 0;
  padding: 11px 10px;
  font-size: 15px;
  line-height: 25.7167px;
  min-height: 74px;
}

.in {
  margin: auto;
  max-width: 1170px;
}
.list {
  display: block; 
}
.list > * {
  padding: 16px 5%;
}
.list.rows {
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media screen and (min-width: 768px){
  .list.rows {
    display: flex; 
  }
  .list.rows > *, .list.two > * {
    flex: 1 50%;
  }
}
@media screen and (min-width: 1024px){
  .list {
    display: flex; 
  }
  .list > * {
    padding: 16px;
  }
  .list.rows > * {
    flex: 1 33.3%;
  }
}

.text-center {
  text-align: center;
}
.muted {
  opacity: 0.67;
}
.bglg {
  background-color: #f7f7f7;
}
.success {
  color: #62cf62;
}
.warning {
  color: #eed055;
}
.error {
  color: #e45955;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 15px;
  font-size: 15px;
  height: auto;
  line-height: 1.42857143;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a.btn:hover:before {
  display: none;
}



.btn-xl {
  padding: 10px 20px;
  border-color: #66c640;
  border-radius: 2.5px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: #66c640;
}
.btn-xl:hover, .btn-xl:focus, .btn-xl:active {
  border-color: #66c640;
  color: #fff;
  background-color: #50aa2c;
}

@media screen and (min-width: 768px){
  .btn-xl {
    padding: 10px 24px;
    font-size: 18px;
  }
}

.btn-xl.sec {
  border-color: #eee;
  color: #444;
  background-color: #eee;
}
.btn-xl.sec:hover, .btn-xl.sec:focus, .btn-xl.sec:active {
  border-color: #eee;
  background-color: #ddd;
}

