.contact__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 48px;
	margin-bottom: 48px;
}

.contact__item.first-block {}

.contact__item.link-block {
	padding: 24px;
	border-radius: 8px;
	background-color: var(--light-gray);
}

.contact__item.link-block .contact-item__description,
.contact-item__half a {
	font-size: 16px;
	line-height: 24px;
	color: var(--black);
}

.contact-block__phone a,
.contact-block__email a {
	display: flex;
	align-items: center;
	font-weight: 500;
	letter-spacing: -0.04em;
	color: var(--black);
}

.contact-block__phone {
	font-size: 32px;
	line-height: 40px;
}

.contact-block__email {
	font-size: 24px;
	line-height: 32px;
	margin-top: 16px;
}

.contact-block__phone svg,
.contact-block__email svg {
	margin-right: 16px;
}

.contact-block__social {
	margin-top: 32px;
}

.contact-block__social .socials-list{

}

.contact-block__social .social-icon svg path{
	fill: var(--footer-background);
}

.contact-item__name,
.contact-item__description {
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.01em;
}

.contact-item__name {
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--black);
}

.contact-item__description {
	color: var(--lucky-gray);
	font-weight: 400;
}

.contact-item__half {
	display: flex;
}

.contact-item__half.resume {
	justify-content: space-between;
	align-items: flex-end;
}

.contact-item__left {
	margin-right: 24px;
}

.contact-item__subname {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 18px;
	color: var(--lucky-gray);
}

.resume-btn {
	margin-left: 24px;
	border-radius: 6px;
	background-color: var(--footer-background);
	padding: 12px 22px;
	font-size: 14px;
	line-height: 18px;
	color: var(--white);
	cursor: pointer;
}

.resume-btn:hover {
	background-color: #154A89;
}

.b-map{
	overflow: hidden;
	border-radius: 8px;
}

@media (max-width: 1020px) {
	.contact__list {
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 24px;
	}

	.b-map {
		height: 536px;
	}

	.b-form.contacts {
		margin-top: 24px;
	}

	.contact__form .b-form.contacts {
		padding: 24px;
		margin-top: 24px;
		background: linear-gradient(268.9deg, #10AFE1 0%, #0F53BA 100%);
	}

	.b-form.contacts .b-button {
		width: 100%;
	}

	.b-form.contacts .b-form__title {
		font-size: 22px!important;
		line-height: 26px!important;
	}

	.b-form.contacts .b-form__description{
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.b-form.contacts .b-form__row-inputs--links{
		margin-top: 8px;
	}

	.contact-block__phone{
       	font-size: 22px;
		line-height: 26px;
	}

	.contact-block__email{
		font-size: 18px;
		line-height: 22px;
	}

@media (max-width: 800px) {
	.contact__list {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.contact__item:not(:last-child) {
		margin-bottom: 24px;
	}

	.contact__item {
		order: 3;
	}

	.contact__item:nth-child(3) {
		order: 1;
	}

	.contact__item:nth-child(2) {
		order: 2;
	}

	.contact-item__half {
		flex-direction: column;
	}

	.contact-item__right {
		margin-top: 8px;
	}

	.contact-item__half.resume {
		margin-top: 0px;
		align-items: flex-start;
	}

	.resume-btn {
		margin-top: 24px;
		margin-left: 0;
	}

	.contact-item__name {
		margin-bottom: 16px;
	}
}

@media (max-width: 600px) {
	.resume-btn {
		width: 100%;
		text-align: center;
	}
}