* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}
.page {
	background-image: url('../img/background.webp');
	background-repeat: no-repeat;
	height: 100vh;
	background-size: cover;
	background-position: 50%;
}
.page_row {
	width: 100%;
	max-width: 500px;
	max-height: 100vh;
	border-radius: 10px;
	background-color: #fcfcfc;
	box-shadow: 0 0 30px -6px rgba(0,0,0,.15);
	top: calc(50% - 320px);
	left: calc(50% - 250px);
	position: absolute;
}
.content__img {
	background-image: url('../img/logo.webp');
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	height: 305px;
}
.content__img img{
	width: 100%;
	height: auto;
}
.content__description {
	padding: 10px
}
.content__description-title {
	text-align: center;
	margin: 10px auto;
}
.content__description-desc {
	color: rgb(43, 47, 153);
    text-align: justify;
    font-size: 14px;
    line-height: 18px;
}
.content__description-desc p {
	text-indent: 1.5em;
	margin: 5px auto;
}
.content__description-button {
	display: flex;
	align-items: center;
}
.telegram_button,
.viber_button,
.sites_button {
	flex-grow: 1;
	width: 100%;
}
.telegram-channel {
	color: #fff;
	width: 100%;
	border: none;
	outline: none;
	padding: 11px;
	cursor: pointer;
	font-size: 14px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	background: linear-gradient(180deg,#20b1f5,#169fe3);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	text-decoration: none;
}
.telegram-channel:hover,
.viber-channel:hover {
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
}
.telegram-channel-img,
.viber-channel-img,
.sites-channel-img {
	padding: 0;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    display: block;
}
.telegram-img,
.viber-img,
.sites-img {
	height: 28px;
}
.telegram-channel-a,
.viber-channel-a,
.sites-channel-a {
	width: 100%;
}
.viber-channel {
	background-color: #784F99;
	color: #fff;
	width: 100%;
	border: none;
	outline: none;
	padding: 11px;
	cursor: pointer;
	font-size: 14px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	text-decoration: none;
}
.sites-channel {
	background-color: #29B6F6;
	color: #fff;
	width: 100%;
	border: none;
	outline: none;
	padding: 11px;
	cursor: pointer;
	font-size: 14px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	text-decoration: none;
}


@media (max-width: 520px) {
	.page {
		background-image: none;
	}
	.page_row {
		top: 0;
		left: 0;
		max-width: 100%;
	}
}

@media (max-width: 440px) {
	.content__img {
		height: 260px;
	}
	.content__description-desc {
		font-size: 12px;
		line-height: 14px;	
	}
}

@media (max-width: 380px) {
	.content__description-title {
		font-size: 14px;
	}
	.content__img {
		height: 210px;
	}
}