/* Сброс стилей Битрикс, мешающих вёрстке */
body {
	margin: 0;
	padding: 0;
}

#panel {
	position: relative;
	z-index: 10000;
}

/* Контент компонентов на страницах каталога/новостей */
.bx-content,
.page-content {
	display: block;
}

.page-content {
	padding: 60px 0;
}

.page-content .wrap {
	box-sizing: border-box;
}

/* Footer: гарантия корректного позиционирования нижнего блока */
.footer .wrap {
	position: relative;
	min-height: 220px;
}

.footer__bottom {
	box-sizing: border-box;
}

/* Ссылка «Узнать подробнее» в карточках услуг */
.services__item a {
	position: absolute;
	left: 24px;
	bottom: 24px;
	background: #fff;
	width: 250px;
	height: 56px;
	border-radius: 8px;
	font-family: 'Involve Med', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 56px;
	text-align: center;
	text-decoration: none;
	color: #1A2E4A;
	opacity: 0;
	transition: all 200ms ease;
}

.services__item:hover a {
	opacity: 1;
}
