.contacts {
	margin-top: 40px;
}

.contacts-header {
	position: relative;
}

.contacts-header .wave_big {
	top: 60px;
	right: -650px;
}

.contacts-header .wave_small {
	bottom: -60px;
	left: -250px;
}

.contacts-title {
	margin-bottom: 30px;
}

.contacts-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.phone-block {
	display: flex;
	gap: 15px;
	align-items: center;
}

.contact-follows {
	display: flex;
	align-items: center;
	gap: 15px;
}

.contact-follows__link {
	display: flex;
	align-items: center;
	gap: 15px;
}

.phone-block,
.email-block,
.contact-follows {
	font-weight: 700;
	font-size: 26px;
	line-height: 1;
}

.addresses {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 90px;
}

.addresses .wave_big {
	bottom: 45px;
	left: -570px;
}

.addresses .wave_small {
	bottom: 204px;
	right: -200px;
}

.addresses-block:nth-child(2n) {
	flex-direction: row-reverse;
}

.addresses-block {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	width: 100%;
}

.address-info {
	margin-top: 30px;
}

.address-name {
	color: var(--site-white-color);
	display: inline-block;
	border-radius: var(--site-border-radius);
	background-color: var(--site-accent-color);
	padding: 18px 30px;
	margin-bottom: 30px;
}
.address-text {
	text-align: left;
}

.address-img {
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

.only-mobile {
	display: none;
}

/* adaptiv */

@media (max-width: 767px) {
	.contacts {
		margin-top: 15px;
	}

	.contacts-title {
		margin-bottom: 20px;
	}

	.contacts-info {
		text-align: left;
	}

	.contacts-info__text {
		margin-bottom: 75px;
	}

	.email-block {
		margin-top: -12px;
	}

	.phone-block,
	.email-block {
		font-size: 18px;
		line-height: 22px;
	}

	.contact-follows {
		font-size: 22px;
		line-height: 22px;
		flex-direction: column;
		gap: 20px;
		margin-top: 10px;
	}

	.contact-follows__link {
		display: flex;
		align-items: center;
		gap: 25px;
	}

	.contacts-header {
		padding-bottom: 80px;
	}

	.contacts-header .wave_small {
		bottom: auto;
		left: auto;
		top: 150px;
		right: -40px;
	}
	.contacts-header .wave_big {
		top: auto;
		right: auto;
		bottom: 0;
		left: -90px;
	}

	.addresses {
		gap: 30px;
		padding-top: 20px;
		margin-top: 20px;
	}

	.addresses-block {
		flex-direction: column;
		align-items: start;
		gap: 20px;
		position: relative;
	}

	.addresses .wave_big {
		bottom: -40px;
		left: -90px;
	}

	.addresses-block:nth-child(1) {
		padding-bottom: 80px;
	}

	.addresses-block .wave_small {
		bottom: 0;
		right: -30px;
	}

	.addresses-block:nth-child(2n) {
		flex-direction: column;
	}

	.address-info {
		margin: 0;
		width: 100%;
	}

	.address-name {
		background: none;
		font-size: 28px;
		line-height: 30px;
		text-align: center;
		padding: 0;
		width: 100%;
		margin-bottom: 0px;
	}

	.only-mobile {
		display: block;
	}
	.only-desktop {
		display: none;
	}

	.addresses .g-button {
		width: calc(100% - 50px);
	}
}
