/* =============================================
   03_WIDGETS / w-contactspage
   Секция контактов.
   ============================================= */

.contactspage__block {
	box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.1019607843);
	background-color: var(--whiteColor);
	border-radius: 20px;
}
.contactspage__block.contactspage__block--green {
	box-shadow: none;
	background-color: var(--greenColor4);
}
.contactspage__block .crumbs {
	padding-top: 0 !important;
}
.contactspage__blocktop {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contactspage__rows:not(:last-child) {
	margin-bottom: 20px;
}
.contactspage__row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.contactspage__row:not(:last-child) {
	margin-bottom: 20px;
}
.contactspage__row span {
	color: var(--greenColor5);
}
.contactspage__row a {
	transition: color 0.3s;
}
.contactspage__blocksmalltitle {
	color: var(--whiteColor);
	font-weight: 700;
}

/* ── Responsive ── */

@media (max-width: 74.99875em) {
	.contactspage__tel {
		display: none;
	}
	.contactspage__tel-mob {
		width: 100%;
	}
	.contactspage__blocksmalltitle:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media (max-width: 63.99875em) {
	.contactspage {
		padding: 12px 0 40px 0;
	}
	.contactspage__block {
		padding: 20px;
	}
	.contactspage__block:not(:last-child) {
		margin-bottom: 20px;
	}
	.contactspage__blocktop:not(:last-child) {
		margin-bottom: 20px;
	}
	.contactspage__row span {
		font-size: 12px;
		line-height: 125%;
	}
	.contactspage__row a {
		font-size: 20px;
		line-height: 125%;
	}
	.contactspage__row p {
		font-size: 16px;
		line-height: 125%;
	}
	.contactspage__blocksmalltitle {
		font-size: 22px;
		line-height: 127.272727%;
	}
}
@media (min-width: 63.99875em) {
	.contactspage {
		padding: 20px 0 50px 0;
	}
	.contactspage__container {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
	}
	.contactspage__block {
		padding: 40px;
		flex: 1 1 calc((100% - 20px) / 2);
	}
	.contactspage__blocktop:not(:last-child) {
		margin-bottom: 40px;
	}
	.contactspage__row.contactspage__row--big:not(:last-child) {
		margin-bottom: 40px;
	}
	.contactspage__row span {
		font-size: 16px;
		line-height: 125%;
	}
	.contactspage__row a {
		font-size: 32px;
		line-height: 125%;
	}
	.contactspage__row p {
		font-size: 20px;
		line-height: 125%;
	}
	.contactspage__blocksmalltitle {
		font-size: 24px;
		line-height: 125%;
		max-width: 390px;
	}
	.contactspage__copybutton {
		min-width: 226px;
	}
}
@media (min-width: 74.99875em) {
	.contactspage {
		padding: 60px 0;
	}
	.contactspage__tel-mob {
		display: none;
	}
	.contactspage__row p {
		font-size: 24px;
		line-height: 125%;
	}
	.contactspage__blocksmalltitle {
		font-size: 28px;
		line-height: 125%;
		max-width: 470px;
	}
	.contactspage__blocksmalltitle:not(:last-child) {
		margin-bottom: 40px;
	}
}

/* ── Hover ── */

@media (any-hover: hover), (pointer: fine) {
	html:not([data-fls-touch]) .contactspage__row a:hover {
		color: var(--greenColor4);
	}
}
