.telegram {
    display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
}
.telegram__title {
    font-size: 20px;
	font-weight: 400;
	color: #fff;
	display: flex;
	gap: 10px;
	align-items: center;
}
.telegram__title:before {
	content: '';
	width: 30px;
	height: 30px;
	display: block;
	background-image: url('images/telegram.svg');
}
.telegram__link {
	text-decoration: none;
	color: #fff;
	border-bottom: 1px solid #fff;
	transition: border 0.3s linear;
}
.telegram__link:hover {
	border-bottom: 1px solid transparent;
}
@media only screen and (max-width: 1100px) {
	.telegram {
		gap: 20px;
	}
	.telegram__title {
		font-size: 18px;
	}
}
@media only screen and (max-width: 640px) {
	.telegram {
		margin: 20px 0 0;
	}
	.telegram__title {
		flex-wrap: wrap;
		justify-content: end;

	}
}
@media only screen and (max-width: 400px) {
	.telegram__title {
		justify-content: center;

	}
}
