.b2b-front {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: #363636;
  /* flex-direction: column; */
  flex-wrap: wrap;
  overflow: hidden;

}
.container1 {
  width: calc(50% - 2px);
  position: relative;
	float: left;
	overflow: hidden;
	/* margin: 10px; */
	cursor: pointer;
  color: #fff;
}
.container2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30% 50px 50px 50px;
}

.okucia {
  margin-right: 2px;
}
.parapety {
  margin-left: 2px;
  color: black;
  transition: color 0.35s;

}
.parapety:hover {
  color: #fff;
}
.logo-b2b {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items:center;
  justify-content: center;
  gap: 25px;
  /* z-index: 999; */
  text-align: center;
  background-color:#363636;
  padding: 10px;
  color: #fff;
  width: 100%;
  word-spacing: 15px;
  font-size: 2.1em;
}
.logo-b2b-ic {
  max-height: 50px;
}
.logo-b2b-border {
  height: 70%;
  width: 2px;
  background-color: #fff;
}
.container1 img {
	max-width: none;
  width: 100%;
	/* width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px); */
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	/* -webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0); */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.container1:hover img {
	opacity: 0.7;
	/* -webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0); */
  transform: scale(1.03);
}


.container2 h1 {
	position: relative;
	overflow: hidden;
	padding: 0.5em 0;
  font-size: 3em;
}

.container2 h1::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 250px;
	height: 3px;
	background: #fff;
	content: '';
	transition: transform 0.35s;
	transform: translate3d(-100%,0,0);
}

.container2:hover h1::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.container2 p {
	padding: 1em 0;
	opacity: 0;
	/* -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; */
	transition: opacity 0.35s, transform 0.35s;
	/* -webkit-transform: translate3d(100%,0,0); */
	transform: translate3d(0,-20%,0);
  font-size: 1.5em;
}

.container2:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.container2 a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}