.contacts_content {
	position: relative;
	z-index: 20;
	padding-bottom: 100px;
}

.contacts_content_wrapper {
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.form_wrapper,
.socials_wrapper {
	border-radius: 24px;
	background: #fff;
	padding: 62px 48px 62px 62px;
	max-width: 810px;
}

.socials_wrapper {
	max-width: 523px;
	width: 100%;
}

.form_title {
	color: #1f1f1f;
	font-family: 'Blogger Sans';
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 60px; /* 150% */
	text-transform: uppercase;
	margin-bottom: 8px;
}
.form_desc {
	color: #1f1f1f;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 29px; /* 145% */
	margin-bottom: 48px;
}
.form_inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
.form_input {
	border-radius: 8px !important;
	border: 1px solid #8fc3ee;
	background: rgba(2, 101, 203, 0.1);
	padding: 12px;
	color: #1f1f1f;
	font-family: Montserrat;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 155%; /* 18.6px */
}

.form_input::placeholder {
	color: #1f1f1f;
	font-family: Montserrat;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 155%; /* 18.6px */
	text-transform: uppercase;
	opacity: 0.6;
}

.form_textarea {
	width: 100%;
	height: 92px;
	resize: none;
}

.form_btn {
	margin-top: 48px;
	border-radius: 50px;
	background: #0265cb;
	color: #fff;
	padding: 14px 8px 14px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	border: none;
	font-family: Montserrat;
	outline: none;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	transition: background 0.3s ease;
}

.form_btn:hover {
	background: #fed237;
	color: #0265cb;
}

.form_btn span {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: var(--color-yellow-61, #fed237);
}

.socials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.social {
	border-radius: 500px;
	border: 1px solid #e0e8ed;
	background: #eaf0f4;
	padding: 2px 24px 2px 2px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: background 0.3s ease;
}

.social:hover {
	background: #fff;
}

.social_icon {
	border-radius: 500px;
	background: #fff;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social_title {
	color: #1f1f1f;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 600;
	line-height: 100%;
}

@media (max-width: 1000px) {
	.contacts_content_wrapper {
		flex-direction: column;
		gap: 16px;
	}
	.form_wrapper,
	.socials_wrapper {
		padding: 32px 20px;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.form_title {
		font-size: 28px;
		line-height: 36px;
	}

	.form_desc {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 32px;
	}

	.form_inputs {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 12px;
	}

	.form_input {
		font-size: 14px;
	}

	.form_input::placeholder {
		font-size: 14px;
	}

	.form_textarea {
		height: 120px;
	}

	.form_btn {
		margin-top: 32px;
		padding: 12px 8px 12px 20px;
		font-size: 13px;
		width: 100%;
		justify-content: space-between;
	}
	.social {
		padding: 2px 20px 2px 2px;
	}
}

@media (max-width: 400px) {
	.socials {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.contacts_content {
		padding-bottom: 50px;
	}
}
