.container-big {
	margin: 20px 0;
	display: flex;
	justify-content: center;
}
.container-small {
	margin: 20px 0;
	display: none;
	justify-content: center;
}

@media (max-width: 1000px) {
	.container-big {
		display: none;
	}

	.container-small {
		display: flex;
	}
}

.container-telegramSmall {
	height: 500px;
	width: 500px;
	padding-top: -20px;
	background: #f5f8ff;
	border-radius: 5px;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
	display: flex;
	justify-content: space-between;
}

.container-telegram {
	height: 500px;
	width: 1000px;
	background: #f5f8ff;
	border-radius: 5px;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
	display: flex;
	justify-content: space-between;
}

.left img {
	height: 500px;
	border-radius: 5px;
}

.right-small {
	padding: 20px 0;
	margin-left: 55px;
	text-align: center;
	justify-content: center;
}

.right {
	padding: 20px 0;
	margin-right: 50px;
	text-align: center;
	justify-content: center;
}

.title-telegram {
	font-family: Inter, var(--default-font-family);
	font-size: 36px;
	font-weight: 400;
	color: #333;
}

.info li {
	color: #333;
	font-family: Inter, var(--default-font-family);
	font-size: 24px;
	font-weight: 400;
	text-align: left;
}

.link-telegram {
	padding-top: 20px;
	font-family: Inter, var(--default-font-family);
	font-size: 24px;
	font-weight: 400;
	background: linear-gradient(
		90deg,
		#d32d7b,
		#f1654c,
		#7847ed,
		#8d4be8,
		#34a4f1
	);
	background-clip: border-box;
	-webkit-background-clip: text;
	color: transparent;
	display: inline-block;
}

.link-telegram:hover {
	background: linear-gradient(
		90deg,
		#d32d7b,
		#f1654c,
		#7847ed,
		#8d4be8,
		#34a4f1
	);
	background-clip: border-box;
	-webkit-background-clip: text;
	color: transparent;
	text-decoration: underline;
}

@media (max-width: 510px) {

	.container-telegramSmall {
		width: 95%;
		height: 450px;
		justify-content: center;
	}

	.title-telegram {
		font-size: 28px;
		
	}

	.container-small {
		margin: 0;
	}
	.right-small {
		margin-left: 0px;
	}
	.info li {
		font-size: 18px;
	}

	.link-telegram {
		font-size: 18px;
	}
}