body, html {
	font-family: 'Open Sans', sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	color: #666;
	font-weight: 300;
	width: 100% !important;
	height: 100% !important;
}
h2 {
	margin: 0 0 20px 0;
	font-weight: 400;
	font-size: 36px;
	color: #777;
	text-transform: uppercase;
}
h3, h4 {
	font-size: 20px;
	font-weight: 600;
}
h5 {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 20px;
}
p {
	font-size: 15px;
}
p.intro {
	font-size: 16px;
	margin: 12px 0 0;
	line-height: 24px;
}
a {
	color: #f2af44; /* #C54DAA; */
}
a:hover, a:focus {
	text-decoration: none;
	color: #222;
}
ul, ol {
	list-style: none;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
ul, ol {
	padding: 0;
	webkit-padding: 0;
	moz-padding: 0;
}
hr {
	height: 2px;
	width: 70px;
	text-align: center;
	position: relative;
	background: #f2af44; /* #C54DAA; */
	margin: 0 auto;
	margin-bottom: 20px;
	border: 0;
}
/* Navigation */
#menu {
	padding: 20px;
	transition: all 0.8s;
}
/*
#menu.navbar-default {
	background-color: rgba(248, 248, 248, 0);
	border-color: rgba(231, 231, 231, 0);
}
*/
#menu.navbar-default { /* extra menu */
	background-color: rgba(30, 30, 30, 0.4); /* jasnoszare przezroczyste tło */
	border-color: rgba(231, 231, 231, 0);
}
#menu a.navbar-brand {
	font-size: 18px;
	color: rgba(255,255,255,0.8);
	font-weight: 500;
	text-transform: uppercase;
}
#menu a.navbar-brand:hover {
	color: #f2af44; /* #cd65b5; */
}
#menu.navbar-default .navbar-nav > li > a {
	text-transform: uppercase;
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); /* extra - cień w pozycjach menu */
}
#menu.navbar-default .navbar-nav > li > a:hover {
	color: #cd65b5;
}
.on {
	background-color: rgba(0,0,0,0.8) !important;
	padding: 0 !important;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	color: #f2af44 !important; /* #C54DAA !important; */
	background-color: transparent;
}
.navbar-toggle {
	border-radius: 0;
}
.navbar-default .navbar-toggle>.icon-bar { /* extra - białe paski menu w trybie nieaktywnym (menu lepiej widoczne) */
	background-color: #FFF;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: #f2af44; /* #C54DAA; */
	border-color: #f2af44; /* #C54DAA; */
}
.navbar-default .navbar-toggle:hover>.icon-bar {
	background-color: #FFF;
}
.section-title {
	margin-bottom: 50px;
}
.section-title p {
	font-size: 18px;
	color: #888;
}
.btn-custom {
	text-transform: uppercase;
	color: #fff;
	background-color: #f2af44; /* #C54DAA; */
	padding: 14px 20px;
	margin: 0;
	font-size: 15px;
	border-radius: 0;
	margin-top: 20px;
	transition: all 0.3s;
	border-top: 4px solid #f2af44; /* extra */
	/*border-top: 4px solid #b73c9b;*/
}
.btn-custom:hover, .btn-custom:focus, .btn-custom.focus, .btn-custom:active, .btn-custom.active {
	color: #fff;
	background-color: #f2af44; /* #b73c9b; */
}
/* Header Section */
.intro {
	display: table;
	margin-bottom: 25px; /* extra: dodane w celu utworzenia cienia */
    box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.15); /* extra: dodane w celu utworzenia cienia + rgba zmienione z 0.25 na 0.15 */
	width: 100%;
	padding: 0;
	 /*background: url(../img/intro-bg.jpg) no-repeat right bottom;  original */
	background: url(../img/intro-bg-big-hero.jpg) no-repeat center top;
	background-color: #e5e5e5;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	/* extra: */
    animation: zoomEffect 6s ease-in forwards;
}
/* extra: */
@keyframes zoomEffect {
    from {
        background-size: 100%;
    }
    to {
        background-size: 110%;
    }
}
/* Dla ekranów mniejszych niż 451px */
@media (max-width: 450px) {
    @keyframes zoomEffectMobile {
        from {
            background-size: 400%;
        }
        to {
            background-size: 430%;
        }
    }

    .intro {
        animation: zoomEffectMobile 6s ease-in forwards;
    }
}
/* Dla ekranów więszych niż 450px ale mniejszych niż 800px */
@media (min-width: 451px) and (max-width: 800px) {
    @keyframes zoomEffectMobile2 {
        from {
            background-size: 250%;
        }
        to {
            background-size: 270%;
        }
    }

    .intro {
        animation: zoomEffectMobile2 6s ease-in forwards;
    }
}
/* Dla ekranów więszych niż 801px ale mniejszych niż 1181px */
@media (min-width: 801px) and (max-width: 1180px) {
    @keyframes zoomEffectTablets {
        from {
            background-size: 195%;
        }
        to {
            background-size: 215%;
        }
    }

    .intro {
        animation: zoomEffectTablets 6s ease-in forwards;
    }
}
/* Dla ekranów więszych niż 1180px ale mniejszych niż 1501px */
@media (min-width: 1181px) and (max-width: 1500px) {
    @keyframes zoomEffectTablets2 {
        from {
            background-size: 130%;
        }
        to {
            background-size: 150%;
        }
    }

    .intro {
        animation: zoomEffectTablets2 6s ease-in forwards;
    }
}
.intro .overlay {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1b71d6+0,c54daa+100&0.5+0,0.5+100 */
	/* background: -moz-linear-gradient(top, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.1) 100%); /* FF3.6-15 */
	/* background: -webkit-linear-gradient(top, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.1) 100%); /* Chrome10-25,Safari5.1-6 */
	/* background: linear-gradient(to bottom, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.intro .overlay .original { /* original */
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1b71d6+0,c54daa+100&0.5+0,0.5+100 */
	/* background: -moz-linear-gradient(top, rgba(27,113,214,0.5) 0%, rgba(197,77,170,0.5) 100%); /* FF3.6-15 */
	/* background: -webkit-linear-gradient(top, rgba(27,113,214,0.5) 0%, rgba(197,77,170,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	/* background: linear-gradient(to bottom, rgba(27,113,214,0.5) 0%, rgba(197,77,170,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#801b71d6', endColorstr='#80c54daa', GradientType=0 ); /* IE6-9 */
}
.intro h1 {
	color: rgba(255,255,255,0.9);
	/*font-size: 72px; original*/
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -1px;
	text-transform: uppercase;
	margin-bottom: 20px;
	margin-top: 0;
}
.intro p {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 40px;
	margin-top: 20px;
}
.intro span {
	color: rgba(255,255,255,0.5);
	font-size: 28px;
	font-weight: 300;
}
header .intro-text {
	padding-top: 100px;
	padding-bottom: 440px; /* było 640 */
	padding-left: 0px;
	/*
	padding-top: 350px;
	padding-bottom: 300px;
	padding-left: 100px;
	*/
}
/*	original
header .intro-text {
	padding-top: 250px;
	padding-bottom: 200px;
	padding-left: 100px;
}
*/
/* About Section */
#about {
	/*padding: 120px 0;*/
	padding: 35px 0 20px 0; /* extra */
	background-image: url('../img/whitediamond.png'); /* extra */
	/*background: #f6f6f6; original */
	margin-top: -12px; /* extra: lekkie wsunięcie pod sekcję wyżej */
}
/* extra: Gdy ekran większy niż 1001px – robimy większy odstęp między sekcją #about i #services */
@media (min-width: 1001px) {
  #about {
    padding: 60px 0;
  }
}
#about .about-text {
	margin-left: 10px;
}
#about .about-text h3 {
	font-size: 1.6em;
	font-weight: 600;
	/*font-weight: 400;*/
	color: #f2af44; /* #C54DAA; */
}
#about img {
	float: left;
	/*float: right; original*/
}
#about p {
	margin: 30px 0;
	line-height: 22px;
}
/* extra: */
#about .about-text li {
	margin-bottom: 6px;
	margin-left: 6px;
	list-style: none;
	padding: 0;
}
#about .about-text li:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	color: #f2af44; /* #C54DAA; /* extra */
	/* color: #909497; extra: szary */
	font-size: 11px;
	font-weight: 300;
	padding-right: 8px;
}
/* Services Section */
#services {
	/*padding: 120px 0;*/
	padding: 35px 0 20px 0; /* extra */
	/* background-image: url('../img/subtle_zebra_3d.png'); /* extra */
	background-image: url('../img/stripes-light.png');
}
/* extra: Gdy ekran większy niż 1001px – robimy większy odstęp między sekcją #about i #services */
@media (min-width: 1001px) {
  #services {
    padding: 60px 0;
  }
}
#services h4 {
	color: #f2af44; /* #C54DAA; */
	text-transform: uppercase;
}
#services i.fa {
	font-size: 38px;
	margin-bottom: 20px;
	transition: all 0.5s;
	color: #fff;
	width: 100px;
	height: 100px;
	padding: 30px 0;
	background: #f2af44; /* #C54DAA; */
	border-radius: 50%;
}
/* Portfolio Section */
#portfolio {
	padding: 120px 0;
	background: #f6f6f6;
}
.categories {
	padding-bottom: 40px;
	text-align: center;
}
ul.cat li {
	display: inline-block;
}
ol.type li {
	display: inline-block;
	margin-left: 20px;
}
ol.type li a {
	color: #f2af44; /* #C54DAA; */
	padding: 10px 20px;
	border: 1px solid #f2af44; /* #C54DAA; */
	text-transform: uppercase;
}
ol.type li a.active {
	background: #f2af44; /* #C54DAA; */
	color: #fff;
}
ol.type li a:hover {
	background: #f2af44; /* #C54DAA; */
	color: #fff;
}
.isotope-item {
	z-index: 2
}
.isotope-hidden.isotope-item {
	z-index: 1
}
.isotope, .isotope .isotope-item {
	/* change duration value to whatever you like */
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	transition-duration: 0.8s;
}
.isotope-item {
	margin-right: -1px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.isotope {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	transition-property: height, width;
}
.isotope .isotope-item {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	transition-property: transform, opacity;
}
.portfolio-item {
	margin: 15px 0;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.portfolio-item:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.portfolio-item .hover-bg {
	height: 195px;
	overflow: hidden;
	position: relative;
}
.hover-bg .hover-text {
	position: absolute;
	text-align: center;
	margin: 0 auto;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.66);
	padding: 30% 0 0 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: all 0.5s;
}
.hover-bg .hover-text>h4 {
	opacity: 0;
	color: #fff;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	transition: all 0.3s;
	font-size: 16px;
	font-weight: 300;
}
.hover-bg:hover .hover-text>h4 {
	opacity: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.hover-bg .hover-text>i {
	opacity: 0;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	transition: all 0.3s;
}
.hover-bg:hover .hover-text>i {
	opacity: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.hover-bg:hover .hover-text {
	opacity: 1;
}
#portfolio i.fa {
	font-size: 20px;
	padding: 5px;
	color: #E87E04;
}
/* Achivements Section */
#achievements {
	background: url(../img/achievements-bg.jpg) no-repeat center bottom fixed;
	background-color: #e5e5e5;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
#achievements .overlay {
	padding: 120px 0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c54daa+0,1b71d6+100&0.6+0,0.6+100 */
	background: -moz-linear-gradient(left, rgba(197,77,170,0.6) 0%, rgba(27,113,214,0.6) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(197,77,170,0.6) 0%, rgba(27,113,214,0.6) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(197,77,170,0.6) 0%, rgba(27,113,214,0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99c54daa', endColorstr='#991b71d6', GradientType=1 ); /* IE6-9 */
}
#achievements h2 {
	color: #fff;
}
.achievement-box h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	margin-left: 5px;
	text-transform: uppercase;
}
.achievement-box span.count {
	font-size: 52px;
	font-weight: 600;
	display: block;
	color: #fff;
	padding: 0;
	margin: 0;
}
.intro .overlay {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1b71d6+0,c54daa+100&0.5+0,0.5+100 */
	/* background: -moz-linear-gradient(top, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.1) 100%); /* FF3.6-15 */
	/* background: -webkit-linear-gradient(top, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.1) 100%); /* Chrome10-25,Safari5.1-6 */
	/* background: linear-gradient(to bottom, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
/* extra: Obraz w tle */
#achievements2 {
  background: url('../img/obraz_w_tle.jpg') no-repeat center center scroll;
  /*background-size: cover;*/
  background-size: 180% auto; /* powiększa obrazek w poziomie, bez utraty proporcji */
  background-attachment: scroll; /* ważne! */
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
	/*background: url(../img/obraz_w_tle.jpg) no-repeat center bottom scroll;*/
	/*
	background-color: #e5e5e5;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	*/
}
#achievements2 .overlay {
	padding: 120px 0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c54daa+0,1b71d6+100&0.6+0,0.6+100 */
	/* usunięte dla wyrazistego obrazka: background: -moz-linear-gradient(left, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* FF3.6-15 */
	/* usunięte dla wyrazistego obrazka: background: -webkit-linear-gradient(left, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	/* usunięte dla wyrazistego obrazka: background: linear-gradient(to right, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99c54daa', endColorstr='#991b71d6', GradientType=1 ); IE6-9 */
}
#achievements2 h2 {
	color: #fff;
}
.achievement2-box h4 {
	color: #ddd;
	/*color: #fff; original */
	font-size: 19px;
	/*font-size: 16px; original */
	font-weight: 400;
	margin-left: 5px;
	text-transform: uppercase;
}
.achievement2-box span.count {
	font-size: 52px;
	font-weight: 600;
	display: block;
	color: #fff;
	padding: 0;
	margin: 0;
}
/* extra: Obraz w tle2 */
#achievements3 {
  background: url('../img/obraz_w_tle2.jpg') no-repeat center center scroll;
  /*background-size: cover;*/
  background-size: 250% auto; /* powiększa obrazek w poziomie, bez utraty proporcji */
  background-attachment: scroll; /* ważne! */
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
	/*
	background: url(../img/obraz_w_tle2.jpg) no-repeat center bottom scroll;
	background-color: #e5e5e5;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	*/
}
#achievements3 .overlay {
	padding: 120px 0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c54daa+0,1b71d6+100&0.6+0,0.6+100 */
	/* usunięte dla wyrazistego obrazka: background: -moz-linear-gradient(left, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* FF3.6-15 */
	/* usunięte dla wyrazistego obrazka: background: -webkit-linear-gradient(left, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	/* usunięte dla wyrazistego obrazka: background: linear-gradient(to right, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99c54daa', endColorstr='#991b71d6', GradientType=1 ); IE6-9 */
}
#achievements3 h2 {
	color: #fff;
}
.achievement3-box h4 {
	color: #ddd;
	/*color: #fff; original */
	font-size: 19px;
	/*font-size: 16px; original */
	font-weight: 400;
	margin-left: 5px;
	text-transform: uppercase;
}
.achievement3-box span.count {
	font-size: 52px;
	font-weight: 600;
	display: block;
	color: #fff;
	padding: 0;
	margin: 0;
}
/* extra: Obraz w tle dla menu */
#achievements-menu {
	background: url(../img/obraz_w_tle_menu_1920x1080.jpg) no-repeat center bottom fixed;
	background-color: #e5e5e5;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
#achievements-menu .overlay {
	padding: 120px 0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c54daa+0,1b71d6+100&0.6+0,0.6+100 */
	/* usunięte dla wyrazistego obrazka: background: -moz-linear-gradient(left, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* FF3.6-15 */
	/* usunięte dla wyrazistego obrazka: background: -webkit-linear-gradient(left, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	/* usunięte dla wyrazistego obrazka: background: linear-gradient(to right, rgba(76,76,76,0.6) 0%, rgba(102,102,102,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99c54daa', endColorstr='#991b71d6', GradientType=1 ); IE6-9 */
}
#achievements-menu h2 {
	color: #fff;
}
.achievement-menu-box h4 {
	color: #ddd;
	/*color: #fff; original */
	font-size: 19px;
	/*font-size: 16px; original */
	font-weight: 400;
	margin-left: 5px;
	text-transform: uppercase;
}
.achievement-menu-box span.count {
	font-size: 52px;
	font-weight: 600;
	display: block;
	color: #fff;
	padding: 0;
	margin: 0;
}
/* Menu Section */
#menu-restauracji {
	padding: 120px 0 90px 0;
	background-image: url('../img/whitediamond.png'); /* extra */
	/*background: #f6f6f6; original */
}
#menu-restauracji .col-xs-12.col-md-6 {
	margin-bottom: 30px;
}
/* extra: Dania na wynos Section */
#danianawynos {
	padding: 60px 0; /* original: 100px */
	background-image: url('../img/whitediamond.png'); /* extra */
	/* background-color: #fbfbfb; extra */
}
@media (max-width: 1001px) {
	#danianawynos {
		padding: 35px 0 25px 0;
	}
}
#danianawynos h3 {
	font-size: 1.6em;
	font-weight: 600;
	/*
	font-size: 22px;
	font-weight: 400;
	*/
	color: #f2af44; /* #C54DAA; */
	margin: 0 0 20px 0;
}
#danianawynos h2 {
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
#danianawynos .danianawynos-text li {
	margin-bottom: 6px;
	margin-left: 6px;
	list-style: none;
	padding: 0;
}
#danianawynos .danianawynos-text li:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	color: #f2af44; /* #C54DAA; /* extra */
	/* color: #909497; extra: szary */
	font-size: 11px;
	font-weight: 300;
	padding-right: 8px;
}
/* #danianawynos img {
	width: 520px;
	margin-top: 10px;
	margin-bottom: 10px; /* extra
	background: #fff;
	border-right: 0;
	box-shadow: 0 0 50px rgba(0,0,0,0.06);
} */
#danianawynos img.hero {
	/*width: 520px;*/
	float: right; /* extra */
	margin-top: 10px;
	margin-bottom: 10px;
	/*background: #fff; extra: zakomentowane białe tło*/
	/*background: #fbfbfb;*/
	border-right: 0;
	/*box-shadow: 0 0 50px rgba(0,0,0,0.06);*/
}
#danianawynos p {
	line-height: 24px;
	margin: 30px 0;
}
/* Team Section */
#team {
	padding: 60px 0;
	background-image: url('../img/whitediamond.png'); /* extra */
}
#team h4 {
	margin: 5px 0;
}
#team .team-img {
	width: 240px;
}
#team .thumbnail {
	background: transparent;
	border: 0;
}
#team .thumbnail .caption {
	padding: 10px 0 0 0;
	color: #888;
}
/* Testimonials Section 
#testimonials {
	padding: 120px 0 80px 0;
	background: #F6F6F6;
}
#testimonials i.fa {
	color: #8e9599;
	font-size: 36px;
}
#testimonial {
	padding: 30px 0;
}
#testimonial .item {
	display: block;
	width: 100%;
	height: auto;
}
#testimonial img {
	width: 140px;
	height: 140px;
	border-radius: 50%;
}
#testimonial .item p {
	margin: 30px 0;
}
.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 20px;
	height: 6px;
	margin: 5px 7px;
	filter: Alpha(Opacity=1);
	opacity: 1;
	border-radius: 0;
	background: #fff;
	transition: all 0.5s;
	border: 1px solid #ccc;
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);
	opacity: 1;
	background: #C54DAA;
	border: 1px solid #C54DAA;
}
.owl-theme .owl-controls .owl-page.active span {
	background: #C54DAA;
	border: 1px solid #C54DAA;
}
/* Contact Section */
#contact {
	padding: 60px 0 0 0;
	background-image: url('../img/darkgraydiamond.png'); /* extra */
	color: #eee; /* extra */
}
#contact h2 { /* extra */
	color: #eee;
}
#contact form {
	padding: 30px 0;
}
#contact .text-danger {
	color: #cc0033;
	text-align: left;
}
label {
	font-size: 12px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	float: left;
}
#contact .form-control {
	display: block;
	width: 100%;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #222;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}
#contact .form-control:focus {
	border-color: #C54DAA;
	outline: 0;
	-webkit-box-shadow: transparent;
	box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
color: #2c3e50;
}
.form-control:-moz-placeholder {
color: #2c3e50;
}
.form-control::-moz-placeholder {
color: #2c3e50;
}
.form-control:-ms-input-placeholder {
color: #2c3e50;
}
/*
#contact .social {
	margin-top: 80px;
}
#contact .social ul li {
	display: inline-block;
	margin: 0 20px;
}
#contact .social i.fa {
	font-size: 28px;
	padding: 4px;
	color: #C54DAA;
	transition: all 0.3s;
}
#contact .social i.fa:hover {
	color: #444;
}
*/
#contact .social {
	border-top: 1px solid rgba(255,255,255,0.15);
	/* border-bottom: 1px solid rgba(255,255,255,0.15); /* extra */
	padding-top: 50px;
	padding-bottom: 50px; /* extra */
	margin-top: 50px;
	margin-bottom: 50px; /* extra */
	text-align: center;
}
#contact .social ul li {
	display: inline-block;
	margin: 0 20px;
}
#contact .social i.fa {
	font-size: 22px;
	width: 48px;
	height: 48px;
	padding: 12px 0;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 50%;
	transition: all 0.3s;
}
#contact .social i.fa:hover {
	color: #cdc1a5; /* extra */
	/*color: #608dfd;*/
	background: #fff;
}
.btn:active, .btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
a:focus, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
	outline: none;
	outline-offset: none;
}
/* Footer Section*/
#footer {
	background: #f6f6f6;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c54daa+0,1b71d6+100 */
	/* background: rgb(197,77,170); Old browsers */
	/* background: -moz-linear-gradient(left, rgba(197,77,170,1) 0%, rgba(27,113,214,1) 100%);  /* FF3.6-15 */
	/* background: -webkit-linear-gradient(left, rgba(197,77,170,1) 0%, rgba(27,113,214,1) 100%); /* Chrome10-25,Safari5.1-6 */
	/* background: linear-gradient(to right, rgba(197,77,170,1) 0%, rgba(27,113,214,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c54daa', endColorstr='#1b71d6', GradientType=1 ); /* IE6-9 */
	color: rgba(255,255,255,0.5);
	padding: 30px 0 25px 0;
}
#footer p {
	color: #888;
	font-size: 14px;
}
#footer a {
	color: #cdc1a5; /* extra */
	/*color: #608dfd;*/
}
#footer a:hover {
	border-bottom: 2px solid #cdc1a5; /* extra */
	/*border-bottom: 2px solid #608dfd;*/
}
/* original:
#footer a {
	color: rgba(255,255,255,0.7);
}
#footer a:hover {
	color: #fff;
}
*/
/* extra: Footer Menu Section*/
#footer-menu {
	background: #f6f6f6;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c54daa+0,1b71d6+100 */
	/* background: rgb(197,77,170); Old browsers */
	/* background: -moz-linear-gradient(left, rgba(197,77,170,1) 0%, rgba(27,113,214,1) 100%);  /* FF3.6-15 */
	/* background: -webkit-linear-gradient(left, rgba(197,77,170,1) 0%, rgba(27,113,214,1) 100%); /* Chrome10-25,Safari5.1-6 */
	/* background: linear-gradient(to right, rgba(197,77,170,1) 0%, rgba(27,113,214,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c54daa', endColorstr='#1b71d6', GradientType=1 ); /* IE6-9 */
	color: rgba(255,255,255,0.5);
	padding: 30px 0 25px 0;
}
#footer-menu p {
	color: #888;
	font-size: 14px;
}
#footer-menu a {
	color: #cdc1a5; /* extra */
	/*color: #608dfd;*/
}
#footer-menu a:hover {
	border-bottom: 2px solid #cdc1a5; /* extra */
	/*border-bottom: 2px solid #608dfd;*/
}
/* original:
#footer-menu a {
	color: rgba(255,255,255,0.7);
}
#footer-menu a:hover {
	color: #fff;
}
*/
/* extra button */
.button-tile {
  position: relative;
		/*
		width: 320px;
  height: 166px;
		*/
   /*standard*/
  width: 100%;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.button-tile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.button-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.3);*/
  background-color: rgba(255, 255, 255, 0.3); /* extra: biała mgła */
  transition: background-color 0.6s ease;
  z-index: 2;
}

.button-tile5-overlay { /* extra */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.6s ease;
  z-index: 2;
}

.button-title1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 90px 226px; /* zmiana odległości ramki od brzegu */
  z-index: 3;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); /* extra - cień w pozycjach menu */
}

.button-title1::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid white;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.button-title2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 90px 148px; /* zmiana odległości ramki od brzegu */
  z-index: 3;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); /* extra - cień w pozycjach menu */
}

.button-title2::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid white;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.button-title3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 90px 178px; /* zmiana odległości ramki od brzegu */
  z-index: 3;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); /* extra - cień w pozycjach menu */
}

.button-title3::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid white;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.button-title4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2em;
  font-weight: 500;
  text-transform: uppercase;
  /* padding: 90px 200px; /* zmiana odległości ramki od brzegu */
  padding: 72px 134px; /* zmiana odległości ramki od brzegu */
  z-index: 3;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); /* extra - cień w pozycjach menu */
}

.button-title4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid white;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.button-title5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2em;
  font-weight: 500;
  text-transform: uppercase;
  /* padding: 96px 90px; /* zmiana odległości ramki od brzegu - bez napisu ONLINE */
  padding: 74px 90px; /* zmiana odległości ramki od brzegu */
  z-index: 3;
}

.button-title5::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid white;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.button-tile:hover img {
  transform: scale(1.2);
}

.button-tile:hover .button-tile-overlay {
  background-color: rgba(0, 0, 0, 0.35); /* extra: po najechaniu trochę ciemniejsza blenda */
  /*background-color: rgba(0, 0, 0, 0);*/
}

.button-tile:hover .button-title1::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 1;
}

.button-tile:hover .button-title2::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 1;
}

.button-tile:hover .button-title3::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 1;
}

.button-tile:hover .button-title4::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 1;
}

.button-tile:hover .button-title5::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 1;
}

.tile-padding { /* extra */
  padding-left: 52px; /* domyślnie dla md i większych */
}

.navbar-center { /* extra */
  float: none;
  display: table;
  margin: 0 auto;
}

/* extra: Domyślnie logo w menu widoczne */
.logo-center {
  display: inline-block;
  margin-left: 30px;
  margin-right: 20px;
}

/* extra: Gdy ekran mniejszy niż 768px (czyli hamburger menu) – ukrywamy logo */
@media (max-width: 767px) {
  .logo-center {
    display: none !important;
  }
}

.logo-img { /* extra: większe logo po lewej stronie na obrazku hero */
  margin-left: 10px;
  max-width: 100px;
  /*max-width: 120px;*/
  position: relative;
  top: -70px;
}

@media (min-width: 1001px) {
  .logo-img {
    margin-left: 140px;
	max-width: 120px;
  	position: relative;
  	top: -50px;
  }
}

@media (max-width: 990px) { /* extra: przyciski menu, dania na wynos... */
  .tile-padding {
    padding-left: 5px;
	/*padding-left: 135px;*/
  }
}

@media (max-width: 1024px) {
#about img {
	float: left;
	margin-bottom: 20px;
}
}

@media (max-width: 990px) {	/* extra dla obrazka w sekcji about - centrowanie */
  #about img {
    float: none;
    display: block;
    margin: 0 auto;
  }
  #danianawynos img.hero {
    float: none;
    display: block;
    margin: 0 auto;
  }
}

/* extra: tryb mobilny, małe logo */
.logo-tryb-mobile {
  display: none; /* domyślnie ukryte */
}

@media (max-width: 767px) {
  .logo-tryb-mobile {
    display: block;
    position: fixed;
    top: 20px; /* 25 */
    left: 35px;
    z-index: 9999;
    transition: top 0.5s ease, left 0.5s ease;
  }

  .logo-tryb-mobile img {
    max-height: 53px;
    height: auto;
  }

  .logo-tryb-mobile.scrolled {
    top: 4px; /* 4 */
    left: 15px;
  }
}

.o-nas-item {
  color: #fff !important;
  padding: 25px 35px 25px 0 !important;
  font-size: 1.56em !important;
}

@media (max-width: 767px) {
  .o-nas-item {
    padding-left: 35px !important;
  }
}

.intro-spacer {
	padding: 60px 0;
}

@media (min-width: 1001px) {
		#achievements2 {
		background-size: 100% auto;
	}
	
	#achievements3 {
		background-size: 100% auto;
	}
}

@media (max-width: 1000px) {
    
header .intro-text {
	padding-top: 100px;
	padding-bottom: 300px;
	padding-left: 0px;
}
    
	h3.oczekiwania {
		margin-top: 0;
	}
	h3.nie-znacie {
		margin-top: 35px;
	}
	p.zapraszamy {
		margin-bottom: 10px !important;
	}
	p.wkrotce {
		margin-top: 20px;
	}
	#team {
		padding-top: 35px;
		padding-bottom: 0;
	}
	h2 {
		margin-bottom: 10px;
		padding-bottom: 0 !important;
	}
	hr {
		margin-bottom: 0 !important;
	}
	.section-title {
		margin-bottom: 25px;
	}
	div.overlay {
		padding: 40px 0 10px 0 !important;
	}
	#contact {
		padding: 40px 0 0 0;
	}
	.social {
		border-top: 0 solid rgba(255,255,255,0.15);
		margin-bottom: 0 !important;
		margin-top: 0 !important;
	}
	.intro-spacer {
		padding: 15px 0;
	}
}

/* === Styl hover dla menu górnego === */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

#menu.navbar-default .navbar-nav > li > a {
  transition: color 0.3s ease, transform 0.3s ease;
}

#menu.navbar-default .navbar-nav > li > a:hover {
  animation: pulse 1s ease-in-out;
  color: #f2af44;
}
