@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700|Open+Sans:400,700&subset=latin-ext");
.clr:after {
  clear: both;
  content: ' ';
  display: block;
}

.transition, a, button, .loader, .popup_cont {
  transition: all 500ms;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -o-transition: all 500ms;
}

.cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.center {
  text-align: center;
}

.no_pad {
  padding: 0;
}

.full_cont .container {
  width: 100%;
  max-width: 100%;
}

.with_pad {
  padding: 60px 0;
}

.no_pad_left {
  padding-left: 0;
}

.no_pad_right {
  padding-right: 0;
}

.table_display {
  display: table;
  float: none;
  width: 100%;
}
.table_display .table_cell {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.none {
  display: none;
}

.o_hidden {
  overflow: hidden;
}

.fixed {
  position: fixed;
}

.primary_btn {
  background: #F19101;
  color: #fff;
  padding: 5px 15px;
  border-radius: 3px;
  border: none;
  display: inline-block;
}
.primary_btn:hover {
  background: #98B84E;
  color: #fff;
}

.secondary_btn {
  background: #98B84E;
  color: #fff;
  padding: 5px 15px;
  border-radius: 3px;
  border: none;
  display: inline-block;
}

.bg {
  background: #fff;
}

.primary_bg {
  background-color: #F19101;
}

.secondary_bg {
  background-color: #a5c164;
}

.accent_bg {
  background-color: #e02a39;
}

.primary_color {
  color: #F19101;
}

.secondary_color {
  color: #98B84E;
}

.accent_color {
  color: #e02a39;
}

.white_color {
  color: #fff;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url('../fonts/slick.eot');
  src: url('../fonts/slick.eot?#iefix') format("embedded-opentype"), url('../fonts/slick.woff') format("woff"), url('../fonts/slick.ttf') format("truetype"), url('../fonts/slick.svg#slick') format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

body {
  font-size: 16px;
  line-height: 140%;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  font-size: 16px;
}

p {
  margin: 12px 0;
}

a {
  color: #F19101;
}
a:hover, a:focus {
  text-decoration: none;
  color: #98B84E;
}

div:focus {
  outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 125%;
  font-family: "Open Sans Condensed", sans-serif;
}

#btt {
  padding: 10px 15px;
  font-size: 22px;
  color: #F19101;
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 99;
}

.invisible {
  opacity: 0;
}

/**
*-----------------------------------------------------------------------------
* header
*-----------------------------------------------------------------------------
*/
#header {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  padding: 10px 0 7px;
}

.logo {
  max-height: 49px;
  display: inline-block;
  margin-right: 20px;
}

.navbar ul li a.nav-link {
  text-transform: uppercase;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #4f4f4f;
  font-size: 0.9rem;
}
.navbar ul li.menu_bigger a {
  font-size: 1.2rem;
}

/**
*-----------------------------------------------------------------------------
* Front page
*-----------------------------------------------------------------------------
*/
p {
  text-align: justify;
}

section ul li {
  text-align: justify;
}

.main_banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.main_banner {
  color: #fff;
}

.mb_text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
}
.mb_text h1 {
  font-size: 6rem;
  margin-bottom: 0;
  line-height: 110%;
  margin-top: 0;
}
.mb_text h2 {
  font-size: 3.1rem;
  margin-top: 0;
}
.mb_text h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  margin-top: 3rem;
  text-align: center;
  width: 21rem;
}
.mb_text h3 span {
  -moz-text-align-last: center;
  text-align-last: center;
  display: block;
}

.mb_title_bigger {
  font-size: 1.1em;
}

.mb_bottom_big {
  font-size: 3.3rem;
  display: block;
  line-height: 100%;
  color: #F19101;
}

.narrow_text {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.section_title {
  text-align: center;
  margin-bottom: 2rem;
}
.section_title:after {
  background: #F19101;
  content: ' ';
  height: 1px;
  width: 50px;
  margin: 15px auto;
  display: block;
}
.section_title.st_left {
  text-align: left;
}
.section_title.st_left:after {
  margin: 15px 0;
}

.videoWrapper {
  margin: 30px auto;
  position: relative;
  padding-bottom: 44.15%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  width: 100%;
  max-width: 750px;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spot {
  background: url("../img/beton_bg.png") repeat left top;
}

.about_left {
  padding: 4rem 3rem 4rem 5rem;
}

.about_right {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.down {
  margin: 50px 0 0;
  position: absolute;
  left: 50%;
  margin-left: -22px;
  bottom: 30px;
  display: block;
  animation: MoveUpDown 3s linear infinite;
}
.down img {
  margin-top: 0;
  max-width: 44px;
  height: auto;
}

.submission {
  margin-bottom: 30px;
}
.submission img {
  max-width: 100%;
  height: auto;
}
.submission h3 a {
  color: #333333;
  font-size: 1.4rem;
  display: block;
  margin: 10px auto;
  text-transform: uppercase;
}

.all_subm {
  display: block;
  margin: 0.9rem auto;
  color: #fff;
  text-align: center;
  max-width: 250px;
  padding: 8px;
  text-transform: uppercase;
}
.all_subm:hover {
  background: #98B84E;
  color: #fff;
}

.ekoselfie {
  background: #f2f2f2;
}

.submissions {
  margin: 30px auto;
}

/**
*-----------------------------------------------------------------------------
* Konkurs
*-----------------------------------------------------------------------------
*/
.main_banner.konkurs_banner h2 {
  font-size: 1.9rem;
  margin-top: 30px;
}

.kb_btn {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  padding: 10px 30px;
}
.kb_btn:hover {
  color: #fff;
  background: #98B84E;
}

.konkurs_participate {
  background-image: url("../img/form_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.konkurs_participate .overlay {
  opacity: 0.92;
}
.konkurs_participate input[type="text"], .konkurs_participate input[type="email"], .konkurs_participate input[type="tel"], .konkurs_participate input[type="number"], .konkurs_participate select, .konkurs_participate textarea {
  border: none;
  background: #fff;
  padding: 10px 25px;
  margin-top: 10px;
  width: 100%;
  font-size: 1.2rem;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: bold;
}
.konkurs_participate select {
  color: #575757;
  margin-top: 10px;
}
.konkurs_participate ::-webkit-input-placeholder {
  color: #575757;
}
.konkurs_participate :-moz-placeholder {
  /* Firefox 18- */
  color: #575757;
}
.konkurs_participate ::-moz-placeholder {
  /* Firefox 19+ */
  color: #575757;
}
.konkurs_participate :-ms-input-placeholder {
  color: #575757;
}
.konkurs_participate label.file_label {
  font-size: 1.2rem;
  font-weight: 400;
  display: inline-block;
  width: 100%;
  height: 220px;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
  margin-top: 10px;
  background-color: #fff;
  color: #575757;
  cursor: pointer;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: bold;
}
.konkurs_participate label.file_label:hover {
  background: #F19101;
  color: #fff;
}
.konkurs_participate label.file_label:hover i {
  color: #fff;
}
.konkurs_participate label.file_label i {
  font-size: 3.5em;
  display: block;
  margin: 20px auto 0;
  color: #C1C1C1;
  font-family: fontAwesome;
}
.konkurs_participate .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.konkurs_participate .section_title {
  color: #fff;
}
.konkurs_participate .section_title:after {
  background: #fff;
}

.file_zgoda_label {
  margin-top: 30px;
  display: none;
}
.file_zgoda_label a {
  color: yellow;
}
.file_zgoda_label input {
  margin-top: 14px;
  margin-bottom: 30px;
}

.to_hide.th_hidden {
  opacity: 0;
}

.yellow_link {
  color: yellow;
}
.yellow_link:hover, .yellow_link:focus {
  color: #fff;
}

label#thumbnail-error {
  position: absolute;
  top: 40px;
}

.project_desc {
  height: 220px;
}

.white_color {
  color: #fff;
}

.form_title {
  color: #fff;
  margin-top: 40px;
  margin-bottom: 0;
}

.error {
  color: #ca0000;
}

.form_cont {
  width: 100%;
  max-width: 850px;
  margin: 10px auto;
}

.form_title {
  color: black;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.form_title h3 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0;
}

.step_icon {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  width: 60px;
  height: 60px;
}
.step_icon img {
  width: 50px;
  height: auto;
}

.konkurs_submit {
  font-size: 1.4rem;
  color: #fff;
  background: #F19101;
  display: block;
  padding: 20px;
  border: none;
  width: 100%;
}
.konkurs_submit:hover {
  background: #575757;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  display: inline-block;
  background: transparent;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  margin-left: 10px;
  position: absolute;
  right: 5px;
  top: 2px;
}
.loader.l_hidden {
  opacity: 0;
}
.loader:after {
  border: 5px solid white;
  /* Light grey */
  border-top: 5px solid #F19101;
  /* Blue */
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  top: 50%;
  margin-top: -12px;
  content: ' ';
}

.zgoda_label {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 125%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 15px;
}

/* Hide the browser's default checkbox */
.zgoda_label input {
  position: absolute;
  opacity: 1;
  width: 30px;
  height: 33px;
  left: 0;
  top: 0;
  z-index: 9;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 2px solid #fff;
  border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.zgoda_label:hover input ~ .checkmark {
  cursor: pointer;
}

/* When the checkbox is checked, add a blue background */
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.zgoda_label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.zgoda_label .checkmark:after {
  left: 6px;
  top: -5px;
  width: 10px;
  height: 18px;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.zgoda_label .checkmark {
  border-color: #000;
}
.zgoda_label .checkmark:after {
  border-color: #000 !important;
}

.popup_thank {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  background: rgba(87, 87, 87, 0.9);
}

.pt_inner {
  background: #98B84E;
  padding: 25px;
  color: #fff;
  width: 98%;
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
  position: relative;
  font-size: 1.5rem;
  font-family: "Open Sans Condensed", sans-serif;
}

.pt_close {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  background: none;
}

.age {
  background: #d3e0b5;
  padding: 15px 25px;
}

.age_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
}

.age_option {
  width: 33%;
}

.teachers_form {
  margin: 3rem auto;
  max-width: 500px;
  background: #98B84E;
  color: white;
}
.teachers_form h3 {
  color: #fff;
  padding: 1em;
  text-align: center;
  background: #87a247;
}
.teachers_form .wpcf7 {
  margin: 0 auto;
  background: #98B84E;
  padding: 2rem;
}
.teachers_form .wpcf7 input[type="text"], .teachers_form .wpcf7 input[type="email"], .teachers_form .wpcf7 input[type="tel"], .teachers_form .wpcf7 input[type="number"], .teachers_form .wpcf7 select, .teachers_form .wpcf7 textarea {
  background: #fff;
  padding: 0.5rem;
  border: none;
  width: 100%;
  color: black;
}
.teachers_form .wpcf7 label {
  display: block;
}
.teachers_form .wpcf7 span.wpcf7-list-item {
  margin: 0;
}
.teachers_form input.wpcf7-form-control.wpcf7-submit {
  background: #F19101;
  color: #fff;
  border: none;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  margin-top: 1rem;
}

.custom_title {
  text-align: center;
  background: #F19101;
  color: #fff;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  margin-top: 1rem;
  font-size: 1.3rem;
}

/**
*-----------------------------------------------
* teachers form
*-----------------------------------------------
*/
/**
*-----------------------------------------------------------------------------
* Popup
*-----------------------------------------------------------------------------
*/
.popup_cont {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: rgba(26, 26, 26, 0.85);
}
.popup_cont.pc_hidden {
  top: 120%;
}

.popup_inner {
  max-width: 700px;
  width: 100%;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.popup_inner h2, .popup_inner h3 {
  font-size: 2rem;
  margin-top: 0;
  font-weight: 700;
}
.popup_inner label {
  display: block;
  font-size: 0.9rem;
}
.popup_inner input[type="text"], .popup_inner input[type="email"], .popup_inner input[type="tel"], .popup_inner input[type="number"], .popup_inner select, .popup_inner textarea {
  padding: 5px;
  border: none;
  width: 100%;
}

.popup_close {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../img/popup_close.png") no-repeat center center;
  background-size: 30px;
  top: 5px;
  right: 5px;
  border: none;
}
.popup_close:focus {
  opacity: 0.8;
  outline: none;
}

.popup_left, .popup_right {
  width: 50%;
}

.popup_left {
  padding: 20px 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.popup_right {
  padding: 20px;
}

.popup_submit {
  border: none;
  background: #F19101;
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px;
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.freshmail_form label {
  margin-top: 15px;
  margin-bottom: 0;
}

.popup_agreement {
  font-weight: normal;
  display: block;
  line-height: 125%;
  font-size: 0.8rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  display: inline-block;
  background: transparent;
  width: 24px;
  height: 24px;
  margin-top: 7px;
  margin-left: 10px;
  position: absolute;
  right: 5px;
  top: 2px;
}
.loader.l_hidden {
  opacity: 0;
}
.loader:after {
  border: 5px solid white;
  /* Light grey */
  border-top: 5px solid #F19101;
  /* Blue */
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  top: 50%;
  margin-top: -12px;
  content: ' ';
}

/**
*-----------------------------------------------------------------------------
* single
*-----------------------------------------------------------------------------
*/
.konkurs_image img {
  max-width: 100%;
  height: auto;
}

.single_title {
  text-align: center;
  margin: 50px auto 30px;
}

.konkurs_row {
  margin: 30px auto;
}

/**
*-----------------------------------------------------------------------------
* footer
*-----------------------------------------------------------------------------
*/
#footer {
  background: #575757;
  padding: 15px 0;
  color: #fff;
}

.banki_finansowanie img {
  height: 100px;
  width: auto;
  margin-bottom: 1.5rem;
}

.social_footer {
  display: inline-block;
  margin-left: 10px;
  font-size: 2.5rem;
}

@media all and (min-width: 993px) {
  .animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    opacity: 0;
  }

  .animated_load {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    opacity: 0;
  }

  .animated_load_long {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
    opacity: 0;
  }

  .fill {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .animated_high {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    opacity: 0;
  }

  .animated2 {
    -webkit-animation-duration: 1.7s;
    -moz-animation-duration: 1.7s;
    -o-animation-duration: 1.7s;
    animation-duration: 1.7s;
    opacity: 0;
  }

  .delay_1 {
    -webkit-animation-delay: 0.3s;
    /* Safari 4.0 - 8.0 */
    -moz-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }

  .animated_delay_1 {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.9s;
    /* Safari 4.0 - 8.0 */
    -moz-animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    animation-delay: 0.9s;
    opacity: 0;
  }

  .infinite {
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }

  .animated_visible {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
  }

  .animated_parent {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
  }

  .long {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
    opacity: 0;
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.anim_cont {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  z-index: 1101;
  left: 0;
  top: 0;
}

.loader {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -30.5px;
  margin-top: -30.5px;
}

.square {
  background: #ca1c2d;
  width: 17px;
  height: 17px;
  float: left;
  top: -11px;
  margin-right: 6px;
  margin-top: 6px;
  position: relative;
  opacity: 0;
  animation: enter 6.9s infinite;
  -o-animation: enter 6.9s infinite;
  -ms-animation: enter 6.9s infinite;
  -webkit-animation: enter 6.9s infinite;
  -moz-animation: enter 6.9s infinite;
}

.enter {
  top: 0px;
  opacity: 1;
}

.square:nth-child(1) {
  animation-delay: 2.07s;
  -o-animation-delay: 2.07s;
  -ms-animation-delay: 2.07s;
  -webkit-animation-delay: 2.07s;
  -moz-animation-delay: 2.07s;
}

.square:nth-child(2) {
  animation-delay: 2.42s;
  -o-animation-delay: 2.42s;
  -ms-animation-delay: 2.42s;
  -webkit-animation-delay: 2.42s;
  -moz-animation-delay: 2.42s;
}

.square:nth-child(3) {
  animation-delay: 2.76s;
  -o-animation-delay: 2.76s;
  -ms-animation-delay: 2.76s;
  -webkit-animation-delay: 2.76s;
  -moz-animation-delay: 2.76s;
  background: #e6be1d;
}

.square:nth-child(4) {
  animation-delay: 1.04s;
  -o-animation-delay: 1.04s;
  -ms-animation-delay: 1.04s;
  -webkit-animation-delay: 1.04s;
  -moz-animation-delay: 1.04s;
  animation-delay: 1.04s;
}

.square:nth-child(5) {
  animation-delay: 1.38s;
  -o-animation-delay: 1.38s;
  -ms-animation-delay: 1.38s;
  -webkit-animation-delay: 1.38s;
  -moz-animation-delay: 1.38s;
  animation-delay: 1.38s;
}

.square:nth-child(6) {
  animation-delay: 1.73s;
  -o-animation-delay: 1.73s;
  -ms-animation-delay: 1.73s;
  -webkit-animation-delay: 1.73s;
  -moz-animation-delay: 1.73s;
  animation-delay: 1.73s;
}

.square:nth-child(8) {
  animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
  -ms-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.square:nth-child(9) {
  animation-delay: 0.69s;
  -o-animation-delay: 0.69s;
  -ms-animation-delay: 0.69s;
  -webkit-animation-delay: 0.69s;
  -moz-animation-delay: 0.69s;
  animation-delay: 0.69s;
}

.clear {
  clear: both;
}

.last {
  margin-right: 0;
}

@keyframes enter {
  0% {
    opacity: 0;
    top: -11px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: 11px;
  }
}
@-o-keyframes enter {
  0% {
    opacity: 0;
    top: -11px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: 11px;
  }
}
@-ms-keyframes enter {
  0% {
    opacity: 0;
    top: -11px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: 11px;
  }
}
@-webkit-keyframes enter {
  0% {
    opacity: 0;
    top: -11px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: 11px;
  }
}
@-moz-keyframes enter {
  0% {
    opacity: 0;
    top: -11px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: 11px;
  }
}
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInLeftTop {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, -80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
  }
}
@-moz-keyframes fadeInLeftTop {
  0% {
    opacity: 0;
    -moz-transform: translate(-80px, -80px);
  }
  100% {
    opacity: 1;
    -moz-transform: translate(0, 0);
  }
}
@-o-keyframes fadeInLeftTop {
  0% {
    opacity: 0;
    -o-transform: translate(-80px, -80px);
  }
  100% {
    opacity: 1;
    -o-transform: translate(0, 0);
  }
}
@keyframes fadeInLeftTop {
  0% {
    opacity: 0;
    transform: translate(-80px, -80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fadeInLeftTop {
  -webkit-animation-name: fadeInLeftTop;
  -moz-animation-name: fadeInLeftTop;
  -o-animation-name: fadeInLeftTop;
  animation-name: fadeInLeftTop;
}

@-webkit-keyframes fadeInLeftBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
  }
}
@-moz-keyframes fadeInLeftBottom {
  0% {
    opacity: 0;
    -moz-transform: translate(-80px, 80px);
  }
  100% {
    opacity: 1;
    -moz-transform: translate(0, 0);
  }
}
@-o-keyframes fadeInLeftBottom {
  0% {
    opacity: 0;
    -o-transform: translate(-80px, 80px);
  }
  100% {
    opacity: 1;
    -o-transform: translate(0, 0);
  }
}
@keyframes fadeInLeftBottom {
  0% {
    opacity: 0;
    transform: translate(-80px, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fadeInLeftBottom {
  -webkit-animation-name: fadeInLeftBottom;
  -moz-animation-name: fadeInLeftBottom;
  -o-animation-name: fadeInLeftBottom;
  animation-name: fadeInLeftBottom;
}

@-webkit-keyframes fadeInRightTop {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
  }
}
@-moz-keyframes fadeInRightTop {
  0% {
    opacity: 0;
    -moz-transform: translate(80px, -80px);
  }
  100% {
    opacity: 1;
    -moz-transform: translate(0, 0);
  }
}
@-o-keyframes fadeInRightTop {
  0% {
    opacity: 0;
    -o-transform: translate(80px, -80px);
  }
  100% {
    opacity: 1;
    -o-transform: translate(0, 0);
  }
}
@keyframes fadeInRightTop {
  0% {
    opacity: 0;
    transform: translate(80px, -80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fadeInRightTop {
  -webkit-animation-name: fadeInRightTop;
  -moz-animation-name: fadeInRightTop;
  -o-animation-name: fadeInRightTop;
  animation-name: fadeInRightTop;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }
}
@-moz-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  opacity: 1 !important;
}

@-webkit-keyframes fadeInRightBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, 80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
  }
}
@-moz-keyframes fadeInRightBottom {
  0% {
    opacity: 0;
    -moz-transform: translate(80px, 80px);
  }
  100% {
    opacity: 1;
    -moz-transform: translate(0, 0);
  }
}
@-o-keyframes fadeInRightBottom {
  0% {
    opacity: 0;
    -o-transform: translate(80px, 80px);
  }
  100% {
    opacity: 1;
    -o-transform: translate(0, 0);
  }
}
@keyframes fadeInRightBottom {
  0% {
    opacity: 0;
    transform: translate(80px, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fadeInRightBottom {
  -webkit-animation-name: fadeInRightBottom;
  -moz-animation-name: fadeInRightBottom;
  -o-animation-name: fadeInRightBottom;
  animation-name: fadeInRightBottom;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.scaling {
  animation-name: scaling;
  -webkit-animation-name: scaling;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes scaling {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes scaling {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
.floatingquick {
  animation-name: floatingquick;
  -webkit-animation-name: floatingquick;
  animation-duration: 0.9s;
  -webkit-animation-duration: 0.9s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floatingquick {
  0% {
    transform: translateX(0%);
  }
  30% {
    transform: translateX(12%);
  }
  60% {
    transform: translateX(-12%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes floatingquick {
  0% {
    -webkit-transform: translateX(0%);
  }
  30% {
    -webkit-transform: translateX(12%);
  }
  60% {
    -webkit-transform: translateX(-12%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-webkit-keyframes line-scroll {
  0% {
    background-position: 0 -80px;
  }
  80% {
    background-position: 0 0px;
  }
  100% {
    background-position: 0 80px;
  }
}
@-moz-keyframes line-scroll {
  0% {
    background-position: 0 -80px;
  }
  80% {
    background-position: 0 0px;
  }
  100% {
    background-position: 0 80px;
  }
}
@-ms-keyframes line-scroll {
  0% {
    background-position: 0 -80px;
  }
  80% {
    background-position: 0 0px;
  }
  100% {
    background-position: 0 80px;
  }
}
@keyframes line-scroll {
  0% {
    background-position: 0 -80px;
  }
  80% {
    background-position: 0 0px;
  }
  100% {
    background-position: 0 80px;
  }
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes MoveUpDown {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(6px);
  }
  70% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes MoveUpDown {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(6px);
  }
  80% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media all and (min-width: 993px) {
  .navbar .dropdown-menu {
    margin-top: 0px;
  }
  .navbar .dropdown-menu .sub-menu {
    left: 100%;
    position: absolute;
    top: 0;
    visibility: hidden;
    margin-top: 0px;
  }
  .navbar .dropdown-menu li a {
    color: #fff;
  }
  .navbar .dropdown-menu > li:hover > .sub-menu {
    visibility: visible;
  }
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0px;
    margin-left: 0px;
    padding: 0;
    background: transparent;
  }
  .navbar .dropdown:hover > .dropdown-menu li a {
    color: #000;
  }
  .navbar .dropdown:hover > .dropdown-menu li a:hover {
    background: #98B84E;
  }
  .navbar .dropdown:hover > .dropdown-menu li.active a {
    background: inherit;
  }
  .navbar .dropdown:hover > .dropdown-menu li.active a:hover {
    background: #98B84E;
  }

  .right {
    text-align: right;
  }
}
@media all and (max-width: 1600px) {
  body, html {
    font-size: 15px;
  }
}
@media all and (max-width: 1400px) {
  body, html {
    font-size: 14px;
  }
}
@media all and (max-width: 1200px) {
  .navbar {
    text-align: center;
    justify-content: flex-end;
  }
  .navbar .navbar-nav {
    float: none;
  }
  .navbar .navbar-nav li a.nav-link {
    text-align: right;
  }

  .navbar-toggler {
    background: url("../img/menu_mobile.png") no-repeat center center;
    width: 50px;
    border: none;
    height: 50px;
    display: block;
    margin: 0px;
    float: none;
  }
  .navbar-toggler .navbar-toggler-icon {
    background: none;
  }
  .navbar-toggler .navbar-toggler-icon:focus {
    outline: none;
    opacity: 0.8;
  }
  .navbar-toggler:focus {
    outline: none;
    opacity: 0.8;
  }
}
@media all and (max-width: 992px) {
  body, html {
    font-size: 13px;
  }

  .logo {
    max-width: 46%;
  }

  .main_banner {
    padding: 40px 0 80px;
  }

  .banki_finansowanie img {
    max-height: 70px;
    height: auto;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  #footer p.right {
    text-align: right;
  }

  .down {
    margin-top: 30px;
    bottom: 40px;
  }

  .home .mb_text h1 {
    font-size: 4rem;
    margin-bottom: 0;
    line-height: 110%;
    margin-top: 0;
  }
  .home .mb_text h2 {
    font-size: 2.05rem;
  }
}
@media all and (max-width: 767px) {
  .mb_text h1 {
    font-size: 2.4rem;
  }

  .main_banner.konkurs_banner h2 {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .main_banner {
    background-attachment: inherit;
  }

  .home .mb_text h1 {
    font-size: 4rem;
    margin-bottom: 0;
    line-height: 110%;
    margin-top: 0;
  }
  .home .mb_text h2 {
    font-size: 2.05rem;
  }
  .home .mb_text h3 {
    font-size: 1rem;
    max-width: 180px;
    margin-top: 2rem;
  }
  .home .mb_bottom_big {
    font-size: 2.3rem;
  }

  .about_right {
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: inherit;
  }

  .submission {
    margin: 0 auto 30px;
    display: block;
    text-align: center;
  }
}
@media all and (max-width: 575px) {
  .center_mobile {
    text-align: center;
  }

  .navbar {
    text-align: center;
    justify-content: center;
    margin-top: 12px;
  }

  .logo {
    max-width: 42%;
    margin-bottom: 10px;
  }

  .about_left {
    padding: 30px 15px;
  }

  #footer p.right {
    text-align: center;
  }

  .navbar .navbar-nav li a.nav-link {
    text-align: center;
  }
}
