#consult-block {
	background-color: #005FF9;
	border-radius: 5px;
	z-index: 0;
	position: relative;
}
#consult-block .item_consult {
	padding: 60px;
}
#consult-block:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(images/bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 100%;
	z-index: -2;
}
#consult-block h2, 
#consult-block h2 {
	margin-top: 0;
	margin-bottom: 10px;
	color: white;
}
#consult-block div {
	color: white;
}
#consult-block .block_title {
	max-width: 520px;
	width: 100%;
}
#consult-block .form {
	/*max-width: 520px;*/
	width: 100%;
	/*flex-direction: column;*/
	justify-content: space-between;
	column-gap: 30px;
	row-gap: 30px;
}
#consult-block .form .info {
	gap: 30px;
	width: 100%;
}
#consult-block .form .info > * {
	width: 49%;
}
#consult-block input,
#consult-block textarea {
	width: 100%;
	background: transparent;
	border-radius: 40px;
	border: 1px solid #fff;
	outline: none;
	padding: 15px 30px;
}
#consult-block input::placeholder,
#consult-block textarea::placeholder {
		color: white;
}
#consult-block textarea {
	max-height: 130px;
	height: 100%;
}
#consult-block .send {
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 30px);
}
#consult-block .spp-input {
	max-width: 305px;
	width: 100%;
	font-size: 14px;	
}
#consult-block .spp-input a {
	font-size: 14px;	
	color: white;
}

#consult-block button {
	width: fit-content;
}
@media (max-width: 1200px) {
	#consult-block .form {
		flex-direction: column;
	}
	#consult-block .item_consult {
		padding: 20px;
	}
}
@media (max-width: 960px) {
	#consult-block .item_consult:after {
		content: none!important;
	}
}
@media (max-width: 590px) {
	#consult-block .form .info {
		gap: 10px;
		flex-direction: column;
	}
	#consult-block .form .info > * {
		width: 100%;
	}
	#consult-block .send {
		width: 100%
	}
	#consult-block button {
		width: 100%;
	}
}
@media (max-width: 500px) {
	#consult-block .item_consult {
		padding: 20px;
	}
}
@media (max-width: 450px) {
	#consult-block .form {
		gap: 10px;
	}
	#consult-block .send {
		gap: 10px;
		flex-direction: column;
		width: 100%
	}
	#consult-block .spp-input {
		max-width: 100%;
		text-align: center;
	}
}