:root {
	--font-family: 'Muller', sans-serif;
	--content-width: 1170px;
	--container-offset: 15px;
	--container-width: calc(var(--content-width) + (var(--container-offset) * 2));
	--light-color: #fff;
	--containerWidth: 67.5rem;
	--containerPadding: 0.9375rem;
	--blue1: hsl(220, 99%, 52%);
	--blue2: hsl(220, 99%, 42%);
	--blue3: hsl(220, 99%, 32%);
	--green1: hsl(155, 100%, 45%);
	--green2: hsl(155, 100%, 35%);
	--green3: hsl(155, 100%, 25%);
	--neutral1: hsl(0, 0%, 100%);
	--neutral2: hsl(0, 0%, 97%);
	--neutral3: hsl(0, 0%, 87%);
	--neutral4: hsl(0, 0%, 77%);
	--dark1: hsl(238, 13%, 31%);
	--dark2: hsl(238, 67%, 15%);
	--light1: hsl(236, 9%, 67%);
	--light2: hsl(220, 100%, 97%);
	--light3: hsla(238, 67%, 15%, 0.3);
	--gradient1: linear-gradient(95deg, var(--blue1) 5%, var(--green1) 100%);
	--gradient2: linear-gradient(170deg, var(--blue1) 5%, var(--green1) 90%);
	--gradient3: linear-gradient(170.96deg, var(--blue1) -208.5%, var(--green1) 440.2%);
	--fontFamilyRegular: 'Inter', sans-serif;
	--fontSizeLight: 0.75rem;
	--fontSizeRegular: 1rem;
	--fontWeightRegular: 400;
	--fontWeightSemiBold: 500;
	--fontWeightBold: 600;
	--lineHeightRegular: 1.4em;
	--borderRadius1: 1.25rem;
	--boxShadow1: 0px 4px 24px rgba(0, 0, 0, 0.1);
	--tarnsition1: 0.2s ease 0s;
	--tarnsition2: 0.4s ease 0s;
	--tarnsition3: 0.6s ease 0s;
}
.button {
	max-width: 36rem;
	padding: 0.9375rem 1.875rem;
	font-size: 0.75rem;
	line-height: 1.25em;
	color: #fff;
	color: var(--neutral1);
	text-align: center;
	-webkit-text-decoration: none;
	text-decoration: none;
	cursor: pointer;
	background: #0b5cfe;
	background: var(--blue1);
	border: initial;
	border-radius: 999rem;
	transition: background 0.2s ease 0s;
	transition: background var(--tarnsition1);
}
.button:hover {
	background: #0148d5;
	background: var(--blue2);
}
.button:active {
	background: #0137a2;
	background: var(--blue3);
}
.button--gradient,
.button--gradient:hover,
.button--gradient:active {
	background-image: linear-gradient(95deg, #0b5cfe 5%, #00e686);
	background-image: var(--gradient1);
}
.button--secondary {
	margin-left: 10px;
	color: inherit;
	background: #f7f7f7;
	background: var(--neutral2);
}
.button--secondary:hover,
.button--secondary:active {
	background: #dedede;
	background: var(--neutral3);
}
.input {
	padding: 0.75rem 1.25rem;
	background: #f7f7f7;
	background: var(--neutral2);
	border: none;
	border-radius: 0.625rem;
}
.input:input-placeholder {
	color: #a3a4b2;
	color: var(--light1);
}
.input::input-placeholder {
	color: #a3a4b2;
	color: var(--light1);
}
.input--transparent {
	position: relative;
	padding-left: 0;
	padding-right: 0;
	background: transparent;
	border-bottom: 1px solid hsl(220, 99%, 52%);
	border-bottom: 1px solid var(--blue1);
	border-radius: 0;
	outline: none;
}
.input--transparent:input-placeholder {
	color: #0d0e40;
	color: var(--dark2);
}
.input--transparent::input-placeholder {
	color: #0d0e40;
	color: var(--dark2);
}
.overlay {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	background-color: #00000063;
	opacity: 0;
	transition: opacity var(--ui-transition) ease;
	pointer-events: none;
}
.overlay--show {
	opacity: 1;
	pointer-events: painted;
}
.container {
	margin: 0 auto;
	padding: 0 15px;
	padding: 0 var(--container-offset);
	max-width: 1200px;
	max-width: var(--container-width);
}
.dis-scroll {
	position: fixed;
	left: 0;
	top: 0;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	overscroll-behavior: none;
}
.article,
.address {
	font-style: normal;
}
.picture {
	display: block;
	line-height: 0;
}
body {
	background: #fff;
	background: var(--neutral1);
}
a {
	color: inherit;
}
.bg-dark {
	background: #0d0e40;
	background: var(--dark2);
	color: #fff;
	color: var(--neutral1);
}
.bg-gary {
	background: #f7f7f7;
	background: var(--neutral2);
}
.fw-bold {
	font-weight: 600;
	font-weight: var(--fontWeightBold);
}
.clr-blue {
	color: #0b5cfe;
	color: var(--blue1);
}
.container {
	margin: 0 auto;
	padding: 0 0.9375rem;
	padding: 0 var(--containerPadding);
	width: min(67.5rem, 100%);
	width: min(var(--containerWidth), 100%);
}
.container--large {
	width: min(72.5rem, 100%);
}
.header {
	flex: 0 0 auto;
	min-height: 3.375rem;
}
.main {
	flex: 1 1 auto;
}
.section {
	position: relative;
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.section--with-decor:before,
.section--with-decor:after,
.section--with-blue-decor:before,
.section--with-blue-decor:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 9.375rem;
	background-image: url(/assets/images/waves_gray.svg);
	background-position: center;
	background-repeat: repeat-x;
	background-size: contain;
}
.section--with-blue-decor:before,
.section--with-blue-decor:after {
	background-image: url(/assets/images/waves_blue.svg);
}
.section--with-blue-decor:before,
.section--with-decor:before {
	top: 0.75rem;
}
.section--with-blue-decor:after,
.section--with-decor:after {
	bottom: 0.75rem;
}
.section--decor-margin-top:before {
	top: 3.75rem;
}
.section__inner {
	position: relative;
	z-index: 1;
}
.section__inner > *:nth-child(1) {
	margin: 0;
}
.section__row {
	display: flex;
	flex-direction: column;
	margin-top: 1.25rem;
	z-index: 1;
}
.section__row > * + * {
	margin-top: 0.5rem;
}
.section__row--flow-bold > * + * {
	margin-top: 1.875rem;
}
.section--with-decor {
	position: relative;
}
.title {
	font-size: 1.5rem;
	font-weight: 600;
	font-weight: var(--fontWeightBold);
	line-height: 1.4em;
	line-height: var(--lineHeightRegular);
	text-align: center;
}
.input {
	padding: 0.75rem 1.25rem;
	border: none;
	border-radius: 0.625rem;
	background: #f7f7f7;
	background: var(--neutral2);
}
.input::-moz-placeholder {
	color: #a3a4b2;
	color: var(--light1);
}
.input::placeholder {
	color: #a3a4b2;
	color: var(--light1);
}
.input:focus {
	outline-color: #0b5cfe;
	outline-color: var(--blue1);
}
.input--transparent {
	position: relative;
	border-radius: 0;
	border-bottom: 1px solid hsl(220, 99%, 52%);
	border-bottom: 1px solid var(--blue1);
	background: transparent;
	padding-left: 0;
	padding-right: 0;
	outline: none;
}
.input--transparent::-moz-placeholder {
	color: #0d0e40;
	color: var(--dark2);
}
.input--transparent::placeholder {
	color: #0d0e40;
	color: var(--dark2);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.module-success-modal {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	padding: 20px;
	display: flex;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.3s,
		visibility 0.3s;
}
.module-success-modal--opened {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition:
		opacity 0.3s,
		visibility 0.3s;
}
.module-success-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #303239;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.3s,
		visibility 0.3s;
}
.module-success-modal--opened .module-success-modal__overlay {
	opacity: 0.65;
	visibility: visible;
	pointer-events: all;
	transition:
		opacity 0.3s,
		visibility 0.3s;
}
.module-success-modal__wrap {
	padding: 50px;
	min-height: 250px;
	width: 100%;
	max-width: 600px;
	background-color: #fff;
	margin: auto;
	display: flex;
	z-index: 2;
	position: relative;
	top: -100%;
	transform: translateY(-100%);
	transition: all 0.3s;
}
.module-success-modal--opened .module-success-modal__wrap {
	top: 0%;
	transform: translateY(0);
	transition: all 0.3s;
	border-radius: 1.25rem;
}
.module-success-modal__close {
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent;
	display: flex;
	padding: 5px;
	position: absolute;
	top: 25px;
	right: 25px;
	max-width: 35px;
}
.module-success-modal__close svg {
	max-width: inherit;
	pointer-events: none;
}
.module-success-modal__close rect {
	transition: fill 0.3s;
}
.module-success-modal__close:hover rect {
	fill: #0b5cfe;
	transition: fill 0.3s;
}
.module-success-modal__title {
	width: 100%;
	max-width: 350px;
	margin: auto;
	font-weight: 700;
	font-size: 24px;
	line-height: 31px;
	text-align: center;
	color: #0b5cfe;
}
body {
	position: relative;
}
body.blocked-scroll {
	overflow: hidden !important;
	padding-right: 15px;
}
.breadcrumbs__wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 100%;
	padding: 1.25rem 0 0;
	overflow: hidden;
}
.breadcrumbs__link {
	display: flex;
	align-items: center;
	overflow: hidden;
	-webkit-text-decoration: none;
	text-decoration: none;
}
.breadcrumbs__link:last-child {
	pointer-events: none;
}
.breadcrumbs__link:not(:last-child):after {
	display: block;
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	margin: 0 0.625rem;
	content: '';
	background: linear-gradient(170.96deg, #0a5cfe -208.5%, #00e585 440.2%);
	border-radius: 50%;
}
.masthead {
	position: relative;
	padding-top: 3.125rem;
	padding-bottom: 3.125rem;
	overflow: hidden;
}
.masthead__animate {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f7f7f7;
	background: var(--neutral2);
	-webkit-mask: url(/assets/images/waves_gray.svg);
	mask: url(/assets/images/waves_gray.svg);
	-webkit-mask-repeat: repeat-x;
	mask-repeat: repeat-x;
	-webkit-mask-position: center 22%;
	mask-position: center 22%;
	-webkit-mask-size: 100%;
	mask-size: 100%;
}
.masthead__animate-glow {
	position: absolute;
	width: 14rem;
	height: 14rem;
	pointer-events: none;
	background-image: radial-gradient(50% 50% at 50% 50%, #80ffca, #fff0);
	transform: translate(-50%, -100%);
}
.masthead__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.masthead__subtitle {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	font-size: 1rem;
}
.masthead__title {
	margin-top: 0.75rem;
}
.masthead__title--left {
	text-align: left;
}
.masthead__title--big {
	max-width: 44.813rem;
}
.masthead__date {
	color: #bebec1;
}
.masthead__date:not(:first-child) {
	margin-top: 1.25rem;
}
.masthead__divider {
	width: 3.75rem;
	margin-top: 1.25rem;
	border: initial;
	border-bottom: 1px solid hsl(220, 99%, 52%);
	border-bottom: 1px solid var(--blue1);
}
.masthead__descr {
	margin-top: 1.25rem;
	font-size: 0.875rem;
	line-height: 1.4em;
	text-align: center;
}
.masthead__button {
	width: 100%;
	margin-top: 1.875rem;
	font-size: 0.875rem;
}
.blog,
.article {
	padding-bottom: 5rem;
}
.blog__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-gap: 1.25rem 1rem;
	gap: 1.25rem 1rem;
}
.blog-item {
	-webkit-text-decoration: none;
	text-decoration: none;
}
.blog-item__wrapper {
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 24px #0000001a;
	transition: 0.5s box-shadow;
}
.blog-item__wrapper:hover {
	box-shadow: 4px 4px 8px #00e585cc;
}
.blog-item__header {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
}
.blog-item__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}
.blog-item__content {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	height: 100%;
	padding: 1.25rem;
	background: #fff;
	border-radius: 0 0 10px 10px;
}
.blog-item__title {
	display: -webkit-box;
	height: 3.5rem;
	max-height: 3.5rem;
	overflow: hidden;
	font-size: 1.25rem;
	line-height: 1.75rem;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	-webkit-line-clamp: 2;
	-moz-line-clamp: 2;
	line-clamp: 2;
}
.blog__pagination {
	margin: 3.75rem 0 0;
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination .nav-links {
	display: flex;
	gap: 0.625rem;
	align-items: center;
}
.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 1.75rem;
	min-height: 1.5rem;
	padding: 1px 3px;
	-webkit-text-decoration: none;
	text-decoration: none;
	border-radius: 4px;
	transition:
		0.3s color,
		0.3s background-color;
}
.pagination .page-numbers.current {
	color: #fff;
	background: #0d0e40;
	background: var(--dark2);
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #000000bf;
}
.modal,
.modal--hide {
	visibility: hidden;
	opacity: 0;
}
.modal--show {
	visibility: visible;
	opacity: 1;
	transition: all 0.4s ease 0s;
	transition: all var(--tarnsition2);
}
.modal__dialog {
	position: relative;
	width: min(50rem, 100% - 1.875rem);
	padding: 0.9375rem;
	overflow: hidden;
	background: #fff;
	background: var(--neutral1);
	border-radius: 1.25rem;
	border-radius: var(--borderRadius1);
}
.modal__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.375rem;
	cursor: pointer;
	background: #f7f7f7;
	background: var(--neutral2);
	border: none;
	border-radius: 50%;
	transition: all 0.2s ease 0s;
	transition: all var(--tarnsition1);
}
.modal__close:hover {
	background: #dedede;
	background: var(--neutral3);
}
.modal__close:active {
	background: #c4c4c4;
	background: var(--neutral4);
}
.modal__close > img {
	width: 100%;
	height: 100%;
	pointer-events: none;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}
.modal__body {
	display: flex;
	flex-direction: column;
}
.modal__title {
	font-size: 1.25rem;
	font-weight: 500;
	font-weight: var(--fontWeightSemiBold);
	line-height: 1.25em;
}
.modal__form {
	display: flex;
	flex-direction: column;
	margin-top: 0.9375rem;
}
.modal__form > * + * {
	margin-top: 0.25rem;
}
.modal__form-button {
	margin-top: 0.75rem;
}
.modal__form-policy {
	margin-top: 0.5rem;
	font-size: 0.625rem;
	color: #a3a4b2;
	color: var(--light1);
}
.modal__form-policy > a:hover {
	color: #0148d5;
	color: var(--blue2);
}
.modal__form-policy > a:active {
	color: #0137a2;
	color: var(--blue3);
}
@media only screen and (max-width: 1024px) {
	body.blocked-scroll {
		padding-right: 0;
	}
}
@media only screen and (max-width: 992px) {
	.module-success-modal__wrap {
		max-width: 380px;
		padding: 30px;
		min-height: 200px;
	}
	.module-success-modal__close {
		top: 15px;
		right: 15px;
		max-width: 30px;
	}
	.module-success-modal__title {
		font-size: 18px;
		line-height: 24px;
	}
}
@media screen and (max-width: 51.25rem) {
	.button--secondary {
		margin-left: 0;
	}
}
@media only screen and (max-width: 576px) {
	.module-success-modal__close {
		top: 10px;
		right: 10px;
		max-width: 25px;
	}
}
@media screen and (min-width: 36em) {
	.blog__grid {
		grid-template-columns: repeat(auto-fit, minmax(22.125rem, 1fr));
	}
	.modal__form {
		flex-flow: row wrap;
		justify-content: space-between;
	}
	.modal__form > .input {
		width: 100%;
	}
	.modal__form-button,
	.modal__form-policy {
		width: calc(50% - 0.25rem);
		margin-top: 0.9375rem;
	}
}
@media screen and (min-width: 48em) {
	.title {
		font-size: 2.25rem;
	}
	.title--big {
		font-size: 2.625rem;
	}
	.input {
		border-radius: 1.25rem;
		border-radius: var(--borderRadius1);
	}
	.input--transparent {
		border-radius: 0;
	}
	.section {
		padding-top: 6.25rem;
		padding-bottom: 6.25rem;
	}
	.section__row {
		flex-direction: row;
		flex-wrap: wrap;
		margin-top: 2.5rem;
	}
	.section__row > * {
		width: calc(50% - 0.25rem);
		flex: 0 0 auto;
	}
	.section__row > *:nth-child(2) {
		margin-top: 0;
	}
	.section__row > *:nth-child(odd) {
		margin-left: 0rem;
	}
	.section__row > *:nth-child(2n + 2) {
		margin-left: 0.5rem;
	}
	.masthead {
		padding-top: 3.75rem;
		padding-bottom: 6.25rem;
	}
	.masthead__animate {
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-size: 60%;
		mask-size: 60%;
	}
	.masthead__subtitle {
		font-size: 1.5rem;
	}
	.masthead__title {
		margin-top: 1.25rem;
		font-size: 2.625rem;
	}
	.masthead__divider {
		width: 9.75rem;
		margin-top: 1.5625rem;
	}
	.masthead__descr {
		max-width: 33.375rem;
		margin-top: 1.5625rem;
		font-size: 1.25rem;
		text-align: center;
	}
	.masthead__button {
		width: auto;
		padding: 1.25rem 3.125rem;
		margin-top: 3.375rem;
		font-size: 1rem;
	}
	.modal__dialog {
		padding: 3.75rem;
	}
	.modal__close {
		top: 1.875rem;
		right: 1.875rem;
		width: 3rem;
		height: 3rem;
		padding: 0.75rem;
	}
	.modal__title {
		font-size: 1.875rem;
	}
	.modal__form {
		flex-flow: row wrap;
		align-items: center;
		justify-content: space-between;
	}
	.modal__form > .input {
		width: 100%;
	}
	.modal__form > * + * {
		margin-top: 1.5rem;
	}
	.modal__form > .input:nth-child(2),
	.modal__form > .input:nth-child(3) {
		width: calc(50% - 0.625rem);
	}
	.modal__form-button,
	.modal__form-policy {
		margin-top: 2.5rem;
		font-size: 1rem;
	}
	.modal__form-button {
		flex: 0 0 auto;
		width: calc(40% - 0.625rem);
		padding: 1.375rem 2rem;
	}
	.modal__form-policy {
		width: calc(60% - 0.625rem);
	}
}
@media screen and (min-width: 64em) {
	.input {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}
	.section--with-decor:after,
	.section--with-blue-decor:after {
		display: none;
	}
	.section--with-decor:before,
	.section--with-blue-decor:before {
		width: 100%;
		height: 21.25rem;
	}
	.section--with-blue-decor:before,
	.section--with-decor:before {
		top: 50%;
		transform: translateY(-50%);
	}
	.section--decor-margin-top:before {
		top: calc(50% + 1.875rem);
	}
	.section__row > * {
		width: calc(33% - 0.333rem);
		flex: 0 0 auto;
	}
	.section__row > *:nth-child(3) {
		margin-top: 0;
	}
	.section__row > *:nth-child(3n + 1) {
		margin-left: 0rem;
	}
	.section__row > *:nth-child(3n + 2),
	.section__row > *:nth-child(3n + 3) {
		margin-left: 0.5rem;
	}
}
