: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::-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;
	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);
}
.input--transparent::-moz-placeholder {
	color: #0d0e40;
	color: var(--dark2);
}
.input--transparent::placeholder {
	color: #0d0e40;
	color: 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);
}
.part-language-picker__list {
	display: flex;
	flex-flow: row wrap;
	gap: 1.75rem;
}
.part-language-picker__link {
	position: relative;
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	max-width: 100%;
	padding: 0.15rem 0.25rem;
	overflow: hidden;
	color: #9aa3b2;
	transition-property: color;
	transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
	transition-duration: 0.3s;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.03em;
}
.part-language-picker__link:before {
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	content: '';
	background-color: currentColor;
	transition-property: transform;
	transform: translate(-101%);
	transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
	transition-duration: 0.3s;
}
.part-language-picker__link:hover {
	color: #f7f7f7;
}
.part-language-picker__link:hover:before {
	transform: translate(0);
}
.part-tag {
	display: inline-flex;
	flex-flow: row nowrap;
	gap: 0.5rem;
	align-items: center;
	padding: 0.5rem 1rem;
	color: #9aa2b2;
	border: 1px solid;
	border-radius: 100px;
}
.part-tag_background_white {
	color: #747c8d;
	background-color: #fff;
	border-color: #fff;
}
.part-tag_color_green {
	color: #009d5b;
}
.part-tag_color_blue {
	color: #0a5cfe;
}
.part-tag__module-photo {
	flex: 0 0 auto;
	width: 1.25rem;
}
.part-tag__text {
	flex: 1;
	min-width: 0;
}
.part-custom-list {
	display: flex;
	flex-flow: column nowrap;
	gap: 1rem;
}
.part-custom-list_align_center.part-custom-list .part-custom-list__item {
	align-items: center;
}
.part-custom-list_fill_blue.part-custom-list .part-custom-list__icon {
	color: #0a5cfe;
	background-color: currentColor;
	stroke: #fff;
}
.part-custom-list_size_large.part-custom-list .part-custom-list__icon {
	width: 1.75rem;
	height: 1.75rem;
}
.part-custom-list_size_large.part-custom-list .part-custom-list__icon svg {
	width: 18px;
}
.part-custom-list_size_large.part-custom-list .part-custom-list__text {
	font-size: 1.625rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.03em;
}
.part-custom-list_color_gray_dark .part-custom-list__icon,
.part-custom-list_color_gray_dark .part-custom-list__text {
	color: #5a6b88;
}
.part-custom-list__item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}
.part-custom-list__icon {
	flex: 0 0 auto;
	width: 1.25rem;
	height: 1.25rem;
	color: #5a6b88;
	border: 1px solid;
	border-radius: 50%;
	fill: transparent;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.part-custom-list__icon svg {
	width: 12px;
}
.part-custom-list__text {
	flex: 1;
	min-width: 0;
	color: #9aa3b2;
}
.item-features {
	display: grid;
	grid-template-columns: clamp(2rem, 2.6291vw + 1.3838rem, 3.75rem) 1fr;
	grid-gap: clamp(0.5rem, 0.7512vw + 0.3239rem, 1rem);
	gap: clamp(0.5rem, 0.7512vw + 0.3239rem, 1rem);
	align-items: flex-start;
}
.item-features__module-photo {
	grid-row: span 2;
	aspect-ratio: 1;
	background-color: #edf9f2;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.item-features__module-photo img {
	width: clamp(0.9375rem, 1.1268vw + 0.6734rem, 1.6875rem);
}
.item-features__title {
	font-size: 1.625rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.03em;
	font-weight: 500;
}
.item-features__text {
	color: #5a6b88;
}
.section-hero {
	padding: clamp(5rem, 5.6338vw + 3.6796rem, 8.75rem) 0 clamp(4rem, 3.3803vw + 3.2077rem, 6.25rem);
	background-color: #021233;
}
.section-hero__wrapper {
	display: flex;
	flex-flow: row nowrap;
	gap: 1rem;
}
.section-hero__cell {
	flex-basis: auto;
}
.section-hero__cell_left {
	width: 49.375%;
}
.section-hero__cell_right {
	width: 49.6875%;
}
.section-hero__tags {
	display: flex;
	flex-flow: row wrap;
	gap: 1rem;
	margin-bottom: clamp(0.75rem, 1.8779vw + 0.3099rem, 2rem);
}
.section-hero__title {
	margin-bottom: clamp(0.75rem, 0.7512vw + 0.5739rem, 1.25rem);
	color: #fff;
	font-size: clamp(2rem, 2.4413vw + 1.4278rem, 3.625rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.section-hero__subtitle {
	margin-bottom: clamp(2rem, 1.6901vw + 1.6039rem, 3.125rem);
	color: #9aa3b2;
	font-size: 1.625rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.03em;
}
.section-hero__buttons {
	display: flex;
	flex-flow: row wrap;
	gap: 1rem;
}
.section-hero__ui-button {
	width: 100%;
}
.section-hero__part-custom-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1.75rem 1rem;
	gap: 1.75rem 1rem;
	margin-top: 1rem;
}
.section-cta {
	position: relative;
	background: #021233;
}
.section-cta__wrapper {
	position: relative;
}
.section-cta__wrapper:before,
.section-cta__wrapper:after {
	position: absolute;
	top: 50%;
	width: 48.1875rem;
	height: 16.25rem;
	content: '';
	filter: blur(75px);
	border-radius: 100%;
	transform: translateY(-50%);
}
.section-cta__wrapper:before {
	left: 8rem;
	background: #00e58566;
}
.section-cta__wrapper:after {
	right: 8rem;
	background: #0a5cfe66;
}
.section-cta__box {
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: row nowrap;
	overflow: hidden;
	background: #f0f8ff;
	border-radius: 1rem;
	box-shadow: 0 4px 24px #0000001a;
}
.section-cta__cell {
	display: flex;
	flex-basis: auto;
	flex-flow: column nowrap;
}
.section-cta__cell_left {
	gap: 1rem;
	width: 53.125%;
	padding: clamp(1rem, 1.8779vw + 0.5599rem, 2.25rem);
}
.section-cta__cell_right {
	justify-content: flex-end;
	width: 48.4375%;
}
.section-cta__title {
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.section-cta__title_color_gray {
	color: #5a6b88;
}
.section-cta__title_color_blue {
	color: #0a5cfe;
}
.section-cta__subtitle {
	font-weight: 500;
	color: #5a6b88;
}
.section-cta__buttons {
	margin-top: auto;
}
.section-steps__wrapper {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
	gap: 1rem;
}
.section-steps__cell {
	flex: 1;
	min-width: 50%;
}
.section-steps__cell_left {
	padding: clamp(1rem, 2.8169vw + 0.3398rem, 2.875rem) clamp(2.25rem, 0.4695vw + 2.14rem, 2.5625rem)
		clamp(1rem, 2.8169vw + 0.3398rem, 2.875rem) clamp(2.25rem, 1.8779vw + 1.8099rem, 3.5rem);
	background-color: #edf9f2;
	border-radius: 1rem;
}
.section-steps__tags {
	display: flex;
	flex-flow: row wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 4px 16px rgba(4, 112, 66, 0.1));
}
.section-steps__list-item {
	position: relative;
}
.section-steps__list-item:not(:last-child) {
	margin-bottom: 2rem;
}
.section-steps__list-item:not(:last-child):before {
	position: absolute;
	top: 50%;
	left: -1.05rem;
	width: 4rem;
	height: var(--section-steps-step-line-height);
	content: '';
	border: 1px dashed #0a5cfe;
	border-right: initial;
	border-radius: 100% 0 0 100%;
}
.section-steps__step {
	position: relative;
	z-index: 10;
	width: -moz-fit-content;
	width: fit-content;
	max-width: 100%;
	padding: 0.5rem 1rem;
	background: #fff;
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 0.5rem;
	box-shadow: 0 4px 16px #0470421a;
}
.section-steps__step.is-active {
	border-color: #0a5cfe;
}
.section-steps__title {
	font-size: 2.75rem;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.section-steps__buttons {
	display: flex;
	flex-flow: row wrap;
	gap: 1rem;
	margin-top: 2.25rem;
}
.section-features__title {
	font-size: 2.75rem;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.section-features__subtitle {
	margin-top: clamp(1.5rem, 0.7512vw + 1.3239rem, 2rem);
	color: #5a6b88;
}
.section-features__list {
	display: flex;
	flex-flow: row wrap;
	gap: clamp(1rem, 2.2535vw + 0.4718rem, 2.5rem) 1rem;
	margin-top: clamp(2rem, 0.7512vw + 1.8239rem, 2.5rem);
}
.section-features__list-item {
	flex: 0 0 calc(33.33% - 0.6666666667rem);
}
.section-features__ui-button {
	margin-top: 2rem;
}
@media only screen and (max-width: 1120px) {
	.section-hero__wrapper {
		flex-wrap: wrap;
		gap: 1.5rem;
	}
	.section-hero__cell {
		flex-basis: 100%;
	}
	.section-hero__cell_left {
		text-align: center;
	}
	.section-hero__tags,
	.section-hero__buttons {
		justify-content: center;
	}
	.section-cta_layout_cell-left-columns.section-cta .section-cta__part-custom-list {
		margin-top: 0.5rem;
	}
	.section-cta__cell_left {
		width: 75%;
	}
	.section-cta__cell_right {
		width: 35%;
	}
	.section-steps__wrapper {
		grid-template-columns: 100%;
		gap: 2rem;
	}
	.section-steps__list-item:not(:last-child) {
		margin-bottom: 1.5rem;
	}
	.section-steps__buttons {
		margin-top: 1.95rem;
	}
	.section-features__list-item {
		flex-basis: calc(50% - 0.5rem);
	}
}
@media screen and (max-width: 51.25rem) {
	.button--secondary {
		margin-left: 0;
	}
}
@media only screen and (max-width: 820px) {
	.section-hero__part-custom-list {
		grid-template-columns: 100%;
		gap: 0.75rem;
	}
	.section-cta__cell {
		flex-basis: 100%;
	}
	.section-cta__cell_right {
		position: absolute;
		top: auto;
		right: 0;
		bottom: 0;
		left: auto;
		z-index: -1;
		width: 15.625rem;
	}
	.section-cta__buttons {
		padding-top: 7rem;
	}
	.section-features__list:not(.is-opened) .section-features__list-item:not(:nth-child(-n + 3)) {
		display: none;
	}
	.section-features__list-item {
		flex-basis: 100%;
	}
}
@media only screen and (max-width: 580px) {
	.part-tag_mobile-small-offset {
		padding: 0.25rem 0.5rem;
	}
	.part-custom-list_size_large.part-custom-list .part-custom-list__icon {
		width: 1.375rem;
		height: 1.375rem;
	}
	.part-custom-list_size_large.part-custom-list .part-custom-list__icon svg {
		width: 14px;
	}
	.part-custom-list_size_large.part-custom-list .part-custom-list__text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.3;
		letter-spacing: -0.03em;
	}
	.item-features__title {
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.1;
		letter-spacing: -0.03em;
	}
	.section-hero__subtitle {
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.3;
		letter-spacing: -0.03em;
	}
	.section-hero__buttons-item {
		flex: 1 1 auto;
		min-width: calc(50% - 0.5rem);
	}
	.section-cta__wrapper:before,
	.section-cta__wrapper:after {
		width: 15rem;
		height: 15rem;
	}
	.section-cta__title {
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.1;
		letter-spacing: -0.03em;
	}
	.section-steps__list-item:not(:last-child) {
		margin-bottom: 1rem;
	}
	.section-steps__title {
		font-size: 2rem;
		font-weight: 400;
		line-height: 1.1;
		letter-spacing: -0.03em;
		font-weight: 500;
	}
	.section-steps__buttons {
		justify-content: center;
		margin-top: 1.65rem;
	}
	.section-features__title {
		font-size: 2rem;
		font-weight: 400;
		line-height: 1.1;
		letter-spacing: -0.03em;
		font-weight: 500;
	}
}
@media screen and (min-width: 36em) {
	.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 only screen and (min-width: 581px) {
	.section-cta:before {
		position: absolute;
		top: 50%;
		right: auto;
		bottom: auto;
		left: 0;
		width: 100%;
		height: 5rem;
		content: '';
		background-image: url(/wp-content/themes/flwup/assets/images/waves.svg);
		background-repeat: repeat;
		transform: translateY(-50%);
	}
}
@media screen and (min-width: 48em) {
	.input {
		border-radius: 1.25rem;
		border-radius: var(--borderRadius1);
	}
	.input--transparent {
		border-radius: 0;
	}
	.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 only screen and (min-width: 821px) {
	.section-features__ui-button {
		display: none;
	}
}
@media screen and (min-width: 64em) {
	.input {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}
}
@media only screen and (min-width: 1121px) {
	.section-hero_title-size_small .section-hero__title {
		font-size: 2.75rem;
		font-weight: 500;
		line-height: 1.1;
		letter-spacing: -0.03em;
	}
	.section-hero__title {
		width: 100%;
		max-width: calc(100% - 1.4rem);
	}
	.section-cta_layout_cell-left-columns.section-cta .section-cta__cell_left {
		display: grid;
		flex-basis: 100%;
		grid-template-columns: 40.3973509934% 49.0066225166%;
		justify-content: space-between;
	}
	.section-cta_layout_cell-left-columns.section-cta .section-cta__cell_right {
		position: absolute;
		bottom: 0;
		left: 18.984375%;
		width: 20.8125rem;
	}
	.section-cta_layout_cell-left-columns.section-cta .section-cta__part-custom-list,
	.section-steps__cell_left {
		grid-row: span 2;
	}
	.section-steps__cell_right {
		margin-top: 1.5rem;
	}
	.section-steps__title {
		grid-row: 1/2;
		grid-column: 2/3;
		padding-top: 2.25rem;
	}
}
