@charset "utf-8";
.biz_wrap {
		padding-top: 60px;
}
.catalog_all {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 60px 35px;
		margin: 0 0 80px;
}
.biz_item {}
.biz_item_figure {
		margin-bottom: 20px;
		overflow: hidden;
		border: 1px solid #dadce0;
		box-sizing: border-box;
}
.biz_item_figure img {
		width: 100%;
		height: auto;
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		box-sizing: border-box;
}
.biz_item_figure img.none {
		border: 1px solid rgba(1);
}
@media (hover: hover) {
		.biz_item_figure a:hover img {
				transform: scale(1.05)
		}
}
.biz_item_caption {
		font-weight: 500;
		font-size: 20px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		min-height: 44px;
		padding-right: 55px;
		position: relative;
}
.biz_item_caption:lang(en) {
		text-align: right;
		font-weight: 500;
		line-height: 1.1;
}
.biz_item_caption span:lang(en) {
		font-size: 13px;
}
.biz_item_caption a {
		color: #004ea2;
		text-decoration: none;
}
/* ============== */
.biz_item_caption .btn_file {
		position: absolute;
		pointer-events: none;
		right: 45px;
		top: calc(50% - 20px);
}
.btn_file::before {
		content: '';
		display: block;
		position: absolute;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		border: 1px solid #cbdbeb;
		top: 0;
		left: 0;
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn_file::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - -14px);
		left: 17px;
		width: 9px;
		height: 12px;
		background: url("../png/icon_file_blue.png") no-repeat 0 0;
		background-size: 9px;
}
@media (hover: hover) {
		a:hover .btn_file::before {
				transform: scale(1.3);
		}
}
@media(max-width: 1023px) {
		.catalog_all {
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				gap: 60px 35px;
		}
}
@media(max-width: 767px) {
		.biz_wrap {
				padding-top: 40px;
		}
		.catalog_all {
				display: flex;
				justify-content: space-between;
				flex-wrap: wrap;
				gap: 0 0;
		}
		.biz_item {
				width: calc(50% - 10px);
				background: #f6f6f7;
				margin: 0 0 40px;
		}
		.biz_item_figure {
				margin-bottom: 0;
				border-top: 1px solid #f6f6f7;
				border-left: 1px solid #f6f6f7;
				border-right: 1px solid #f6f6f7;
				border-bottom: none !important;
		}
		.biz_item_caption {
				font-weight: 500;
				font-size: 16px;
				display: flex;
				justify-content: flex-start;
				padding-top: 20px;
				padding-bottom: 20px;
				padding-left: 15px;
				padding-right: 55px;
				position: relative;
		}
		.biz_item_caption .btn_file {
				right: 50px;
		}
		.biz_item_caption:lang(en) {
				text-align: left;
		}
		.biz_item_caption span:lang(en) {
				font-size: 11px;
		}
}