@charset "utf-8";


html, body {
	overflow: visible;
	margin: 0!important;
}
body {
	background-color: #FEFEFF;
	background-image: url(/media/images/blog_shadow.webp);
	background-repeat: no-repeat;
	background-size: 1920px auto;
	background-position: top center;
	background-attachment: fixed;
}
img.lazy {
	height: inherit;
	width: inherit;
	object-fit: cover;
	object-position: bottom;
	opacity: 0;
	transition: opacity .2s;
}
img.lazy.loaded {
	opacity: 1;
}
picture {
	width: 100%;
	height: 100%;
}
* {
	-webkit-tap-highlight-color: transparent;
}
[tabindex] {
	outline: none!important; 
}
details > summary {
	list-style: none;
}
details > summary::-webkit-details-marker {
	display: none;
}
img,
picture {
	display: block;
	user-select: none;
	font-size: 0;
	color: transparent;
}
picture {
	width: 100%;
	height: 100%;
}
a,
a:hover,
a:active,
a:focus,
button,
button:hover,
button:active,
button:focus {
	outline: 0;
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5 {
	all: unset!important;
}
button, input, optgroup, select, textarea {
	color: inherit;
	font: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	outline: none;
	padding: 0;
	margin: 0;
	background: unset;
	border: unset;
}
ol,
ul {
	margin-block-start: 0;
	margin-block-end: 12px;
	margin-inline-start: 0;
	margin-inline-end: 0;
	padding-inline-start: 40px;
}


.Section {
	padding: 0 0 calc(80px - 64px) 0;
	position: relative;
	z-index: 1;
}
.Section__in {
	max-width: var(--width);
	margin: 0 auto;
	padding: 0 var(--indent);
}
@media (max-width: 500px) {
	.Section__in {
		width: 100%;
	}
}


.Banner {
	background: linear-gradient(104deg, #052777 19.13%, #164B9B 64.08%);
	overflow: hidden;
	width: 100%;
	min-width: 100%;
}
.Banner .Banner__content {
	padding-right: calc(680px + 16px)!important;
}
.Banner .Banner__title {
	width: 100%!important;
}
.Banner .Banner__text {
	width: 100%!important;
}
.Banner__content-preview {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: block;
	box-sizing: border-box;
	padding-bottom: calc(680px / 16 * 9);
	width: 680px;
	background-color: #081E5E;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}
.Banner__content-image {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity .4s;
}
.Banner__content-image--loaded {
	opacity: 1;
}
.Banner .Banner__image {
	position: absolute;
	top: calc(10px * -2);
	bottom: calc(10px * -2);
	left: calc(10px * -2);
	right: calc(10px * -2);
	width: calc(100% + 10px * 4);
	height: calc(100% + 10px * 4);
	filter: blur(10px);
	opacity: .2;
}
.Banner::after {
	display: none!important;
}
@media (max-width: 1200px) {
	.Banner .Banner__content {
		padding-right: calc(470px + 16px)!important;
	}
	.Banner__content-preview {
		width: 470px;
		padding-bottom: calc(470px / 16 * 9);
	}
}
@media (max-width: 768px) {
	.Banner .Banner__content {
		padding-right: calc(340px + 16px)!important;
	}
	.Banner__content-preview {
		width: 340px;
		padding-bottom: calc(340px / 16 * 9);
	}
}
@media (max-width: 500px) {
	.Banner {
		height: fit-content;
		min-height: 360px;
	}
	.Banner .Banner__content {
		position: relative;
		padding-right: var(--indent)!important;
	}
	.Banner .Banner__title {
		order: 1;
	}
	.Banner .Banner__text {
		order: 2;
	}
	.Banner__content-preview {
		width: 100%;
		padding-bottom: calc(100% / 16 * 9);
		position: relative;
		transform: unset;
		order: 3;
		margin-top: 24px;
	}
	.Banner .Banner__buttons {
		order: 4;
	}
	.Banner .Banner__image {
		top: calc(6px * -2);
		bottom: calc(6px * -2);
		left: calc(6px * -2);
		right: calc(6px * -2);
		width: calc(100% + 6px * 4);
		height: calc(100% + 6px * 4);
		filter: blur(6px);
	}
}


.Section--blogs {
	padding-top: 100px;
	padding-bottom: 100px;
}
.Section__blogs {
	display: grid;
	grid-template-columns: repeat(2, calc((100% - 20px * 1) / 2));
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.Section__blog {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	border-radius: 8px;
	overflow: hidden;
	background-color: #FFFFFF;
	box-sizing: border-box;
}
.Section__blog-preview {
	display: block;
	box-sizing: border-box;
	padding-bottom: calc(100% / 16 * 9);
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: #081E5E;
}
.Section__blog-image {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity .4s;
}
.Section__blog-image--loaded {
	opacity: 1;
}
.Section__blog-content {
	display: block;
	padding: 20px;
	box-sizing: border-box;
}
.Section__blog-title {
	color: #000000;
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.Section__blog-text {
	color: #000000;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 10px;
}
.Section__blog-footer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-end;
	margin-top: 10px;
}
.Section__blog-views {
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-right: 16px;
}
.Section__blog-views svg {
	display: block;
	width: 25px;
	height: 12px;
	color: #283236;
	margin-right: 10px;
}
.Section__blog-views__text {
	color: #283236;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.Section__blog-date {
	color: #283236;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
@media (max-width: 1200px) {
	.Section__blog-title {
		font-size: 24px;
		line-height: 32px;
	}
	.Section__blog-text {
		font-size: 22px;
		line-height: 28px;
	}
	.Section__blog-views svg {
		width: 22px;
		height: 10px;
	}
	.Section__blog-views__text {
		font-size: 14px;
		line-height: 16px;
	}
	.Section__blog-date {
		font-size: 14px;
		line-height: 16px;
	}
}
@media (max-width: 768px) {
	.Section--blogs {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.Section__blogs {
		grid-template-columns: repeat(2, calc((100% - 16px * 1) / 2));
		grid-column-gap: 16px;
		grid-row-gap: 16px;
	}
	.Section__blog-content {
		padding: 16px;
	}
	.Section__blog-title {
		font-size: 20px;
		line-height: 28px;
	}
	.Section__blog-text {
		font-size: 18px;
		line-height: 24px;
	}
	.Section__blog-views {
		margin-right: 12px;
	}
	.Section__blog-views svg {
		width: 18px;
		height: 8px;
		margin-right: 8px;
	}
	.Section__blog-views__text {
		font-size: 12px;
		line-height: 18px;
	}
	.Section__blog-date {
		font-size: 12px;
		line-height: 18px;
	}
}
@media (max-width: 500px) {
	.Section__blogs {
		grid-template-columns: 100%;
		grid-column-gap: 12px;
		grid-row-gap: 12px;
	}
}