/*!
Theme Name: pimp-my-office
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pimp-my-office
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 with others.

pimp-my-office is based on Underscores https://underscores.me/, (C) 2012-2017 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:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

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

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	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;
	font-size: 15px;
	font-size: 0.9375rem;
}

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

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: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# 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);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .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%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

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

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

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

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

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

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

.main-navigation li {
	float: left;
	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: block;
	}
}

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

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# 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; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

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

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

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

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

.hentry {
	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;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# 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 embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

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

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

.site-header {
	background: #fff200;
	/* height: 160px; */
	height: 129px;
	width: 100%;
	z-index: 9999;
	top: 0;
	position: fixed;
	-webkit-box-shadow: 1px 1px 4px 0 #000000;
	box-shadow: 1px 1px 4px 0 #000000;
}

div#content {
	margin-top: 129px;
}

.header-left, .header-right {
	width: 20%;
	float: left;
}

.header-center {
	width: 60%;
	float: left;
}

.header-left {
	/*padding: 25px 25px 25px 65px;*/
	padding: 25px 25px 25px 78px;

}

.main-navigation a {
	font-family: Georgia;
	color:  #58585a;
	/*font-size: 24px;*/
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.6px;
	/*line-height: 64px;*/
	text-align: center;

	font-size: 19px;

	line-height: 33px;


}

img.custom-logo {
	width: 80px;
}


ul#primary-menu li a:after {
    content: "/";
    padding: 0px 15px;
}

ul#primary-menu li:last-child a:after {
	display: none;
}

.main-navigation ul {
    display: block;
    margin: 0 auto;
    /*width: 600px;*/
	width: 500px;
    padding: 50px 0px;
}

p.lang {
    /*background: #fff;*/
    /*display: inline-block;*/
    /*padding: 9px 12px;*/
    /*border-radius: 50%;*/
    /*width: 55px;*/
    /*height: 55px;*/
    /*font-family: Georgia;*/
    /*color: #58585a;*/
    /*font-size: 24px;*/
    /*font-weight: 700;*/
    /*font-style: italic;*/
    /*letter-spacing: 0.6px;*/
    /*text-align: center;*/

	background: #fff;
	display: inline-block;
	padding: 9px 12px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	font-family: Georgia;
	color: #58585a;
	font-size: 19px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.6px;
	/* line-height: 12px; */
	text-align: center;


}

p.lang {
    /*margin: 52px 25px;*/
	margin: 44px 25px;
    display: inline-block;
    float: left;
}

.header-right img {
	margin: 43px 0;
	width: 49px;
}


.circle {
	width: 993px;
	/*width: 1126px;*/
	/*width: 795px;*/
	margin: 0 auto;
	display: block;
	padding-top: 20px;
}

.circle2 {
	position: relative;
	height:1000px;
	/*background-size: contain;*/
	background-size: 736px;
	background-repeat: no-repeat;
	background-position: 50%;
	background-color: #FFF200;
	position: relative;
	z-index: 99; margin-top: -446px;
	width: 1140px;
}

.slogan {
	font-family: Georgia;
	color:  #58585a;
	font-size: 48px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 1.5px;
	line-height: 64px;
	text-align: center;
	display: block;
	margin: 0;
	/*padding-top: 178px;*/
	padding-top: 100px;



}

.slogan2 {
	font-family: Georgia;
	color:  #58585a;
	font-size: 29px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.9px;
	line-height: 64px;
	text-align: center;
	display: block;
	padding-top: 128px;
	padding-bottom: 78px;
}

.site-footer {
	background: #57585b;
}

.site-footer .left, .site-footer .right {
	padding-top: 50px;
	padding-bottom: 50px;
	width:50%;
	float: left;
}

.site-footer .left {
	padding-right: 25px;
}

.site-footer .right{
	padding-left: 25px;
}

.site-footer p {
	font-family: Nunito;
	color:  #ffffff;
	font-size: 14px;/* Przybliżenie (wynika z podstawienia czcionki) */
	line-height: 17px;/* Przybliżenie (wynika z podstawienia czcionki) */
	text-align: left;
	margin: 0;
}

.site-footer p:first-child {
	min-height: 55px;
}


.know-how {
	padding-top: 50px;
}

.know-how .left   {
	width:20%;
	float: left;
}
.know-how .right  {
	width:20%;
	float: left;
}

.know-how .center {
	width:60%;
	float: left;
}
	

.know-how .center h2 {
	font-family: Georgia;
	color:  #58585a;
	font-size: 38px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.95px;
	line-height: 41px;
	text-align: center;
    max-width: 370px;
    margin: 0 auto;
}

.know-how .bottom {
	width: 100%;
	margin-top: 200px;
	margin-bottom: 30px;
}

.know-how .left p , .know-how .right p {
	font-family: Nunito;
	color:  #58585a;
	font-size: 12px;/* Przybliżenie (wynika z podstawienia czcionki) */
	line-height: 15px;/* Przybliżenie (wynika z podstawienia czcionki) */
	text-align: left;
	position: relative;
	min-height: 29px;
}


.know-how .left h2, .know-how .right h2 {
	/*font-family: Nunito;*/
	/*color: #58585a;*/
	/*font-size: 24px;*/
	/*line-height: 20px;*/
	/*text-align: left;*/
	/*text-transform: uppercase;*/
	/*position: relative;*/
	/*font-weight: bold;*/
	/*width: 100%;*/
	/*display: inline;*/


	font-family: Nunito;
	color: #58585a;
	font-size: 24px;
	line-height: 20px;
	text-align: left;
	text-transform: uppercase;
	position: relative;
	font-weight: bold;
	padding-bottom: 20px;
	margin-bottom: 20px;
	display: inline-block;
}

.know-how {
    max-width: 1176px;
    margin: 0 auto;
    background-repeat: no-repeat !important;
    min-height: 700px;
        background-position: 0px 200px !important;
}

.know-how .bottom:after {
	content: "";
	clear:both;
}


.know-how {
	counter-reset: my-badass-counter;
}

.know-how p:before {
	content: counter(my-badass-counter);
	counter-increment: my-badass-counter;
	position: absolute;
	left: -40px;
	top: -6px;
	font-family: Nunito;
	color: #ffffff;
	font-size: 17px;
	line-height: 20px;
	border-radius: 50%;
	background-color: #58595b;
	width: 29px;
	padding: 5px 0px;
	height: 29px;
	text-align: center;
}

.know-how .left h2:after,
.know-how .right h2:after
{
	content: "---------------------------------";
	width: 100%;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	left: 0px;
	bottom: -10px;
	font-weight: 300;
}

.person {
	width: 33%;
	float: left;
}

.person img, .person h2, .person p {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.know-how .bottom::after {
	clear: both;
	content: "";
	display: block;
}


.person h2 {
	font-family: Nunito;
	color: #58585a;
	font-size: 22px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	margin-top: 20px;
}

/*contact form 7*/

form.wpcf7-form p:nth-of-type(1) {
	width: 191px;
	float: left;
	display: inline-block;
	margin-right: 80px;
}

form.wpcf7-form p:nth-of-type(2) {
	width: 191px;
	float: left;
	display: inline-block;

}

form.wpcf7-form p:nth-of-type(3) {
	width: 191px;
	float: left;
	display: inline-block;
	margin-right: 80px;
	margin-bottom: 15px;
}

form.wpcf7-form p:nth-of-type(4) {
	width: 191px;
	float: left;
	display: inline-block;
	margin-bottom: 15px;
}

form.wpcf7-form p:nth-of-type(3):before {
	content: '';
	clear: both;
	display: block;
}

span.wpcf7-list-item {
	padding-top: 10px;
}



form.wpcf7-form p:nth-of-type(1) *,
form.wpcf7-form p:nth-of-type(2) *,
form.wpcf7-form p:nth-of-type(3) *,
form.wpcf7-form p:nth-of-type(4) *
{
	width: 100%;
}

form.wpcf7-form {
	width: 464px;
	margin:0 auto;
}

.contact {
	background: #fff200;
	padding-top: 20px;
	padding-bottom: 20px;
}

form.wpcf7-form p {
	margin-bottom: 0;
	margin-top: 0;
}

.contact h2 {
	font-family: Georgia;
	color: #6b6b6b;
	font-size: 30px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.75px;
	margin-bottom: 0;
	text-align: center;
}

form.wpcf7-form input {
	border: none;
	padding-left: 10px;
	border-radius: 0;
}

span.wpcf7-form-control-wrap.checkbox-128 {
	font-family: Nunito;
	color: #6b6b6b;
	font-size: 12px;
	line-height: 14px;
	text-align: left;
}


input.wpcf7-form-control.wpcf7-submit {
	font-family: Georgia;
	color: #fff200;
	font-size: 24px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.6px;
	margin: 0 auto;
	background-color: #58595b;
	text-align: center;
	width: 100%;
	padding: 12px;
	margin-top: 20px;
}


/*.wpcf7-form-control-wrap.checkbox-161 span.wpcf7-list-item.first {*/
	/*background: url(http://me0nk0en.webd.pl/pimp-my-office/wp-content/themes/pimp-my-office/img/mail.png);*/
	/*background-repeat: no-repeat;*/
	/*background-size: contain;*/
	/*width: 32px;*/
	/*height: 32px;*/
	/*margin-right: 30px;*/
/*}*/

.wpcf7-form-control-wrap.checkbox-161 span.wpcf7-list-item.first {
	background: url(http://me0nk0en.webd.pl/pimp-my-office/wp-content/themes/pimp-my-office/img/mail2.png) #fff;
	background-repeat: no-repeat;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	margin-right: 30px;
	background-size: 20px;
	background-position: 6px;
}




/*.wpcf7-form-control-wrap.checkbox-161 span.wpcf7-list-item.last {*/
	/*background: url(http://me0nk0en.webd.pl/pimp-my-office/wp-content/themes/pimp-my-office/img/tel.png);*/
	/*background-repeat: no-repeat;*/
	/*background-size: contain;*/
	/*width: 32px;*/
	/*height: 32px;*/
/*}*/

.wpcf7-form-control-wrap.checkbox-161 span.wpcf7-list-item.last {
	background: url(http://me0nk0en.webd.pl/pimp-my-office/wp-content/themes/pimp-my-office/img/phone2.png) #fff;
	background-repeat: no-repeat;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	margin-right: 30px;
	background-size: 20px;
	background-position: 6px;
}

.wpcf7-form-control-wrap.checkbox-161 input {
	border: none;
	padding-left: 10px;
	border-radius: 0;
	width: 32px;
	height: 32px;
	opacity: 0;
}

span.wpcf7-form-control-wrap.checkbox-161 .wpcf7-list-item-label {
	display: none;
}

.wpcf7-form-control-wrap.checkbox-161 span.wpcf7-list-item.first:after {
	content: "czy";
	display: inline-block;
	float: left;
	position: relative;
	/*top: -31px;*/
	top: -41px;

	left: 43px;
	font-family: Georgia;
	color: #6b6b6b;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.3px;
	text-align: center;
}


span.wpcf7-form-control-wrap.checkbox-161:before {
	content: "Preferowana forma kontaktu:";
	display: inline-block;
	float: left;
	font-family: Georgia;
	color: #6b6b6b;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.3px;
	text-align: center;
	position: relative;
	left: 0;
	top: 9px;
	margin-right: 57px;
}


.wrapper {
	max-width: 1140px;
	margin: 0 auto;
	width: 1140px;
}


div#cookie-law-info-bar span {
	display: block;
	/*max-width: 1140px;*/
	max-width: 1176px;
	margin: 0 auto;
	text-align: justify;
	padding: 50px 420px 50px 250px;
	position: relative;
}


div#cookie-law-info-bar span:after {
	content: "";
	width: 101px;
	height: 141px;
	display: block;
	background: url(img/cookie-person.png);
	position: absolute;
	right: 250px;
	top: 25px;
}

#cookie-law-info-bar {
	background-color: rgba(88, 89, 91, 0.85) !important;
	z-index: 999999999999 !important;
}


a#cookie_action_close_header {
	display: block;
	width: 10px;
	background: url(img/x.png);
	height: 10px;
	border-radius: 0px;
	padding: 0;
	background-color: transparent;
	position: absolute;
	right: 250px;
	top: 0px;
}

.circle_1 {
	position: relative;
}


.circle_1 p {
	 position: absolute;
	 font-family: Nunito;
	 color:  #58585a;
	 font-size: 16px;
	 line-height: 18px;
	 text-align: left;
	 overflow: hidden;
 }
.circle_1 p.circle_1_text_1 {
	top: 401px;
	left: 11px;
	width: 173px;
	text-align: right;
	max-height: 90px;
	background: #fff;
}
.circle_1 p.circle_1_text_2 {
	top: 154px;
	left: 117px;
	width: 163px;
	text-align: right;
	max-height: 86px;
	background: #fff;
}
.circle_1 p.circle_1_text_3 {
	top: -8px;
	left: 340px;
	width: 170px;
	text-align: right;
	max-height: 86px;
	background: #fff;
}
.circle_1 p.circle_1_text_4 {
	top: -1px;
	left: 630px;
	width: 123px;
	max-height: 86px;
	background: #fff;
	text-align: left;
}
.circle_1 p.circle_1_text_5 {
	top: 162px;
	left: 876px;
	width: 123px;
	max-height: 86px;
	background: #fff;
	text-align: left;
}
.circle_1 p.circle_1_text_6 {
	top: 408px;
	left: 982px;
	width: 138px;
	max-height: 86px;
	background: #fff;
	text-align: left;
}









.circle2 p {
	position: absolute;
	font-family: Nunito;
	color:  #58585a;
	font-size: 16px;
	line-height: 18px;
	text-align: left;
	/*overflow: hidden;*/
}
.circle2 p.circle_2_text_1 {
	top: 108px;
	left: 464px;
	width: 213px;
	text-align: center;
	max-height: 90px;
	background-color: #FFF300;
}
.circle2 p.circle_2_text_2 {
	top: 297px;
	left: 860px;
	width: 135px;
	text-align: left;
	max-height: 90px;
	background-color: #FFF300;
}
.circle2 p.circle_2_text_3 {
	top: 523px;
	left: 895px;
	width: 170px;
	text-align: left;
	max-height: 90px;
	background-color: #FFF300;
}
.circle2 p.circle_2_text_4 {
	top: 783px;
	left: 665px;
	width: 170px;
	text-align: left;
	max-height: 90px;
	background-color: #FFF300;
}
.circle2 p.circle_2_text_5 {
	top: 790px;
	left: 297px;
	width: 170px;
	text-align: right;
	max-height: 90px;
	background-color: #FFF300;
}
.circle2 p.circle_2_text_6 {
	top: 519px;
	left: 77px;
	width: 170px;
	text-align: right;
	max-height: 90px;
	background-color: #FFF300;
}


.circle2 p.circle_2_text_7 {
	top: 283px;
	left: 122px;
	width: 170px;
	text-align: right;
	max-height: 90px;
	background-color: #FFF300;
}

.circle2 p.circle_2_text_1:before {
	content: '';
	width: 108px;
	height: 108px;
	display: block;
	position: absolute;
	top: 77px;
	left: 52px;
	background-image: url(img/circle_2_1.png);
}
.circle2 p.circle_2_text_2:before {
	content: '';
	width: 108px;
	height: 108px;
	display: block;
	position: absolute;
	top: -19px;
	left: -137px;
	background-image: url(img/circle_2_2.png);
}

.circle2 p.circle_2_text_3:before {
	content: '';
	width: 107px;
	height: 107px;
	display: block;
	position: absolute;
	top: -26px;
	left: -133px;
	background-image: url(img/circle_2_3.png);
}

.circle2 p.circle_2_text_4:before {
	 content: '';
	 width: 107px;
	 height: 107px;
	 display: block;
	 position: absolute;
	 top: -120px;
	 left: -50px;
	 background-image: url(img/circle_2_4.png);
 }


.circle2 p.circle_2_text_5:before {
	content: '';
	width: 107px;
	height: 107px;
	display: block;
	position: absolute;
	top: -128px;
	left: 115px;
	background-image: url(img/circle_2_5.png);
}

.circle2 p.circle_2_text_6:before {
	content: '';
	width: 107px;
	height: 107px;
	display: block;
	position: absolute;
	top: -22px;
	left: 195px;
	background-image: url(img/circle_2_6.png);

}


.circle2 p.circle_2_text_7:before {
	content: '';
	width: 107px;
	height: 107px;
	display: block;
	position: absolute;
	top: -8px;
	left: 195px;
	background-image: url(img/circle_2_7.png);
}

.slogan3 {
	position: absolute;
	top: calc(50% - 15px);
	left: 50%;
	transform: translate(-50% , -50%);
	font-family: Georgia;
	color: #58585a;
	font-size: 48px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: -1px;
	line-height: 50px;
	text-align: center;
	display: block;
	margin: 0;
	width: 330px;
}

.site-main {
	background: url('img/BG.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% -200px;
}

.circle2bg {
	background-color: #FFF200;
}

.person p:before {
	display: none;
}



*, *:active, *:focus {
	outline:0 !important;
}

.widget.widget_newsletterwidget h2 {
	font-family: Georgia;
	color: #58595b;
	font-size: 20px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0px;
	line-height: 25px;
	text-align: left;
}

.widget.widget_newsletterwidget p:nth-of-type(1) {
	font-family: Georgia;
	color: #58595b;
	font-size: 16px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.4px;
	line-height: 20px;
	text-align: left;
	margin-top: 35px;
}


.widget.widget_newsletterwidget label {
	display: none;
}


.widget.widget_newsletterwidget {
	width: 478px;
	position: fixed;
	height: 273px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #fff200;
	padding: 20px;
	padding-right: 150px;
	background-image: url(img/newsletter.png);
	background-position: right 6px bottom 0px;
	background-repeat: no-repeat;
	-webkit-box-shadow: 1px 1px 4px 0 #000000;
	box-shadow: 1px 1px 4px 0 #000000;
	z-index: 999999;
	display: none;
}

.widget.widget_newsletterwidget span {
	background-image: url(img/newsletter_x.png);
	height: 15px;
	width: 15px;
	display: block;
	position: absolute;
	right: 5px;
	background-size: 100%;
	top: 5px;
}

.seen {
	display: none !important;
}


span.wpcf7-list-item.first.active, span.wpcf7-list-item.last.active {
	/*filter: grayscale(100%) !important;*/
	filter: invert(70%) !important;
}





@media (max-width: 768px) {

	.widget.widget_newsletterwidget h2 {
		text-align: center;
		font-size: 13.94px;
	}

	.widget.widget_newsletterwidget {
		width: 80%;
		height: 489px;
		padding-right: 20px;
		background-position: center 85px;
		border: 2px solid #fff;
		background-size: 71px 128px;
		height: 409px;
	}

	.widget.widget_newsletterwidget p:nth-of-type(1) {
		margin-top: 164px !important;
		text-align: center;
		font-size: 13.94px;
	}

	.main-navigation li {
		float: none;
	}

	button.menu-toggle {
		position: absolute;
		right: 15px;
		top: 51px;
	}

	ul#primary-menu li a:after {
		display: none;
	}


	.main-navigation a {
		color: #fff300;
	}



	.mobile-menu-icon {
		background: url(img/menu-mobile.png);
		width: 26px;
		height: 17px;
		display: block;
		background-size: 26px 17px;
		background-position: center;
	}

	.menu-toggle, .main-navigation.toggled ul {
		display: block;
		background: none;
		border: none;
	}

	ul#primary-menu[aria-expanded="true"] {
		display: block;
	}

	nav#site-navigation {
		position: fixed;
		width: 100%;
		margin: 0 auto;
		background: rgba(0, 0, 0, 0.6588235294117647) !important;
		float: none;
		z-index: 999999999999999 !important;
	}


	.header-center {
		width: 100%;
		float: none;
		position: absolute;
		left: 0;
		right: 0;
	}

	button:active, button:focus,span.mobile-menu-icon:active, span.mobile-menu-icon:focus {
		border:none !important;
	}



	.site-main {
		background: url('img/BG_MOBILE.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: 0px 25px;

	}

	.circle2bg {
		background-color: #fff;
	}


	.wrapper {
		width:360px;
	}

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

	#primary-menu {
		display: none;
	}

	.circle_1 {
		display: none;
	}

	.header-left {
		padding: 25px 0px 25px 0px;
		/*width: 50%;*/
	}

	.header-left {
		padding-left: 20px;
		width: 40%;
		float: left;
	}

	.header-right {
		width: 60%;
		float: right;
		margin-right: 0px;
	}

	.main-navigation.toggled button {
		filter: invert(100%);
		-webkit-filter: invert(100%);
	}

	.header-center {
		/*display: none;*/
	}

	.slogan {
		line-height: 36px;
		font-size: 30px;
		/*font-weight: 700;*/
		/*font-style: italic;*/
		/*letter-spacing: 0.75px;*/
		/*line-height: 36px;*/
		/*text-align: center;*/
		padding-top: 115px;
		padding-bottom: 93px;
	}

	.slogan2 {
		font-family: Georgia;
		color:  #58585a;
		font-size: 22px;
		font-weight: 700;
		font-style: italic;
		letter-spacing: 0.55px;
		line-height: 28px;
		text-align: center;
		padding: 25px 0;
		background-color: #fff300;
	}



	.circle2 {
		margin-top: 0;
		background: none !important;
		width:100%;
		height:auto !important;
		position: relative;
	}

	.circle2 p {
		position: relative;
		top: 0 !important;
		left: 0 !important;
		text-align: left !important;
		display: inline-block;
		/*margin-bottom: 50px !important;*/
		width: 100% !important;
		padding-left: 150px;
		float: none !important;
		/* max-height: none !important; */
		margin: 0;
		padding-top: 80px;
		padding-bottom: 80px;
	}


	.circle2 p:before {
		top: 52px !important;
		left: 20px !important;
		position: absolute !important;
		float: none !important;
	}

	.circle2 p.circle_2_text_1 {
		margin-top: 100px;
	}


	p.circle_2_text_1 {
		background-color: #fff !important;
	}

	p.circle_2_text_2 {
		background-color: #fff !important;
	}

	p.circle_2_text_3 {
		background-color: #fff !important;
	}

	p.circle_2_text_4 {
		background-color: #fff !important;
	}

	p.circle_2_text_5 {
		background-color: #fff !important;
	}

	p.circle_2_text_6 {
		background-color: #fff !important;
	}

	p.circle_2_text_7 {
		background-color: #fff !important;
	}


	.slogan3 {
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(0);

		font-size: 30px;
		font-weight: 700;
		font-style: italic;
		letter-spacing: 0.75px;
		line-height: 36px;
		text-align: center;
	}

	.know-how {
		background-color: #fff300 !important;
		margin-top: 50px;
		width: 360px;
		position: relative;
		background-image: none !important;
	}


	.know-how .center {
		width:100% !important;
	}

	.know-how .center {
		position: absolute;
		top:43px;


	}

	.know-how .center h2 {
		font-size: 30px !important;
		font-weight: 700 !important;
		font-style: italic !important;
		letter-spacing: 0.75px !important;
		line-height: 36px !important;
		text-align: center !important;
		width: 86%;
	}


	.know-how .left {
		position: relative;
		top: 143px;
		width: 60% !important;
		margin: 0 auto;
		float: none;
	}

	.know-how .right {
		width: 60% !important;
		margin: 0 auto;
		float: none;
		position: relative;
		top: 140px;
		padding-bottom: 163px;
	}

	.know-how .bottom {
		display: none;
	}


	.contact {
		background: #fff !important;
	}



	form.wpcf7-form p:nth-of-type(1) {
		float:none !important;
		margin: 0 auto !important;
		display: block;
	}

	form.wpcf7-form p:nth-of-type(2) {
		float:none !important;
		margin: 0 auto !important;
		display: block;
	}

	form.wpcf7-form p:nth-of-type(3) {
		float:none !important;
		margin: 0 auto !important;
		display: block;
	}

	form.wpcf7-form p:nth-of-type(4) {
		float:none !important;
		margin: 0 auto !important;
		display: block;
	}

	form.wpcf7-form {
		width: 360px;
	}

	form.wpcf7-form p:nth-of-type(1) *, form.wpcf7-form p:nth-of-type(2) *, form.wpcf7-form p:nth-of-type(3) *, form.wpcf7-form p:nth-of-type(4) * {
		width: 100%;
		background: #575656;
		color: #fff !important;
	}

	span.wpcf7-form-control-wrap.checkbox-161:before {
		content: "Preferowana forma kontaktu:";
		display: block;
		float: none;
		font-family: Georgia;
		color: #6b6b6b;
		font-size: 12px;
		font-weight: 700;
		font-style: italic;
		letter-spacing: 0.3px;
		text-align: center;
		position: static;
		left: 0;
		top: 0;
		margin-right: 57px;
		display: block;
		margin: 20px 0;
	}

	span.wpcf7-form-control.wpcf7-checkbox.wpcf7-exclusive-checkbox {
		margin: 0 auto;
		display: block;
		width: 140px;
	}


	input.wpcf7-form-control.wpcf7-submit {
		color:  #575656;
		font-size: 20px;
		background-color: #fff200 !important;
	}

	footer {
		width: 360px;
		margin: 0 auto;
	}

	.site-footer .left, .site-footer .right {
		width:100%;
		float: none;
		padding: 25px;
	}

	div#cookie-law-info-bar span {
		padding: 150px 36px 36px 36px !important;
	}

	div#cookie-law-info-bar span:after {
		top: 5px;
		left: 36px;
	}

	a#cookie_action_close_header {
		right: 0px !important;
		top: 5px;
	}


	.site-header {
		min-width: 360px;
		width: 100%;
	}

	.header-left {
		padding-left: 20px;
		width: 40%;
		float: left;
	}


	div#korzysci {
		top: -110px !important;
	}

	div#formularz {
		top: -120px !important;
	}

	div#know-how {
		top: -140px !important;
	}

	div#wpcf7-f20-o1 {
		margin-top: 25px;
	}


}


/*@media (max-width: 768px)*/