/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 17 wrz 2020, 09:58:33
    Author     : WB
*/

@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,latin-ext);
@font-face {
    
  /*src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/polar.otf");*/
  /*font-family: 'Polar';*/
  src: url("https://fonts.googleapis.com/css2?family=Cardo&display=swap");
  font-family: 'Cardo', serif;
}
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html, body {
  font-size: 62.5%;
  height: 100%;
  /* overflow: hidden;*/
  max-width: 100%;
  overflow-x: hidden; 
}

body {
  background: #000; }

svg {
  display: block;
  overflow: visible; 
}


/*# sourceMappingURL=style.css.map */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #01b1d7;
  text-decoration: none;
}

a:hover {
  color: #0dd3fe;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  /*font-family: "Raleway", sans-serif;*/
   font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #01b1d7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #03d1fe;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
 /* top: 44px;*/
 box-shadow: 0 1px 10px 1px rgba(0,0,0,0.3);
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  top: 0;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #354144;
  text-decoration: none;
}

#header .logo h1 a span, #header .logo h1 a:hover span {
  color: #01b1d7;
}

#header .logo img {
    padding: 0;
    margin: 0;
 /* max-height: 80px;*/


    padding: 10px;
    margin-top: 50px;
}

#header .logo {
    background-color: #03562c;
    width: 300px;
    border: 1px solid #03562c;
    box-shadow: 0 1px 10px 1px rgba(0,0,0,0.3);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  /* outline:none;*/
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 20px;
  /*font-family: "Raleway", sans-serif;*/
  font-family: "Open Sans";
  font-size: 15px;
  font-weight: 700;
  color: #404f52;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
 /* outline:none;*/
   border-bottom: 1px solid transparent;
  
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #82b80a;
  border-bottom: 1px solid #82b80a;
   /*outline:none;*/
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #01b1d7;
  /* outline:none;*/
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}



@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #354144;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.bi-list::before {
	content: "\f479";
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 38, 39, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #354144;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #01b1d7;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #01b1d7;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



h4 {
   
    font-size:24px;
    
}

h3 {
    font-size:34px;
    font-weight:400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    color:#048b48;
}

.top50 {
    margin-top:50px;
}
.top30 {
    margin-top:30px;
}

.mejl-doradca:focus {
     outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
    text-indent:10px;
}


/*kontakt*/

.list-unstyled li {
    padding: 5px 0;
}
.list-horizontal {
    padding: 15px 0;
}
.list-horizontal-item img {
    display: block;
    margin: 0 auto;
}
.list-icons {
    padding: 0;
    margin: 20px 0;
    list-style: none;
    font-size: 18px;
}
.list-icons li {
    padding: 0 0 15px 0;
}

/* Forms
---------------------------------- */
.form-control {
	height: 45px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.form-control-feedback {
	color: #cccccc;
}
.has-feedback label.sr-only ~ .form-control-feedback {
	top: 15px;
}
textarea {
	resize: vertical;
}
input {
      box-sizing: border-box;
}
input:focus {
    outline: none !important;
    border: 1px solid #66afe9;
    box-shadow: 0 0 10px #719ECE; /* if you want to change the shadow also*/
    border-color: #66afe9;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ccc;
  font-size:14px;
}
::-moz-placeholder { /* Firefox 19+ */
   color: #ccc;
  font-size:14px;
}
:-ms-input-placeholder { /* IE 10+ */
   color: #ccc;
  font-size:14px;
}
:-moz-placeholder { /* Firefox 18- */
  color: #ccc;
  font-size:14px;
}


/* Social Links
---------------------------------- */
.social-links {
	padding: 0;
	list-style: none;
	margin: 15px 0;
}
.social-links li {
	margin: 10px 25px 10px 0;
	display: inline-block;
	font-size: 36px;
}
.social-links li a {
	color: #333333;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.social-links li.twitter a:hover {
	color: #55acee;
}
.social-links li.skype a:hover {
	color: #00aff0;
}
.social-links li.linkedin a:hover {
	color: #0976b4;
}
.social-links li.googleplus a:hover {
	color: #dd4b39;
}
.social-links li.youtube a:hover {
	color: #b31217;
}
.social-links li.flickr a:hover {
	color: #ff0084;
}
.social-links li.facebook a:hover {
	color: #3b5998;
}
.social-links li.pinterest a:hover {
	color: #cb2027;
}


.button-send {
    background-color: #03562c;
    padding:15px 15px;
    font-family: 'Open Sans condensed';
    font-weight:600;
    color:#fff;
    border:1px solid #fff;;
    display:inline-block;
    cursor:pointer;
    font-size:14px;
    letter-spacing: 1px;
    margin-right:10px;
    width:50%;
}

.button-send:hover {
     border:1px solid #048a47;
     background-color:#048a47;
     color:#fff;
}

.tekst1 {
    line-height: 200%;
    font-size:18px;
    font-weight:300;
    color: #808080;
}

ul.tekst1 {
     padding-left: 20px;
}

ul.tekst1 li {
    margin-left:20px;
   
    list-style-type: square;
}

.dark-green {
    color: #03562c;
}

.right-10 {
    margin-right: 10px;
}

.btn-trzy.outline {
    border: 1px solid #03562c;
    color: #ffffff;
    font-family: Roboto,sans-serif;
    font-weight: 100;
    font-size: 24px;
    letter-spacing: 1px !important;
    padding-bottom: 20px;
    background-color: #03562c;
    
}

textarea {
    font-size:14px !important;
}
 
