@charset 'windows-1251';

@font-face {
	font-family: 'PT Sans';
	font-weight: 400;
	font-style: normal;

	src: url('../fonts/ptsans.woff2') format('woff2'), url('../fonts/ptsans.woff') format('woff'), url('../fonts/ptsans.ttf') format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'PT Sans';
	font-weight: 700;
	font-style: normal;

	src: url('../fonts/ptsansbold.woff2') format('woff2'), url('../fonts/ptsansbold.woff') format('woff'), url('../fonts/ptsansbold.ttf') format('truetype');
	font-display: swap;
}

/**
 * Сброс стилей
 **/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;

	vertical-align: baseline;

	border: 0;

	font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-spacing: 0;

	border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

input {
	outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

/**
 * Основные стили
 **/

html {
	height: 100%;
}

body {
	width: 100%;
	height: 100%;

	color: #000;
	background: #010080;

	font-family: 'PT Sans', sans-serif;
	font-weight: 400;

	text-rendering: optimizeLegibility;
	-webkit-text-decoration-skip: objects;
	        text-decoration-skip: objects;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

html,
body {
	font-size: 12px;
	line-height: 1.16;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

a {
	cursor: pointer;
	transition: color 250ms ease-in-out;
	text-decoration: underline;

	color: #439de0;
	outline: 0;
}

a:hover {
	text-decoration: none;
}

/**
 * Изображения
 */

.img-responsive {
	display: block;

	width: 100%;
	height: auto;
}

/**
 * Абстрактный баннер
 **/

.abstract-card {
	position: relative;

	text-decoration: none;

	color: inherit;
	background: #010080;
}

.abstract-card .card-body {
	display: -ms-flexbox;
	display: flex;
	    flex-direction: column;
	    flex: 1 1 auto;

	color: #000;
	background: #fff;

	-ms-flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex: 1 1 auto;
}

.abstract-card .card-body .title {
	overflow: hidden;

	margin-bottom: .75em;

	color: #e13523;

	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
}

.abstract-card .card-body .excerpt {
	overflow: hidden;

	font-size: 12px;
	line-height: 13px;
}

/**
 * Баннер 240x400
 */

.teaser-card-240x400 {
	display: -ms-flexbox;
	display: flex;
	    flex-direction: column;

	width: 240px;
	height: 400px;
	padding: 0 5px 5px 5px;

	-ms-flex-direction: column;
}

.teaser-card-240x400 .card-header {
	display: -ms-flexbox;
	display: flex;
	    flex: 0 0 auto;

	height: 68px;
	padding-right: 8px;
	padding-left: 8px;

	color: #fff;
	background: #010080;

	-ms-flex: 0 0 auto;
	-ms-flex-align: center;
	align-items: center;
}

.teaser-card-240x400 .card-header figure {
	position: relative;

	    flex: 0 0 auto;

	width: 80px;
	height: 0;
	margin-right: 10px;

	-ms-flex: 0 0 auto;
}

.teaser-card-240x400 .card-header figure img {
	position: absolute;
	top: 50%;
	left: 0;

	width: 100%;

	transform: translateY(-50%);

	border-radius: 100%;
}

.teaser-card-240x400 .card-header .name {
	    flex: 1 1 auto;

	font-size: 18px;
	font-weight: 700;

	-ms-flex: 1 1 auto;
}

.teaser-card-240x400 .card-body {
	padding: 10px 8px;
}

.teaser-card-240x400 .card-body .title {
	max-height: 60px;
	margin-bottom: .75em;
}

.teaser-card-240x400 .card-body .excerpt {
	max-height: 78px;
}

.teaser-card-240x400 .card-footer {
	position: relative;

	    flex: 0 0 auto;

	padding-bottom: 66.52174%;

	-ms-flex: 0 0 auto;
}

.teaser-card-240x400 .card-footer img {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	-o-object-fit: cover;
	   object-fit: cover;
}

/**
 * Баннер 728x90
 */

.teaser-card-728x90 {
	display: -ms-flexbox;
	display: flex;

	width: 728px;
	height: 90px;
	padding: 5px;
}

.teaser-card-728x90 .card-header {
	display: -ms-flexbox;
	display: flex;
	    flex: 0 0 auto;

	width: 190px;
	height: 80px;

	color: #fff;
	background: #010080;

	-ms-flex: 0 0 auto;
	-ms-flex-align: center;
	align-items: center;
}

.teaser-card-728x90 .card-header figure {
	position: relative;

	    flex: 0 0 auto;

	width: 80px;
	height: 80px;
	margin-right: 10px;

	-ms-flex: 0 0 auto;
}

.teaser-card-728x90 .card-header figure img {
	position: absolute;
	top: 50%;
	left: 0;

	width: 100%;
	height: 100%;

	transform: translateY(-50%);

	border-radius: 100%;
}

.teaser-card-728x90 .card-header .name {
	    flex: 1 1 auto;

	font-size: 18px;
	font-weight: 700;

	-ms-flex: 1 1 auto;
}

.teaser-card-728x90 .card-body {
	padding: 5px 10px;
}

.teaser-card-728x90 .card-body .title {
	max-height: 40px;
	margin-bottom: .15em;
}

.teaser-card-728x90 .card-body .excerpt {
	max-height: 26px;
}

.teaser-card-728x90 .card-footer {
	position: relative;

	    flex: 0 0 auto;

	width: 194px;
	height: 80px;

	-ms-flex: 0 0 auto;
}

.teaser-card-728x90 .card-footer img {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	-o-object-fit: cover;
	   object-fit: cover;
}
