body {
	margin: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.main {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.5)),
		url("/img/bg-desk.webp");
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
}

@media screen and (max-width: 998px) {
	.main {
		background: linear-gradient(rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.5)),
			url("/img/bg-tab.webp");
		background-position: top;
		background-size: cover;
		background-repeat: no-repeat;
	}
}
@media screen and (max-width: 756px) {
	.main {
		background: linear-gradient(rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.5)),
			url("/img/bg-mob.webp");
	}
}

.form-wrapper {
	max-width: 450px;
	margin-inline: auto;
	padding-inline: 16px;
}

.form__section {
	padding-top: 100px;
	padding-bottom: 100px;
}
.form__section .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (min-width: 1440px) {
	.form__section .container {
		flex-direction: row;
		justify-content: space-between;
		align-items: start;
	}
}
.form__section-title {
	color: #fff;
	text-align: center;
	font-family: "Montserrat";
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 12px;
}
@media (min-width: 744px) {
	.form__section-title {
		font-size: 40px;
	}
}
@media (min-width: 1440px) {
	.form__section-title {
		font-size: 48px;
		margin-bottom: 20px;
		text-align: left;
	}
}
.form__section-text {
	color: #fff;
	text-align: center;
	font-family: "Montserrat";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 40px;
}
@media (min-width: 744px) {
	.form__section-text {
		font-size: 20px;
	}
}
@media (min-width: 1440px) {
	.form__section-text {
		text-align: left;
	}
}
.form__section-wrapper {
	border-radius: 20px;
	border: 1px solid var(--light, #53bcb9);
	background: rgba(58, 58, 58, 0.8);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	min-height: 369px;
	width: 100%;
	padding: 20px 16px;
}
@media (min-width: 744px) {
	.form__section-wrapper {
		width: 400px;
		padding: 24px 32px;
		min-height: 393px;
	}
}
.form__section-wrapper-text {
	color: var(--white, #fff);
	font-family: "Montserrat";
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 16px;
}
.form__section-main {
	width: 100%;
}
@media (min-width: 1440px) {
	.form__section-main {
		width: 780px;
		order: 2;
	}
}
@media (min-width: 1440px) {
	.contactUs .bg {
		background: none;
	}
}
.form__adres-list {
	display: none !important;
}
@media (min-width: 1440px) {
	.form__adres-list {
		display: flex !important;
	}
}

.form__protect {
	display: flex;
	align-items: center;
	column-gap: 13px;
	padding: 10px 25px 25px 25px;
}
.form__protect-icon {
	width: 35.021px;
	height: 25px;
	flex-shrink: 0;
}
.form__protect-title {
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
.form__protect-description {
	color: #fff;
	font-size: 6px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
}
