.another{
	margin-top: 100px;
}
.another .slick-arrow{
	margin: 5px;
	cursor: pointer;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	box-sizing: border-box;
	border: 3px solid #81C6D6;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
}
.another .slick-arrow:hover{
	border-color: #000;
}
.another .slick-prev{
	background-image: url('./images/left.png');
}
.another .slick-next{
	background-image: url('./images/right.png');
}
.another__control{
	display: flex;
	align-items: center;
}
.another__head{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
}
.another__slide{

}
.catalogItem{

	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
}
.catalogItem__image{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 270px;
	flex: none;
	overflow: hidden;
	cursor: pointer;
}
.catalogItem__image img{
	transition: transform .2s linear;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalogItem__image:hover img{
	transform: scale(1.05);
}

.catalogItem__description{
	flex: 1;
	background: #FFFFFF;
	border: 2px solid #81C6D6;
	box-sizing: border-box;
	border-top: none;
	padding: 30px;
}
.catalogItem__name{
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #000;
	text-decoration: none;
	margin-bottom: 15px;
	min-height: 48px;
}
.catalogItem__name:hover{
	color: #81C6D6;
}

.catalogItem__param{
	font-size: 12px;
	color: #0F7F99;
	margin-bottom: 3px;
}


.catalogItem__buttons{

	align-items: center;
	justify-content: space-between;
	padding: 29px;
	border: 2px solid #81C6D6;
	border-top: none;
	background-color: #fff;
	position: absolute;
	left: 0;
	top:  calc(100% - 2px); 
	width: 100%;
	box-sizing: border-box;
	display: none;
}

.catalogItem:hover  .catalogItem__buttons{
	display: flex;
}

.catalogItem__more{
	width: 150px;
	height: 60px;
	border: 2px solid #3C3F49;
	background-color: #3C3F49;
	color: #fff;
	text-align: center;
	line-height: 56px;
	box-sizing: border-box;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
}

.catalogItem__more:hover{
	background-color: #fff;
	color: #3C3F49;
	cursor: pointer;
}
.catalogItem__order{
	width: 150px;
	height: 60px;
	border: 2px solid #81C6D6;
	background-color: #81C6D6;
	color: #fff;
	text-align: center;
	line-height: 56px;
	box-sizing: border-box;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
}

.catalogItem__order:hover{
	background-color: #fff;
	color: #81C6D6;
	cursor: pointer;
}