/*****************************************************
 * generic styling for ALS elements: outer container
 ******************************************************/

.als-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
	z-index: 0;
}

/****************************************
 * viewport styling
 ***************************************/

.als-viewport {
	position: relative;
	overflow: hidden;
	margin: 0px auto;
}

/***************************************************
 * wrapper styling
 **************************************************/

.als-wrapper {
	position: relative;
	/* if you are using a list with <ul> <li> */
	list-style: none;
}

/*************************************
 * item: single list element
 ************************************/

.als-item {
	position: relative;
	display: block;
	text-align: center;
	cursor: pointer;
	float: left;
}

/***********************************************
 * prev, next: buttons styling
 **********************************************/
 
.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
}



#realizations {
  padding-bottom: 100px;
  background: #ffffff;
}
#realizations .realizations {
  padding-top: 50px;
}
#realizations .realizations .two a {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 2px solid #fc2828;
  position: relative;
}
#realizations .realizations .two a:hover::before {
  width: 100%;
  height: 100%;
  background: #fc2828;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}
#realizations .realizations .two a:hover::after {
  content: 'Zobacz';
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  color: #ffffff;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -8px 0 0 0;
}