.another-form {
	margin-bottom: clamp(70px, 10vw, 95px);

	.another-form_content {
		box-shadow: 0px 2px 10px 0px #0000001A;
		background: #fff;
		border-radius: 16px;
		overflow: hidden;
		display: flex;
		gap: clamp(30px, 5vw, 50px);
	}
	.another-form--pic {
		flex-shrink: 0;

		img {
			width: 100%;
			height: 100%;
		}
	}
	.another-form--title {
		font-weight: 600;
		font-size: clamp(24px, 3vw, 36px);
		line-height: 1.2;
	}
	.another-form--form {
		padding: 50px 50px 20px;
	}
	.another-form--fields {
		flex-direction: row!important;
		gap: 21px!important;
		margin-top: 40px;
	}
	.another-form--privacy {
		margin-top: 20px;
		display: block!important;
	}
	.form-25-bottom-text {
		margin-top: 5px;
	}
	.form-25-bottom-wrapper {

	}
	@media (width > 768px) and (width <= 1200px) {
		.another-form--pic {
			display: none;
		}
	}
	@media (width <= 768px) {
		.another-form_content {
			flex-direction: column;
		}
		.another-form--form {
			padding: 0 20px 30px;
		}
		.another-form--fields {
			flex-direction: column!important;
		}
	}
}