main {
	background: #fff;
}
/* ======================================== */
/* Contacts Page Styles            */
/* ======================================== */
.contacts-page .contacts-content-section {
	padding: 30px 0 80px 0;
}


/* ======================================== */
/* Left Column: Details            */
/* ======================================== */

.contacts-page .contact-details-col {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 30px 30px;
	--icon-base: 20px;
}

.contacts-page .contact-block .h3 {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
}

.contact-block {
	max-width: 300px;
}

.contacts-page .contact-block .icon-group-text {
	font-size: 16px;
	font-weight: 500;
}
.social-icons.items-group {
	width: 100%;
}


/* ======================================== */
/* Middle Column: Image             */
/* ======================================== */


/* ======================================== */
/* Right Column: Form             */
/* ======================================== */
.rigth-col {
	position: relative;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: var(--blocks-indent);
}
.contacts-page .form-col {
	display: flex;
	flex-direction: column;
}

.contacts-page .form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

.contacts-page .form-wrapper .h2 {
	font-size: 28px;
	line-height: 34px;
}

.contacts-page .contacts-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contacts-page .contacts-form textarea.form-input {
	min-height: 90px;
	resize: vertical;
}


.contacts-page .bottom-contacts .h4 {
	font-weight: 600;
}


/* ======================================== */
/* Responsiveness              */
/* ======================================== */
@media (min-width: 1280px) and (max-width: 1680px) {
	.col-75.rigth-col > .image-col {
		display: none;
	}
	.contacts-page .contact-details-col {
		grid-column: span 6;
	}
	.col-75.rigth-col {
		grid-column: span 6;
	}
	.col-75.rigth-col > .image-col {
		display: none;
	}
	.col-75.rigth-col > .form-col {
		grid-column: span 12;
	}
	.contact-block {
		min-width: 40%;
	}
}
@media (max-width: 1279px) {

	.contacts-page .contacts-content-section {
		padding: 30px 0;
	}

	.contacts-page .contacts-content-container {
		gap: 30px; /* Уменьшаем отступ между колонками, когда они станут одна под одной */
	}

	.contacts-page .contact-details-col {
		gap: 25px;
	}

	.contacts-page .image-col {
		order: -1; /* Ставим картинку выше на мобильных */
	}

	.contacts-page .contact-image {
		height: 300px;
	}

	.contacts-page .contact-details-col .btn {
		width: 100%;
		max-width: 100%;
	}

	.contacts-page .bottom-contacts {
		margin-top: 20px;
	}
}