html,
body {
	margin: 0;
	padding: 0;
	font-family: "Golos Text", sans-serif;
}

.global_container {
	min-width: 100vw;
	min-height: 100vh;
	background: #eee;
	padding: 20px;
	box-sizing: border-box;
	background: #DBEBF4 url(bg.svg) no-repeat top center / 100% auto;
}

.global_container>.block {
	margin-bottom: 24px;
}

.title {
	font-size: 28px;
	margin-bottom: 18px;
}

.title span {
	color: #9FC8D9;
	margin-left: 10px;
}

.services_wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}

.services_wrap.scrollable {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	overflow: scroll;
	margin-left: -20px;
	margin-right: -20px;
	margin-bottom: 20px;
}

.service_card {
	border-radius: 15px;
	background: rgba(255, 255, 255, .6) url(new_window.svg) no-repeat right 15px bottom 20px;
	margin-right: 6px;
	padding: 15px;
	box-sizing: border-box;
	min-width: 145px;
}

.services_wrap.scrollable .service_card:first-child {
	margin-left: 20px;
}

.service_card .pic {
	width: 39px;
	height: 39px;
	border-radius: 39px;
	overflow: hidden;
	margin-bottom: 17px;
}

.service_card .pic img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.service_card .name {
	font-weight: 300;
	padding-right: 11px;
	font-size: 14px;
}

.button {
	background: rgba(255, 255, 255);
	margin: 20px 0;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 90px;
}

.news_wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}

.news_wrap .news_card {
	padding: 20px;
	box-sizing: border-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 16px;
	margin-bottom: 15px;
}

.news_wrap .news_card .left {
	flex: 0 0 50px;
}

.news_wrap .news_card .right {
	flex: 1 1 100%;
	padding-left: 10px;
}

.news_wrap .news_card .source {
	color: #66899A;
	margin-top: 20px;
}

.news_wrap .news_card .text {
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 300;
}

.news_wrap .news_card .time {
	color: #569DB9;
	line-height: 1.5em;
	font-weight: 600;
}

.go_to_homepage {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	align-items: center;
}

.go_to_homepage:before {
	content: '';
	display: inline-block;
	background: url(backward.svg);
	width: 31px;
	height: 16px;
	margin-right: 10px;

}


/* Скрываем скроллбар, но оставляем прокрутку */
.services_wrap.scrollable {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.services_wrap.scrollable::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}