/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
		sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:visited {
	color: #800080;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
	margin-bottom: 0.25em;
}

a,
a:hover,
a:visited {
	text-decoration: none;
	color: #000000;
}

/* Elements
--------------------------------------------- */
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

@font-face {
	font-family: HelveticaNeue;
	src: url("/wp-content/themes/zabart/fonts/HelveticaNeue.ttf");
}

body {
	background: #fff;
	color: #1f3a74;
	font-family: "Helvetica Neue", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1;
}

ul {
	margin-left: 0 !important;
}

.color-primary {
	color: #31ff00;
}

.color-secondary {
	color: #1f3a74;
}

.entry-title,
.page-title {
	font-weight: 700;
}

.page-title-lower {
	text-transform: lowercase;
}

.site-header {
	padding: 50px 140px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999999;
}

.site-header.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #1f3a74;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

body:not(.home) .site-header {
	background-color: #1f3a74;
	padding-top: 30px;
	padding-bottom: 30px;
}

.slider {
	min-height: 100vh;
	background-color: #000000;
	margin-bottom: 0 !important;
}

.slider .slick-next {
	right: 25px;
}

.slider .slick-prev {
	left: 25px;
}

.slider .slick-next:before,
.slider .slick-prev:before {
	content: "";
}

.slider .slick-next,
.slider .slick-prev {
	z-index: 10;
	color: #ffffff;
	width: auto;
	height: auto;
}

.slider .slick-next > span,
.slider .slick-prev > span {
	font-size: 32px;
	transition: 0.3s all ease;
}

.slider .slick-next:hover > span,
.slider .slick-prev:hover > span {
	color: #31ff00;
}

.slider .slick-dots {
	bottom: 30px;
	z-index: 10;
}

.slider .slick-dots > li {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #ffffff;
}

.slider .slick-dots > li > button {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #ffffff;
}

.slider .slick-dots > li > button::before {
	width: 15px;
	height: 15px;
	opacity: 1 !important;
	line-height: 17px;
}

.slider .slick-dots > li.slick-active > button::before {
	opacity: 0 !important;
}

.slider .slider__item {
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	position: relative;
}

.slider .slider__item > .container,
.slider .slider__item > .container > .row {
	min-height: 100vh;
}

.slider .slider__item .slider__item-content {
	color: #ffffff;
	z-index: 10;
	position: relative;
	font-size: 1.75rem;
	font-weight: bold;
	line-height: 1;
	color: #31ff00;
}

.slider .slider__item .slider__item-content h3,
.slider .slider__item .slider__item-content h4 {
	font-weight: bold;
	font-size: 4rem;
	color: #ffffff;
}

.slider .slider__item .slider__item-content h5,
.slider .slider__item .slider__item-content h6 {
	font-size: 2.25rem;
	font-weight: 900;
	color: #ffffff;
}

.slider .slider__item .slider__item-content h1,
.slider .slider__item .slider__item-content h2 {
	font-size: 1.5rem;
	font-weight: bold;
}

.slider .slider__item .slider__item-content .slider__button {
	float: right;
	display: inline-block;
	position: relative;
	font-size: 1.25rem;
	font-weight: 900;
	text-transform: uppercase;
	color: #ffffff;
	transition: 0.3s all ease;
	margin-top: 20px;
}

.slider .slider__item .slider__item-content .slider__button::before {
	content: "";
	position: absolute;
	left: -200px;
	top: 50%;
	transform: translateY(-50%);
	width: 170px;
	height: 3px;
	background-color: #31ff00;
}

.slider .slider__item .slider__item-content .slider__button:hover {
	color: #31ff00;
}

.socials {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 140px;
	top: 50vh;
	transform: translateY(-50%);
	z-index: 100;
}

.socials li {
	margin-bottom: 30px;
}

.socials li a {
	display: flex;
	color: #000000;
	background: #ffffff;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	transition: 0.3s all ease;
}

.socials li a.hover {
	opacity: 0.7;
}

.socials li:last-of-type {
	margin-bottom: 0;
}

.socials li:nth-of-type(3n + 1) a:hover {
	background-color: #31ff00;
}

.socials li:nth-of-type(3n + 2) a:hover {
	background-color: #1f3a74;
}

.socials li:nth-of-type(3n + 3) a:hover {
	background-color: #32b18e;
}

.post__item-container {
	background: #ffffff;
	color: #1f3a74;
}

@media screen and (min-width: 992px) {
	.post__item .post__item-container {
		padding: 0 15px;
	}
	.post__item .post__item-container:nth-of-type(3n + 1) {
		padding-left: 0;
		padding-right: 30px;
	}
	.post__item .post__item-container:nth-of-type(3n + 3) {
		padding-right: 0;
		padding-left: 30px;
	}
}

.post__item-button::after {
	content: "";
	clear: both;
	display: table;
}

.post__item-thumb {
	margin-bottom: 40px;
}

.post__item-thumb a {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 350px;
	transition: 0.3s all ease;
}

.post__item-thumb a:hover img {
	transform: scale(1.4);
}

.post__item-thumb a img {
	transition: 1.5s all ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post__item-title {
	font-size: 1.5rem;
}

.post__item-title a {
	color: #1f3a74;
	transition: 0.3s all ease;
}

.post__item-title a:hover {
	color: #31ff00;
}

.post__item-subtitle,
.post__item-term {
	font-weight: 700;
}

.post__item-date {
	margin-bottom: 10px;
	font-size: 0.875rem;
	line-height: 1;
}

.post__item-excerpt {
	margin-top: 40px;
	min-height: 120px;
}

.post__item-button a {
	float: right;
	display: inline-block;
	position: relative;
	font-size: 1.25rem;
	font-weight: 900;
	text-transform: uppercase;
	transition: 0.3s all ease;
	margin-top: 20px;
	font-size: 1rem;
	color: #1f3a74;
}

.post__item-button a::before {
	content: "";
	position: absolute;
	left: -200px;
	top: 50%;
	transform: translateY(-50%);
	width: 170px;
	height: 3px;
	background-color: #31ff00;
}

.post__item-button a:hover {
	color: #31ff00;
}

.zapr__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.zapr__grid .zapr__grid-item {
	width: 20%;
	text-align: center;
	padding: 15px;
}

.zapr__grid .zapr__grid-item a {
	transition: 0.3s all ease;
}

.zapr__grid .zapr__grid-item a img {
	width: auto;
	max-height: 173px;
}

.zapr__grid .zapr__grid-img {
	display: inline-block;
	margin-bottom: 30px;
}

.zapr__grid .zapr__grid-title {
	font-size: 1.125rem;
	max-width: 200px;
	margin: 0 auto;
	font-weight: 900;
}

.zapr__grid .zapr__grid-title a {
	color: #1f3a74;
}

.zapr__grid .zapr__grid-title a:hover {
	color: #31ff00;
}

.section {
	padding-top: 40px;
	padding-bottom: 40px;
}

.section .section__sign {
	text-align: center;
	margin-bottom: 40px;
}

.section .section__sign img {
	width: 60px;
}

.section .section__title {
	font-size: 1.5rem;
	font-weight: 900;
	margin-bottom: 60px;
	color: #1f3a74;
}

.section .posts-list,
.section .section__title {
	position: relative;
	z-index: 10;
}

.section.section--first {
	margin-top: 120px;
}

.section.section-aktualnosci {
	position: relative;
}

.section.section-aktualnosci .post__item-title a {
	transition: 0.3s all ease;
}

.section.section-aktualnosci .post__item-title a:hover {
	color: #31ff00;
}

.section.section-aktualnosci .img-abs img:nth-of-type(1) {
	top: -75%;
	right: 93%;
}

.section.section-aktualnosci .img-abs img:nth-of-type(2) {
	top: -50%;
	right: -25%;
	z-index: -1;
}

.section.section-wydarzenia {
	padding-top: 40px;
	position: relative;
}

.section.section-wydarzenia .post__item-button a::before {
	background-color: #31ff00;
}

.section.section-wydarzenia .post__item-button a:hover {
	color: #31ff00;
}

.section.section-wydarzenia .post__item-title a {
	transition: 0.3s all ease;
}

.section.section-wydarzenia .post__item-title a:hover {
	color: #31ff00;
}

.section.section-wydarzenia .img-abs img {
	z-index: -1;
	left: -17%;
}

.section.section-map {
	padding: 0;
	height: calc(100vh - 120px);
}

.section.section-map .container-fluid,
.section.section-map .row,
.section.section-map .col {
	height: 100%;
}

.section.section-map iframe {
	width: 100% !important;
	height: 100% !important;
}

.site-footer {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #1f3a74;
}

.site-footer a,
.site-footer p,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
	color: #ffffff;
}

.site-footer ul li {
	margin-bottom: 30px;
}

.site-footer ul li a {
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	transition: 0.3s all ease;
	color: #ffffff;
}

.site-footer ul li a:hover {
	color: #31ff00;
}

.site-footer .menu-menu-socials-container ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.site-footer .menu-menu-socials-container ul li {
	margin-left: 15px;
	margin-bottom: 0;
}

.site-footer .menu-menu-socials-container ul li a {
	color: #31ff00;
	transition: 0.3s all ease;
	font-size: 1.5rem;
	text-transform: none;
	font-weight: normal;
}

.site-footer .menu-menu-socials-container ul li a:hover {
	opacity: 0.7;
}

.site-footer #custom_html-2 {
	margin-bottom: 60px;
}

.site-footer #custom_html-2 .custom-html-widget {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.site-footer #custom_html-2 .custom-html-widget a {
	display: inline-block;
}

.site-footer #custom_html-2 .custom-html-widget a:not(:last-of-type) {
	margin-right: 30px;
}

.site-footer #custom_html-2 .custom-html-widget img {
	width: 100%;
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-info {
	color: #ffffff;
	font-size: 14px;
}

.site-info a {
	color: #31ff00 !important;
	transition: 0.3s all ease;
}

.site-info a:hover {
	opacity: 0.7;
}

body {
	overflow-x: hidden;
}

.site {
	overflow: hidden;
}

.img-abs img {
	position: absolute;
}

.slider__item-content {
	position: relative;
	z-index: 10;
}

.logo-2 {
	opacity: 0;
}

.logo-1,
.logo-2 {
	position: absolute;
	left: 0;
}

.main-navigation .current-menu-parent > a,
.main-navigation .current-menu-item > a {
	color: #31ff00 !important;
}

.main-navigation .menu-item a:hover {
	color: #31ff00 !important;
}

.main-navigation .menu-item.menu-item-has-children a {
	display: inline-block;
}

.site-branding {
	display: inline-block;
	position: relative;
	width: 260px;
	height: 60px;
}

.section-contact-info {
	background-color: #1f3a74;
	color: #ffffff;
}

.section-contact-info h1,
.section-contact-info h2,
.section-contact-info h3,
.section-contact-info h4 {
	margin-bottom: 40px;
	font-weight: 700;
	line-height: 1.2;
	font-size: 1.5rem;
	color: #31ff00;
}

.section-contact-info h5,
.section-contact-info h6 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 1rem;
}

.section-contact-info a {
	transition: 0.3s all ease;
	color: #ffffff;
}

.section-contact-info a img {
	vertical-align: middle;
}

.section-contact-info a:hover {
	color: #31ff00;
}

.section-contact-info .wpcf7 {
	margin-top: 160px;
}

.mc4wp-form input[type="email"],
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	border: none;
	border-bottom: 1px solid #d1d1d1;
	background-color: transparent;
	color: #ffffff;
}

.mc4wp-form input[type="email"]:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
	border: none;
	border-bottom: 1px solid #31ff00;
	outline: none;
}

.wpcf7 input[type="checkbox"] {
	background-color: transparent;
}

.mc4wp-form label,
.wpcf7 label {
	font-weight: 700;
	width: 100%;
}

.wpcf7 .wpcf7-form > p {
	margin-bottom: 30px;
}

.wpcf7 .wpcf7-form > p:last-of-type {
	text-align: right;
}

.wpcf7 .wpcf7-form textarea {
	height: 31px;
}

.wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
	cursor: pointer;
	font-size: 0.75rem;
}

#colophon .mc4wp-form input[type="submit"],
.wpcf7 .wpcf7-form .wpcf7-submit {
	background: none;
	border: none;
	outline: none;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	color: #ffffff;
	transition: 0.3s all ease;
	cursor: pointer;
}

#colophon .mc4wp-form input[type="submit"] {
	margin-top: 15px;
	background-color: #31ff00 !important;
    color: #1f3a74 !important;
    border: 2px solid #31ff00 !important;
	padding: 15px !important;
	border-radius: 15px !important;
}

#colophon .mc4wp-form input[type="submit"]:hover {
	color: #31ff00 !important;
	background-color: transparent !important;
}

.wpcf7 .wpcf7-form .wpcf7-submit:hover {
	color: #31ff00;
}

.wpcf7 .wpcf7-form .wpcf7-submit::before {
	content: "";
	position: absolute;
	left: -120px;
	top: 50%;
	transform: translateY(-50%);
	width: 100px;
	height: 2px;
	background-color: #1f3a74;
}

.widget-title {
	font-size: 1.5rem;
}

body.single-post .post.category-kadra .entry-header {
	justify-content: flex-start;
}

body.single-post .post.category-kadra .entry-header .entry-header__container h1,
body.single-post .post.category-kadra .entry-header .entry-header__container h2,
body.single-post .post.category-kadra .entry-header .entry-header__container h3,
body.single-post .post.category-kadra .entry-header .entry-header__container h4 {
	color: #1f3a74;
}

body.archive .site-main {
	padding-bottom: 80px;
}

body.archive .post {
	margin-bottom: 0px;
}

body.archive .post.category-kadra .entry-header {
	justify-content: flex-start;
}

body.archive .post.category-kadra .entry-header .entry-header__container .page-title {
	color: #1f3a74;
}

body.archive .article__content {
	background-color: #1f3a74;
	color: #ffffff;
	padding: 60px 40px 100px 120px;
	max-width: 66%;
	position: relative;
	z-index: 10;
	margin-top: -15%;
}

body.archive.category-kadra .article__content,
body.archive.category-galeria .article__content {
	width: 100%;
	max-width: 100%;
	padding: 20px;
	margin-top: 0;
}

body.archive.category-kadra .article__content .article__title,
body.archive.category-galeria .article__content .article__title {
	max-width: 280px;
}

body.archive.category-kadra .article__content .article__title h1,
body.archive.category-kadra .article__content .article__title h2,
body.archive.category-kadra .article__content .article__title h3,
body.archive.category-kadra .article__content .article__title h4,
body.archive.category-kadra .article__content .article__title h5,
body.archive.category-kadra .article__content .article__title h6,
body.archive.category-galeria .article__content .article__title h1,
body.archive.category-galeria .article__content .article__title h2,
body.archive.category-galeria .article__content .article__title h3,
body.archive.category-galeria .article__content .article__title h4,
body.archive.category-galeria .article__content .article__title h5,
body.archive.category-galeria .article__content .article__title h6 {
	margin-bottom: 0;
}

body.archive.category-kadra .post,
body.archive.category-galeria .post {
	margin-bottom: 20px;
}

body.archive.category-kadra .site-main,
body.archive.category-galeria .site-main {
	padding-bottom: 0;
}

body.archive.category-kadra .article__button,
body.archive.category-galeria .article__button {
	margin-top: 40px;
}

.blocks-gallery-grid,
.wp-block-gallery {
	width: 100%;
}

article.post .tags-list,
article.page .tags-list {
	position: relative;
	z-index: 9;
	margin-bottom: 20px;
}

article.post .tags-list a,
article.page .tags-list a {
	display: inline-block;
	margin-right: 5px;
	color: #d1d1d1;
	transition: 0.3s all ease;
	text-transform: uppercase;
}

article.post .tags-list a:hover,
article.page .tags-list a:hover {
	color: #31ff00;
}

article.post .article__thumb,
article.page .article__thumb {
	width: 100%;
	height: 450px;
	overflow: hidden;
}

article.post .article__thumb img,
article.page .article__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

article.post .article__title,
article.page .article__title {
	max-width: 400px;
}

article.post .article__title h1,
article.post .article__title h2,
article.post .article__title h3,
article.post .article__title h4,
article.page .article__title h1,
article.page .article__title h2,
article.page .article__title h3,
article.page .article__title h4 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}

article.post .article__title h1 a,
article.post .article__title h2 a,
article.post .article__title h3 a,
article.post .article__title h4 a,
article.page .article__title h1 a,
article.page .article__title h2 a,
article.page .article__title h3 a,
article.page .article__title h4 a {
	transition: 0.3s all ease;
	color: #ffffff;
}

article.post .article__title h1 a:hover,
article.post .article__title h2 a:hover,
article.post .article__title h3 a:hover,
article.post .article__title h4 a:hover,
article.page .article__title h1 a:hover,
article.page .article__title h2 a:hover,
article.page .article__title h3 a:hover,
article.page .article__title h4 a:hover {
	color: #31ff00;
}

article.post .article__term,
article.page .article__term {
	color: #31ff00;
	font-weight: 700;
}

article.post .article__date,
article.page .article__date {
	font-size: 0.75rem;
	color: #31ff00;
	margin-bottom: 10px;
}

article.post .article__excerpt,
article.page .article__excerpt {
	margin-top: 60px;
	margin-bottom: 30px;
	max-width: 520px;
}

article.post .article__button,
article.page .article__button {
	text-align: right;
}

article.post .article__button > a,
article.page .article__button > a {
	display: inline-block;
	position: relative;
	font-weight: 700;
	text-transform: uppercase;
	transition: 0.3s all ease;
	margin-top: 20px;
	color: #ffffff;
}

article.post .article__button > a::before,
article.page .article__button > a::before {
	content: "";
	position: absolute;
	left: -200px;
	top: 50%;
	transform: translateY(-50%);
	width: 170px;
	height: 3px;
	background-color: #31ff00;
}

article.post .article__button > a:hover,
article.page .article__button > a:hover {
	color: #31ff00;
}

article.post .article__spec,
article.page .article__spec {
	color: #31ff00;
}

article.post .entry-header,
article.page .entry-header {
	min-height: 66vh;
	padding-top: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

article.post .entry-header .entry-header__container,
article.page .entry-header .entry-header__container {
	position: relative;
	z-index: 9;
}

article.post .entry-header .entry-header__container h1,
article.post .entry-header .entry-header__container h2,
article.post .entry-header .entry-header__container h3,
article.post .entry-header .entry-header__container h4,
article.page .entry-header .entry-header__container h1,
article.page .entry-header .entry-header__container h2,
article.page .entry-header .entry-header__container h3,
article.page .entry-header .entry-header__container h4 {
	color: #ffffff;
	font-size: 4rem;
}

article.post .entry-header .entry-header__container .entry-subtitle h2,
article.post .entry-header .entry-header__container .entry-subtitle h3,
article.post .entry-header .entry-header__container .entry-subtitle h4,
article.page .entry-header .entry-header__container .entry-subtitle h2,
article.page .entry-header .entry-header__container .entry-subtitle h3,
article.page .entry-header .entry-header__container .entry-subtitle h4 {
	color: #31ff00;
	font-size: 1.75rem;
}

article.post .entry-content,
article.page .entry-content {
	min-height: 300px;
	margin: 0 !important;
	padding: 30px 0;
}

article.post .entry-content .post-title,
article.page .entry-content .post-title {
	margin-bottom: 40px;
}

article .post-field {
	margin-bottom: 20px;
}

.post-navigation {
	margin-top: 30px !important;
}

.post-navigation a {
	text-transform: uppercase;
	font-weight: 900;
	transition: 0.3s all ease;
}

.post-navigation a:hover {
	color: #31ff00;
}

.breadcrumbs {
	margin-bottom: 30px;
	font-size: 0.875rem;
	color: #d1d1d1;
}

.breadcrumbs a {
	color: #d1d1d1;
	transition: 0.3s all ease;
}

.breadcrumbs a:hover {
	color: #1f3a74 !important;
}

.breadcrumbs a,
.breadcrumbs span {
	display: inline-block;
	margin: 5px 5px 5px 0;
}

.breadcrumbs a:first-of-type,
.breadcrumbs span:first-of-type {
	margin-left: 0;
}

.breadcrumbs a.last,
.breadcrumbs span.last {
	color: #31ff00 !important;
}

.page-header .page-title {
	font-weight: 700;
	font-size: 1.75rem;
	color: #1f3a74;
}

.navigation .wp-paginate a:hover,
.navigation .wp-paginate a,
.navigation .wp-paginate .current {
	color: #000000;
	background: none;
	border: none;
	color: #d1d1d1;
	transition: 0.3s all ease;
	font-size: 0.875rem;
}

.navigation .wp-paginate .current {
	color: #000000;
	font-size: 1.125rem;
}

.navigation .wp-paginate a:hover {
	color: #000000;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content p {
	margin-bottom: 1em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-size: 1.5rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	font-weight: 700;
}

.entry-content ol {
	padding-left: 0;
}

body.tos-opened .site-header {
	z-index: 999;
}

.tos-close {
	right: 60px;
}

.tos-close span:after,
.tos-close span:before {
	width: 12px;
	height: 12px;
}

.scroll-up {
	color: #31ff00;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	font-size: 2rem;
	cursor: pointer;
	position: fixed;
	right: 30px;
	bottom: 60px;
	z-index: 99999;
	transition: 0.3s all ease;
}

.scroll-up:hover {
	color: #1f3a74;
}

.error-404 {
	margin: 200px 0;
	min-height: 300px;
}

.archive-description {
	margin-bottom: 60px;
	color: #1f3a74;
}

.archive-description h4 {
	margin-bottom: 60px;
}

body:not(.home) .img-abs img {
	z-index: -1;
}

body.page-template-contact .img-abs img {
	right: 90%;
	max-width: 800px;
}

body.page-template-default .img-abs img {
	left: 90%;
}

body.archive .site-main {
	min-height: 100vh;
}

body.archive .img-abs img {
	bottom: -1%;
}

body.archive .img-abs img:nth-of-type(1) {
	left: 90%;
}

body .site-main {
	overflow: hidden;
	position: relative;
}

.entry-content {
	color: #666666;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	color: #1f3a74;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-size: 1.25rem;
}

.entry-content h5,
.entry-content h6 {
	font-size: 1.125rem;
}

.entry-content a {
	color: #666666;
	transition: 0.3s all ease;
}

.entry-content a:hover {
	color: #31ff00;
}

.subcategories__item {
	height: 650px;
	background-position: center;
	background-size: cover;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-end;
	color: #ffffff;
	margin-bottom: 15px;
	border-radius: 30px;
	position: relative;
	transition: 0.3s all ease;
}

.subcategories__item h1,
.subcategories__item h2,
.subcategories__item h3,
.subcategories__item h4,
.subcategories__item h5,
.subcategories__item h6,
.subcategories__item p {
	width: 100%;
	transition: color 0.3s ease;
}

.subcategories__item h1,
.subcategories__item h2,
.subcategories__item h3,
.subcategories__item h4,
.subcategories__item h5,
.subcategories__item h6 {
	font-size: 3.5rem;
	font-weight: 700;
	color: #31ff00;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 0;
}

.subcategories__item p {
	text-transform: lowercase;
	font-size: 2.5rem;
	line-height: 1;
}

.subcategories__item .subcategories__item-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.subcategories__item:hover h1,
.subcategories__item:hover h2,
.subcategories__item:hover h3,
.subcategories__item:hover h4,
.subcategories__item:hover h5,
.subcategories__item:hover h6 {
	color: #1f3a74;
}

body.category-dla-doroslych .archive-description,
body.category-dla-dzieci .archive-description {
	margin-top: 60px;
}

.courses .accordion .card {
	border-radius: 15px;
	border: none;
	margin-bottom: 10px;
}

.courses .accordion .card-header {
	border-radius: 15px;
	color: #ffffff;
	background-color: #1f3a74;
	position: relative;
	padding: 0;
}

.courses .accordion .card-header button .chevron {
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%) rotate(0);
}

.courses .accordion .card-header button:not(.collapsed) .chevron {
	transform: translateY(-50%) rotate(180deg);
}

.courses .accordion .card-header button.collapsed .chevron {
	transform: translateY(-50%) rotate(0);
}

.courses .accordion button {
	color: #ffffff;
	text-decoration: none;
	border: none;
	padding: 0;
	width: 100%;
	padding: 25px 80px 25px 35px;
	text-align: left;
	line-height: 1;
}

.courses .accordion button:hover {
	border: none;
	box-shadow: none;
}

.courses .accordion button > span {
	display: block;
	width: 100%;
}

.courses .accordion .course__title {
	color: #31ff00;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.75rem;
}

.courses .accordion .course__subtitle {
	font-weight: 700;
	font-size: 1.25rem;
}

.courses .accordion .card-body {
	padding: 40px 0;
	color: #666666;
}

.courses .accordion .card-body h4,
.courses .accordion .card-body h5 {
	font-weight: 700;
	display: block;
	color: #1f3a74;
}

.courses .accordion .card-body h4 {
	font-size: 1.25rem;
	margin-bottom: 25px;
}

.courses .accordion .card-body h5 {
	margin-top: 15px;
	font-size: 1.125rem;
}

.entry-summary .course__price,
.courses .accordion .card-body .course__price {
	background-color: #1f3a74;
	color: #ffffff;
	border-radius: 15px;
	padding: 20px 130px 20px 20px;
	position: relative;
	margin-top: 20px;
	transition: .3s all ease;
}

.entry-summary .course__price:hover {
	opacity: .8;
}

.entry-summary .course__price h5,
.courses .accordion .card-body .course__price h5 {
	color: #ffffff;
	font-size: 1.25rem;
	margin-top: 0;
}

.entry-summary .course__price h4,
.courses .accordion .card-body .course__price h4 {
	color: #31ff00;
	font-size: 1.75rem;
	margin-top: 0;
	margin-bottom: 0;
}

.entry-summary .course__price .course__price-cart,
.courses .accordion .card-body .course__price .course__price-cart {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
}

.entry-summary .course__price .course__price-cart .chevron,
.courses .accordion .card-body .course__price .course__price-cart .chevron {
	transform: rotate(-90deg);
}

#cookie-notice {
	font-family: "Helvetica Neue", sans-serif !important;
	background: #1f3a74 !important;
}

#cookie-notice .cn-button.bootstrap {
	background: transparent !important;
	color: #31ff00 !important;
}

#cookie-notice #cn-notice-buttons {
	font-family: "Helvetica Neue", sans-serif !important;
}

.woocommerce-cart-form tr td {
	padding-top: 10px;
	padding-bottom: 10px;
}

.course__price h4,
.course__price h5 {
	font-weight: 700;
}

.course__price-cart img {
	transition: 0.3s all ease;
}

.course__price-cart:hover img {
	opacity: 0.8;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
	font-weight: 700;
	color: #1f3a74;
	font-size: 1.25rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	font-weight: 700;
	color: #1f3a74;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea {
	min-height: 46px;
	border: none;
	border-bottom: 1px solid;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="url"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="search"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout textarea {
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea {
	min-height: 46px;
	border: none;
	border-bottom: 1px solid;
}

textarea {
	height: 46px;
}

.coupon .button {
	margin-left: 15px;
}

@media screen and (max-width: 1650px) {
	.main-navigation li {
		margin-left: 40px !important;
	}
}

@media screen and (max-width: 1400px) {
	.main-navigation li {
		margin-left: 20px !important;
	}
}

@media screen and (max-width: 1100px) {
	.site-header.header-fixed,
	.site-header {
		padding-left: 100px;
		padding-right: 100px;
	}
}

@media screen and (min-width: 992px) {
	.wpcf7-form > p:first-of-type {
		display: flex;
		justify-content: space-between;
	}
	.wpcf7-form > p:first-of-type > label {
		width: 49%;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		line-height: 1;
	}
	.wpcf7-form > p:first-of-type > label > .wpcf7-form-control-wrap.your-name {
		width: 60%;
	}
	.wpcf7-form > p:first-of-type > label > .wpcf7-form-control-wrap.your-email {
		width: 80%;
	}
	.wpcf7-form > p:first-of-type > label > .wpcf7-form-control-wrap > input {
		width: 100%;
	}
	.product .entry-summary .course__price {
		float: right;
		padding-right: 25%;
		margin-bottom: 60px;
	}
}

@media screen and (max-width: 991px) {
	.course__title {
		font-size: 1.5rem !important;
	}
	.course__subtitle {
		font-size: 1.125rem !important;
	}
	.courses .accordion button {
		padding: 25px;
		padding-right: 80px;
	}
	.scroll-up {
		right: 10px !important;
	}
	.subcategories__item {
		height: 400px;
	}
	.subcategories__item h1,
	.subcategories__item h2,
	.subcategories__item h3,
	.subcategories__item h4,
	.subcategories__item h5,
	.subcategories__item h6 {
		font-size: 2.5rem;
	}
	.subcategories__item p {
		font-size: 1.5rem;
	}
	.img-abs,
	.slick-arrow {
		display: none !important;
	}
	.zapr__grid .zapr__grid-item {
		width: 50%;
	}
	.posts-list .row .post__item {
		margin-bottom: 60px;
	}
	.posts-list .row .post__item:last-of-type {
		margin-bottom: 0;
	}
	.post__item-title {
		min-height: unset;
	}
	.section__title,
	.site-footer {
		text-align: center;
	}
	.section__title .section-wydarzenia,
	.section__title .section-aktualnosci {
		text-align: left;
	}
	.site-footer .menu-menu-socials-container ul {
		justify-content: center;
	}
	.slider .slider__item .slider__item-content h5,
	.slider .slider__item .slider__item-content h6,
	.slider .slider__item .slider__item-content h3,
	.slider .slider__item .slider__item-content h4 {
		font-size: 1.5rem;
		font-weight: 700;
	}
	.socials {
		right: 30px;
	}
	.slider__item-content {
		margin-left: 45px;
		margin-right: 45px;
	}
	.slider .slider__item .slider__item-content .slider__button::before {
		width: 50px;
		left: -60px;
	}
	.slider .slider__item .slider__item-content .slider__button {
		margin-left: 60px;
		float: none;
	}
	.section.section--first {
		margin-top: 100px;
	}
	.section .row > *:not(:last-of-type) {
		margin-bottom: 60px;
	}
	body.archive .main-navigation .menu-menu-1-container ul,
	body.page-template-contact .main-navigation .menu-menu-1-container ul {
		background-color: #ffffff;
	}
	.site-branding {
		width: auto;
		height: auto;
	}
	.wpcf7 {
		margin-top: 0 !important;
	}
	.wpcf7-form > p .wpcf7-form-control-wrap {
		display: block;
	}
	.wpcf7-form > p .wpcf7-form-control-wrap input[type="text"],
	.wpcf7-form > p .wpcf7-form-control-wrap input[type="email"] {
		width: 100%;
	}
	.wpcf7-form > p:first-of-type label:not(:first-of-type) {
		display: block;
		margin-top: 30px;
	}
	article .entry-header {
		padding-right: 70px;
		min-height: 300px !important;
	}
	article .entry-header .entry-header__container h1,
	article .entry-header .entry-header__container h2,
	article .entry-header .entry-header__container h3,
	article .entry-header .entry-header__container h4 {
		font-size: 1.5rem !important;
	}
	article.post .entry-content {
		min-height: unset;
	}
	.article__content {
		width: 100%;
		max-width: unset !important;
		padding: 30px !important;
	}
	body .main-navigation > div {
		position: absolute;
		top: 90px;
		width: 100%;
		left: 0;
		text-align: center;
	}
	body .main-navigation ul {
		background-color: #1f3a74;
		padding: 15px 0;
	}
	body .main-navigation ul li {
		padding: 15px 0;
	}
	.sub-menu {
		display: none !important;
		position: static !important;
		width: 100%;
		text-align: center;
	}
	.sub-menu a {
		width: 100% !important;
	}
	.main-navigation ul ul a {
		width: 100% !important;
	}
	.sub-menu {
		box-shadow: none !important;
	}
	.sub-menu.active {
		display: block !important;
	}
	.site-info {
		margin-bottom: 30px;
	}
	.site-footer #custom_html-2 .custom-html-widget {
		justify-content: center;
	}
	.site-footer #custom_html-2 .custom-html-widget a {
		margin: 10px !important;
	}
	.site-header.header-fixed,
	.site-header {
		padding: 15px !important;
	}
	.menu-toggle {
		margin-left: auto;
		padding: 0 !important;
	}
	.slider__item-content {
		font-size: 1.5rem !important;
	}
}

@media screen and (max-width: 584px) {
	.zapr__grid .zapr__grid-item {
		width: 100%;
	}
	.article__thumb {
		height: 300px !important;
	}
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li a {
	transition: 0.3s all ease;
}

.main-navigation ul li a:hover {
	color: #31ff00;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: #ffffff;
	font-size: 18px;
	font-size: 22px;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 992px) {
	.menu-toggle {
		display: none;
	}
	.main-navigation > div > ul {
		display: flex;
		justify-content: space-around;
	}
}

.menu-item:hover > .sub-menu {
	display: block;
}

body:not(.home):not(.single-post):not(.page-template-default):not(.category-galeria) .sub-menu {
	background-color: #ffffff;
	padding-top: 15px;
	padding-bottom: 15px;
}

body:not(.home):not(.single-post):not(.page-template-default):not(.category-galeria) .sub-menu > li {
	margin-left: 0;
	padding: 15px 30px;
}

body:not(.home):not(.single-post):not(.page-template-default):not(.category-galeria) .sub-menu > li a {
	color: #000000;
}

body:not(.home):not(.single-post):not(.page-template-default):not(.category-galeria) .sub-menu > li a:hover {
	color: #31ff00;
}

body .sub-menu {
	background-color: #000000;
	padding-top: 15px;
	padding-bottom: 15px;
}

body .sub-menu > li {
	margin-left: 0;
	padding: 15px 30px;
}

body .sub-menu > li a {
	color: #ffffff;
}

body .sub-menu > li a:hover {
	color: #31ff00;
}

.menu-toggle:focus,
.menu-toggle {
	border: none;
	background: none;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
	padding: 0 30px;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

@media screen and (max-width: 991px) {
	.main-navigation .menu-menu-1-container ul {
		background-color: #000000;
		position: absolute;
		width: 100%;
		left: 0;
		top: 95px;
		text-align: center;
		padding: 30px 0;
	}
	.main-navigation .menu-menu-1-container ul li {
		margin-bottom: 30px;
	}
	.main-navigation .menu-menu-1-container ul li:last-of-type {
		margin-bottom: 0;
	}
	.main-navigation li {
		margin-left: 0 !important;
	}
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

.site-branding__logo img {
	width: 60px;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*# sourceMappingURL=style.css.map */

.zapr__grid .zapr__grid-item {
	width: 16.66%;
}

.zapr__grid .zapr__grid-item a img {
	max-height: 150px;
}

.zapr__grid .zapr__grid-img {
	display: block;
}

.site-footer #custom_html-2 .custom-html-widget img {
	min-height: 150px;
}

body.woocommerce #primary.site-main {
	padding-top: 120px;
}

.woocommerce-breadcrumb {
	padding-top: 40px;
}

.woocommerce-products-header {
	margin-bottom: 40px;
}

ul.products li.product-category {
	position: relative;
	margin-bottom: 15px;
}

li.product-category img {
	border-radius: 30px;
	height: 100%;
	max-height: 650px;
	width: 100%;
	object-fit: cover;
}

li.product-category > a {
	position: relative;
	display: block;
}

.woocommerce-loop-category__title {
	position: absolute;
	left: 30px;
	bottom: 30px;
	color: #ffffff;
}

.term-description {
	margin-top: 60px;
	margin-bottom: 60px;
}

.woocommerce-ordering,
.woocommerce-result-count {
	display: none;
}

ul.products li.product .course__price-cart img {
	display: inline-block;
}

.price ins {
	background: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: transparent !important;
}

.tabs.wc-tabs > li > a,
.woocommerce input[type="submit"],
.checkout-button,
.woocommerce button:not(.btn):not(.menu-toggle) {
	display: inline-block;
	position: relative;
	padding: 15px !important;
	border: none;
	border-radius: 15px;
	color: #ffffff !important;
	background-color: #1f3a74;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: 0.3s all ease;
}

.tabs.wc-tabs > li.active > a,
.tabs.wc-tabs > li > a:hover,
.woocommerce input[type="submit"]:hover,
.checkout-button:hover,
.woocommerce button:not(.btn):hover {
	padding: 15px !important;
	color: #31ff00 !important;
}

button[name="update_cart"] {
	margin-top: 30px;
}

.woocommerce label {
	margin-right: 15px;
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
}

.woocommerce-form-coupon-toggle,
.woocommerce-billing-fields__field-wrapper .form-row {
	margin-bottom: 30px;
}

body.single .single_add_to_cart_button.button {
	margin: 0 0 0 15px;
	border-radius: 15px;
}

.tabs.wc-tabs > li:not(:last-of-type) {
	margin-right: 15px;
	margin-bottom: 15px;
}

.tabs.wc-tabs {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.woocommerce-tabs {
	margin: 30px 0;
}

#accordion li {
	width: 100%;
	margin-right: 0;
}

ul.products li.product:not(.product-category) {
	margin-bottom: 0 !important;
}

ul.products li.product:last-of-type {
	margin-bottom: 0 !important;
}

.post__item-button {
	overflow: hidden;
}

.price__wrap > a {
	display: block;
	background-color: #1f3a74;
	padding: 20px;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.25rem;
	border-radius: 15px;
	transition: .3s all ease;
}

.price__wrap > a:hover {
	opacity: .8;
}

.price__wrap .price {
	font-size: 1.5rem !important;
	color: #31ff00;
}

.product__wrap h4 > a {
	color: #1f3a74;
	transition: 0.3s all ease;
}

.product__wrap h4 > a:hover {
	color: #31ff00;
}

.pswp {
	z-index: 999999 !important;
}

body.single .price {
	font-size: 1.75rem;
}

body.single .woocommerce-product-details__short-description {
	margin: 30px 0;
}

body.single .cart {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 15px;
}

body.woocommerce-page article.post .entry-header,
body.woocommerce-page article.page .entry-header {
	min-height: 50vh;
}

.cart-collaterals {
	float: right;
}

body.archive.category-zdjecia .article__content,
body.archive.category-video .article__content,
body.archive.category-relacje .article__content {
	width: 100%;
	max-width: 100%;
	padding: 20px;
	margin-top: 0;
	min-height: 170px;
}

body.archive.category-zdjecia .post,
body.archive.category-video .post,
body.archive.category-relacje .post {
	margin-bottom: 20px;
}

input[name="quantity"] {
	width: 50px;
}

body.single .single_add_to_cart_button.button {
	font-size: 1.5rem;
	color: #31ff00 !important;
	line-height: 1.5;
}

body.single .single_add_to_cart_button.button:hover {
	color: #ffffff !important;
}

article.post .format-video .article__thumb {
	height: auto;
}

.format-video .wp-block-embed {
	margin-bottom: 0;
}

body .sub-menu {
	background-color: #1f3a74 !important;
}
body .sub-menu > li a {
	color: #ffffff !important;
}

.related.products {
	overflow: hidden;
}

.related.products > h4 {
	position: relative;
	display: inline-block;
	font-weight: 700;
}

.related.products > h4::before {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(100% + 30px);
	width: 2000px;
	height: 3px;
	background-color: #31ff00;
}

.entry-content ul:not(.blocks-gallery-grid) {
	list-style-type: none;
	padding-left: 25px;
}

.entry-content ul:not(.blocks-gallery-grid) > li {
	position: relative;
	line-height: 1;
	margin-bottom: 15px;
}

.entry-content ul:not(.blocks-gallery-grid):not(.wc_payment_methods):not(#dotpay_empty_channel) > li::before {
	content: "";
	position: absolute;
	left: -25px;
	top: 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #1f3a74;
}

.woocommerce-error {
	color: red;
}

.wc_payment_method > input {
	position: absolute;
	left: -25px;
}

.entry-summary .product_meta {
	margin-bottom: 30px;
}

#customer_details {
	margin-bottom: 60px;
}

#place_order {
	float: right;
}

.woocommerce-order-details {
	margin: 50px 0;
}

.woocommerce-Tabs-panel--custom_program_szczegolowy button {
	display: inline-block;
	padding: 15px;
	/* background-color: #1f3a74; */
	text-align: center;
	/* color: #ffffff; */
	border-radius: 15px;
	transition: .3s all ease;
	border-color: #1f3a74;
	margin-bottom: 15px;
	font-weight: 700;
	line-height: 1;
	width: 100%;
	background-color: rgba(0,0,0,.03);
	border-color: rgba(0,0,0,.03);
}

.woocommerce-Tabs-panel--custom_program_szczegolowy button:hover {
	color: #31ff00;
}

.woocommerce-Tabs-panel--custom_program_szczegolowy .card-body {
	border: none;
}

.woocommerce-Tabs-panel--custom_program_szczegolowy button .chevron {
	margin-left: 15px;
	width: 24px;
}

.woocommerce-Tabs-panel--custom_program_szczegolowy button[aria-expanded="false"] .chevron {
	transform: none;
}

.woocommerce-Tabs-panel--custom_program_szczegolowy button[aria-expanded="true"] .chevron {
	transform: rotate(180deg);
}

.entry-content .woocommerce button[name="woocommerce_checkout_place_order"],
.checkout-button.button {
	background-color: #31ff00 !important;
	color: #1f3a74 !important;
	border: 2px solid #31ff00 !important;
}

.entry-content .woocommerce button[name="woocommerce_checkout_place_order"]:hover,
.checkout-button.button:hover {
	background-color: #ffffff !important;
	color: #1f3a74 !important;
	border: 2px solid #31ff00 !important;
}

.entry-content .woocommerce button[name="woocommerce_checkout_place_order"],
.checkout-button.button {
	margin: 30px 0;
}

.entry-content .woocommerce button[name="update_cart"],
.entry-content .woocommerce button[name="apply_coupon"] {
	border: 2px solid #1f3a74 !important;
	background-color: #ffffff !important;
	color: #1f3a74 !important;
}

.entry-content .woocommerce button[name="update_cart"]:hover,
.entry-content .woocommerce button[name="apply_coupon"]:hover {
	border: 2px solid #1f3a74 !important;
	background-color: #1f3a74 !important;
	color: #ffffff !important;
}

.cart_totals {
	margin-top: 1.5em;
}

.course__price-wrap {
	text-align: center;
}

.course__price {
	float: none !important;
	display: inline-block !important;
	text-align: left;
}

.course__price a {
	position: relative;
	z-index: 2;
}

.course__price h5 > a {
	color: #ffffff;
}

.course__price h4 > a {
	color: #31ff00;
}

.course__price a.course__price-cart-abs {
	position: absolute;
	top: 0;
	lefT: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.shop_table td, .shop_table th {
	padding: 9px 12px;
}

.shop_table tfoot {
	border-top: 1px solid #666666;
}

.shop_table {
	margin-bottom: 60px;
}

.entry-subtitle__links, 
.entry-subtitle__links a {
	color: #31ff00;
	font-size: 1.25rem;
	font-weight: 700;
	transition: .3s all ease;
}

.entry-subtitle__links a:hover {
	color: #ffffff;
}

.courses .product__thumb {
    margin-top: 30px;
}

.course__price {
	transition: .3s all ease;
}

.course__price__link-abs {
	transition: .3s all ease;
	position: absolute !important;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.course__price:hover,
.course__price__link-abs:hover {
	opacity: .7;
}

.mc4wp-form {
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}

@media screen and (min-width: 992px) {
	.single-product .summary.entry-summary,
	.single-product div.product .woocommerce-product-gallery {
		float: left;
		width: 50%;
	}
	.single-product .woocommerce-tabs {
		clear: both;
	}

	.single-product div.product .woocommerce-product-gallery {
		width: 48%;
		margin-right: 2%;
		margin-bottom: 2%;
	}

	.coupon {
		display: inline-block;
	}

	.entry-content .woocommerce button[name="update_cart"] {
		float: right;
	}

	.woocommerce-Tabs-panel {
		padding-top: 40px;
		position: relative;
	}

	.woocommerce-Tabs-panel:not(.woocommerce-Tabs-panel--reviews):not(.woocommerce-Tabs-panel--custom_program_szczegolowy) {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 20px;
		-moz-column-gap: 20px;
		column-gap: 20px;
	}

	.woocommerce-tabs .panel h2:first-of-type,
	.woocommerce-tabs .panel h3:first-of-type,
	.woocommerce-tabs .panel h4:first-of-type {
		position: absolute;
		top: 0;
	}
}

@media screen and (max-width: 991px) {
	.zapr__grid .zapr__grid-item {
		width: 32.33%;
	}
	li.product-category img {
		max-height: 400px;
	}
	.product__wrap .col {
		padding: 30px 15px !important;
	}
}

@media screen and (max-width: 767px) {
	.zapr__grid .zapr__grid-item {
		width: 50%;
	}
	body.single .single_add_to_cart_button.button {
		margin: 15px 0 0 0;
	}
	.mc4wp-form-fields p {
		text-align: center !important;
	}
}
