.contact-form-section {
    display: flex;
    min-height: 810px;
	background: linear-gradient(180deg, #262C42 61.97%, var(--blue-light) 100%);
}

.contact-form-section .contact-form-section__left {
	display: flex;
	flex-direction: column;
	width: 50%;
	padding: 150px 145px 100px 0;
}

.contact-form-section .contact-form-section__title {
	margin: 0;
	color: var(--yellow);
}

.contact-form-section .contact-form-section__description {
	color: var(--white);
}

.contact-form-section .contact-form-section__description:not(:first-child) {
    margin-top: 32px;
}

.contact-form-section .contact-form-section__person:not(:first-child) {
    margin-top: 24px;
}

.contact-form-section .person {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-form-section .person__image {
	display: flex;
	width: 175px;
	height: 175px;
}

.contact-form-section .person__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-form-section .person__content {
	display: flex;
	align-items: flex-end;
	gap: 20px;
}

.contact-form-section .person__info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.contact-form-section .person__name {
	font-weight: 800;
	color: var(--white);
}

.contact-form-section .person__position {
	font-weight: 600;
	color: var(--blue-ray);
}

.contact-form-section .person__social {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	margin-bottom: 7px;
}

.contact-form-section .person__social-link {
	display: flex;
	color: var(--white);
}

.contact-form-section .person__social-link svg {
	width: 100%;
	height: 100%;
}

.contact-form-section .person__social-link:hover {
	color: var(--orange);
}

.contact-form-section .contact-form-section__right {
	width: 50%;
	padding-block: 100px;
	padding-left: 60px;
}

.contact-form-section .contact-form-section__form {
	display: flex;
	padding: 40px;
	border-radius: 20px;
	background: linear-gradient(180deg, var(--blue-ray-30) 1.25%, var(--white-10) 100%);
	box-shadow: 0px 1px 30px 0px #452A7C1A;
}

@media (max-width: 1024px) {
	.contact-form-section {
		flex-wrap: wrap;
		min-height: auto;
	}

	.contact-form-section .contact-form-section__left {
		width: 100%;
		padding: 80px 0 0;
	}

	.contact-form-section .contact-form-section__description:not(:first-child) {
		margin-top: 30px;
	}

	.contact-form-section .contact-form-section__right {
		width: 100%;
		padding: 80px 0 80px;
	}
}

@media (max-width: 767px) {
	.contact-form-section .contact-form-section__left {
		padding-top: 60px;
	}

	.contact-form-section .contact-form-section__description:not(:first-child) {
		margin-top: 24px;
	}
	
	.contact-form-section .person__image {
		width: 120px;
		height: 120px;
	}

	.contact-form-section .contact-form-section__right {
		padding-block: 60px;
	}

	.contact-form-section .contact-form-section__form {
		padding: 32px;
	}
}