/*!
Theme Name: CastoCad
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: castocad
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

CastoCad is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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%;
	scroll-behavior: smooth;

}


@font-face {
 font-family: 'Roboto';
 src: url('fonts/Roboto-Regular.ttf') format("truetype");
}

@font-face {
 font-family: 'Roboto Bold';
 src: url('fonts/Roboto-Bold.ttf') format("truetype");
}

@font-face {
 font-family: 'DIN Condensed Bold';
 src: url('fonts/DIN Condensed Bold.ttf') format("truetype");
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
	font-family: 'Montserrat';
    font-weight: 300;
}

/**
 * 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;
}

* {
	outline: none;
}

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

/**
 * 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;
	font-family: 'Montserrat';
}

/**
 * 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: 0;
}

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%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

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%;
}

/* Links
--------------------------------------------- */
a {
	color: #101014;
}

a:visited {
	color: #101014;
}

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

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
	text-decoration: none;
}

/* 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%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/


/*.btn-aa:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    border-radius: 5px;
    transition: all .2s;
    position: absolute;
}

.btn-aa:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-aa:active {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background-color: #fff;
    color: #777;
    position: relative;
}*/

/*.btn-aa::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn-white::after {
    background-color: #067776;
}

a.popup-with-form.grey-button.btn-aa.btn-white.btn-animate::after {
    background-color: #343434;
}

a.black-button.btn-aa.btn-white.btn-animate::after {
    background-color: #101014;
}

.btn-aa:hover::after {
    transform: scaleX(1.4) scaleY(1.8);
    opacity: 0;
}

a.black-button.btn-aa:hover::after {
    transform: scaleX(1.1) scaleY(1.8);
}

.dla-kogo-lekcja-block a.green-button.btn-aa:hover::after,
.lekcji-black-block-buttom a.green-border-button.btn-aa:hover::after {
    transform: scaleX(1.2) scaleY(1.8);	
}

.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}*/

/*@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}*/


.grey-button {
    font-size: 13px;
    color: #7C7C7C !important;
    background: #343434;
    padding: 9px 35px;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 15px;
}

.border-button {
    font-size: 13px;
    color: #fff !important;
    border: 3px solid #D4145A;
    background: #067776;
    padding: 6px 32px;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-weight: 400;
    text-decoration: none;
    z-index: 5;
    line-height: 15px;
}


.black-button {
	color: #fff !important;
    background: #101014;
    font-family: 'Montserrat';
    font-weight: 400;
    text-decoration: none !important;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    margin: 20px 0 0 0;
    z-index: 5;
    line-height: 20px;
    padding: 16px 0;

}

.black-button div {
	position: relative;
	width: 370px;
    margin: 0 auto;
    line-height: 1.1;
}

.black-button div:before {
	content: '';
    position: absolute;
    top: 2px;
    left: -100px;
    background: url(/wp-content/themes/castocad/img/arrow-w.svg) no-repeat;
    width: 70px;
    height: 15px;
}



.green-border-button {
	color: #fff !important;
    background: #067776;
    font-family: 'Montserrat';
    font-weight: 400;
    padding: 13px 0;
    border: 3px solid #D4145A;;
    text-decoration: none !important;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    margin: 20px 0 0 0;
    z-index: 5;
    line-height: 20px;
}

.green-border-button div {
	position: relative;
	width: 370px;
    margin: 0 auto;
    line-height: 1.1;
}

.green-border-button div:before {
	content: '';
    position: absolute;
    top: 3px;
    left: 0px;
    background: url(/wp-content/themes/castocad/img/arrow-w.svg) no-repeat;
    width: 70px;
    height: 15px;
}

.btn-white:hover {
	opacity: 0.8;
}


/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 55%;
	margin-left: 45px;
}

.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:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

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

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.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%;
}

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

/*.post,
.page {
	margin: 0 0 1.5em;
}
*/
.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;
}

/* 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;
}


/*=========*/

img.default-logo {
    width: 170px;
}


.header-content {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.contact-block-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 70px 0;
}

.block-title {
    margin-bottom: 10px;
    text-align: center;
    font-family: "GoodHome Bold";
    font-size: 30px;
    color: #231f20;
    line-height: 1;
}

.block-description {
	margin-bottom: 50px;
	text-align: center;
	font-size: 13px;
	font-family: "GoodHome Light";
	color: #231f20;
}

.mail-phone-form {
    background: #414042;
    padding: 50px 30px 30px;
}

input {outline:none;}

input.banner-input {
    width: 200px;
    border-radius: 0;
    font-family: 'Montserrat';
    font-weight: 400;
    background: #101014;
    font-size: 13px;
    line-height: 15px;
    padding: 7px 14px;
    color: #fff !important;
    border: 1px solid #828282; 
    border-right: none;
    border-radius: 5px 0 0 5px;
}

input.banner-input::-webkit-input-placeholder {
  color: #fff;
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    width: 15px;
    height: 15px;
    border-color: transparent;
    margin-right: 7px;
}

.wpcf7-list-item label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 5px;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0;
}

.grey-arrow {
    width: 64px;
    height: 64px;
    background: #fcda04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #231f20;
    position: absolute;
    right: 70px;
}


.grey-block {
    background: #f0f1f1;
    padding: 25px 70px 20px;
    margin-bottom: 25px;
    position: relative;
    min-height: 133px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.grey-title {
    font-size: 20px;
    color: #231f20;
    font-family: "GoodHome Bold";
    line-height: 24px;
}

.grey-block:first-child .grey-title {
    margin-bottom: 20px;
}

.grey-text {
    font-size: 15px;
    color: #231f20;
}

.grey-ico.fa-fa {
    background: #e5e6e7;
    height: 64px;
    width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #414042;
}

.fa-fa:before, .fa-font-awesome:before,
.grey-ico.fa-fa .fa-fa:before, 
.grey-ico.fa-fa .fa-font-awesome:before {
	display: none;
}

.grey-last {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.personal-content {
    margin: 0 auto;
    padding-left: 0;
}

.personal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.personal-content .block-title {
	text-align: left;
	margin-bottom: 35px;
    margin-left: 15px;

}

.personal .grey-text {
	position: relative;
	padding-left: 35px;
	margin-bottom: 10px;
}

.personal .grey-text:before {
	content: '';
	position: absolute;
	left: 0;
	top: -2px;
	width: 25px;
	height: 25px;
	background: url(img/id-circl.svg) no-repeat;
}

.personal .grey-title {
	margin-bottom: 15px;
}

#personal-section {
	margin-bottom: 80px;
}

.personal-block {
    margin-right: 50px;
}


.footer-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
    padding: 50px 0 65px;
    border-top: 1px solid #D4145A;
}


header#masthead {
    background: #101014;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 19;
    top: 0px;
    height: 54px;
}

header#masthead .container .row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    line-height: 100%;
    padding: 11px 0;
    justify-content: space-between;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    padding: 0 15px;
    text-transform: uppercase;
}

.site-branding {
    width: 150px;
}

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

.main-navigation li {
    float: left;
    position: relative;
}


.header-button {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    line-height: 100%;
    padding: 0;
    justify-content: space-between;
    /*width: 310px;*/
    width: 145px;
}

div#primary {
    padding-top: 54px;
}

section#first-block {
    background: #101014;
    margin-bottom: 165px;
}

.banner-text {
    display: flex;
    -webkit-box-align: center;
    align-items: flex-start;
    flex-direction: row;
    /*justify-content: center;*/
    justify-content: flex-end;
    width: 100%;
    padding: 80px 0 55px;
}

.banner-title h1,
.banner-title {
    font-size: 58px;
    line-height: 78px;
    color: #fff;
    text-align: right;
    font-family: 'Montserrat';
    font-weight: 300;
    letter-spacing: -2px;
    width: auto;
}

.banner-title h1 {
	text-align: left;
}

.banner-description {
    font-size: 15px;
    line-height: 18px;
    color: #fff;
    text-align: left;
    font-family: 'Montserrat';
    font-weight: 300;
    margin: 20px 50px 0 15px;
}

.banner-form {
    width: 100%;
    /*max-width: 370px;*/
    max-width: 570px;
    margin: 0 auto 75px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    line-height: 100%;
    padding: 0;
    justify-content: space-between;
}

.banner-form .border-button {
	width: 100;
	text-align: center;
}

.banner-form .green-border-button {
	background: transparent !important;
    border: 2px solid #fff !important;
    border-radius: 10px !important;
    padding: 14px 0;
}

.form-button {
    width: 140px;
    display: inline-block;
    text-decoration: none;
}

.bunner-video {
    margin: 0 auto -165px;
    width: 750px;
    height: 420px;
}

.bunner-video iframe {
	width: 100%;
	height: 100%;
}

.contact-block {
	padding: 80px 0; 
}

.dla-kogo-content {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.dla-kogo-logo {
    width: 70px;
    margin-right: 30px;
}

.dla-kogo-logo-text {
	width: calc(100% - 70px);
}

.dla-kogo-content .col-lg-4 {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
     align-items: flex-start;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}


.dla-kogo-logo-title {
    font-size: 17px;
    color: #231F20;
    font-family: 'Montserrat';
    font-weight: 700;
    margin-bottom: 15px;
}

.dla-kogo-logo-desc {
    font-size: 13px;
    color: #231F20;
    font-family: 'Montserrat';
    font-weight: 400;	
}

.dla-kogo-lekcja-title {
    color: #D4145A;
    font-size: 13px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #D4145A;
    font-family: 'Montserrat';
    font-weight: 400;
}

.dla-kogo-lekcja-opys-title {
    font-size: 21px;
    color: #101014;
    font-family: 'Montserrat';
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 20px;
} 

.dla-kogo-lekcja-descr {
    font-size: 13px;
    color: #101014;
    font-family: 'Montserrat';
    font-weight: 400;	
    padding-bottom: 30px;
    /*border-bottom: 1px solid #D4145A;*/
}

.dla-kogo-lekcja-opys .col-lg-6 {
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}  

.dla-kogo-cont {
  border-bottom: 1px solid #d4145a;  
  height: 100%;
}

.dla-kogo-lekcja-opys {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
}

.dla-kogo-lekcja-opys .col-lg-6 {
	-ms-flex-item-align: stretch!important;
    align-self: stretch!important;
    margin: 20px 0;
}

.dla-kogo-lekcja-opys .col-lg-6:nth-child(odd) {
	padding-left: 0 !important;
}

.dla-kogo-lekcja-opys .col-lg-6:nth-child(even) {
	padding-right: 0 !important;
}

.green-button {
	color: #fff !important;
    background: #067776;
    font-family: 'Montserrat';
    font-weight: 400;
    /*padding: 13px 0 13px;*/
    text-decoration: none !important;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    margin: 15px 0 0 0;
    /*line-height: 1.1;*/
    line-height: 20px;
    padding: 16px 0; 
}

.green-button div {
	position: relative;
	width: 250px;
    margin: 0 auto;
    line-height: 1.1;
}

.green-button div:before {
	content: '';
    position: absolute;
    top: 2px;
    left: -60px;
    background: url(/wp-content/themes/castocad/img/arrow-w.svg) no-repeat;
    width: 70px;
    height: 15px;
}

.dla-kogo-lekcja-block {
	width: 100%;
}

.master-content {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background: #F0F1F1;
}

.big-title {
    font-size: 58px;
    margin: 35px 0 40px;
    line-height: 1;
    font-family: 'Montserrat';
    font-weight: 300;
    color: #101014;
    line-height: 72px;
}

.col-lg-6.master-photo {
    padding-left: 0;
    position: relative;
}

.col-lg-6.master-photo:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	background: url(/wp-content/themes/castocad/img/photo-logo.svg) no-repeat;
	width: 77px;
	height: 58px;
	z-index: 5;
}

.col-lg-6.master-photo img {
    width: 100%;
}

.master-container .big-title {
	line-height: 1;
}

.red-title {
    font-size: 21px;
    color: #D4145A;
    margin-bottom: 15px;
    font-family: 'Montserrat';
    font-weight: 700;
    line-height: 1;
}

.section-bottom {
	margin-bottom: 90px;
}

.red-opys {
    color: #D4145A;
    font-size: 13px;
    margin-bottom: 30px;
    line-height: 15px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.master-text-after-red {
    font-size: 13px;
    color: #101014;
    margin-bottom: 15px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 15px;
}

.master-text-after-red p {
	margin-bottom: 18px;
}

.master-photo-logo {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
    flex-wrap: wrap;
}

.master-photo-logo img {
	max-width: 85px;
	margin-right: 25px;
}

.master-black-button {
	width: 100%;
}



.program-lekcji-block {
	background: #E5E6E7;
	padding: 80px 0 40px;
	width: 100%;
	margin-bottom: 30px;
}

.program-lekcji-block .col-lg-8 {
	margin: 0 auto;
    padding: 0;
}

.program-lekcji-block .big-title {
	letter-spacing: -3px;
	line-height: 1;
}


.cennik-section .big-title,
.program-lekcji .big-title {
	margin-top: 0;
}


.program-lekcji-line .col-lg-12 {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
    padding: 45px 0 40px;
    border-top: 1px solid #999;
}

.program-lekcji-line .col-lg-12 .col-lg-6{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: flex-start;
}

.program-lekcji-line .col-lg-12 .col-lg-6:first-child {
	padding-left: 0;
}

.program-lekcji-line .col-lg-12 .col-lg-6.program-lekcji-descr {
	 -webkit-box-align: center;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    justify-content: flex-end;
}

.program-lekcji-number {
    width: 100%;
    max-width: 100px;
    color: #101014;
    font-size: 13px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.program-lekcji-name {
    font-size: 25px;
    color: #D4145A;
    font-family: 'Montserrat';
    font-weight: 700;
    line-height: 30px;
}

.program-lekcji-name {
    font-size: 25px;
    color: #D4145A;
    margin-bottom: 0;
    font-family: 'Montserrat';
    font-weight: 700;
    line-height: 30px;
    width: 100%;
    max-width: 250px;
}

.program-lekcji-description {
    font-size: 13px;
    color: #101014;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 17px;
    width: 100%;
    max-width: 400px;
	margin-top: 3px;
}

.program-lekcji-black .program-lekcji-block {
	background: #101014;
	padding: 75px 0 75px;
}

.program-lekcji-black .program-lekcji-block .big-title {
	margin-top: 0;
	line-height: 72px;	
}

.program-lekcji-black .big-title,
.program-lekcji-black .program-lekcji-name,
.program-lekcji-black .program-lekcji-description {
	color: #fff;
}

.program-lekcji-black .program-lekcji-number img {
	max-width: 90px;
    max-height: 100px;
}

.lekcji-black-block-buttom {
	padding: 60px 0 0 0;
	border-top: 1px solid #999;
	z-index: 0;
}



.cretyfikat-content-line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
    padding: 45px 0;
}

.cretyfikat-content {
    width: 100%;
}

.cretyfikat-content .big-title {
	max-width: 425px;
}

.black-banner {
	background: #101014;
	margin: 0 0  80px;
}

.black-banner-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}

.black-banner-block .big-title {
	color: #fff;
	margin: 65px 0 30px;
}

.black-banner-block .big-title,
.black-banner-block .program-lekcji-description {
	color: #fff;
}

.black-banner-content .border-button {
	font-weight: 500;
    padding: 12px 32px;
    line-height: 20px;
    font-size: 15px;
    border: 2px solid #d4145a !important;
    border-radius: 10px !important;
    width: 250px;
    text-align: center;
}


.black-banner-button .button {
	display: inline-block;
	text-decoration: none;
}

.black-banner-button {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    line-height: 100%;
    padding: 0;
    justify-content: space-between;
    margin-top: 60px;
}

.social-block-content {
    width: 100%;
}

.social-block-links a {
    color: #101014;
    text-decoration: none;
    display: block;
    margin: 35px 0;
}

.footer-logo img {
	width: 105px;
}

.footer-adress {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: flex-start;
    padding-left: 5px;
}

.footer-adress-menu,
.footer-adress-menu li a,
.footer-adress-menu a {
	font-size: 13px;
    color: #101014;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 15px;
    width: 50%;
    text-decoration: none;
}

.footer-adress-menu li:hover a,
.footer-adress-menu a:hover {
	text-decoration: underline;
}

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

.mfp-hide {
    display: none!important;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none!important;
    -webkit-backface-visibility: hidden;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #231F20;
    opacity: .8;
}

.col-8.popup-black {
    background: #101014;
    padding: 55px 65px 0px 0;
    margin: 5vh auto 0;
    min-height: 510px;
    border: 3px solid #D4145A;
    position: relative;
}

.popup-form {
    max-width: 400px;
    float: right;
}

.popup-black h3 {
	font-family: 'Montserrat';
    font-weight: 700;
	font-size: 25px;
	color: #fff;
	line-height: 1;
	margin-bottom: 10px;
}

.popup-text {
	font-family: 'Montserrat';
    font-weight: 400;
	font-size: 13px;
	color: #fff;
	line-height: 1;
	margin-bottom: 30px;
}

.popup-img {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 500px;
    left: -175px;
    top: 30px;
}

.popup-form input,
.popup-form textarea {
	background: #414042;
	border-radius: 0;
	border: none;
	color: #fff !important;
	font-size: 13px;
	padding: 12px; 
	font-family: 'Montserrat';
    font-weight: 400;
	line-height: 1;
	width: 100%;
	display: block;
    margin-bottom: 10px;
}

.popup-form textarea {
	max-height: 85px;
	resize: none;
}

.popup-form ::placeholder {
	color: #fff;
	font-size: 13px;
	font-family: 'Montserrat';
    font-weight: 400;
}

.zgoda_checkboxes input {
	width: 40px;
	background: #BBBDBF;
}

.zgoda_checkboxes span.wpcf7-list-item-label {
	color: #fff;
	font-size: 10px;
	font-family: 'Montserrat';
    font-weight: 400;
}


.button-close-red .mfp-close,
.popup-form input.wpcf7-form-control.wpcf7-submit {
	background: #D4145A;
	color: #fff;
	font-size: 13px;
	font-family: 'Montserrat';
	font-weight: 400;
	padding: 9px 0;
	line-height: 15px;
	margin: 25px 0;
	border-radius: 5px;
}



.mfp-close-btn-in .mfp-close {
	color: #fff;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    right: 5px;
    top: 5px;
}

.wpcf7-not-valid-tip {
	font-size: 10px;
	margin-top: -10px;
}

.wpcf7 form .wpcf7-response-output {
	margin: -2em .5em 1em !important;
	color: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #fff;
    font-size: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
    font-size: 10px;
}

/*#go-top {
    position: fixed;
    bottom: 25px;
    right: 10px;
    cursor: pointer;
    display: none;
    width: 55px;
    height: 55px;
    z-index: 999;
}

#go-top i {
    background: #E5E6E7;
    border-radius: 50%;
    color: #fff;
    padding: 8px 12px;
    font-size: 32px;
    line-height: 1;
    z-index: 50;
    width: 55px;
    height: 55px;
}
*/

/*===============*/

.clear-page {
    margin: 70px 0;
}

#post-281 .clear-page td {
	border: 1px solid #e0d6d8;
}

/*===============*/
/*===============*/

ul#primary-menu {
    width: 100%;
    text-align: center;
    display: flex;
    -webkit-box-align: center;
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
}  

ul#primary-menu ul.sub-menu {
    /*background: #101014;*/
    background: #343434 !important;
    text-align: left;
}

ul#primary-menu ul.sub-menu {
    padding: 10px 15px;
    border-radius: 5px;
}

ul#primary-menu ul.sub-menu li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #D4145A;
}

ul#primary-menu ul.sub-menu li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.main-navigation ul ul a {
    width: 200px;
    text-transform: inherit;
    font-weight: 500;
        padding: 5px 0px 5px 35px;
}

.kurs-6-img,
.kurs-5-img,
.kurs-4-img,
.kurs-3-img,
.kurs-2-img,
.kurs-1-img {
	position: relative;
}

.kurs-6-img:before,
.kurs-5-img:before,
.kurs-4-img:before,
.kurs-3-img:before,
.kurs-1-img:before ,
.kurs-2-img:before {
	position: absolute;
	content: '';
	width: 25px;
	height: 25px;
	top: 8px;
	border-radius: 20px;
	background-position:top center;
	background-size: cover;
	background-repeat: no-repeat;
}

.kurs-1-img:before {
	background-image: url(/wp-content/uploads/2021/06/Rafal-.jpg);
}

.kurs-2-img:before {
	background-image: url(/wp-content/uploads/2021/06/Robert.jpg);
}

.kurs-3-img:before {
	background-image: url(/wp-content/uploads/2021/08/Karol.jpg);
}

.kurs-4-img:before {
	background-image: url(/wp-content/uploads/2022/03/Mikolaj-S.jpg);
}

.kurs-5-img:before {
	background-image: url(/wp-content/uploads/2022/06/Wojtek-S.jpg);
}

.kurs-6-img:before {
	background-image: url(/wp-content/uploads/2022/07/Damian-S.jpg);
}

.menu-bottom1-container ul li {
	margin-bottom: 10px;
}
     
.new-home-first-container {
  width: 100%;
      background: #101014;
    margin-bottom: 70px;
    /*min-height: 515px;*/
    height: 100vh;
	max-height: 720px !important;
}

.first-block-container {
  width: 100%;
  position: relative;
}

.new-home-first-banner-text {
    display: flex;
    -webkit-box-align: center;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 170px 0 55px;
}

.new-home-first-banner-text  .banner-title {
  text-align: left;
}

.new-home-banner-image {
    position: absolute;
    right: 110px;
    top: 25px;
    width: 510px;
    height: 670px;
    background: url(/wp-content/themes/castocad/img/new-home.png) no-repeat;
    background-size: cover;
    background-position: top;
}


/*===============*/
/*===============*/



/* cooci */

.js-lwpcngNotice.lwpcngNotice {
    background: #fff;
    background: rgba(255, 255, 255, .97);
    color: #000;
    border-color: #ddd;
    width: 100%;
    /*max-width: 500px;*/
    right: 20px !important;
    position: fixed;
    /*top: 20px !important;*/
    left: auto !important;
    /*height: 365px;*/
    padding: 10px 15px 50px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .2);
    height: 180px;
    max-width: 350px;
    bottom: 20px !important;
}


.lwpcngNotice-light {
    background: #fff;
    background: rgba(255, 255, 255, .97);
    color: #000;
    border-color: #ddd;
    width: 100%;
    max-width: 500px;
    right: 20px !important;
    position: fixed;
    top: 20px !important;
    left: auto !important;
    height: 365px;
    padding: 10px 15px 50px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .2);
}

.lwpcngNotice_message {
    display: block;
    margin-right: 8px;
    font-size: 14px;
    overflow-y: scroll;
    /*height: 265px;*/
    height: 110px;
    padding: 10px 15px;
    text-align: left;
    position: relative;
        font-family: 'Montserrat';
    font-weight: 400;
    line-height: 17px;
}

.lwpcngNoticeBar .lwpcngNotice_buttons {
    display: inline;
    position: relative;
}

.lwpcngNotice-light .lwpcngNotice_accept {
    border-color: #ddd;
    background: #fff;
    color: #00a65a;
}

.lwpcngNotice_reject.js-lwpcngReject {
    position: absolute;
    top: -135px;
    right: -189px;
    width: auto;
    padding: 6px 12px !important;
    border: none;
    background: 0 0;
}

.lwpcngNotice_accept {
	background-color: #000 !important;
    color: #fff !important;
    text-decoration: none;
    position: relative;
    z-index: 999;
    transition: background .2s ease-in, color .2s;
    -moz-transition: background .2s ease-in, color .2s;
    -ms-transition: background .2s ease-in, color .2s;
    -o-transition: background .2s ease-in, color .2s;
    -webkit-transition: background .2s ease-in, color .2s;
    width: 170px;
    float: none;
    margin: 13px auto 0;
    line-height: 1.1;
    border: none;
    display: block;
    font-size: 13px;
    background: #343434;
    padding: 10px 35px 10px;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.lwpcngNotice-dark .lwpcngNotice_reject:hover {
    background: #fff;
    color: #000;
}

.lwpcngNotice-dark .lwpcngNotice_accept:hover {
    background: #fff;
    color: #000;
}


img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    max-width: 450px;
}

/*@media (min-width: 768px) {
	.container {
	    max-width: 920px;
	}

}

@media (min-width: 576px) {
.container {
    max-width: 90%;
}

}*/


.page-id-153 nav#site-navigation,
.page-id-153 .header-button, 
.profile.castocad.learnpress.learnpress-page header.entry-header,
.profile.castocad.learnpress.learnpress-page footer {
	display: none !important;
}

.profile.castocad.learnpress.learnpress-page .clear-page {
    width: 100%;
    margin: 70px 0 0;
    height: calc(100vh - 70px);
}
 
.learn-press-form-login.learn-press-form {
    max-width: 400px;
    padding: 0 !important;
}

.learn-press-form-login.learn-press-form form {
    max-width: 255px;
    margin: 0 auto;
}

.learn-press-form-login-text {
    margin: 0 0 10px 0!important;
    color: #828282;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}


.learn-press-form-login.learn-press-form {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 15vh;
}

#learn-press-user-profile .learn-press-form-login, #learn-press-user-profile .learn-press-form-register {
    border: none !important;
}

.learn-press-form-login.learn-press-form h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.learn-press-form-login.learn-press-form form p,
.learn-press-form .form-fields .form-field label {
    margin: 0 0 5px 0 !important;
    color: #828282;
    font-size: 12px;
    font-weight: 300;
}

.learn-press-form-login.learn-press-form form p > a {
	text-align: center;
    display: block;
    color: #828282 !important;
}

.learn-press-form-login.learn-press-form form input[type="checkbox"] {
	width: 12px !important;
    height: 12px !important;
}

.learn-press-form-login.learn-press-form form button {
    display: block;
    margin: 20px auto 5px !important;
    background: #067776 !important;
    color: #fff;
    padding: 10px 70px !important;
    border: none !important;
    border-radius: 5px;
}

.lp-profile-avatar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    max-width: 275px;
}

#learn-press-user-profile img.avatar {
    width: 30px;
    display: block;
    overflow: hidden;
    border-radius: 50% !important;
}

.header-profil-button {
    position: absolute;
    top: -80px;
    z-index: 20;
    right: 0;
}

.lp-profile-cover span.profile-name {
    color: #F2F2F2;
    font-size: 14px !important;
    position: relative !important;
    margin-left: 10px;
}

#learn-press-profile-header .lp-profile-avatar {
    position: relative !important;
    bottom: -10px;
    left: 0 !important;
    margin-right: 10px;
}

.sub-menu-profil div> strong {
	display: none;
}

.sub-menu-profil {
    background: #101014;
	padding: 15px 30px 10px;
    border-radius: 5px;
    width: 200px;
    position: absolute;
    top: 25px;
    right: 0;
}

.sub-menu-profil {
	display: none;
}

.lp-profile-avatar:hover .sub-menu-profil {
	display: block;

}

.sub-menu-profil a {
	color: #F2F2F2;
    font-size: 18px !important;
}

#learn-press-profile-nav,
div#learn-press-profile-header {
    display: none;
}

#learn-press-profile-content {
	width: 100% !important;
}


.lp_course-template-default article {
	margin-top: 0px;
}

.lp_course-template-default article .post-thumbnail,
.lp_course-template-default article .learn-press-breadcrumb,
.lp_course-template-default article .course-meta,
.lp_course-template-default article .course-remaining-time,
.lp_course-template-default article li.course-nav.course-nav-tab-students-list,
.lp_course-template-default article ul.learn-press-nav-tabs.course-nav-tabs,
.course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_lesson .section-item-link:before {
	display: none;
}

.single-course-my-design-image-block {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 25px 0;
}

.single-course-my-design-page .course-thumbnail {
    max-width: 450px;
    width: 100%;
    height: 100%;
    max-height: 300px;
    overflow: hidden;
}

.single-course-my-design-page .course-description {
	padding: 0 30px;
	max-width: 795px;
}

.single-course-my-design-page .learn-press-course-results-progress .items-progress, 
.single-course-my-design-page .learn-press-course-results-progress .course-progress {
	float: none !important;
	margin-bottom: 5px !important;
}

/*.curriculum-sections .learn-press-progress .progress-bg {
    border: 1px solid #D4145A;
}*/

h3.profile-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 15px;
    color: #333;
}

.profile-list-courses-content {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 25px 0;
}

.profile-list-courses-content .column-course-image {
    width: 300px;
    height: 200px;
    margin-right: 50px;
	overflow: hidden;
}

.profile-list-courses-content .column-course-image img {
	height: 100%;
    max-width: 100%;
    width: auto;
}

.cours-title-profile {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
    color: #333;
    line-height: 22px;
}

.column-course-description {
    max-width: 355px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    min-height: 230px;
}

.cours-description-profile {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 10px;
    color: #333;
    line-height: 17px;
}

.column-course-description .green-button {
    padding: 8px;
    font-size: 14px;
    width: 290px;
}

.column-course-description .green-button div:before {
    left: 20px;
    width: 40px;
    height: 10px;
}

.course-curriculum ul.curriculum-sections .section-content .course-item .item-name {
	padding: 10px 0 !important;
}

h4.lp-course-progress-heading {
    color: #828282;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px !important;
}

.learn-press-course-results-progress {
    margin: 10px 0;
}

.learn-press-course-results-progress .items-progress, 
.learn-press-course-results-progress .course-progress {
    width: 100% !important;
}

.result-percent-label .lp-course-status {
    margin-top: -4px;
}


.single-course-my-design-page .result-percent-users {
	padding: 0px 0 20px;
}


.result-percent-users .learn-press-progress.lp-course-progress,
.column-course-description .learn-press-progress.lp-course-progress {
	width: 99px;
}

.single-course-my-design-page .course-thumbnail {
	margin-bottom: 35px;
}


.lp-course-progress .lp-passing-conditional {
    display: none;
}

.result-percent-users {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 0 20px;
}

.result-percent-label {
    margin-left: 10px;
    font-size: 12px;
    line-height: 12px;
    color: #828282;
    font-weight: 400;
}

body.lp_course-template-default.single header.site-header {
	display: none !important;
}

.learn-press-user-pages .header-profil-button {
    position: absolute !important;
    top: 12px !important;
    z-index: 20;
    right: 0;
}

.course-curriculum ul.curriculum-sections .section-header {
	border-bottom: 1px solid #82828285 !important;
}

.lp-single-course .lp-course-buttons .form-button {
    width: 200px !important;
    }

.learn-button-course-go button.lp-button.button,
.green-button-form .green-button,
.lp-single-course .lp-course-buttons button.lp-button {
	color: #fff !important;
    background: #067776;
    font-family: 'Montserrat';
    font-weight: 400;
    padding: 6px 0 6px;
    text-decoration: none !important;
    width: 100%;
    max-width: 200px;
    display: block;
    text-align: center;
    border-radius: 5px;
    margin: 15px 0 0 0;
    line-height: 14px;
    height: 31px !important;
    font-size: 14px;
}

.content-item-wrap form.lp-form.form-button.form-button-finish-course button.lp-button.lp-btn-finish-course {
	color: #fff!important;
    background: #067776;
    font-family: 'Montserrat';
    font-weight: 400;
    text-decoration: none!important;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    padding: 10px 35px!important;
    height: auto!important;
    width: auto!important;
    line-height: 15px!important;
}

.learn-button-course-go {
    display: flex;
    -webkit-box-align: start;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}

.learn-button-course-back a {
    line-height: 19px;
    font-size: 14px;
    color: #333;
    padding: 4px 40px;
    height: 31px;
    background: transparent;
    border: 2px solid #d4145a;
    margin: 15px 0px 0 25px;
    display: block;
}

.learn-button-course-go .form-button {
    width: 100%;
    max-width: 200px;
    display: block;	
}

.green-button-form {
    margin: 25px 0 50px;
    width: 200px !important;
}


a#klik-2 {
	display: none;
}

.lp-quiz-buttons button.button,
.redo-quiz button[type="submit"],
form.learn-press-form.form-button button.lp-button {
	    color: #fff !important;
    background: #067776;
    font-family: 'Montserrat';
    font-weight: 400;
    text-decoration: none !important;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    padding: 10px 35px !important;
    height: auto !important;
    width: auto !important;
    line-height: 15px !important;
}

body .content-item-summary .form-button-finish-course, body .lp-quiz-buttons .form-button-finish-course {
	width: 180px !important;
}

.lp-quiz-buttons .form-button {
	width: auto;
}

.quiz-progress {
    background: #06777659 !important;
    margin-bottom: 30px;
    color: #404040;
}

.lp-overlay .modal-dialog {
	text-align: center;
}

.lp-overlay .modal-dialog  .modal-title {
	width: 100%;
	text-align: center;
}

.lp-overlay .modal-header,
.lp-overlay .modal-footer {
	border-top: none !important;
	border-bottom: none !important;
}

.lp-overlay .modal-footer {
	justify-content: center !important;
}

button.lp-button.button-hint-question,
button.lp-button.lp-btn-complete-quiz.lp-btn-complete-item,
.lp-quiz-buttons .form-button,
.learnpress-page .lp-overlay .lp-button {
    line-height: 15px !important;
    height: auto !important;
    font-weight: 400 !important;
    padding: 10px 20px 10px !important;
}

.answer-options .answer-option:hover {
    background: #06777647 !important;
}

.question-numbers li.current a {
    color: #fff!important;
    border-color: transparent !important;
    background: #067776 !important;
    padding: 6px 15px 6px;
    border-radius: 5px;
}

.question-numbers li a:hover {
	background: #06777659 !important;
	border-color: transparent !important;
}

.question-numbers li a {
	padding: 6px 15px 6px !important;
    background: #f5f5f5;
    border-radius: 5px;
}

.content-item-description.lesson-description video {
	width: 100%;
    max-width: 800px;
    height: 100%;
    max-height: 450px;
}

form.skip-question [type=button]:not(:disabled), form.skip-question  [type=reset]:not(:disabled),
form.skip-question  [type=submit]:not(:disabled), form.skip-question button:not(:disabled) {
	font-weight: 400 !important;
	line-height: 15px !important;
    padding: 7px 20px 7px !important;
}

body.course-item-popup #learn-press-content-item .content-item-scrollable {
    overflow-y: auto;
    height: 100%;
    height: calc(100% - 55px);
    margin-top: 55px;
}

body.course-item-popup #learn-press-content-item {
	margin-bottom: 50px;
}

body.course-item-popup #learn-press-course-curriculum {
    padding-top: 115px !important;
}

.learn-press-content-item .video-wrapper .transcript {
	margin: 25px 0;
}

#course-item-content-header .form-button.lp-button-back button {
    line-height: 15px !important;
    font-size: 14px;
    color: #333;
    padding: 7px 20px;
    width: 230px;
    height: 31px;
    background: transparent;
    border: 2px solid #D4145A;
}

div#course-item-content-header .form-button {
    width: 240px;
}

#course-item-content-header .toggle-content-item:before {
    font: 20px/60px fontawesome !important;
}

.course-curriculum ul.curriculum-sections .section-header {
    border-bottom: 1px solid #82828285 !important;
    }


#course-item-content-header {
    z-index: 2 !important;
} 

.sub-menu-profil div {
	padding: 10px 0px;
	border-bottom: 1px solid #828282;
}

.sub-menu-profil div:last-child {
	border-bottom: none;
}

/**/

.learn-press-progress.lp-course-progress,
.course-curriculum ul.curriculum-sections .section-header .section-meta .section-progress {
    border: 1px solid #d4145a;
    border-radius: 0px;
}

.learn-press-progress .progress-bg .progress-active {
	background: #d4145a !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.learn-press-progress .progress-bg {
	background: transparent !important;
	-webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.lp-list-table.profile-list-courses.profile-list-table .learn-press-progress.lp-course-progress {
	height: 11px;
}

div#course-item-content-header {
	background: #F0F1F1 !important;
    border-bottom: none !important;
    top: 54px !important;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

#course-item-content-header .course-title {
	height: auto !important;
	line-height: 20px !important;
	margin-left: 0px !important;
}

#course-item-content-header {
	height: auto !important;
    min-height: 60px;
}

.column-course-description .green-button div:before {
	top: 3px;
}

.course-price {
	display: none !important;
}

.lp-course-buttons form.purchase-course button.lp-button.button.button-purchase-course {
display: none !important;
}

.learn-press-message:before {
	background: #067776 !important;
}


#ost-password {
	display: none;
}

div#lost-password .row {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.lost-password-block {
	background: #101014;
    padding: 55px 65px;
    margin: 5vh auto;
    border: 3px solid #d4145a;
    position: relative;
    min-height: 315px;
}

.lp_course-template-default footer {
	display: none !important;
}

.profile-name-mob {
	display: none;
	color: #fff;
}

.sub-menu-profil {
	width: auto;
	min-width: 170px;
}

#learn-press-course-tabs .course-tab-panel.active {
	width: 60% !important;
	margin: 0 auto;
}

.lp-single-course .lp-course-buttons {
    margin-bottom: 20px;
    width: 60%;
    margin: 0 auto;
}

/*===============*/
/*===============*/

/*.page-id-345 .cennik-price-button,
.page-id-1391 .cennik-price-button {
	display: none;
}

.page-id-345 .cennik-pink-block>div,
.page-id-1391 .cennik-pink-block>div {
	justify-content: center;
	padding: 30px 10px 30px 20px;
}

.page-id-345 .cennik-table-title-block:last-child,
.page-id-345 .table-row .table-td:last-child,
.page-id-345 .cennik-table-title-h3 .cennik-table-title-block:last-child {
	display: none;
}*/


/*===============*/
/*===============*/
  
.table-row,  
.cennik-table-title-h3 {
      display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}

.cennik-table-title-block {
    width: 33%;
    padding-bottom: 20px;
    max-width: 265px;
}

.cennik-table-title-block h3 {
    text-align: center;
    color: #101014;
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 700;
}

.cennik-pink-block {
    background: #D4145A;
    padding-bottom: 0;
    min-height: 135px;
}

.cennik-section .col-lg-10 {
  margin: 0 auto;
}

.cennik-pink-block > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    align-items: flex-start;
    padding: 50px 10px 30px 20px ;
}

.cennik-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: center;
    width: 100px;
    align-items: center;
}

.cennik-price:first-child div {
    margin-right: 5px;
}

.cennik-table-title-h3 .cennik-pink-block:last-child .cennik-price:first-child div {
    margin-right: 0;
    margin-left: 5px;
}

.zl-netto {
  color: #FFFFFF;
  font-size: 11px;
  line-height: 12px;
  font-family: 'Montserrat';
    font-weight: 500;
}

.cennik-price:first-child {
  color: #FFFFFF;
  font-size: 29px;
  line-height: 35px;
  font-family: 'Montserrat';
    font-weight: 600;
}

.cennik-price-button > div {
  text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    margin-top: 5px;
    text-decoration: line-through;
}

.cennik-price-button-white {
    background: #fff;
    padding: 6px 15px;
    color: #101014 !important;
    margin-top: 0 !important;
    text-decoration: none !important;
}

section.cennik-section .table-td {
    width: 33%;
    padding: 20px 0;
    max-width: 265px;
    background: #F0F1F1;
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important;
        display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

section.cennik-section .table-td:after {
  content: '';
  position: absolute;
  width: 90%;
  height: 1px;
  background: #a4a4a4;
  bottom: 0;
}

.table-row .table-td:first-child:after {
  width: 95%;
}

section.cennik-section .table-row:last-child .table-td:after {
  display: none;
}

.table-td img {
  width: 20px;
}
.cennik-table-block .table {
    margin-bottom: 0px;
}

.checkbox-kurs-page {
              color: #6D6E71;
              font-size: 9.5px;
              line-height: 13px;
              font-weight: 500;  
              text-align: center;
              padding: 10px 0; 
              margin-bottom: -20px;   
           }

           .checkbox-kurs-page a {
              color: #6D6E71;
              font-size: 9.5px;
              line-height: 13px;
              text-decoration: underline;
           }

           .checkbox-kurs-page label {
              margin-bottom: 0;
           }

          .checkbox-kurs-page .form-check-input {
             margin-top: -2px;
           }

          .cennik-table-title-block .checkbox-kurs-page {
            margin-bottom: 0;
            max-width: 240px;
            margin-left: 15px;
          }

section.cennik-section .table .table-td div {
    font-size: 13px;
    color: #000000;
    font-weight: 500;
}

section.cennik-section .table .table-td p {
  color: #6D6E71;
  font-size: 10px;
  font-weight: 500;
}

.table-row .table-td {
  text-align: center;
}

.table-row .table-td:first-child {
  text-align: left;
          display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: flex-start;
    background: transparent;
    max-width: 205px;
    padding: 20px 20px 20px 0;
}

.cennik-table-title-block:first-child {
	max-width: 205px;
}

a.table-botton {
    font-size: 16px;
    color: #FFFFFF;
    background: #101014;
    width: 100%;
    display: block;
    text-align: center;
    padding: 13px 16px;
    border-radius: 10px;
}

a.table-botton:hover {
	opacity: 0.8;
}
section.cennik-section .table .table-td a {
    font-size: 13px;
    color: #067776;
    font-weight: 500;
}

.cennik-table-block {
    padding-bottom: 80px;
}

.cennik-block-after-table-title,
.cennik-block-after-table-text {
	max-width: 100%;
}

.cennik-block-after-table {
    padding: 0 0 60px;
}

.cennik-block-after-table-content {
    background: #F0F1F1;
    padding: 30px 40px 25px 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}

.cennik-block-after-table-opys {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.cennik-block-after-table-content-white {
    width: 100%;
}

.cennik-block-after-table-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ccc;
    margin-right: -30px;
    overflow: hidden;
}

.cennik-block-after-table-image img {
    height: 100%;
    width: auto;
}

.cennik-block-after-table-title {
    color: #D4145A;
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
}

.cennik-block-after-table-text {
    font-size: 13px;
    color: #000000;
    line-height: 15px;
    margin-top: 15px;
    font-weight: 500;
}

.cennik-block-after-table-price .cennik-price {
    color: #101014;
    font-size: 29px;
    line-height: 34px;
    font-weight: 600;
}

.cennik-block-after-table-price .cennik-price {
	justify-content: space-evenly;
}

.cennik-block-after-table-price .zl-netto {
  color: #101014;
}

.cennik-block-after-table-button {
  padding: 20px 0;
}

.cennik-block-after-table-button a {
    width: 100%;
    border: 2px solid #101014;
    display: block;
    text-align: center;
    padding: 14px 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}

.cennik-block-after-table-button a div {
  position: relative;
    width: 75%;
    margin: 0 auto;
    line-height: 19px;
}

.cennik-block-after-table-button a div:before {
  content: '';
    position: absolute;
    top: 25%;
    left: 0px;
    background: url(/wp-content/themes/castocad/img/arrow-B.svg) no-repeat;
    width: 70px;
    height: 15px;
}

.cennik-section {
	margin-top: 60px;
}

.cennik-block-white-content {
	max-width: 390px;
	margin-left: 30px;
}

ul.question-numbers {
    margin: 0 3rem 6rem 3rem;
    padding: 0;
	pointer-events: none;
}

.quiz-question-desc {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

form.complete-quiz.form-button.lp-form {
    float: right;
}

.quiz-question-desc img {
	    max-height: 250px;
    width: auto;
}

.lp-quiz-buttons {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}

#content-item-quiz .lp-quiz-buttons form.lp-form.form-button.form-button-finish-course button.lp-button.lp-btn-finish-course {
	margin: 0 !important;
}

.lp-quiz-buttons form.lp-form.form-button.form-button-finish-course {
    width: auto !important;
}

button.lp-button.lp-btn-complete-quiz.lp-btn-complete-item {
    color: #fff!important;
    background: #067776;
    font-family: 'Montserrat';
    font-weight: 400;
    text-decoration: none!important;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    margin: 0;
    padding: 10px 35px!important;
    height: auto!important;
    width: auto!important;
    line-height: 15px!important;
}

.quiz-result {
	margin: 30px auto 60px !important;
}

.content-item-description.lesson-description {
    margin-bottom: 50px;
}

body.course-item-popup .content-item-summary {
	position: relative;
}

form.complete-quiz.form-button.lp-form {
    float: right;
    position: absolute;
    top: -10px;
    right: -20px;
}

body.course-item-popup #learn-press-content-item .course-item-title {
    width: calc(100% - 250px);
}

.lp-quiz-buttons {
	text-align: right !important;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-after-table-content {
	background: #D4145A;
	padding: 30px 40px 30px 25px;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-after-table-opys {
	justify-content: flex-start;
    position: relative;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-after-table-number {
	font-size: 120px;
    line-height: 1;
    font-family: 'DIN Condensed Bold';
    font-weight: 600;
    color: #000;
        margin-left: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-after-table-title {
	font-size: 25px;
	line-height: 1;
	color: #fff;
	margin-bottom: 20px;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-after-table-text {
	font-size: 13px;
	line-height: 15px;
	font-weight: 500;
	color: #fff;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-white-content {
    max-width: inherit;
    margin-left: 220px;  
}

.red-line-akcia {
  position: fixed;
  top: 54px;
  width: 100%;
  background: #067776;
  font-size: 13px;
    line-height: 15px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 5px;
    z-index: 9;
}



/*===============*/
/*===============*/


#new-tab1,
#new-tab {
  display: none;
    position: absolute;
    top: 40px;
    left: -95px;
    background: #fff;
    width: 450px;
    height: auto;
    font-size: 13px;
    line-height: 15px;
    color: #000;
    font-weight: 500;
    padding: 30px 30px 40px;
    text-align: left;
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 26%);
    z-index: 10;
}

#new-tab5,
div#new-tab4,
div#new-tab3,
div#new-tab2 {
    left: -165px;
    display: none;
    position: absolute;
    top: 40px;
    background: #fff;
    width: 450px;
    height: auto;
    font-size: 13px;
    line-height: 15px;
    color: #000;
    font-weight: 500;
    padding: 30px 30px 40px;
    text-align: left;
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 26%);
    z-index: 10;
}

#new-tab5:before,
#new-tab4:before,
#new-tab3:before,
#new-tab2:before,
#new-tab1:before,
#new-tab:before {
    content: '';
    border: 14px solid transparent;
    border-bottom: 14px solid #fff;
    position: absolute;
    left: 50%;
    margin-left: -22px;
    top: -27px;
    width: 0;
}

.warunki {
  text-align: center;
  margin-top: 17px;
  position: relative;

}

.cennik-block-after-table-price .warunki {
    margin-top: 10px;
 }

.warunki-open,
.warunki button {
  font-size: 12px;
  color: #000000;
  text-decoration: underline;
  line-height: 14px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.cennic-close,
button.cennic-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #fff;
    width: 15px;
    height: 15px;
}

button.cennic-close {
  margin: 0 ;
}


.modal-dialog .modal-end-course-title {
	display: none;
}

.modal-dialog.finish-course-modal .modal-end-course-title {
	display: block;
}

.modal-dialog.finish-course-modal .modal-title {
	display: none;
}

.lp-quiz-buttons {
    display: block;
    width: 100%;
    overflow: hidden;
}

form.continue-course.form-button.lp-form {
    width: 200px !important;
}

/*===============*/
/*===============*/

#thank_kontact1 {
	display: none;
}	

div#thank_kontact1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    padding: 20px 5px;
    overflow-y: auto;
    z-index: 999999;
    height: 100%;
    margin: 0 auto;
    right: 0;
}

.button-close-red {
	width: 100%;
}

.thank-kontact-form {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: flex-start;
    height: 100%;
    margin-top: -35px;
}

button.mfp-close {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    right: 5px;
    top: 5px;
}

.button-close-red button#form-control-close {
    width: 100%;
    display: block;
    position: relative;
    margin: 0;
}

/*===============*/
/*===============*/

.jnhp-first-container {
    width: 100%;
    background: #101014;
    height: 635px;
    position: relative;
}  

.jnhp-first-container .new-home-banner-image {
    width: 405px;
    height: 555px;
    top: 10px;
    right: 90px;
}

.jnhp-first-container .banner-title {
  letter-spacing:  0;
}

.jnhp-first-container .banner-description {
    margin: 20px 0 0 0;
}

.jnhp-first-container .banner-title {
  line-height: 70px;
}

.banner-description-logo {
    margin: 40px 0 0 0;
    height: 33px;
}

.banner-description-logo img {
  height: 100%;
}

.slider_down {
    background-image: url(/wp-content/themes/castocad/img/banner-arrow-bottom.svg);
    background-repeat: no-repeat;
    width: 16px;
    height: 50px;
    display: block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    animation-name: floating;
    -webkit-animation-name: floating;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating{0%{-webkit-transform:translateY(0%);transform:translateY(0%)}50%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0%);transform:translateY(0%)}}@-webkit-keyframes floating{0%{-webkit-transform:translateY(0%)}50%{-webkit-transform:translateY(10px)}100%{-webkit-transform:translateY(0%)}}

.jnhp-mastern-by-tmsys,
.jnhp-umow-indywidualna-online,
.jnhp-kuzdy-kurs, 
.jnhp-kursy-od-mastern {
  background: #101014; 
  overflow: hidden; 
}

.jnhp-kursy-od-mastern .dla-kogo-lekcja-title {
  margin-bottom: 0;
}

.red-border-content {
    padding: 38px 23px;
    border: 2px solid transparent;
    position: relative;
    margin: 40px 0;
}

.red-border-content .col-lg-9 {
  z-index: 3;
}

.red-border-content-photo {
    position: absolute;
    top: 40px;
    right: 40px;
    height: 270px;
    width: 480px;
    background: url(/wp-content/uploads/2021/07/photo-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;  
}

.red-border-content:after {
    content: '';
    position: absolute;
    top: 40px;
    right: 310px;
    height: 270px;
    width: 210px;
    background: rgba(16,16,20,1);
    background: -moz-linear-gradient(left, rgba(16,16,20,1) 0%, rgba(16,16,20,0) 100%);
    background: -webkit-linear-gradient(left, rgba(16,16,20,1) 0%, rgba(16,16,20,0) 100%);
    background: -o-linear-gradient(left, rgba(16,16,20,1) 0%, rgba(16,16,20,0) 100%);
    background: -ms-linear-gradient(left, rgba(16,16,20,1) 0%, rgba(16,16,20,0) 100%);
    background: linear-gradient(to right, rgba(16,16,20,1) 0%, rgba(16,16,20,0) 100%);
    z-index: 1;
}

.red-border-content-photo:before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0px;
    height: 35px;
    width: 44px;
    background: url(/wp-content/uploads/2021/07/logo-m-1.png);
    z-index: 2;
    background-repeat: no-repeat;
    background-size: contain;
}

.jnhp-red-border-container {
    width: 100%;
    max-width: 1190px;
    margin: 40px auto;
}

.red-border-content-texts {
    min-height: 270px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.master-name {
    font-size: 23px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}

.master-name-tag-block {
    display: flex;
    flex-direction: row;
}

.master-name-kursu {
    font-size: 58px;
    color: #fff;
    font-weight: 300;
    line-height: 69px;
    font-family: 'Montserrat';
}

.master-name-kursu-description {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  font-family: 'Montserrat';
  line-height: 15px;
  margin-top: 15px;
}

.red-border-content:hover {
    border: 2px solid #D4145A;
}

.red-border-content:hover .red-border-content-photo:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #101014;
  opacity: 0.6;
  z-index: 4;
}

.red-border-content:hover:before {
  position: absolute;
  content: '';
  width: 140px;
  height: 30px;
  background: #101014;
  z-index: 5;
  top: 50%;
  right: 70px;
  background: url(/wp-content/themes/castocad/img/mast-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.jnhp-kuzdy-kurs-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 50px 0;
}

.jnhp-kuzdy-kurs-title {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    line-height: 30px;
    font-family: 'Montserrat';
    min-height: 60px;
    margin-bottom: 20px;
}

.jnhp-kuzdy-kurs-description {
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    font-weight: 400;
    font-family: 'Montserrat';
}

.jnhp-kuzdy-kurs-opys {
    padding: 30px 15px 30px 35px;
    border: 4px solid #1F1F26;
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important;
    min-height: 471px;
}

.jnhp-kuzdy-kurs-img {
    margin-bottom: 25px;
    height: 170px;
}

.jnhp-kuzdy-kurs-img img {
  height: 100%;
}

section.jnhp-umow-indywidualna-online {
    padding: 80px 0;
}

.jnhp-umow-content {
    background: #1F1F26;
    padding: 75px 0 75px;
}

.jnhp-umow-content .col-lg-8 {
    margin: 0 auto;
    padding: 0;
}

.jnhp-umow-content .big-title {
    color: #fff;
    font-size: 58px;
    line-height: 72px;
    margin: 0 0 30px 0;
    letter-spacing: -3px;
}

.jnhp-umow-content-description {
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 50px;
}

.umow-konsul-content-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin-right: 30px;
}

.umow-konsul-content-image img {
  border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
}

.umow-konsul-content-image:before {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  z-index: 2;
  background: url(/wp-content/themes/castocad/img/green-phone.svg) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
}

.umow-konsul-content-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin: 20px 0;
    border: 2px solid #35353F;
    padding: 20px 25px;
}

.umow-konsul-content-name-red {
    color: #D4145A;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    font-family: 'Montserrat';
    margin-bottom: 10px;
}

.umow-konsul-content-name-white {
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    font-weight: 400;
    font-family: 'Montserrat';
}

.umow-konsul-content-name {
    min-height: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 320px;
    width: 100%;
}

.umow-konsul-content-button a {
display: block;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    padding: 13px 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    text-align: center;
}

.umow-konsul-content-button .checkbox-kurs-page a {
    color: #6d6e71;
    font-size: 9.5px;
    line-height: 11px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    border: none;
    border-radius: 0;
    display: contents;
} 

.umow-konsul-content-block.jnhp-grey-block {
    background: #35353f;
    margin: 60px 0 0;
}

.umow-konsul-content-button .checkbox-kurs-page input[type=checkbox] + label:before {
	content: "\2714";
    color: transparent;
    display: inline-block;
    border: 1px solid #ccc;
    background: #cccdd1;
    font-size: 15px;
    font-weight: 700;
    line-height: 17px;
    margin: -5px 5px 0 0;
    height: 15px;
    width: 15px;
    text-align: center;
    vertical-align: middle;
    transition: color ease .3s;
}

.umow-konsul-content-block.jnhp-grey-block .umow-konsul-content-image:before {
  display: none;
}

.umow-konsul-content-block.jnhp-grey-block .umow-konsul-content-image {
      min-height: 110px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.umow-konsul-content-block.jnhp-grey-block .umow-konsul-content-image img {
  width: 35px;
  height: 35px;
}

.umow-konsul-content-block.jnhp-grey-block .umow-konsul-content-name-red {
  color: #fff;
}

.umow-konsul-content-block.jnhp-grey-block .umow-konsul-content-name {
  padding-right: 15px;
  max-width: 350px;
}

.jnhp-mastern-by-tmsys-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 55px 0 60px;
}

.jnhp-mastern-by-text p {
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}

.jnhp-mastern-by-tmsys-content .col-lg-4 {
  height: 100%;
}

.jnhp-mastern-by-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.jnhp-mastern-by-logo div {
    margin: 0 10px;
}

/*.jnhp-mastern-by-tmsys-klienty {
    background: #1f1f26;
    padding: 40px 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}*/

.jnhp-mastern-by-tmsys-klienty {
    background: #1f1f26;
    padding: 20px 25px;
    width: 100%;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

.jnhp-mastern-by-tmsys-klienty .brends-block {
    padding: 0 15px;
    display: inline-block;
    text-align: center;
    max-height: 70px;
     margin-bottom: 20px; 
     margin-top: 20px; 
    padding: 0 10px;
    position: relative;
    width: 14%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jnhp-mastern-by-tmsys-head-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 35px 0;
}

.jnhp-mastern-by-tmsys-head-logo-text {
    padding: 0 0 0 55px;
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
    font-family: 'Montserrat';
}

.jnhp-mastern-by-tmsys {
    padding-bottom: 90px;
}

.black-banner.jnhp-footer-black-baner {
  background: #1F1F26;
}

.master-name-red-button {
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  font-family: 'Montserrat';
  background: #d4145a;
  padding: 7px;
  max-width: 64px;
  margin-left: 50px;
}

.cennik-block-after-table-button.zaglushka {
	position: relative;
}

.cennik-block-after-table-button.zaglushka:before {
	position: absolute;
    content: 'Brak wolnych terminów';
    width: 100%;
    min-height: 51px;
    background: #ccccccf0;
    z-index: 9;
    text-align: center;
    padding: 13px;
    color: #d4145a;
    font-size: 16px;
    font-weight: 500;
    border-radius: 9px;
        display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.umow-konsul-content-button .zaglushka {
	position: relative;
}

.umow-konsul-content-button .zaglushka:before {
position: absolute;
    
    width: 100%;
    min-height: 51px;
    height: 100%;
    background: #ccccccf0;
    z-index: 9;
    text-align: center;
    padding: 13px;
    color: #d4145a;
    font-size: 16px;
    font-weight: 500;
    border-radius: 9px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

body.page-template-default.page.page-id-1157 p strong {
	font-weight: 600;
}

/*body.lp_course-template-default.single.single-lp_course h1.entry-title {
	display: none;
}*/




.grecaptcha-badge { 
    visibility: hidden;
} 

.viewing-course-item-2471 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2470 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2469 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2468 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2467 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2466 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2465 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2464 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2463 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2462 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2461 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2460 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2459 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2458 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2457 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2456 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2455 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2454 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2453 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2452 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2451 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2450 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2449 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2448 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2447 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2446 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2445 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2444 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2443 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2442 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2441 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.viewing-course-item-2440 .content-item-summary button.lp-button.button-complete-item.button-complete-lesson.lp-btn-complete-item,
.postid-2439 .section-header .section-meta,
.postid-2439 .result-percent-users {
	display: none !important;
}

.post-2379 .quiz-question-desc img,
.post-2379 .quiz-question-desc img {
	max-height: 500px;
}

#product-2586 > div > div.product-right-description.col-md-7 > div > form > div.wapf-wrapper > div > div:nth-child(1) > div > div.wapf-field-input > div > div.wapf-checkable.wapf-checked > label > span > div.wapf-label-text-image,
#product-2584 > div.woocommerce-product-image-description-block > div.product-right-description.col-md-7 > div > form > div > div.wapf-field-group > div > div:nth-child(3) > div > div.wapf-field-input > div > div.wapf-checkable > label > span > div.wapf-label-text-image,
#product-2588 > div.woocommerce-product-image-description-block > div.product-right-description.col-md-7 > div > form > div > div.wapf-field-group > div > div:nth-child(3) > div > div.wapf-field-input > div > div.wapf-checkable > label > span > div.wapf-label-text-image,
#product-2586 > div > div.product-right-description.col-md-7 > div > form > div.wapf-wrapper > div > div:nth-child(2) > div > div.wapf-field-input > div > div:nth-child(1) > label > span > div.wapf-label-text-image,
#product-2585 > div > div.product-right-description.col-md-7 > div > form > div.wapf-wrapper > div > div:nth-child(2) > div > div.wapf-field-input > div > div.wapf-checkable > label > span > div.wapf-label-text-image,
#product-2588 > div.woocommerce-product-image-description-block > div.product-right-description.col-md-7 > div > form > div > div.wapf-field-group > div > div:nth-child(2) > div > div.wapf-field-input > div > div.wapf-checkable > label > span > div.wapf-label-text-image,
#product-2584 div.woocommerce-product-image-description-block > div.product-right-description.col-md-7 > div > form > div > div.wapf-field-group > div > div:nth-child(2) > div > div.wapf-field-input > div > div.wapf-checkable > label > span > div.wapf-label-text-image {
	background: #ccc url(https://mastern.pl/wp-content/uploads/2022/06/Wojtek-S.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
}

#product-2585 > div > div.product-right-description.col-md-7 > div > form > div.wapf-wrapper > div > div:nth-child(1) > div > div.wapf-field-input > div > div.wapf-checkable.wapf-checked > label > span > div.wapf-label-text-image,
#product-2586 > div > div.product-right-description.col-md-7 > div > form > div.wapf-wrapper > div > div:nth-child(2) > div > div.wapf-field-input > div > div:nth-child(3) > label > span > div.wapf-label-text-image {
	background: #ccc url(https://mastern.pl/wp-content/uploads/2021/06/zaślepka-mastern_.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
}


#product-2584 .boots-description-block.bdb-cnc,
#product-2588 .boots-description-block.bdb-cnc,
#product-2588 .boots-description-block.bdb-dron,
#product-2588 .boots-description-block.bdb-allp,
#product-2588 .boots-description-block.bdb-cad,
#product-2584 .boots-description-block.bdb-dron,
#product-2584 .boots-description-block.bdb-allp,
#product-2584 .boots-description-block.bdb-cad {
	display: none;
}

.boots-description-block.bdb-scia {
	display: none;
}

#product-2588 .boots-description-block.bdb-scia,
#product-2584 .boots-description-block.bdb-scia {
	display: block;
}

#product-2588 .wapf-radios .wapf-checkable:first-child .boots-description-block,
#product-2584 .wapf-radios .wapf-checkable:first-child .boots-description-block {
	display: none;
}

img.banner-logo-2 {
    margin-left: 20px;
}

.black-section {
	background: #101014;
}

.col-lg-12.fall-home-slider-block {
    overflow: hidden;
    padding: 50px 0;
    position: relative;
}

/*.col-lg-12.fall-home-slider-block:after {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: -16px;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity .55s ease;
    background: linear-gradient(to left, rgb(0, 0, 0) 0px, rgb(0, 0, 0) 16px, rgba(0, 0, 0, 0) 100%) center center no-repeat;
} */ 
  
.najnowsze-kursy-image {
    width: 335px;
    height: 188px;
    background-size: cover;
    background-position: top center;
    position: relative;
}

.najnowsze-kursy-image:after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 32px;
  background: url(/wp-content/uploads/2021/07/logo-m-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  right: -2pxs;
  bottom: 0;
}

.najnowsze-kursy-block-text {
  padding: 20px 20px;
  background: #1A1A21;
}

.najnowsze-kursy-block-text .big-white-border-button a {
	width: 98%;
}

.fall-home-swiper-one.swiper-container-horizontal .swiper-slide {
    max-width: 335px;
    width: auto;
    height: 100%;
    display: flex;
}

.black-section {
  background: #101014;
}

.najnowsze-kursy-block-title, .najnowsze-kursy-block-title a {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
}

.najnowsze-kursy-block-master-name {
    color: #d4145a;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
}

.najnowsze-kursy-block-tag {
  display: flex;
}

.najnowsze-kursy-block-tag div {
    margin-bottom: 20px;
    color: #d4145a;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    border: 1px solid;
    padding: 3px 10px;
}

.najnowsze-kursy-block-description {
    color: #fff;
    font-size: 13px;
    line-height: 15px;
}

.najnowsze-kursy-block-description ul {
    margin: 0;
    padding-left: 15px;
}

.fall-home-najnowsze-kursy-container .banner-title {
    padding-top: 60px;
}

.swiper-button.fall-home-swiper-buttons {
    margin-top: 15px;
    display: flex;
    position: relative;
    z-index: 5;
    height: 50px;
}

.swiper-button.fall-home-swiper-buttons div {
    width: 133px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
}

.swiper-button-prev-one {
  background: url(/wp-content/uploads/2022/11/logo-f-2.svg) no-repeat;
  -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    position: absolute;
    left: 0;
}

.swiper-button-next-one {
  background: url(/wp-content/uploads/2022/11/logo-f-2.svg) no-repeat;
  position: absolute;
  right: 0;
}

.disabled_swiper_button {
  display: none;
}

.tag-home-slider-block {
    padding: 35px 0 0px 17px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.tag-home-slider-block .najnowsze-kursy-block-tag div {
	margin-right: 20px;
}

.tag-button-white {
    display: flex;
    flex-direction: row;
}

.tag-button-white div {
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    border: 1px solid;
    border-radius: 7px;
    margin-right: 15px;
}

.tag-home-slider-block-description {
    font-size: 13px;
    color: #fff;
    padding-left: 15px;
    line-height: 16px;
}

.big-white-border-button a {
  width: 100%;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  position: relative;
}  

.big-white-border-button-image {
  position: absolute;
  left: 190px;
  width: 70px;
}

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

.text-left {
  text-align: left;
}

.fall-mastern-na-prezent-section .fall-mastern-na-prezent-content {
  width: 100%;
  background: #1a1a21;
  padding: 75px 0 75px;
  margin-bottom: 100px;
}

.fall-mastern-na-prezent-section .big-title {
  color: #fff;
}

.fall-mastern-na-prezent-big-image {
    text-align: center;
    margin-bottom: 20px;
}

.fall-mastern-na-prezent-content .dla-kogo-lekcja-title {
  border: none;
  margin-bottom: 25px;
  padding: 0;
}

.fall-mastern-na-prezent-text {
    max-width: 235px;
}

.fall-mastern-na-prezent-image {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.fall-mastern-na-prezent-section-blocks {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
}

.fall-mastern-na-prezent {
    width: 50%;
    margin-bottom: 60px;
}

.fall-mastern-na-prezent a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.fall-mastern-na-prezent-name {
    font-size: 15px;
    color: #fff;
    margin-bottom: 7px;
}

.fall-mastern-na-prezent-kurs-name {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    max-width: 270px;
    line-height: 1.3;
}

.umow-konsul-content-name .najnowsze-kursy-block-tag div {
	margin: 10px 0;
	font-size: 12px;
}

.umow-konsul-content-kurs-name a {
    color: #929497;
    font-weight: 500;
    line-height: 14px;
    font-size: 12px;
    text-decoration: underline;
}

.umow-konsul-content-kurs-name p br {
	display: none;
}

.fall-home-indywidualna-online .umow-konsul-content {
    margin-bottom: 25px;
}

.fall-home-indywidualna-online .big-white-border-button .big-white-border-button-image {
	left: 140px;
}

.fall-gradient-small-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: url(/wp-content/uploads/2022/11/fon-section.png);
    background-size: cover;
    padding: 40px 70px;
}  

.fall-gradient-small-content-title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
}

.fall-gradient-small-content-description {
	max-width: 360px;
    font-size: 13px !important;
    line-height: 15px;
    color: #fff;
    font-weight: 400;
    font-family: 'Montserrat';
}

.white-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 50px;
    background: #fff;
    color: #101014;
    font-size: 16px;
    line-height: 19px;
    border-radius: 7px;
    font-weight: 400;
}

.fall-home-social-media-section .big-title {
	color: #fff;
}

.fall-home-social-media-section {
    padding: 100px 0;
}

.fall-home-social-media-block-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
}  

.fall-home-social-media-logo {
  width: 85px;
  margin-right: 15px;
}

.white-border-small-button a {
    height: 50px;
    border: 2px solid #fff;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    position: relative;
    width: 250px;
}

.fall-home-social-media-block-images {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    flex: 1;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: stretch;
}  

.fall-home-social-media-block-images div {
  width: 24%;
  margin: 5px;
}

.fall-home-social-media-block-images div img {
    border-radius: 10px;
    overflow: hidden;
}

.white-section {
	background: #fff;
}

.konsultacje-page .umow-konsul-content-name-white,
.konsultacje-page .jnhp-umow-content-description,
.konsultacje-page .big-title {
    color: #101014;
}

.konsultacje-page .jnhp-umow-content-description {
	margin-bottom: 20px;
}

.konsultacje-page .jnhp-umow-content {
    background: #E5E6E7;
}

.konsultacje-page .umow-konsul-content-block {
    border-color: #F0F1F1;
    background: #F0F1F1;
}

.konsultacje-page .umow-konsul-content-button .checkbox-kurs-page {
	color: #6D6E71;
}

.konsultacje-page .umow-konsul-content-button a {
	background: #101014;
	border-color: #101014;
}

.konsultacje-page .umow-konsul-content-button .warunki-open {
    color: #101014 !important;
    font-weight: 500;
}

.konsultacje-page {
    padding: 80px 0 40px;
}

.konsultacje-page-gradient-section {
	padding-bottom: 55px;
}

.konsultacje-tag-block {
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
}

.konsultacje-tag-block a {
    color: #101014;
    font-size: 16px;
    padding: 13px 20px;
    border: 2px solid #101014;
    margin-right: 15px;
    border-radius: 7px;
    font-weight: 400;
}

.konsultacje-tag-block a.active-sub-link {
	background: #D4145A;
	border-color: #D4145A !important;
	color: #fff;
}

.jnhp-umow-content-center-block {
	padding: 0 150px;
}

.wszystkie-kursy-page .big-title {
	color: #fff;
}

.wszystkie-kursy-page ul#konsultacje-tag-block {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

.wszystkie-kursy-page ul#konsultacje-tag-block a {
	color: #fff;
    border-color: #fff;
}

.red-border-content-texts .najnowsze-kursy-block-tag div {
    color: #d4145a;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    border: 2px solid;
    padding: 3px 10px;
    margin-bottom: 0;
}

.red-border-content-texts .master-name-red-button {
	margin-right: 10px;
	margin-left: 0px;
}

.red-border-master-name {
	margin-right: 50px;
}

section.jnhp-umow-indywidualna-online.wszystkie-kursy-page {
    padding-bottom: 0;
}

.wszystkie-kursy-page div#konsultacje-tag-block {
	padding-bottom: 50px !important;
    border-bottom: 1px solid #D4145A;
    margin-bottom: 0;
}

.wszystkie-kursy-page-section .master-name-kursu-description ul {
    margin: 0;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: row;
}

.wszystkie-kursy-page-section .master-name-kursu-description ul li {
	margin-right: 24px;
}

.big-image-section{
	margin-bottom: 30px;
}

.zestawy-page-section-content {
	display: flex;
    flex-direction: column;
    background: #1F1F26;
    padding: 80px 170px;
    margin-bottom: 35px;
    position: relative;
}

.zestawy-page-section-content-blocks {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 25px;
}

.zestawy-page-section-content:before {
	content: '';
	background: url(/wp-content/uploads/2022/11/plus.svg) no-repeat;
	background-size: contain;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.zestawy-page-section.black-section {
    padding: 80px 0 50px;
}

.zestawy-page-content-block {
    width: 50%;
    max-width: 370px;
    position: relative;
}

.zestawy-page-content-block .master-name-red-button {
	position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
}

.bezplatne-programy-logo {
    position: relative;
}

.bezplatne-programy-logo:before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0px;
    height: 35px;
    width: 44px;
    background: url(/wp-content/uploads/2021/07/logo-m-1.png);
    z-index: 2;
    background-repeat: no-repeat;
    background-size: contain;
}

.zestawy-page-content-block-description {
	padding: 20px 20px 35px;
	border: 2px solid #35353F;
	border-top: none;
}

.zestawy-page-content-block-description .master-name-kursu {
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    padding-right: 35px;
    margin-bottom: 25px;
}

.zestawy-page-content-block-description .red-border-master-name {
    color: #D4145A;
    font-size: 15px;
    line-height: 18px;
    margin: 0px;
    margin-bottom: 15px;
}

.zestawy-page-content-block-description .master-name-kursu-description {
    margin: 0 0 25px;
}

.zestawy-page-content-block-description .master-name-kursu-description ul {
	margin-left: 0;
	padding-left: 15px;
}

.zestawy-page-section-content-red-border-block {
    padding: 45px 45px 25px;
    border: 2px solid #D4145A;
}

.zestawy-page-red-border-price-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 25px;
}
.zestawy-page-red-border-price-red,
.zestawy-page-red-border-price-white {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.zestawy-page-price-white {
	color: #fff;
	font-size: 29px;
	line-height: 35px;
	font-weight: 600;
	margin-right: 8px;
}

.zestawy-page-price-red {
	color: #D4145A;
	font-size: 29px;
	line-height: 35px;
	font-weight: 600;
	text-decoration: line-through;
	margin-right: 8px;
}

.big-white-button a {
    color: #101014;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: center;
}

.big-white-button a div {
	position: relative;
}

.big-white-button a div:before {
	content: '';
    position: absolute;
    top: 5px;
    left: -100px;
    width: 68px;
    height: 10px;
    background: url(/wp-content/uploads/2022/11/arrow-black.svg) no-repeat;
    background-size: contain;
}

.zestawy-page-red-border-price-white {
    margin-right: 20px;
}

.fall-zostan-masterem-block-logo {
    width: 70px;
    margin-bottom: 25px;
}

.fall-zostan-masterem-section-description {
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
    color: #101014;
    width: 100%;
    max-width: 830px;
    margin-bottom: 60px;
    font-weight: 400;
}

.fall-zostan-masterem-section-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 80px;
}

.fall-zostan-masterem-block {
    width: 33%;
    max-width: 340px;
}

.fall-zostan-masterem-block-title {
    color: #D4145A;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 15px;
    padding-right: 20px;
}

.fall-zostan-masterem-blockdescription {
    font-size: 13px;
    line-height: 15px;
    color: #101014;
    font-weight: 400;
}

.zostan-masterem-form-section-content {
    background: #101014;
    padding: 65px 55px 40px 0;
	width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 80px;
}

.zostan-masterem-form-image {
    width: 100%;
    max-width: 350px;
    margin-left: -15px;
}

.zostan-masterem-form-contform :placeholder {
	color: #fff;
}

.zostan-masterem-form-title {
    color: #D4145A;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
}

.zostan-masterem-form-description {
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    font-weight: 400;
    margin-top: 10px;
}

.zostan-masterem-form-contform {
    width: 100%;
    max-width: 320px;
}

.zostan-masterem-form-contform input[type="text"], 
.zostan-masterem-form-contform input[type="email"], 
.zostan-masterem-form-contform input[type="tel"] {
    background: #414042;
    border-radius: 0;
    border: none;
    color: #fff !important;
    font-size: 13px;
    padding: 12px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 1;
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.zostan-masterem-form-contform textarea {
	max-height: 85px;
    resize: none;
    background: #414042;
    border-radius: 0;
    border: none;
    color: #fff !important;
    font-size: 13px;
    padding: 12px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 1;
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.zostan-masterem-form-contform input.wpcf7-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #fff;
    color: #101014 !important;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    border-radius: 7px;
    margin-top: 15px;
}

.zostan-masterem-form-text {
    margin-left: -45px;
    margin-right: 10px;
    padding-top: 125px;
}

  
.fall-home-swiper-one.swiper-container-horizontal .swiper-slide:before {
  content: '';
  position: absolute;
  width: 99%;
  height: 99.3%;
  top: 0;
  left: 0;
  border: 2px solid transparent;
}

.fall-home-swiper-one.swiper-container-horizontal .swiper-slide:hover:before {
  border: 2px solid #D4145A;
  background: #1010149c;
    z-index: 5;
} 

.fall-home-swiper-one.swiper-container-horizontal .swiper-slide:hover:after {
    position: absolute;
    content: '';
    width: 140px;
    height: 30px;
    background: #101014;
    z-index: 6;
    top: 15%;
    left: 30%;
    background: url(/wp-content/themes/castocad/img/mast-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
}


.fall-home-swiper-one.swiper-container-horizontal .swiper-slide:last-child:before {
  display: none;
}

a.kurs-link-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 8;
}

section.fall-gradient-small-section.new-gs-gradient-section .fall-gradient-small-content {
	padding: 30px 220px 30px 30px;
}

section.fall-gradient-small-section.new-gs-gradient-section .konsultacje-tag-block {
	margin-bottom: 0;
	    position: relative;
    z-index: 2;
}

section.fall-gradient-small-section.new-gs-gradient-section {
    position: relative;
        overflow: hidden;
}

section.fall-gradient-small-section.new-gs-gradient-section:after {
content: '';
    background: url(/wp-content/uploads/2024/01/Demo-GS-LIGHT-baner-.png) no-repeat;
    position: absolute;
    top: -1px;
    right: -4px;
    height: 100%;
    width: 246px;
    z-index: 1;
    background-size: contain;

}

section.fall-gradient-small-section.new-gs-gradient-section .fall-gradient-small-content-description {
	max-width: 225px;
    margin: 0 10px;
}


section.fall-home-najnowsze-kursy-container .container {
  padding: 0;
}

.fall-home-najnowsze-kursy-container .banner-title {
  padding-left: 25px;
}

.swiper.swiper-news.fall-home-swiper-one.swiper-container-horizontal {
	overflow: hidden;
    width: calc(100% - 15px);
    margin-left: 7px;
}

/*.fall-home-najnowsze-kursy-container .swiper-wrapper {
    padding-right: 15px;
    padding-left: 15px;
}
*/
.fall-mastern-na-prezent-section .jnhp-umow-content-description.text-left {
    padding-left: 5px;
}

.najnowsze-kursy-block .master-name-red-button {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 0;
}

.najnowsze-kursy-block {
    height: 100%;
    min-height: 470px;
    background: #1A1A21;
}

.najnowsze-kursy-block.last-slide-kurs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-right: 12px;
    z-index: 15;
}

.najnowsze-kursy-block.last-slide-kurs .najnowsze-kursy-block-description {
    margin-bottom: 25px;
}

.najnowsze-kursy-block.last-slide-kurs:before {
	content: '';
	width: 32px;
	height: 32px;
	background: url(/wp-content/uploads/2022/11/plus.svg) no-repeat;
	background-size: cover;
	position: absolute;
	top: 20px;
	left: 20px;
}

.fall-home-social-media-block-images p {
    font-size: 12px;
    line-height: 1.3;
    color: #fff;
    padding: 5px 10px 0;
}

.komentarze-kurs-section.white-section {
    overflow: hidden;
}

.komentarze-kurs-section.white-section .big-title {
	width: 100%;
}

.komentarze-kurs-section-description a {
	color: #D4145A;
}

.zestawy-page-red-border-price-red .zl-netto {
    color: #D4145A;
}

.zestawy-kurs-page-section .zestawy-page-section-content {
    background: #101014;
}

.zestawy-kurs-page-section .zestawy-page-content-block-description {
	background: #1F1F26;
	border-color: #1F1F26;
}

.swiper.swiper-partnerzy .swiper-slide {
    width: 370px;
    height: 255px;
    background: #E5E6E7;
}

.swiper.swiper-partnerzy.swiper-container-horizontal {
    padding: 40px 0 90px;
}

img.partnerzy-logo-block-name-img {
    width: 55px;
    margin-right: 15px;
}

.partnerzy-logo-block {
    padding: 20px 40px;
}

.partnerzy-logo-block-name {
    color: #101014;
    font-weight: 600;
    margin-bottom: 20px;
}

.partnerzy-logo-block-description {
    font-size: 13px;
    color: #000000;
    line-height: 15px;
    font-weight: 400;
}

.swiper-partnerzy .swiper-button-prev-one {
  background: url(/wp-content/uploads/2022/11/arrow-l.svg) no-repeat;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
}

.swiper-partnerzy .swiper-button-next-one {
  background: url(/wp-content/uploads/2022/11/arrow-r.svg) no-repeat;
}

.komentarze-kurs-section-description {
    font-weight: 400;
    margin-top: -30px;
}

.zestawy-kurs-page-section .big-title {
	color: #fff;
}

.zestawy-kurs-page-section .zestawy-page-section-content {
	padding: 40px 170px;
}

.zestawy-kurs-page-section .zestawy-page-section-content:before {
	top: 155px;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu-konsultacje-container ul#konsultacje-tag-block {
    display: flex;
    margin: 20px 0;
    padding: 0;
} 

.menu-konsultacje-container ul#konsultacje-tag-block li {
	list-style: none;
}

.jnhp-kuzdy-kurs-fall-page .jnhp-kuzdy-kurs-content {
	margin-top: 35px;
}

.fall-home-indywidualna-online .umow-konsul-content-name-white {
	margin-bottom: 5px;
}

.fall-home-indywidualna-online .umow-konsul-content-name .najnowsze-kursy-block-tag div {
    margin: 10px 0 5px;
    font-size: 12px;
}

.jnhp-umow-indywidualna-online.fall-home-indywidualna-online {
    padding: 80px 0 30px;
}

.master-pakiet-simple {
  position: relative;
  padding-left: 15px;
}

.master-pakiet-simple:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: 2px;
    top: 5px;
}

.partnerzy-section-slider .swiper-button.fall-home-swiper-buttons {
    display: flex;
    position: relative;
    z-index: 5;
    height: 50px;
    width: 100%;
    max-width: 1110px;
    margin: 15px auto;
}

.big-white-border-button.white-border-slider-button {
    max-width: 70%;
    margin: 0 auto;
    z-index: 9;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 50px;
}

.fall-mastern-na-prezent-section.black-section {
    padding-top: 60px;
}

.umow-konsul-content-kurs-name p {
	display: flex;
    flex-direction: column;
}

.umow-konsul-content-kurs-name {
    margin-top: 10px;
}

.fall-home-indywidualna-online .umow-konsul-content-name {
	max-width: 350px;
}

.menu-bottom1-container .red-border a {
	position: relative;
}

.menu-bottom1-container .red-border a:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: #D4145A;
	left: 0;
	bottom: 0;
}

.menu-bottom1-container .red-border:hover a {
	text-decoration: none;
}

section.fall-zostan-masterem-section.white-section {
	padding: 80px 0 30px;
}

.content-item-scrollable .fall-gradient-small-section .fall-gradient-small-content-title {
    font-size: 20px;
    line-height: 1.3;
}

.content-item-scrollable .fall-gradient-small-section .fall-gradient-small-content {
	padding: 40px 70px 40px 60px;
}

.kursy-image-section {
    background: #fff;
    padding: 50px 0;
}

.kursy-image-blocks {
    display: flex;
    flex-direction: row;
}

.kursy-image-block a img {
    width: 100%;
}

.kursy-image-block {
    margin-right: 2%;
}

.kursy-image-block:last-child {
    margin-right: 0;
}

.content-item-description.lesson-description .zestawy-page-section:last-child {
	margin-bottom: -150px;
}


/*===============*/
/*===============*/

@media (max-width: 1060px) {

.new-home-banner-image {
    position: relative;
    right: 0px;
    top: 0;
    width: 100%;
    max-width: 400px;
    max-height: 670px;
    min-width: 300px;
    height: 100%;
    min-height: 310px;
}
.header-button {
	width: 350px;
}

.program-lekcji-block {
	padding: 80px 40px;
}

.banner-title h1,
.new-home-first-banner-text .banner-title {
    text-align: left;
    font-size: 42px;
}

.header-button {
    flex-direction: column;
    width: 250px;
}
	
.grey-button {
	margin-bottom: 10px;
}	
	

}



@media (max-width: 990px) {

.header-button {
	width: 350px;
}

.program-lekcji-block {
	padding: 80px 40px;
}
	
a#klik-2 {
	display: block;
}	

.header-button,	
.main-navigation {
    display: none;
}


header#masthead {
    height: 60px;
}	

.main-navigation.header-mobile,
.header-button.header-mobile {
	display: block;
}

.header-content {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
    position: relative;
}

div#tekst-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    height: 100vh;
}

.navbar-header-mobile {
    background: #101014;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 19;
    top: 60px;

}

.main-navigation.header-mobile ul {
    text-align: center;
    display: flex;
    -webkit-box-align: center;
    align-items: center !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.main-navigation.header-mobile ul a {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
}

.kurs-1-img:before, .kurs-2-img:before, .kurs-3-img:before {
	width: 35px;
    height: 35px;
    top: 15px;
}

.main-navigation ul ul a {
	padding: 5px 5px 5px 45px;
	text-align: left;
}

a#klik2-2 {
    position: absolute;
    top: -40px;
    right: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

a#klik-2 img {
	width: 20px;
}

a#klik-2 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}

.header-mobile-button {
    padding: 10px 2% 15px;
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
}

.header-mobile-button  a {
	width: 48% !important;
    text-align: center;
}

.main-navigation.header-mobile ul ul {
	position: relative;
	display: block;
	left: 0;
	width: 100%;
}	

.main-navigation.header-mobile li {
    float: left;
    position: relative;
    width: 100%;
}

.main-navigation.header-mobile {
    display: block;
    width: 85% !important;
    margin-left: 0;
    padding: 0 35px 35px;
    overflow: auto;
}

.main-navigation ul ul a {
    width: 100%;
}

ul#primary-menu {
	text-align: center;
}

ul#primary-menu .menu-item-337 {
	text-align: center !important;
	padding-top: 0px;
}

header#masthead .container .row {
	padding: 20px 0;
}

.menu-item-237 a {
	color: transparent;
}

.menu-item-237 .sub-menu a {
	color: #fff;
}
	
.header-profil-button {
	right: 20%;
}	



}

@media (max-width: 850px) {

.header-button {
	flex-direction: column;
	width: 250px;
}

.grey-button {
	margin-bottom: 10px;
}

.master-content {
	flex-direction: column;
}

.master-photo-logo {
	margin: 40px 0;
	flex-wrap: wrap;
}
	
	.new-home-first-banner-text {
		flex-direction: column;
		align-items: center;
	}
	
	.new-home-banner-image {
		top: 50px;
		min-height: 410px;
	}

	.new-home-first-banner-text .banner-title {
		text-align: left;
		font-size: 52px;
		line-height: 55px;
	}
	
	.new-home-first-banner-text .banner-description {
		text-align: left;
	}
	
	.col-8.popup-black {
		padding: 25px 35px;
	}

	.banner-description {
		margin: 20px 0 0 0;
	}

}

@media (max-width: 780px) {
	
.container {
    max-width: 96%;
}	
	
.big-title {
	font-size: 42px; }	

.dla-kogo-content,
.banner-text {
	flex-direction: column;
}

.banner-title h1,
.banner-title {
    font-size: 34px;
    letter-spacing: 0;
    text-align: left;
    line-height: 38px;
}

.program-lekcji-black .program-lekcji-block .big-title,
.big-title {
    font-size: 34px;
    letter-spacing: 0;
    text-align: left;
    line-height: 38px;
}

.dla-kogo-logo-desc {
	margin-bottom: 35px;
}

.col-lg-6.master-photo {
	padding: 0;
}

.dla-kogo-lekcja-opys .col-lg-6 {
	padding-right: 0 !important;
}

.popup-img {
	display: none;
}


.popup-form {
    max-width: 400px;
    float: none;
    margin: 0 auto;
}
	
.dla-kogo-lekcja-opys .col-lg-6:nth-child(odd) {
    padding-left: 15px !important;
}

.dla-kogo-lekcja-opys .col-lg-6 {
    padding-right: 15px !important;
}	
.dla-kogo-lekcja-opys .col-lg-6:nth-child(even) {
    padding-right: 15px !important;
}
	
.col-lg-6.master-photo {
    padding: 0;
    height: 50vh;
}	
	
.black-button div:before {
		display: none;
	}	
	
.program-lekcji-name {
		font-size: 18px;
		font-weight: 600;
		line-height: 20px;
		margin: 20px 0;
		width: 100%;
    max-width: 100%;
}

.program-lekcji-name br {
    display: none;
}
	
.program-lekcji-black .program-lekcji-block {
    padding: 75px 27px 75px;
}
	
.cretyfikat-content-line {
	flex-direction: column;
}
	
.black-banner-content {
	flex-direction: column;
    padding: 25px 0;
}

.program-lekcji-line .col-lg-12 .col-lg-6,
.program-lekcji-line .col-lg-12 {
	flex-direction: column;
}


.program-lekcji-line .col-lg-12 .col-lg-6.program-lekcji-descr {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.program-lekcji-description {
	max-width: 100%;
}

.bunner-video iframe {
    width: 90%;
    height: 70%;
    margin: 0 auto;
    display: block;
}

section#first-block {
    margin-bottom: 50px;
}
	
.bunner-video {
    margin: 0 auto -165px;
    width: 100%;
    height: 420px;
}

.master-text-after-red {
	line-height: 16px;
}

.black-banner-img img {
    height: 100%;
    min-height: auto;
    width: 100%;
}

.black-banner-img {
    min-height: auto;
}

.cretyfikat-content-line {
	padding: 20px 0;
}

.red-opys {
	line-height: 17px;
}

.master-photo-logo img {
    max-width: 115px;
    min-height: 50px;
    margin-right: 25px;
    margin-bottom: 15px;
    float: left;
    display: block;
}

.green-border-button div:before,
.green-button div:before {
	display: none;
}

.profile-list-courses-content {
	flex-direction: column;
}

.profile-list-courses-content .column-course-image {
	margin: 0 auto 50px;
}

.column-course-description {
    max-width: 100%;
 }

.single-course-my-design-image-block {
	flex-direction: column;
} 

body.course-item-popup #learn-press-content-item {
    overflow: auto !important;
}

.cennik-block-after-table-opys {
	flex-direction: column;
}

.cennik-block-after-table-button a div:before {
	display: none;
}

.cennik-block-white-content {
	max-width: 90%;
    margin-left: auto;
    margin: 25px;
    text-align: center;
}

.cennik-pink-block > div {
	flex-direction: column;
    width: 100%;
    align-items: center;
}

.cennik-block-after-table-content {
    padding: 30px 25px;
    align-items: center;
}

.cennik-block-after-table-image {
	background: #ccc;
    margin-right: auto;
    overflow: hidden;
    margin: 0 auto;
}

.cennik-price {
	flex-direction: column;
}

.red-border-content-photo {
	background-position: center;
    padding: 15px 15px 60px!important;
    width: 98%;
    margin: 30px 0 50px;
}

.jnhp-first-container {
	height: auto;
}

.jnhp-first-container .new-home-banner-image {
    width: 80%;
    height: auto;
    top: 10px;
    right: auto;
}

.jnhp-umow-content .big-title {
	    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
}

.jnhp-umow-content {
    background: #1f1f26;
    padding: 55px 2% 55px;
}

.banner-title {
    font-size: 52px !important;
    line-height: 1.2 !important;
}


}

@media (max-width: 510px) {


.big-white-border-button.white-border-slider-button {
	margin: 25px auto 0;
    z-index: 9;
    position: relative;
    bottom: 0;
}

.najnowsze-kursy-block-tag {
    display: flex;
    flex-direction: column;
}

.zestawy-kurs-page-section .zestawy-page-section-content {
    padding: 40px 30px !important;
}

.master-photo-logo {
    margin: 40px 0;
    display: block;
}

.big-title {
    font-size: 44px;
    }

.footer-adress,
.footer-content,
.black-banner-content,
.cretyfikat-content-line,
.program-lekcji-line .col-lg-12 {
	flex-direction: column;
}    

.program-lekcji-number {
    max-width: 50px;
    }

.program-lekcji-name {
    font-size: 18px;
    line-height: 1.5;
}

.program-lekcji-black .program-lekcji-block .big-title {
    margin-top: 0;
    line-height: 1.5;
}

.program-lekcji-number {
    width: 100%;
    max-width: 100px;
}

.black-banner-block .big-title, .black-banner-block .program-lekcji-description {
    color: #fff;
    line-height: 1.5;
}

.black-banner-button {
	margin: 60px 0;
}

.footer-adress-menu {
	margin: 35px 0;
}
	
ul#primary-menu {
	flex-direction: column;
}	
	
.site-branding {
	width: 175px;
}
	
.banner-title,	
.banner-title h1,	
.new-home-first-banner-text .banner-title {
    text-align: left;
    padding: 0;
    font-size: 40px!important;
    line-height: 1.2!important;
}

.first-block-container .banner-title {
	font-size: 38px!important;
}

.mc-carousel__peek--before {
    display: none;
}

.tag-home-slider-block {
	flex-direction: column;
}

.tag-home-slider-block-description {
	padding-left: 0;
}

.wszystkie-kursy-page .big-title {
    color: #fff;
    font-size: 42px!important;
    line-height: 1.2!important;
}

.new-home-first-banner-text .banner-description {
	text-align: left;
}

.col-8.popup-black {
    padding: 25px 35px;
    width: 100% !important;
    -ms-flex: 0 0 66.666667%;
    flex: 100%!important;
    max-width: 100%!important;
    height: 100vh;
    margin: 0;
}

div#pobierz-form .container {
	max-width: 100% !important;
}

.mfp-container {
    padding-left: 0px;
    padding-right: 0px;
}

.jnhp-kuzdy-kurs-content .col-lg-4{
	margin-bottom: 25px;
}

.umow-konsul-content-button #new-tab3, .umow-konsul-content-button #new-tab4 {
    left: -40% !important;
    width: 350px;
}

.main-navigation.header-mobile {
	padding: 0 5px 35px;
}

.banner-description {
	margin: 20px 0 0;
}	

.banner-title {
	padding: 0 15px;
}

.green-border-button div {
	width: 100%;
}

div#course-item-content-header {
	flex-direction: column;
	align-items: flex-start;
    position: relative !important;
    top: 0px!important;
}

#course-item-content-header .lp-button-back {
    display: block !important;
}

#course-item-content-header .course-title {
	margin-top: 10px !important;
}

.header-profil-button,
.learn-press-user-pages #klik-2 {
	display: none;
}

#masthead #klik-2 {
	display: block;
}

#course-item-content-header .form-button.lp-button-back {
	margin-left: 15px;
}

.course-curriculum ul.curriculum-sections .section-header .section-meta .section-progress .progress-bg,
.profile-list-courses-content .learn-press-progress .progress-bg {
	overflow: visible;
}

.course-curriculum ul.curriculum-sections .section-header .section-meta .section-progress {
	overflow: hidden;
}


.learn-press-user-pages .header-profil-button {
	display: block;
} 

div#learn-press-user-profile span.profile-name {
	display: none;
}

.profile-name-mob {
	display: block;
}

.cennik-pink-block>div {
	padding: 30px 10px 30px;
}

.table-row .table-td:first-child {
	width: 33%;
}

.program-lekcji-block {
    padding: 80px 10px;
}

section.cennik-section .table .table-td p {
	display: none;
}

.umow-konsul-content-block.jnhp-grey-block .umow-konsul-content-name {
    padding-right: 0;
    margin-bottom: 15px;
}

div#new-tab {
    width: 350px;
    left: -110px;
}

div#new-tab1 {
    width: 350px;
    left: -230px;
}

div#new-tab1:before {
	left: 83%;
}

div#new-tab2,
div#new-tab3 {
    width: 350px;
    left: -123px;
}

.black-button {
	font-size: 15px;
}

.program-lekcji-block .big-title {
	letter-spacing: 0;
}

.jnhp-umow-content .big-title,
.program-lekcji-black .program-lekcji-block .big-title, .big-title {
	font-size: 42px!important;
    line-height: 1.2!important;
}

.master-name-kursu {
    font-size: 27px; 
    line-height: 1.3;
}

.umow-konsul-content-name-red {
    text-align: center;
}  

.learn-button-course-go {
	flex-direction: column;
} 

.learn-button-course-back a {
	margin-left: 0;
}

#learn-press-course-tabs .course-tab-panel.active {
    width: 90% !important;
    margin: 0 auto;
}

.lp-overlay .modal-content {
	width: 96%;
    margin: 0 2%;
} 

body.course-item-popup #learn-press-content-item {
    overflow: unset !important;
    margin-bottom: 150px;
}

body.course-item-popup #learn-press-content-item .course-item-title {
    width: 100%;
    margin-bottom: 60px;
}

form.complete-quiz.form-button.lp-form {
    float: right;
    position: absolute;
    top: 25px;
    right: auto;
    left: 0;
    padding-left: 0 !important;
}

body.course-item-popup #learn-press-content-item {
    overflow: unset !important;
}

.cennik-block-after-table-button.zaglushka:before {
	min-height: 70px;
}

.red-border-content-photo {
    position: relative;
    top: 0px;
    right: auto;
    min-height: 200px;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.red-border-content-photo {
	margin: 30px 0 0px;
}

.jnhp-mastern-by-tmsys-content,
.umow-konsul-content-block,
.jnhp-kuzdy-kurs-content {
	flex-direction: column;
}

.red-border-content:after,
.red-border-content:hover:before {
	display: none;
}

.jnhp-mastern-by-tmsys-klienty .brends-block {
	width: 50%;
}

.umow-konsul-content-name {
	align-items: center;
}

.umow-konsul-content-image {
	margin-right: 0;
}

.jnhp-mastern-by-tmsys-head-logo {
	flex-direction: column;
}


.jnhp-mastern-by-tmsys-head-logo-text {
	padding: 20px 0 0;
}

.jnhp-mastern-by-tmsys-head-logo img {
	width: 250px !important;
}

.red-line-akcia {
	top: 60px;
}

.black-button div {
	width: 100%;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-after-table-number {
    position: relative;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-after-table-content {
    background: #d4145a;
    padding: 30px 40px 30px 40px;
}

.cennik-block-after-table.pink-block-akcia .cennik-block-white-content {
    max-width: inherit;
    margin-left: 0;
    margin: 0 auto;
}

.checkbox-kurs-page {
	width: 90%;
}

.umow-konsul-content-block #new-tab5, .umow-konsul-content-block div#new-tab4, .umow-konsul-content-block div#new-tab3 {
    left: -39% !important;
    width: 177% !important;
}

.zestawy-page-section-content:before {
	display: none;
}

.zestawy-page-section-content-blocks {
	position: relative;
}

.zestawy-page-section-content-blocks:before {
	content: '';
    background: url(/wp-content/uploads/2022/11/plus.svg) no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 47.5%;
    left: -25px;
}

.page-id-1391 .first-block-section .banner-title {
    font-size: 48px !important;
    line-height: 1.2 !important;
}

.big-white-button a div:before {
	display: none;
}

#main > section.zestawy-page-section.black-section > div > div > div > div:nth-child(1) > div.zestawy-page-section-content-blocks:before {
    content: '';
    background: url(/wp-content/uploads/2022/11/plus.svg) no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 47.5%;
    left: -25px;
}

.fall-mastern-na-prezent-section .jnhp-umow-content-description.text-left {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center !important;
}

.fall-gradient-small-content,
.fall-mastern-na-prezent-section-blocks {
	flex-direction: column;
}

.fall-gradient-small-content-description {
    margin: 20px 0;
}

.fall-mastern-na-prezent {
    width: 100%;
    margin-bottom: 60px;
}

.big-white-border-button-image {
	display: none;
}

.fall-mastern-na-prezent-section .fall-mastern-na-prezent-content,
.jnhp-umow-content {
    padding: 55px 15px 55px;
}

.fall-home-najnowsze-kursy-container.black-section {
    overflow: hidden;
}

.wszystkie-kursy-page-section .master-name-kursu-description ul, .master-name, .wszystkie-kursy-page ul#konsultacje-tag-block, .menu-konsultacje-container ul#konsultacje-tag-block,
.wszystkie-kursy-page ul#konsultacje-tag-block {
	flex-direction: column;
}

.wszystkie-kursy-page ul#konsultacje-tag-block li, .menu-konsultacje-container ul#konsultacje-tag-block li {
    list-style: none;
    height: 50px;
    margin-bottom: 10px;
}

.fall-home-social-media-block-images div {
    width: 48%;
    margin: 5px 1%;
}

.zestawy-page-section-content {
	padding: 60px 30px;
}

.fall-zostan-masterem-section-content,
.zestawy-page-section-content-blocks {
	flex-direction: column;
}

.zestawy-page-content-block {
    width: 100%;
    max-width: 370px;
    position: relative;
    margin-bottom: 25px;
}

.zestawy-page-section-content:before {
	top: 585px;
    left: 0;
    right: 0;
    margin: 0;
}

.zostan-masterem-form-section-content {
	padding: 65px 10px 40px;
	flex-direction: column;
}

.zostan-masterem-form-image {
    width: 100%;
    max-width: 350px;
    margin-left: 0;
} 

.zostan-masterem-form-text {
    margin-left: 0;
    margin-right: 0;
    padding-top: 25px;
    margin-bottom: 15px;
}

.fall-zostan-masterem-block {
    width: 100%;
    max-width: 340px;
    margin-bottom: 25px;
}

.zostan-masterem-form-contform {
    width: 100%;
    max-width: 100%;
}

.jnhp-kursy-od-mastern.wszystkie-kursy-page-section .red-border-content {
	margin: 40px auto;
}

.red-border-content:hover .red-border-content-photo:after {
	position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #101014;
    opacity: 0.6;
    z-index: 4;
    left: 0;
    top: 0;
}

.red-border-master-name {
    margin-right: 50px;
    margin-bottom: 15px;
}

.red-border-content-texts .master-name-red-button {
	margin-bottom: 15px;
}

.najnowsze-kursy-block-tag div {
	max-width: 115px;
    text-align: center;
}

.jnhp-umow-content-description,
.jnhp-umow-content .big-title {
    text-align: center;
}

.fall-home-indywidualna-online .umow-konsul-content-name-white {
    margin-bottom: 5px;
    text-align: center;
}

.umow-konsul-content-kurs-name p {
    text-align: center;
}

.kursy-image-blocks {
	flex-direction: column;
}

.kursy-image-block {
    margin-right: 0;
    margin-bottom: 35px;
}

.content-item-scrollable .fall-gradient-small-section .fall-gradient-small-content {
    padding: 40px 30px 40px 30px;
}



}

@media (max-width: 405px) {

.black-button div {
	width: 100%;
}



 }

@media (max-width: 450px) {

.tag-home-slider-block {
    padding: 55px 15px 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tag-button-white {
    display: flex;
    flex-direction: column;
}

.tag-button-white div {
	margin-bottom: 15px;
}

.tag-home-slider-block-description {
	padding-left: 0;
}

.footer-logo,
.fall-gradient-small-content,
.fall-mastern-na-prezent-section-blocks {
	flex-direction: column;
}

.fall-mastern-na-prezent-section .fall-mastern-na-prezent-content {
	padding: 75px 10px 75px;
}

.fall-mastern-na-prezent-text {
    max-width: 50%;
}

.fall-mastern-na-prezent-kurs-name {
    font-size: 18px;
    max-width: 100%;
    line-height: 1.3;
}

.big-white-border-button-image {
	display: none;
}

.fall-gradient-small-content {
	padding: 40px;
}

.fall-gradient-small-content-description {
    margin: 20px 0;
}

.fall-home-social-media-block-images div {
    width: 48% !important;
    margin: 1% !important;
}

.footer-logo div {
	margin-top: 15px;
}



.fall-home-swiper-one.swiper-container-horizontal .swiper-slide {
    max-width: 100%;
    width: auto;
    height: 100%;
    display: flex;
}

.fall-mastern-na-prezent {
    width: 100%;
    margin-bottom: 60px;
}

.new-tab {
	width: 250px !important;
}

.fall-home-najnowsze-kursy-container.black-section {
    overflow: hidden;
}
/*
.mc-carousel__peek--after {
	display: none !important;
}
*/
section.jnhp-kursy-od-mastern.wszystkie-kursy-page-section.black-section {
    padding: 0 10px;
}

.red-border-content:hover .red-border-content-photo:after {
	position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #101014;
    opacity: .6;
    z-index: 4;
    left: 0;
    top: 0;
}

.wszystkie-kursy-page-section .master-name-kursu-description ul,
.master-name,
.wszystkie-kursy-page ul#konsultacje-tag-block,
.menu-konsultacje-container ul#konsultacje-tag-block {
	flex-direction: column;
}

.wszystkie-kursy-page ul#konsultacje-tag-block li,
.menu-konsultacje-container ul#konsultacje-tag-block li {
    list-style: none;
    height: 50px;
    margin-bottom: 10px;
}

.master-name .najnowsze-kursy-block-tag {
    display: flex;
    margin: 10px 0;
} 

.red-border-content {
    padding: 15px 15px 35px!important;
    width: 98%;
    margin: 0 0 30px;
}

.red-border-content-texts .master-name-red-button {
    margin-right: 10px;
    margin-left: 0;
    margin-top: 10px;
}

section.fall-gradient-small-section.new-gs-gradient-section .fall-gradient-small-content {
	flex-direction: column;
    padding: 30px 20px 30px 20px;
}

section.fall-gradient-small-section.new-gs-gradient-section:after {
	display: none;
}

section.fall-gradient-small-section.new-gs-gradient-section .konsultacje-tag-block a.active-sub-link {
	background: #067776;
}

section.fall-gradient-small-section.new-gs-gradient-section .fall-gradient-small-content-description {
    max-width: 225px;
    margin: 15px 10px;
}

.program-lekcji-black .program-lekcji-block .big-title {
	font-size: 32px !important;	
}


}

