* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #FFF5ED;
}

.container {
	max-width: 1230px;
	padding: 50px 15px;
	margin: auto;
	text-align: center;
}

.h1 {
	color: #000;
	font-family: Montserrat;
	font-size: clamp(28px, 3.5vw, 40px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.subtitle {
	color: #000;
	font-family: Roboto;
	font-size: clamp(16px, 2vw, 24px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: .83em;
}

.form {
	margin: 20px auto 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 634px;
	width: 100%;
	gap: 10px;
}

input {
	border-radius: 6px;
	border: 1px solid #9B9B9B;
	width: 100%;
	padding: 4px 10px 8px;

	color: #000;
	font-family: Roboto;
	font-size: clamp(16px, 2vw, 24px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

input::placeholder {
	color: #9B9B9B;
}

input[type="submit"] {
	cursor: pointer;
	padding: clamp(12px, 2vw, 23px);
	border: none;
	background: #000;
	color: #FFF;
}

.title {
	color: #000;
	font-family: Montserrat;
	font-size: clamp(8px, 1.5vw, 24px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.number {
	color: #000;
	text-align: right;
	font-family: Montserrat;
	font-size: clamp(16px, 2.5vw, 34px);
	font-style: italic;
	font-weight: 500;
	line-height: normal;
}

.table {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}

.table__item {
	flex: 0 0 calc(25% - 20px * 3 / 4);
	border-radius: 16px;
	background: #FDFDFD;
	box-shadow: 0px 0px 20px 5px rgba(239, 215, 194, 0.25);

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 16px 0;
}

.table__item_big {
	flex: 0 0 calc(100% - (25% - 20px * 3 / 4) - 20px);
	align-items: unset;
	padding: 0;
	gap: 0;
}

.table__item_colored {
	background: #FFE7D0;
}

.row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 32px;
}
.row:nth-child(even) {
	background: #F1F1F1;
}

.h2 {
	color: #000;
	text-align: center;
	font-family: Montserrat;
	font-size: clamp(24px, 3vw, 36px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-top: 40px;
}

.social {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.social__item {
	display: flex;
	align-items: center;
	gap: 16px;

	color: #000;
	text-align: center;
	font-family: Montserrat;
	font-size: clamp(24px, 3vw, 36px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration: none;
}

.social__item:hover {
	color: #E4B489;
}

@media (max-width: 992px) {
	.social {
		flex-direction: column;
	}
	.social svg {
		height: 50px;
		width: auto;
	}
}

@media (max-width: 480px) {
	.table {
		gap: 0;
	}

	.table__item {
		flex: 0 0 25%;
		border-radius: 0;

	}

	.table__item_big {
		flex: 0 0 75%;
	}

	.row {
		padding: 10px;
	}

	.social svg {
		height: 30px;
		width: auto;
	}
	.social__item {
		font-size: 20px;
	}
}