html, body, .container {
	height: 77%;
	font-family: 'Open Sans Condensed', sans-serif;
}

.js .boxgallery,
.js .boxgallery div {
	position: absolute;
}

.js .boxgallery,
.bg-tile,
.bg-img {
	overflow: hidden;
}

.js .boxgallery,
.js .panel {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.logo_href{
	float: left;
	position: relative;
	overflow: auto;	
	width: 20%;
	background-size: 75%;
	display: block;
	height: 100%;
	background-image: url('../img/logo_sufigs.png');
	background-position: center;
	background-repeat: no-repeat;
}
.panel {
	z-index: 0;
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.bg-tile {
	width: 50%;
	height: 50%;
}

.bg-tile:nth-child(2),
.bg-tile:nth-child(4) {
	left: 50%;
}

.bg-tile:nth-child(3),
.bg-tile:nth-child(4) {
	top: 50%;
}

.bg-img {
	width: 100%;
	height: 100%;
	background: #999;
}

.bg-img img {
	position: absolute;
	display: block;
	height: 200%;
}

@media screen and (min-aspect-ratio: 1280/850) {
	.bg-img img {
		width: 200%;
		height: auto;
	}
}

.bg-tile:nth-child(2) .bg-img img,
.bg-tile:nth-child(4) .bg-img img {
	left: -100%;
}

.bg-tile:nth-child(3) .bg-img img,
.bg-tile:nth-child(4) .bg-img img {
	top: -100%;
}

/* Navigation Arrow */
.boxgallery > nav span {
	position: absolute;
	top: 50%;
	z-index: 1000;
	display: block;
	width: 100px;
	height: 100px;
	outline: none;
	text-align: left;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.boxgallery > nav span.prev {
	left: 0;
	background-color: rgba(9,60,126,0.7);
	
}

.boxgallery > nav span.next {
	right: 0;
	background-color: rgba(9,60,126,0.7);
}

.boxgallery > nav i {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.boxgallery > nav span::before,
.boxgallery > nav span::after,
.boxgallery > nav i::before,
.boxgallery > nav i::after {
	position: absolute;
	left: 50%;
	width: 3px;
	height: 50%;
	outline: 1px solid transparent;
	background: #dbccd0;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.boxgallery > nav i::before,
.boxgallery > nav i::after {
	z-index: 100;
	height: 0;
	background: #fff;
	-webkit-transition: height 0.3s, -webkit-transform 0.3s;
	transition: height 0.3s, transform 0.3s;
}

.boxgallery > nav span::before,
.boxgallery > nav i::before {
	top: 50%;
	-webkit-transform: translateX(-50%) rotate(-135deg);
	transform: translateX(-50%) rotate(-135deg);
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

.boxgallery > nav span.next::before,
.boxgallery > nav span.next i::before {
	-webkit-transform: translateX(-50%) rotate(135deg);
	transform: translateX(-50%) rotate(135deg);
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

.boxgallery > nav span::after,
.boxgallery > nav i::after {
	top: 50%;
	-webkit-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotate(-45deg);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.boxgallery > nav span.next::after,
.boxgallery > nav span.next i::after {
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	-webkit-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}

.no-touch .boxgallery > nav span:hover i::before,
.no-touch .boxgallery > nav span:hover i::after {
	height: 50%;
}

.no-touch .boxgallery > nav span:hover::before,
.no-touch .boxgallery > nav span:hover i::before {
	-webkit-transform: translateX(-50%) rotate(-125deg);
	transform: translateX(-50%) rotate(-125deg);
}

.no-touch .boxgallery > nav span.next:hover::before,
.no-touch .boxgallery > nav span.next:hover i::before {
	-webkit-transform: translateX(-50%) rotate(125deg);
	transform: translateX(-50%) rotate(125deg);
}

.no-touch .boxgallery > nav span:hover::after,
.no-touch .boxgallery > nav span:hover i::after {
	-webkit-transform: translateX(-50%) rotate(-55deg);
	transform: translateX(-50%) rotate(-55deg);
}

.no-touch .boxgallery > nav span.next:hover::after,
.no-touch .boxgallery > nav span.next:hover i::after {
	-webkit-transform: translateX(-50%) rotate(55deg);
	transform: translateX(-50%) rotate(55deg);
}

/* Transitions and individual delays/effects */
/* The "active" class is given to the panel that is coming */

.panel.current {
	z-index: 2;
}

.panel.active {
	z-index: 1;
}

.panel.current .bg-img {
	-webkit-transition: -webkit-transform 1.1s ease-in-out;
	transition: transform 1.1s ease-in-out;
}

.boxgallery[data-effect="effect-1"] .panel.active .bg-tile,
.boxgallery[data-effect="effect-2"] .panel.active .bg-tile {
	-webkit-animation: scaleDown 1.1s ease-in-out;
	animation: scaleDown 1.1s ease-in-out;
}

@-webkit-keyframes scaleDown {
	from { -webkit-transform: translate3d(0,0,380px); transform: translate3d(0,0,380px); }
	to { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}

@keyframes scaleDown {
	from { -webkit-transform: translate3d(0,0,380px); transform: translate3d(0,0,380px); }
	to { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}

/* Variation 2 */
.boxgallery[data-effect="effect-2"] .panel.current .bg-img {
	-webkit-transition: -webkit-transform 0.9s cubic-bezier(0.7,0,0.3,1);
	transition: transform 0.9s cubic-bezier(0.7,0,0.3,1);
}

.boxgallery[data-effect="effect-2"] .panel.current .bg-tile:nth-child(2) .bg-img {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.boxgallery[data-effect="effect-2"] .panel.current .bg-tile:nth-child(3) .bg-img {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.boxgallery[data-effect="effect-2"] .panel.current .bg-tile:nth-child(4) .bg-img {
	-webkit-transition-delay: 0.45s;
	transition-delay: 0.45s;
}

/* Variation 3 */
.boxgallery[data-effect="effect-3"] .panel::after {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	content: '';
	-webkit-transition: opacity 1.1s ease-in-out;
	transition: opacity 1.1s ease-in-out;
}

.boxgallery[data-effect="effect-3"] .panel.current::after,
.boxgallery[data-effect="effect-3"] .panel.active::after {
	opacity: 0;
}

.boxgallery[data-effect="effect-3"] .panel.current::after {
	-webkit-transition: none;
	transition: none;
}

.boxgallery[data-effect="effect-3"] .panel.current .bg-img {
	-webkit-transition: -webkit-transform 1.1s cubic-bezier(0.7,0,0.3,1);
	transition: transform 1.1s cubic-bezier(0.7,0,0.3,1);
}

.boxgallery[data-effect="effect-3"] .panel.current .bg-tile:nth-child(2) .bg-img {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.boxgallery[data-effect="effect-3"] .panel.current .bg-tile:nth-child(3) .bg-img {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.boxgallery[data-effect="effect-3"] .panel.current .bg-tile:nth-child(4) .bg-img {
	-webkit-transition-delay: 0.45s;
	transition-delay: 0.45s;
}
.kafelki{
	position: absolute;
	overflow: hidden;
	right: 0px;
	width: 50%;
	height: 66%;
	z-index: 3;
	bottom: 25%;
}
.kafelki-inner{
	overflow: hidden;
	position: relative;
	width: 25%;
	background-color: rgba(2,66,149,0.8);
	height: 33.333333%;
	float: left;
	z-index: 3;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.kafelki-inner:nth-child(1){
	margin-left: 75%;
	margin-right: 0%;
	background-color: rgba(219,19,26,0.8);
}
.kafelki-inner:nth-child(2){
	margin-left: 50%;
}
.kafelki-inner:nth-child(3){
	margin-right: 0%;
	background-color: rgba(2,50,113,0.8);
	
}
.kafelki-inner:nth-child(4){
	margin-left: 0%;
	background-color: rgba(2,50,133,0.8);
}
.kafelki-inner:nth-child(5){
	margin-left: 0%;
}
.kafelki-inner:hover{
	background-color: rgba(16,33,56,0.9);
}
.oferta-inner:hover{
	background-color: rgba(16,33,56,0.9);
}
.menu{
	background-color: rgba(255,255,255,0.85);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 10%;
	z-index: 1001;
	background-position: 5% center;
	background-repeat: no-repeat;
	text-transform: uppercase;
}
.oferta{
	width: 100%;
	position: absolute;
	overflow: auto;
	bottom: 0;
	height: 26%;
	z-index: 5;
	background-image: url(../img/bg_oferta.jpg);
	background-position: center;
	background-position: left;
}
.oferta-inner{
	width: 33.3%;
	height: 100%;
	position: relative;
	overflow: hidden;
	float: left;
	background-color: rgba(26,36,51,0.1);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-box-shadow:inset 0px 0px 0px 1px #fff;
    -moz-box-shadow:inset 0px 0px 0px 1px #fff;
    box-shadow:inset 0px 0px 0px 1px #fff;
}
.menu-item{
	float: right;
	position: relative;
	overflow: hidden;
	width: 7%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	color:#505050; 
	border-right: 1px solid #b6b6b6;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
	font-weight: 600;
}
.menu-item:hover{
	background-color: #fff;
	color: #000;
}
.logo_href{
	float: left;
	position: relative;
	overflow: auto;	
	width: 23%;
	display: block;
	height: 100%;
}
.text_menu{
	position: absolute;
	left: 20px;
	bottom: 40%;
	overflow: auto;
	display: block;
	font-weight: 500;
	font-size: 19px;
}
.text_menu_akt{
	position: absolute;
	left: 20px;
	color: #ccc;
	top: 40%;
	overflow: auto;
	display: block;
	font-weight: 500;
	font-size: 15px;
}
hr{
	color: #ccc;
	margin-bottom: 20px;
	margin-top: 20px;
	
}
.text_menu_akt strong{
	font-size: 19px;
	color:#fff;
}
.text_menu2{
	position: absolute;
	left: 40px;
	top: 131px;
	overflow: auto;
	color: #ccc;
	display: block;
	font-weight: 500;
	font-size: 20px;
	height: auto;
	
}
.text_menu3{
	position: absolute;
	left: 40px;
	top: 30px;
	overflow: hidden;
	display: block;
	color: #fff;
	display: block;
	font-weight: 800;
	font-size: 35px;
	width: 100%;
}
.WS{
	background-image: url(../img/ws2.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: rgba(16,33,56,1);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 200px;
	height: 60px;
}
.WS:hover{
	background-image: url(../img/ws2.png);
	background-position: center;
	background-size: contain;
	background-color: rgba(9,60,126,1);
}
.box_t_p{
	color: #74777c;
	float: left;
	width: 60%;
}
.p40{
	padding: 40px;
	padding-top: 0px;
}
.p20{
	padding: 40px;
}
.over{
	position: relative;
	overflow: auto;
	background-color: #fff;
	padding: 0px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.over:nth-child(odd){
	position: relative;
	overflow: auto;
	background-color: #f6f6f6;
	padding: 30px;
}
.over:nth-child(even) .box_25{
	float: right;
}

.profi{
	background-image: url(../img/profi.png);
	background-position: 40px center;
	background-repeat: no-repeat;
}
.sufigs{
	background-image: url(../img/sufigs.png);
	background-position: 40px center;
	background-repeat: no-repeat;
}
.mrowka{
	background-image: url(../img/mrowka.png);
	background-position: 40px center;
	background-repeat: no-repeat;
}
.profi:hover, .sufigs:hover, .mrowka:hover{
	background-position: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	background-color: rgba(255,255,255,0.5);
}
.gazetka_hover{
	transition: 0.3s;
	-webkit-transition: 0.3s;
	opacity: 0.6;
	cursor: pointer;
}
.gazetka_hover:hover{
	opacity: 1;
}
.box_t_p h1{
	color: #01264f;
}
.logotypy{
	position: relative;
	overflow: auto;
}
.footer{
	background-color: #383838;
	height: 300px;
	position: relative;
	overflow: auto;
}
.footer_bottom{
	background-color: #454545;
	position: relative;
	overflow: auto;
	color: #a1a1a1;
	font-size: 19px;
	padding: 12px;
	padding-left: 40px;
	background-image: url(../img/sufigs.png);
	background-position: 97% center;
	background-repeat: no-repeat;
}
.footer_in{
	position: relative;
	overflow: auto;
	float: left;
	width: 16.6%;
	color:#c3c3c3;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer_in h1{
	color:#fff;
}
.footer_in:hover{
	color:#fff;
}
.box_25{
	width: 35%;
	position: relative;
	overflow: auto;
	height: 450px;
	float: left;
	background-image: url(../images/loading.gif);
	background-position: center;
	background-repeat: no-repeat;
	 -webkit-box-shadow:inset 0px 0px 0px 10px #fff;
    -moz-box-shadow:inset 0px 0px 0px 10px #fff;
    box-shadow:inset 0px 0px 0px 10px #fff;
}
.box_100{
	width: 100%;
	position: relative;
	overflow: auto;
	height: 450px;
	background-size: cover;
	background-position: center;
}

#oferta_inwestycyjna{
	background-image: url(../img/ofeta_Inwestycyjna.jpg);
	background-size: cover;
	background-position: center;
}

.codrops-header{
	top: 14% !important;
}
.oferta_button{
	overflow: auto;
	position: relative;
	z-index: 800;
	width: 100%;
	height: 200px;
	background-image: url(../img/bg_oferta.jpg);
	background-position: center;
	background-position: left;
}

.pic-border {
    border: 1px solid white;
}

@media screen and (max-width: 380px) {
	.boxgallery > nav span {
		width: 50px;
		height: 50px;
	}
}





@media only screen and (max-width: 650px), only screen and (max-device-width: 650px) {
	.text_menu2{
		top: 102px;
		font-size: 20px !important;
	}
}




