/*

Theme Name: ZAPOL

Theme URI: http://agencjadcs.pl/

Author: Agencja DCS

Author URI: http://agencjadcs.pl/

Description: Theme called <code>DCS2</code>, build on <code>Underscores</code> theme.

Version: 1.0.0

License: GNU General Public License v2 or later

License URI: http://www.gnu.org/licenses/gpl-2.0.html

Text Domain: _s

Tags:



Underscores theme,, like WordPress, is licensed under the GPL.

Use it to make something cool, have fun, and share what you've learned with others.



_s is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.



Resetting and rebuilding styles have been helped along thanks to the fine work of

Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html

along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/

and Blueprint http://www.blueprintcss.org/

*/



/*

#f29400 - pomarańczowy

#58585a - tekst

*/



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

>>> TABLE OF CONTENTS:

----------------------------------------------------------------

1.0 Reset

2.0 Typography

3.0 Elements

4.0 Forms

5.0 Navigation

	5.1 Links

	5.2 Menus

6.0 Accessibility

7.0 Alignments

8.0 Clearings

9.0 Widgets

10.0 Content

	10.1 Posts and pages

	10.2 Asides

	10.3 Comments

11.0 Infinite scroll

12.0 Media

	12.1 Captions

	12.2 Galleries

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



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

1.0 Reset

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

html, body, div, span, applet, object, iframe,

h1, h2, h3, h4, h5, h6, p, blockquote, pre,

a, abbr, acronym, address, big, cite, code,

del, dfn, em, font, ins, kbd, q, s, samp,

small, strike, strong, sub, sup, tt, var,

dl, dt, dd, ol, ul, li,

fieldset, form, label, legend,

table, caption, tbody, tfoot, thead, tr, th, td {

	border: 0;

	font-family: inherit;

	font-size: 100%;

	font-style: inherit;

	font-weight: inherit;

	margin: 0;

	outline: 0;

	padding: 0;

	vertical-align: baseline;

}



html {

	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */

	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */

	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */

	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */

	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */

}

*,

*:before,

*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://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. */

}



article,

aside,

details,

figcaption,

figure,

footer,

header,

main,

nav,

section {

	display: block;

}



ol,

ul {

	list-style: none;

}



table { /* tables still need 'cellspacing="0"' in the markup */

	border-collapse: separate;

	border-spacing: 0;

}



caption,

th,

td {

	font-weight: normal;

	text-align: left;

}

blockquote:before,

blockquote:after,

q:before,

q:after {

	content: "";

}



blockquote,

q {

	quotes: "" "";

}



a:focus {

	/*outline: thin dotted;*/

	outline: none;

}



a:hover,

a:active {

	outline: 0;

}



a img {

	border: 0;

}



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

2.0 Typography

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

body,

button,

input,

select,

textarea {

	color: #58585a;

	font-family: 'Open Sans', sans-serif;

	font-size: 16px;

	font-size: 1.6rem;

	line-height: 1.5;

}



h1,

h2,

h3,

h4,

h5,

h6 {

	clear: both;

}



p {

	margin-bottom: 1.5em;

}



b,

strong {

	font-weight: bold;

}



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: 1.5rem;

	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: 1.5rem;

}



abbr,

acronym {

	border-bottom: 1px dotted #666;

	cursor: help;

}



mark,

ins {

	background: #fff9c0;

	text-decoration: none;

}



sup,

sub {

	font-size: 75%;

	height: 0;

	line-height: 0;

	position: relative;

	vertical-align: baseline;

}



sup {

	bottom: 1ex;

}



sub {

	top: .5ex;

}



small {

	font-size: 75%;

}



big {

	font-size: 125%;

}



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

3.0 Elements

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

hr {

	background-color: #ccc;

	border: 0;

	height: 1px;

	margin-bottom: 1.5em;

}



ul,

ol {

	margin: 0 0 1.5em 3em;

}



ul {

	list-style: disc;

}



ol {

	list-style: decimal;

}



li > ul,

li > ol {

	margin-bottom: 0;

	margin-left: 1.5em;

}



dt {

	font-weight: 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: 0;

}



table {

	margin: 0 0 1.5em;

	width: 100%;

}



th {

	font-weight: bold;

}



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

4.0 Forms

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

button,

input,

select,

textarea {

	font-size: 100%; /* Corrects font size not being inherited in all browsers */

	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */

	vertical-align: baseline; /* Improves appearance and consistency in all browsers */

}



button,

input[type="button"],

input[type="reset"],

input[type="submit"] {

	border: 1px solid;

	border-color: #ccc #ccc #bbb;

	border-radius: 3px;

	background: #e6e6e6;

	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);

	color: rgba(0, 0, 0, .8);

	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */

	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */

	font-size: 12px;

	font-size: 1.2rem;

	line-height: 1;

	padding: .6em 1em .4em;

	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);

}



button:hover,

input[type="button"]:hover,

input[type="reset"]:hover,

input[type="submit"]:hover {

	border-color: #ccc #bbb #aaa;

	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);

}



button:focus,

input[type="button"]:focus,

input[type="reset"]:focus,

input[type="submit"]:focus,

button:active,

input[type="button"]:active,

input[type="reset"]:active,

input[type="submit"]:active {

	border-color: #aaa #bbb #bbb;

	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);

}



input[type="checkbox"],

input[type="radio"] {

	padding: 0; /* Addresses excess padding in IE8/9 */

}



input[type="search"] {

	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */

	box-sizing: content-box;

}



input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */

	-webkit-appearance: none;

}



input[type="text"],

input[type="email"],

input[type="url"],

input[type="password"],

input[type="search"],

textarea {

	color: #666;

	border: 1px solid #ccc;

	border-radius: 3px;

}



input[type="text"]:focus,

input[type="email"]:focus,

input[type="url"]:focus,

input[type="password"]:focus,

input[type="search"]:focus,

textarea:focus {

	color: #111;

}



input[type="text"],

input[type="email"],

input[type="url"],

input[type="password"],

input[type="search"] {

	padding: 3px;

}



textarea {

	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */

	padding-left: 3px;

	vertical-align: top; /* Improves readability and alignment in all browsers */

	width: 100%;

}



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

5.0 Navigation

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

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

5.1 Links

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

a {

	color: #f29400;

	font-weight: bold;

	text-decoration: none;

}



a:visited {

	color: #f29400;

}



a:hover,

a:focus,

a:active {

	color: #000000;

}



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

5.2 Menus

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

.main-navigation {

	clear: both;

	display: block;

	float: left;

	width: 100%;

}



.main-navigation ul {

	list-style: none;

	margin: 0;

	padding-left: 0;

}



.main-navigation li {

	float: left;

	position: relative;

}



.main-navigation a {

	display: block;

	text-decoration: none;

}



.main-navigation ul ul {

	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);

	float: left;

	position: absolute;

	top: 1.5em;

	left: -999em;

	z-index: 99999;

}



.main-navigation ul ul ul {

	left: -999em;

	top: 0;

}



.main-navigation ul ul a {

	width: 200px;

}



.main-navigation ul ul li {



}



.main-navigation li:hover > a {

}



.main-navigation ul ul :hover > a {

}



.main-navigation ul ul a:hover {

}



.main-navigation ul li:hover > ul {

	left: auto;

}



.main-navigation ul ul li:hover > ul {

	left: 100%;

}



.main-navigation .current_page_item > a,

.main-navigation .current-menu-item > a,

.main-navigation .current_page_ancestor > a {

}



/* Small menu */

.menu-toggle {

	display: none;

}



@media screen and (max-width: 600px) {

	.menu-toggle,

	.main-navigation.toggled .nav-menu {

		display: block;

	}



	.main-navigation ul {

		display: none;

	}

}



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

}



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

6.0 Accessibility

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

/* Text meant only for screen readers */

.screen-reader-text {

	clip: rect(1px, 1px, 1px, 1px);

	position: absolute !important;

	height: 1px;

	width: 1px;

	overflow: hidden;

}



.screen-reader-text:hover,

.screen-reader-text:active,

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

	color: #21759b;

	display: block;

	font-size: 14px;

	font-size: 1.4rem;

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

}



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

7.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: 0 auto;

}



.textleft {

	text-align: left;

}



.textright {

	text-align: right;

}



.textcenter {

	text-align: center;

}



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

8.0 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;

}



.clear:after,

.entry-content:after,

.comment-content:after,

.site-header:after,

.site-content:after,

.site-footer:after {

	clear: both;

}



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

9.0 Widgets

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

.widget {

	margin: 0 0 1.5em;

}



/* Make sure select elements fit in widgets */

.widget select {

	max-width: 100%;

}



/* Search widget */

.widget_search .search-submit {

	display: none;

}



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

9.1 Widgets in MENU

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



.top-widgets {

	margin: 0 auto;

	margin-top: 5rem;

	margin-left: -20px;

	overflow: hidden;

	clear: both;

}



.top-widgets.second {

	margin-bottom: 10rem;

}



.top-widgets .widget-title,

.top-widgets .widget a:hover,

.top-widgets .widget a:focus {

    border-color: #fff;

    border-color: hsl(0, 0%, 100%);

}



.top-widgets .widget {

    color: #ffffff;

    width: 33.3%;

	float: left;

	padding-left: 20px;

	-webkit-box-sizing: border-box;

	-moz-box-sizing: border-box;

	box-sizing: border-box;

}



.top-widgets .widget h1 {

	font-size: 40px;

	font-size: 4rem;

	color: rgba(250,250,250,1);

	padding-bottom: 0.5rem;

	margin-bottom: 2rem;

	border-bottom: 3px solid rgba(250,250,250,0.2);

}



.top-widgets .widget h1 a {

	color: #ffffff;

}



.top-widgets .widget h1 a:hover {

	color: #58585a;

}



.top-widgets .widget p {

	font-size: 16px;

	font-size: 1.6rem;

	color: #ffffff;

}



.top-widgets .widget ul {

	margin: 0;

	text-align: left;

	list-style-type: none;

}



.top-widgets .widget ul.sub-menu {

	margin: 0 0 0 3rem;

}



.top-widgets .top-widgets .widget ul li {

	font-size: 16px;

	font-size: 1.6rem;

	color: #cccccc;

	line-height: 1.4;

}



.top-widgets .widget ul li a {

	font-size: 2px;

	font-size: 2rem;

	font-weight: 600;

	color: #000000;

	text-transform: uppercase;

}



.top-widgets .widget ul li a:hover {

	color: #ffffff;

}



/* Footer widgets responsive */

@media screen and (max-width: 879px) {

    #top-widgets { width: 100%!important; }

    

    .top-widgets .widget {

        float: none;

        width: 100%;

        margin: 0 0 5rem 10rem;

    }

}



h2.top-widgets-title {

	font-size: 32px;

	font-size: 3.2rem;

	margin: 2rem 0;

}



.divider-top {

	height: 100px;

}



li#menu-item-513.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-513,

li#menu-item-512.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-512,

li#menu-item-515.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-515,

li#menu-item-2280.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-2280,

li#menu-item-2288.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-2288,

li#menu-item-2286.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2286,

li#menu-item-2287.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2287,

li#menu-item-2291.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2291,

li#menu-item-2292.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2292 {

	padding-top: 3rem;

}



li#menu-item-513.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-513 a,

li#menu-item-512.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-512 a,

li#menu-item-515.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-515 a,

li#menu-item-2280.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-2280 a,

li#menu-item-2288.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-2288 a,

li#menu-item-2286.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2286 a,

li#menu-item-2287.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2287 a,

li#menu-item-2291.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2291 a,

li#menu-item-2292.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2292 a {

	color: #ffffff;

	font-weight: 600;

}



li#menu-item-513.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-513 a:hover,

li#menu-item-512.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-512 a:hover,

li#menu-item-515.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-515 a:hover,

li#menu-item-2280.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-2280 a:hover,

li#menu-item-2288.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-2288 a:hover,

li#menu-item-2286.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2286 a:hover;

li#menu-item-2287.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2287 a:hover,

li#menu-item-2291.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2291 a:hover,

li#menu-item-2292.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2292 a:hover {

	color: #000000;

	font-weight: 600;

}



.wyroznij {

	color: #ff6600!important;

}



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

10.0 Content

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

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

10.1 Posts and pages

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



.sticky {

	display: block;

}



.hentry {

	margin: 0 0 1.5em;

}



.byline,

.updated:not(.published) {

	display: none;

}



.single .byline,

.group-blog .byline {

	display: inline;

}



.page-content,

.entry-content,

.entry-summary {

	margin: 1.5em 0 0;

}



.page-links {

	clear: both;

	margin: 0 0 1.5em;

}



.entry-title {

	font-size: 38px;

	font-size: 3.8rem;

	line-height: 1.2;

	text-transform: uppercase;

}



a .entry-title {

	font-weight: 400; }



.product-wrapper {

	margin-right: 20px; }



.product {

	position: relative; }



.product img {

	z-index: 1;

	display: block;

	border-top-right-radius: 5000px;

	border-bottom-right-radius: 5000px; }



.circle-big {

	position: absolute;

	top: 0;

	right: -1px;

	width: 100%;

	margin: 0; }



.circle-big .white {

	opacity: 1; }



.circle-big .orange {

	opacity: 0.7; }



.article-image img {

	border-radius: 50%; }



.article-image-big {

/*	margin-right: 20px;*/ }



.entry-content h1,

.entry-content h2,

.entry-content h3,

.entry-content h4,

.entry-content h5,

.entry-content h6 {

	font-family: 'Open Sans', sans-serif;

	font-weight: 600;

	color: #58585a;

	margin-bottom: .4em; }



.entry-content h1 {

    font-size: 32px;

    font-size: 3.2rem;

}



.entry-content h2 {

    font-size: 26px;

    /*font-size: 3.0rem;*/

}



.entry-content h3 {

    font-size: 28px;

    font-size: 2.8rem;

}



.entry-content h4 {

    font-size: 26px;

    font-size: 2.6rem;

}



.entry-content h5 {

    font-size: 24px;

    font-size: 2.4rem;

}



.entry-content h6 {

    font-size: 22px;

    font-size: 2.2rem;

}



/* Smaller fonts for smaller screens */

@media screen and (max-width: 680px) {

    .entry-title {

        font-size: 32px;

        font-size: 3.2rem;

        line-height: 1.3em;

    }

    .entry-content h1,

    .entry-content h2,

    .entry-content h3,

    .entry-content h4,

    .entry-content h5,

    .entry-content h6 {

    	font-weight: 600;

    }

    .entry-content h1 {

        font-size: 28px;

        font-size: 2.8rem;

    }



    .entry-content h2 {

        font-size: 26px;

        font-size: 2.6rem;

    }



    .entry-content h3 {

        font-size: 24px;

        font-size: 2.4rem;

    }



    .entry-content h4 {

        font-size: 22px;

        font-size: 2.2rem;

    }



    .entry-content h5 {

        font-size: 20px;

        font-size: 2rem;

    }



    .entry-content h6 {

        font-size: 18px;

        font-size: 1.8rem;

    }



    .entry-content p,

    .entry-content ul,

    .entry-content ol  {

        font-size: 16px;

        font-size: 1.6rem;

    }

    

    .entry-content blockquote p {

        font-size: 24px;

        font-size: 2.4rem;

        line-height: 1.5em;

    }

     

    blockquote cite {

        font-size: 14px;

        font-size: 1.4rem;

    }

}



.entry-content a[href*='.pdf'] {}



.entry-content a[href*='.pdf']::before {

  display: inline-block;

  vertical-align: middle;

  padding: 0 10px 0 30px;

  font-family: 'Fontawesome';

  font-size: 40px;

  color: #f29400;

  -webkit-font-smoothing: antialiased;

  content: '\f1c1'; }



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

10.2 Asides

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

.blog .format-aside .entry-title,

.archive .format-aside .entry-title {

	display: none;

}



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

10.3 Comments

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

.comment-content a {

	word-wrap: break-word;

}



.bypostauthor {

	display: block;

}



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

11.0 Infinite scroll

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

/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */

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

}



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

12.0 Media

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

.page-content img.wp-smiley,

.entry-content img.wp-smiley,

.comment-content img.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%;

}



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

12.1 Captions

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

.wp-caption {

	margin-bottom: 1.5em;

	max-width: 100%;

}



.wp-caption img[class*="wp-image-"] {

	display: block;

	margin: 0 auto;

}



.wp-caption-text {

	text-align: center;

}



.wp-caption .wp-caption-text {

	margin: 0.8075em 0;

}



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

12.2 Galleries

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



.borders img {

	border: 1px solid #cccccc; }



.borders-client a img {

	/*border: 1px solid #cccccc;*/

	margin-bottom: 20px; }



.borders-client a:hover img {

	opacity: 0.6; }



.gallery {}



.gallery-item {

	display: inline-block;

	text-align: center;

	vertical-align: top;

	width: 100%;

	margin-bottom: 1.5rem;

}



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

}



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

Header

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



.site-header {

	background: #ffffff;

	position: relative;

	margin: 0 auto; }



.site-branding {

	font-family: 'Open Sans', sans-serif; }



.site-branding h1.site-title {

	margin-top: 100px;



	/*padding-bottom: 50px;

	padding-bottom: 5rem;*/ }



.site-branding h2 {

	font-size: 38px;

	color: #58585a;

	padding-bottom: 50px;

	padding-bottom: 5rem; }



.site-branding h3 {

	font-family: 'Open Sans', sans-serif;

	font-size: 28px;

	text-rendering: optimizeLegibility;

	font-weight: 300;

	color: #58585a;

	padding-bottom: 50px;

	padding-bottom: 5rem; }



.site-branding p {

	font-size: 18px;

	font-weight: 300;

	color: #58585a; }



.site-branding ul {

	margin: 0;

	text-align: right;

	list-style: none;

	/*text-transform: uppercase;*/ }



.site-branding ul li a {

	font-weight: 400;

	color: #58585a;

	text-decoration: none; }



.site-branding ul li.orange a {

	font-weight: 600;

	color: #e64e17;

	text-decoration: none; }



.site-branding ul li.mr a {

	margin-right: 22px; }



.site-branding ul li a:hover {

	color: #e64e17; }



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

Footer

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



.site-footer {

	background: #f5f5f5; }



.site-info {

	position: relative;

	margin: 0 auto;

	padding: 5rem 2rem;

	max-width: 1160px;

	max-width: 116rem;

	font-family: 'Open Sans', sans-serif;

	text-align: right; }



.site-info p {

	font-size: 18px;

	font-weight: 300;

	color: #b1b2b4;

	margin: 0; }


.site-info a {
    font-weight: 300;
    /* color: #58585a; */
    color: #b1b2b4;
}

.site-info a:hover {
    font-weight: 300;
    /* color: #f29400; */
    color: #58585a;
}

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

grid

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



.white {

	background: #ffffff; }



.grey {

	background: #f5f5f5; }



.grid-wrapper {

	margin: 0 auto;

	max-width: 1160px;

	max-width: 116rem;

	padding: 5rem 2rem; }



.grid {

	margin-left: -20px;

	overflow: hidden;

	clear: both; }



.col-20 {

	width: 20%; }



.col-25 {

	width: 25%; }



.col-25-small {

	width: 25%; }



.col-25-portfolio {

	width: 25%; }



.col-33 {

	width: 33.333%; }



.col-45 {

	width: 45%; }



.col-50 {

	width: 50%; }



.col-50-person {

	width: 50%; }



.col-55 {

	width: 55%; }



.col-75 {

	width: 75%; }



.col-75-small {

	width: 75%; }



.col-100 {

	width: 100%; }



.grid:after {

	content: "";

	display: table;

	clear: both; }



[class*='col-'] {

	float: left;

	padding-left: 20px;

	-webkit-box-sizing: border-box;

	-moz-box-sizing: border-box;

	box-sizing: border-box; }



@media screen and (max-width: 480px) {

	.col-25-portfolio {

		width: 100%; }

	.col-25,

	.col-33,

	.col-45,

	.col-55,

	.col-75 {

		width: 100%; }

}



@media screen and (max-width: 980px) {

	.col-50-person {

		width: 100%; }

}



@media screen and (min-width: 480px) and (max-width: 780px) {

	.col-25-portfolio {

		width: 50%; }

	.col-25,

	.col-33,

	.col-45,

	.col-55,

	.col-75 {

		width: 100%; }

}



@media screen and (min-width: 780px) {}



@media screen and (min-width: 1320px) {}



@media screen and (max-width: 1320px) {}



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

Portfolio

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



.child-page-portfolio-wrapper {

	float: left;

	border-radius: 50%; }



.child-page-portfolio {

	position: relative;

	margin-bottom: 20px; }



.child-page-portfolio img {

	z-index: 1;

	border-radius: 50%;

	display: block;

	max-width: 100%; /*Firefox need this*/

	width: 100%; /*Firefox need this*/ }



.circle-solid {

	position: absolute;

	top: 0;

	right: 0;

	width: 100%;

	height: 100%;

	opacity: 0.7;

	margin: 0; }



.child-page-portfolio a {

	position: absolute;

	z-index: 2;

	top: 0;

	left: 0;

	display: block;

	width: 100%;

	height: 100%;

	color: #fff;

	font-size: 20px;

	text-decoration: none;

	border-radius: 50%;

	/*opacity: 0;

	filter: alpha(opacity=0);

	visibility: hidden;*/

	-webkit-transition: all 0.2s ease-in-out 0.2s;

	-moz-transition: all 0.2s ease-in-out 0.2s;

	-o-transition: all 0.2s ease-in-out 0.2s;

	transition: all 0.2s ease-in-out 0.2s; }



.child-page-portfolio a:hover {

	position: absolute;

	z-index: 2;

	top: 0;

	left: 0;

	display: block;

	width: 100%;

	height: 100%;

	color: #fff;

	background-color: rgba(242,148,0,0.9);

	font-size: 20px;

	text-decoration: none;

	border-radius: 50%;

	opacity: 1;

	filter: alpha(opacity=100);

	visibility: visible;

	-webkit-transition: all 0.1s ease-in-out 0.1s;

	-moz-transition: all 0.1s ease-in-out 0.1s;

	-o-transition: all 0.1s ease-in-out 0.1s;

	transition: all 0.1s ease-in-out 0.1s; }



.child-page-portfolio a .text {

	position: absolute;

	left: 50%;

	top: 50%;

	transform: translate(-50%, -50%);

	font-size: 22px;

	font-weight: 300;

	text-align: center;

	text-transform: uppercase;

	color: #ffffff;

	opacity: 0;

	filter: alpha(opacity=0);

	visibility: hidden;

	-webkit-transition: all 0.1s ease-in-out 0.1s;

	-moz-transition: all 0.1s ease-in-out 0.1s;

	-o-transition: all 0.1s ease-in-out 0.1s;

	transition: all 0.1s ease-in-out 0.1s; }



.child-page-portfolio a:hover .text {

	opacity:1;

	filter:alpha(opacity=100);

	visibility:visible;

	-webkit-transition: all 0.2s ease-in-out 0.2s;

	-moz-transition: all 0.2s ease-in-out 0.2s;

	-o-transition: all 0.2s ease-in-out 0.2s;

	transition: all 0.2s ease-in-out 0.2s; }



a .bottom-text {

	color: #58585a;

	font-weight: 400;

	text-transform: uppercase;

	text-align: center;

	margin-bottom: 40px;

}



a:hover .bottom-text {

	color: #f29400; }



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

ZAPOL info

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



.zapol-info {

	position: relative;

	margin: 0 auto;

	width: 100%;

	font-family: 'Open Sans', sans-serif;

	text-align: justify; }



.zapol-info h2 {

	font-family: 'Open Sans', sans-serif;

	font-size: 26px;

	font-size: 3.0rem;

	font-weight: 600;

	text-transform: uppercase;

	/*color: #3d3d3f;*/

	color: #005c24; }



.zapol-info h3 {

	font-family: 'Open Sans', sans-serif;

	font-size: 28px;

	text-rendering: optimizeLegibility;

	font-weight: 300;

	color: #58585a; }



.zapol-info p {

	font-size: 16px;

	font-weight: 400;

	color: #58585a; }



.zapol-info-2 {

	position: relative;

	margin: 0 auto;

	width: 100%;

	background: #f5f5f5;

	font-family: 'Open Sans', sans-serif;

	text-align: justify; }



.zapol-info-3 {
	position: relative;
    margin: 0 auto;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
	border-top: 1px solid #f5f5f5; }

.zapol-info-3 h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 42px;
	text-rendering: optimizeLegibility;
	font-weight: 300;
	color: #58585a;
	margin: 0 0 2rem 0; }


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

ZAPOL slider

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



.zapol-slider {

	width: 100%;

	padding: 0; }



.slide-background {

	background-position: top center;

	height: 920px!important;

	background-attachment: fixed!important;

	/*background-size: auto 550px;

	-moz-background-size: auto 550px;

	-webkit-background-size: auto 550px;

	-o-background-size: auto 550px;*/

	-webkit-background-size: cover!important;

  -moz-background-size: cover!important;

  -o-background-size: cover!important;

  background-size: cover!important; }



.slide-background .top-img {

	margin: 0 auto;

	width: 100%;

	padding-top: 115px; }



.slide-background .top-img img {

	display: block;

	margin: 0 auto;

	max-width: 420px; }



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

ZAPOL circle

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



.circle {

	/*max-width: 800px;*/

	width: 100%;

	height: 750px;

	position: relative;

	margin: 0 0;

	margin-bottom: 50px; 

	margin-top: 300px;}



.circle a {

	-webkit-transition: all .3s ease-in-out; } 



.circle a:hover {

	-webkit-transition: all .3s ease-in-out; }



.text0,

.text1,

.text2,

.text3,

.text4,

.text5,

.text6 {

	font-family: 'Open Sans', sans-serif;

	font-size: 26px;

	font-size: 2.6rem;

	font-weight: 800;

	text-transform: uppercase;

	/*fill: #9c9d9f; */

	fill: #6f7072;

	-webkit-transition: all .5s ease-in-out;}



.text1 {

	fill: #fecc00; }



.text2 {

	fill: #faba00; }



.text3 {

	fill: #f6a800; }



.text4 {

	fill: #f29400; }



.text5 {

	fill: #ee7f00; }



.text6 {

	fill: #ea690a; }



.big0 {

	opacity: 1;

	-webkit-transition: all .5s ease-in-out; }



.big0:hover {

	opacity: 1;

	fill: #e75112;

	-webkit-transition: all .5s ease-in-out; }



.big1,

.big2,

.big3,

.big4,

.big5,

.big6 {

	opacity: 1;

	-webkit-transition: all .3s ease-in-out; }



.big1:hover,

.big2:hover,

.big3:hover,

.big4:hover,

.big5:hover,

.big6:hover {

	opacity: 0.2;

	-webkit-transition: all .3s ease-in-out; }



.small1,

.small2,

.small3,

.small4,

.small5,

.small6 {

	opacity: 0.2; }



.small1:hover,

.small2:hover,

.small3:hover,

.small4:hover,

.small5:hover,

.small6:hover {

	opacity: 1; }



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

ZAPOL action

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



.zapol-action {

	background: #f5f5f5;

	position: relative;

	margin: 0 auto;

	width: 100%;

	font-family: 'Open Sans', sans-serif;

	text-align: justify; }



.zapol-action h4 {

	font-family: 'Open Sans', sans-serif;

	font-size: 42px;

	font-size: 4.2rem;

	font-weight: 300;

	text-transform: uppercase;

	/*color: #3d3d3f;*/

	color: #b1b2b4; }



.zapol-action h5 {

	font-family: 'Open Sans', sans-serif;

	font-size: 28px;

	/*text-rendering: optimizeLegibility;*/

	font-weight: 600;

	text-transform: uppercase;

	color: #f6a800; }



a span.action-button {

	float: right;

	background: #005c24;

	border: 1px solid #ccc;

	border-radius: 16px;

	font-family: 'Open Sans', sans-serif;

	font-size: 38px;

	font-size: 3.8rem;

	font-weight: 600;

	text-transform: uppercase;

	color: #ffffff;

	padding: 11px 30px;

	margin-top: 15px; }



a:hover span.action-button {

	opacity: 0.8; }



/*a .action-button {

	margin: 0 auto;

	background: #005c24;

	border-radius: 16px;

	font-family: 'Open Sans', sans-serif;

	font-size: 38px;

	font-size: 3.8rem;

	font-weight: 600;

	text-transform: uppercase;

	color: #ffffff;

	padding: 11px 30px;

	margin-top: 15px; }



a:hover .action-button {

	opacity: 0.8; }*/



@media screen and (max-width: 600px) {

	.zapol-action h4,

	.zapol-action h5,

	a span.action-button {

		text-align: center;  }

	a span.action-button {

		float: none;

		display: block;

		width: 60%;

		margin: 0 auto;

		margin-top: 15px;

		text-align: center; }

}







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

Google Map

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



#fit-map {

	-webkit-transition: background-color 0.15s ease-in-out 0s;

	-moz-transition: background-color 0.15s ease-in-out 0s;

	-o-transition: background-color 0.15s ease-in-out 0s;

	transition: background-color 0.15s ease-in-out 0s;

	width: 100%;

	background-color: #ffffff;

	overflow: hidden;

	margin-bottom: 10rem;

	border: 0px solid #6d6e70;

}



#google-map {

	width: 100%;

	height:450px;

}



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

Shortcode - Person

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



.person {

	margin-bottom: 1.5rem; }



.person img {

	display: block;

	border-radius: 50%;

	margin-bottom: 1.5rem; }



.person .tele,

.person .maile {

	text-align: center; }



.person .name {

	font-size: 20px;

	font-weight: 600;

	text-align: center; }



.person .position {

	font-size: 14px;

	line-height: 1.6;

	text-align: center; }



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

Shortcode - Person

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



.person2 {

	min-height: 125px;

	margin-bottom: 1.5rem; }



.person2 .img {

	float: left; }



.person2 img {

	max-width: 105px!important;

	display: block;

	border-radius: 50%;

	margin-right: 2.5rem;

	margin-bottom: 2.5rem; }



.person2 .name {

	font-size: 20px;

	font-weight: 600; }



.person2 .position {

	font-size: 14px;

	line-height: 1.6; }



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

Shortcode - You Tube Respo

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



.video-container {

	position: relative;

	padding-bottom: 56.25%;

	padding-top: 30px;

	height: 0;

	overflow: hidden; }



.video-container iframe,  

.video-container object,  

.video-container embed {

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%; }



.entry-content img, 

.entry-content iframe, 

.entry-content object, 

.entry-content embed {

	max-width: 100%; }



.video-container-2 {

	text-align: center;

	margin: 0 auto; }



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

Cookies Info

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



#cookies-message {

	padding: 20px;

	font-family: 'Open Sans',sans-serif;

	font-size: 14px;

	font-weight: 400;  

	text-align: center; 

	position: fixed; 

	bottom: 0px; 

	right: 0;

	background-color: rgba(250,250,250,1);

	color: #58585a;

	width: 100%; 

	z-index: 999;

	-webkit-box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.25);

	-moz-box-shadow:    0px -1px 5px 0px rgba(0, 0, 0, 0.25);

	box-shadow:         0px -1px 5px 0px rgba(0, 0, 0, 0.25); }



#cookies-message a {

	font-weight: 400;

	color: #58585a; }



#cookies-message a:hover {

	color: #f29400; }



a#accept-cookies-checkbox { 

	background-color: #58585a;  

	color: #ffffff;

	font-weight: 400;

	margin: 20px 0 0 10px; 

	padding: 10px 15px; 

	display: inline-block; 

	text-decoration: none; 

	cursor: pointer; }



a#accept-cookies-checkbox:hover {

	background: #f29400;

	color: #ffffff; }



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

Overlay

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



/* Overlay button */

#trigger-overlay {

	/*	position: fixed;

	top: 20px;

	right: 20px;

	padding: 0;

	margin: 0;*/

	float: right;

	padding: 0;

	margin-top: 18px;

	margin-right: 3px;

	background: none;

	position: relative;

	border: none;

	outline: none !important;

	-webkit-box-shadow: none;

	-moz-box-shadow: none;

	box-shadow: none;

	text-shadow: none;

	z-index: 98;

	margin-right: 10rem;

	margin-top: 2rem;

}



#zapol_logo_top {



	margin-left: 10rem;

	margin-top: 2rem;

}



@media screen and (max-width: 800px) {



#trigger-overlay {

	margin-right: 2rem;

}



#zapol_logo_top {



	margin-left: 0rem;

}



}





/* Overlay style */

.overlay {

	position: absolute;

	width: 100%;

	top: 0;

	left: 0;

	z-index: 99;

	background: rgba(242,148,0,1);

}



@media screen and (max-width: 680px) {

/* Overlay style */

.overlay {

	position: absolute!important;

	width: 100%;

	height: auto!important;

	top: 0;

	left: 0;

	z-index: 99;

	background: rgba(242,148,0,1);

	-webkit-background-size: cover;

	-moz-background-size: cover;

	-o-background-size: cover;

	background-size: cover;

	}

}



.overlay .overlay-close {

	postion: absolute;

	padding: 0;

	float: right;

	margin-top: 40px;

	margin-right: 120px;

	overflow: hidden;

	width: 44px;

	height: 44px;

	background: none;

	border: none;

	outline: none !important;

	-webkit-box-shadow: none;

	-moz-box-shadow: none;

	box-shadow: none;

	text-shadow: none;

	z-index: 9999;

}







.cross {

	fill: #ffffff; }



.cross:hover {

	fill: #58585a; }



/* Effects */

.overlay-slidedown {

	visibility: hidden;

	-webkit-transform: translateY(-100%);

	transform: translateY(-100%);

	-webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;

	transition: transform 0.4s ease-in-out, visibility 0s 0.4s;

}



.overlay-slidedown.open {

	visibility: visible;

	-webkit-transform: translateY(0%);

	transform: translateY(0%);

	-webkit-transition: -webkit-transform 0.4s ease-in-out;

	transition: transform 0.4s ease-in-out;

}



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

Social

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



.social ul {

	list-style: none;

	margin: 0 0 0 2rem;

	float: right;

}



.social ul li {

	margin-left: 1rem;

	float: left;

}



.social ul li:first-child {

	margin-left: 0;

}



.social a.youtube,

.social a.twitter,

.social a.facebook,

.social a.google-plus {

	background: rgba(0,0,0,0.2);

	width: 30px;

	height: 30px;

	outline: none !important;

	border-radius: 50%;

	border: none;

	float: left;

	color: #ffffff;

	line-height: 1.2rem;

	font-size: 1.8rem;

	display: block;

	padding: 0.7rem;

	text-align: center;

	float: left;

}



.social a.youtube:hover,

.social a.twitter:hover,

.social a.facebook:hover,

.social a.google-plus:hover {

	background: rgba(0,0,0,0.6);

}



@media screen and (max-width: 1024px) {

    .social {

		width: 100%;

		display: block;

		overflow: hidden;

		}



	.social ul {

		list-style: none;

		clear: left;

		float: left;

		list-style: none;

		margin: 0;

		padding: 0px 0px;

		position: relative;

		left: 50%;

		text-align: center;

	}



	.social ul li {

		margin: 1rem 0.5rem;

		float: left;

		list-style: none;

		position: relative;

		display: block;

		right: 50%;

	}

}



@media only screen and (max-width: 500px) {

	a span.action-button {

		float: left;

		background: #005c24;

		border: 1px solid #ccc;

		border-radius: 16px;

		font-family: 'Open Sans', sans-serif;

		font-size: 1.2em;

		font-weight: 600;

		text-transform: uppercase;

		color: #ffffff;

		padding: 11px 30px;

		margin-top: 15px; 

		margin-left: 22%;

	}

	

	.col-75 h4 {

		font-size: 0.95em;

		font-weight: 600;

	}

}



.svg-container {

	display: inline-block;

	position: relative;

	width: 100%;

	border: 3px solid green;

	padding-bottom: 100%;

	vertical-align: middle;

	overflow: hidden;

}



.svg-content {

	display: inline-block;

	position: absolute;

	top: 0;

	left: 0;

}



.pulse {

	border: 0px solid black;

	width: 60px;

	height: 60px;

	position: absolute;



	z-index: 9999;

	

  border-radius: 50%;

  cursor: pointer;

  box-shadow: 0 0 0 rgba(204,169,44, 0.4);

  animation: pulse 2s infinite;

}

.pulse:hover {

  animation: none;

}



@-webkit-keyframes pulse {

  0% {

    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);

  }

  70% {

      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);

  }

  100% {

      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);

  }

}

@keyframes pulse {

  0% {

    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);

    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);

  }

  70% {

      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);

      box-shadow: 0 0 0 10px rgba(204,169,44, 0);

  }

  100% {

      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);

      box-shadow: 0 0 0 0 rgba(204,169,44, 0);

  }

}







.main_menu_top {

	position: fixed;

	  _position:absolute; 

	z-index: 99999;

}



#zapol_logo_top {

	

	position: absolute;

	z-index: 9;

	width: 70%;

}



#zapol_menu_top {

	

	position: fixed; 

	_position:absolute;

	z-index: 9999; 

	width: 95%;

	

	padding-left: 100%;

}





#zapol_info_circle {

	margin-top: 580px;

}



#main_page_link {

	position: relative; 

	top: 40px; 

	left: 80px; 

	color: white;

	font-size: 3rem;

	text-transform: uppercase;

	width: 70%;

}

#main_page_link a {

	color: black

	text-decoration: none;

}



#main_page_link a:hover, a:focus, a:active {

	color: #58585a!important;

}



@media screen and (max-width: 1100px) {

	

	.circle {

		height: 650px;

	}

}



@media screen and (max-width: 879px) {

	

	.main_menu_top {

		position: absolute;

	}

	

	#zapol_logo_top {

		position: absolute;

	}

	

	#zapol_info_circle {

		margin-top: 630px;

	}

	

	.zapol-action {

		

	}

	

	.circle {

		height: 550px;

	}

	.overlay .overlay-close {

		

		margin-top: 40px;

		margin-right: 25px;

	}

}



@media screen and (max-width: 700px) {

	.zapol-action {

		

	}

	

	.circle {

		height: 450px;

	}

}	



@media screen and (max-width: 600px) {

	.zapol-action {

		

	}

	

	.circle {

		height: 300px;

	}

}	



@media screen and (max-width: 500px) {

	.zapol-action {

		

	}

	

	.circle {

		height: 250px;

	}

	

	#main_page_link { 

		top: 90px; 

		width: 100%;

	}

}



@media screen and (max-width: 400px) {

	.zapol-action {

		

	}

	

	.circle {

		height: 200px;

	}

}



@media screen and (max-width: 300px) {

	.zapol-action {

		

	}

	

	.circle {

		height: 150px;

	}

}	



.entry-title {

	margin-top: 100px;

}









/**************************************************/
/* Slider */
/**************************************************/


.flexslider-presentation .slide {
	position: relative;

    width: 100%;
    height: 100%;
    visibility: inherit;
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

/*.flexslider-presentation .slide .slide-1 {
	height: 100vw;
	background-image: url(presentation/slide-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}*/


.flexslider-presentation .slide .slide-1 {
	width: 100%;
    height: 100%;
    opacity: 1;
    visibility: inherit;
    z-index: 9000;
    background-image: url("http://betheme.muffingroupsc.netdna-cdn.com/be/webdesign/wp-content/uploads/2015/03/home_webdesign_slide3_bg.jpg");
    background-color: rgba(0, 0, 0, 0);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.flexslider-presentation .flex-caption {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9000;
}


.flexslider-presentation .caption-container {
	/*padding-left: 5%;*/ 
    position: relative;
    width: 100%;
    margin: 0 auto;
}


.flexslider-presentation .text-container {
    max-width: 320px;
    position: relative;
}


.flexslider-presentation .caption-one {
    background-color: #45372c;
    color: white;
    -webkit-animation: mymove 2s; /* Chrome, Safari, Opera */
    animation: mymove 2s;
    /*animation-delay: 2s; /* opoznienie animacji do momentu startu */
    -webkit-animation-fill-mode: forwards;  /* Chrome, Safari, Opera */
    animation-fill-mode: forwards; /* zatrzymuje animację: forward (tam gdzie skończy element), backward (powraca do punktu wyjścia) */
    /*-webkit-animation: slideIn;
    -moz-animation: slideIn;
    -o-animation: slideIn;
    animation: slideIn;*/
    -webkit-animation-duration: 2s; /* czas trwania animacji od momentu startu */
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}


/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
    from {left: -100px;}
    to {left: 0px;}
}


/* Standard syntax */
@keyframes mymove {
    from {left: -100px;}
    to {left: 0px;}
}

 .icontainer {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:768px) {
    .icontainer {
        width: 100%
    }
}



.irow {
    margin-right: -15px;
    margin-left: -15px
}

.irow:after,
.irow:before {
    display: table;
    content: " "
}

.irow:after {
    clear: both
}

.icol-sm-6,
.icol-sm-4,
.icol-sm-8 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
}

@media (min-width:768px) {
    .icol-sm-6 {
        float: left;
        width: 50%
    }
    .icol-sm-4 {
        float: left;
        width: 33.33333333%
    }
    .icol-sm-8 {
        float: left;
        width: 66.66666667%
    }
}


.irow img {
   width: 100%;
}

@media (max-width: 1200px) and (min-width: 993px) {

.valign {
   display: flex;
   align-items: center;
}
}

.icol-sm-4 img
{
margin-top:8px;
}

/*#main-nav-pl
{
	margin-top:15px
}

#main-nav-pl ul
{
	list-style:none;
	position:relative;
	float:left;
	margin:0;
	padding:0
}

#main-nav-pl ul a
{
	display:block;
	color:#333;
	text-decoration:none;
	font-weight:700;
	font-size:12px;
	line-height:32px;
	padding:0 15px;
	font-family:"HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif
}

#main-nav-pl ul li
{
	position:relative;
	float:left;
	margin:0;
	padding:0
}

#main-nav-pl ul li.current-menu-item
{
	background:#ddd
}

#main-nav-pl ul li:hover
{
	background:#f6f6f6
}

#main-nav-pl ul ul
{
	display:none;
	position:absolute;
	top:100%;
	left:0;
	background:#fff;
	padding:0;
z-index:10;
}

#main-nav-pl ul ul li
{
	float:none;
	width:200px
}

#main-nav-pl ul ul a
{
	line-height:120%;
	padding:10px 15px
}

#main-nav-pl ul ul ul
{
	top:0;
	left:100%
}

#main-nav-pl ul li:hover > ul
{
	display:block
}*/

#main-nav-pl ul, #main-nav-pl ul ul, #main-nav-pl ul li, #main-nav-pl ul li ul, #main-nav-pl ul ul ul, .mega-menu-wrap
{
z-index:99999;
}
