.stories img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stories .item-block {
	position: relative;
	height: 360px;
	overflow: hidden;
	padding: 0;
	cursor: pointer;
}

.storie-info {
	position: absolute;
	left: 0;
	opacity: 0;
	top: 0;
	/*top: -100%;*/
	width: 100%;
	height: 100%;
	background: rgba(78,120,121,0.9);
	padding: 40px 10px;
	padding-top: 50px;
	transition: .2s;
}

.storie-info .btn2 a {
	min-width: 189px;
	padding: 18px 10px;
}

.storie-info.show {
	opacity: 1;
}

.stories .item-block:hover .storie-info {
   /*top: 0;*/
   opacity: 1;
}

.storie-info p {
	font-size: 22px;
	color: #fff;
	text-align: center;
}

.btn2 {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
}

.btn2 a {
	display: block;
	font-family: Helveticaneuecyr-Roman;
	font-size: 22px;
	color: #fff;
	border: 2px solid #fff;
	padding: 18px 40px;
	text-align: center;
	text-decoration: none;
}

.btn2 a:hover {
	background: #fff;
	color: #5f8583;
}

@media (max-width: 768px) {
	.storie-info {
		padding: 30px 20px;
		padding-top: 55px;
	}

}

@media (max-width: 450px) {
  .btn2 {width: 85%;}
  .btn2 a {width: 100%;}
  .storie-info p {font-size: 20px;}
}