.btn {
	align-items: center;
	border-radius: .5rem;
	cursor: pointer;
	display: inline-flex;
	font-size: 1.9rem;
	line-height: 1;
	margin: 0;
	outline: none;
	padding: .82em 1.15em;
	position: relative;
	transition: .3s cubic-bezier(.4,0,.2,1);
	background-color: currentColor;
	border-width: 0;
}

.btn--xs {
	font-size: 1.4rem;
}

.btn--sm {
	font-size: 1.5rem;
}

.btn--lg {
	font-size: 2rem;
}

.btn--xl {
	font-size: 3rem;
}

.btn--round {
	border-radius: 4em;
}

.btn--outline {
	background-color: transparent;
	border-color: currentColor;
}

.btn--fill-on-hover:hover {
	background-color: currentColor;
	border-color: currentColor;
}

.btn--block {
	display: block;
	width: 100%;
}

.btn--gradient-primary {
	color: #227fef;
	background-image: linear-gradient(0deg,#227fef,#1a4ef7,#227fef);
}

.btn--gradient-primary .btn__content,.btn--gradient-primary .btn__loading {
	color: #fff;
}

.btn--gradient-secondary {
	color: #bfbebe;
	background-image: linear-gradient(0deg,#bfbebe,#b8acac,#bfbebe);
}

.btn--gradient-secondary .btn__content,.btn--gradient-secondary .btn__loading {
	color: #fff;
}

.btn--gradient-success {
	color: #07c118;
	background-image: linear-gradient(0deg,#07c118,#009f17,#07c118);
}

.btn--gradient-success .btn__content,.btn--gradient-success .btn__loading {
	color: #fff;
}

.btn--gradient-warning {
	color: #fa612e;
	background-image: linear-gradient(0deg,#fa612e,#fa7c20,#fa612e);
}

.btn--gradient-warning .btn__content,.btn--gradient-warning .btn__loading {
	color: #292c39;
}

.btn--gradient-danger {
	color: #ea4336;
	background-image: linear-gradient(0deg,#ea4336,#f2672e,#ea4336);
}

.btn--gradient-danger .btn__content,.btn--gradient-danger .btn__loading {
	color: #fff;
}

.btn--gradient-white {
	color: #fff;
	background-image: linear-gradient(0deg,#fff,#ededed,#fff);
}

.btn--gradient-white .btn__content,.btn--gradient-white .btn__loading {
	color: #000;
}

.btn--gradient-black {
	color: #000;
	background-image: linear-gradient(0deg,#000,#363636,#000);
}

.btn--gradient-black .btn__content,.btn--gradient-black .btn__loading {
	color: #fff;
}

.btn--gradient-horizontal-primary {
	color: #227fef;
	background-image: linear-gradient(90deg,#227fef,#1a4ef7,#227fef);
}

.btn--gradient-horizontal-primary .btn__content,.btn--gradient-horizontal-primary .btn__loading {
	color: #fff;
}

.btn--gradient-horizontal-secondary {
	color: #bfbebe;
	background-image: linear-gradient(90deg,#bfbebe,#b8acac,#bfbebe);
}

.btn--gradient-horizontal-secondary .btn__content,.btn--gradient-horizontal-secondary .btn__loading {
	color: #fff;
}

.btn--gradient-horizontal-success {
	color: #07c118;
	background-image: linear-gradient(90deg,#07c118,#009f17,#07c118);
}

.btn--gradient-horizontal-success .btn__content,.btn--gradient-horizontal-success .btn__loading {
	color: #fff;
}

.btn--gradient-horizontal-warning {
	color: #fa612e;
	background-image: linear-gradient(90deg,#fa612e,#fa7c20,#fa612e);
}

.btn--gradient-horizontal-warning .btn__content,.btn--gradient-horizontal-warning .btn__loading {
	color: #292c39;
}

.btn--gradient-horizontal-danger {
	color: #ea4336;
	background-image: linear-gradient(90deg,#ea4336,#f2672e,#ea4336);
}

.btn--gradient-horizontal-danger .btn__content,.btn--gradient-horizontal-danger .btn__loading {
	color: #fff;
}

.btn--gradient-horizontal-white {
	color: #fff;
	background-image: linear-gradient(90deg,#fff,#ededed,#fff);
}

.btn--gradient-horizontal-white .btn__content,.btn--gradient-horizontal-white .btn__loading {
	color: #000;
}

.btn--gradient-horizontal-black {
	color: #000;
	background-image: linear-gradient(90deg,#000,#363636,#000);
}

.btn--gradient-horizontal-black .btn__content,.btn--gradient-horizontal-black .btn__loading {
	color: #fff;
}

.btn--long-text .btn__content {
	max-width: 100%;
	white-space: normal;
}

.btn__content {
	position: relative;
	display: flex;
	flex: 1 0 auto;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	border-radius: inherit;
	height: 100%;
	white-space: nowrap;
	color: inherit;
}

.btn__loading {
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.btn__loading--before {
	margin-right: calc(.2em + 1rem);
}

.btn__loading--after {
	margin-left: calc(.2em + 1rem);
}

.btn__loading--over {
	position: absolute!important;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition-property: opacity;
}

.btn__loading:not(.is-active) {
	margin: 0;
	width: 0;
	height: 0;
	opacity: 0;
}

.btn__loading .c-loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1.4em;
	height: 1.4em;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.btn__loading.is-active {
	position: relative;
	width: 1em;
	height: 1em;
	opacity: 1;
}

.btn.disabled,.btn[disabled] {
	color: #aaa;
	opacity: 1;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	cursor: default;
	cursor: not-allowed;
	pointer-events: none;
}

.btn.disabled:focus,.btn.disabled:hover,.btn[disabled]:focus,.btn[disabled]:hover {
	color: #aaa;
}

.btn.is-spinner-active .btn__loading--over+.btn__content {
	opacity: 0;
}

.btn--shadow:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 5px 15px 2px currentColor;
	opacity: .19;
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.btn--shadow:hover:after {
	opacity: .36;
}

.btn--shadow-gradient {
	position: relative;
	z-index: 1;
}

.btn--shadow-gradient:after {
	content: "";
	position: absolute;
	left: 5px;
	right: 5px;
	top: 5px;
	bottom: -5px;
	z-index: -1;
	display: inline-block;
	margin: auto auto 0;
	border-radius: inherit;
	width: auto;
	background: inherit;
	opacity: .7;
	-webkit-filter: blur(12px);
	filter: blur(12px);
	transition: inherit;
	transition-property: opacity;
}

.btn--shadow-gradient:hover:after {
	opacity: 1;
}

.btn--icon-only {
	padding: .5rem;
	width: 1em;
	height: 1em;
	font-size: 4.8rem;
}

.btn--icon-only.btn--xs {
	font-size: 3.1rem;
}

.btn--icon-only.btn--sm {
	font-size: 4.2rem;
}

.btn--icon-only.btn--lg {
	font-size: 5.8rem;
}

.btn--icon-only.btn--xl {
	font-size: 7.2rem;
}

.btn--icon-only .btn__content {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	padding: inherit;
	width: 100%;
	height: 100%;
	min-width: 0;
	line-height: inherit;
}

.btn--icon-only .btn__content>span {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin: 0 auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active) {
	.btn--icon-only .btn__content>span {
		bottom: 0;
	}
}

.btn__content {
	color: #8084a3;
}

.btn--primary {
	color: #227fef;
}

.btn--primary:hover {
	color: #1f72d7;
}

.btn--primary .btn__content,.btn--primary .btn__loading,.btn--primary:hover .btn__content,.btn--primary:hover .btn__loading {
	color: #fff;
}

.btn--secondary {
	color: #bfbebe;
}

.btn--secondary:hover {
	color: #acabab;
}

.btn--secondary .btn__content,.btn--secondary .btn__loading,.btn--secondary:hover .btn__content,.btn--secondary:hover .btn__loading {
	color: #292c39;
}

.btn--success {
	color: #07c118;
}

.btn--success:hover {
	color: #06ae16;
}

.btn--success .btn__content,.btn--success .btn__loading,.btn--success:hover .btn__content,.btn--success:hover .btn__loading {
	color: #fff;
}

.btn--info {
	color: #4285f4;
}

.btn--info:hover {
	color: #3b78dc;
}

.btn--info .btn__content,.btn--info .btn__loading,.btn--info:hover .btn__content,.btn--info:hover .btn__loading {
	color: #fff;
}

.btn--warning {
	color: #fa612e;
}

.btn--warning:hover {
	color: #e15729;
}

.btn--warning .btn__content,.btn--warning .btn__loading,.btn--warning:hover .btn__content,.btn--warning:hover .btn__loading {
	color: #fff;
}

.btn--danger {
	color: #ea4336;
}

.btn--danger:hover {
	color: #d33c31;
}

.btn--danger .btn__content,.btn--danger .btn__loading,.btn--danger:hover .btn__content,.btn--danger:hover .btn__loading,.btn--white {
	color: #fff;
}

.btn--white:hover {
	color: #e6e6e6;
}

.btn--white .btn__content,.btn--white .btn__loading,.btn--white:hover .btn__content,.btn--white:hover .btn__loading {
	color: #292c39;
}

.btn--black {
	color: #000;
}

.btn--black:hover {
	color: #1a1a1a;
}

.btn--black .btn__content,.btn--black .btn__loading,.btn--black:hover .btn__content,.btn--black:hover .btn__loading {
	color: #fff;
}

.btn--outline.btn--color-primary {
	color: #227fef;
}

.btn--outline.btn--color-primary.btn--fill-on-hover:hover .btn__content {
	color: #fff;
}

.btn--outline.btn--color-secondary {
	color: #bfbebe;
}

.btn--outline.btn--color-secondary.btn--fill-on-hover:hover .btn__content {
	color: #292c39;
}

.btn--outline.btn--color-success {
	color: #07c118;
}

.btn--outline.btn--color-success.btn--fill-on-hover:hover .btn__content {
	color: #fff;
}

.btn--outline.btn--color-info {
	color: #4285f4;
}

.btn--outline.btn--color-info.btn--fill-on-hover:hover .btn__content {
	color: #fff;
}

.btn--outline.btn--color-warning {
	color: #fa612e;
}

.btn--outline.btn--color-warning.btn--fill-on-hover:hover .btn__content {
	color: #fff;
}

.btn--outline.btn--color-danger {
	color: #ea4336;
}

.btn--outline.btn--color-danger.btn--fill-on-hover:hover .btn__content,.btn--outline.btn--color-white {
	color: #fff;
}

.btn--outline.btn--color-white.btn--fill-on-hover:hover .btn__content {
	color: #292c39;
}

.btn--outline.btn--color-black {
	color: #000;
}

.btn--outline.btn--color-black.btn--fill-on-hover:hover .btn__content {
	color: #fff;
}

.btn--outline.btn--color-primary.btn--darken-on-hover:hover {
	color: #0d5ab7;
}

.btn--outline.btn--color-primary.btn--lighten-on-hover:hover {
	color: #69a8f4;
}

.btn--outline.btn--color-secondary.btn--darken-on-hover:hover {
	color: #999797;
}

.btn--outline.btn--color-secondary.btn--lighten-on-hover:hover {
	color: #e5e5e5;
}

.btn--outline.btn--color-success.btn--darken-on-hover:hover {
	color: #04770f;
}

.btn--outline.btn--color-success.btn--lighten-on-hover:hover {
	color: #1ef732;
}

.btn--outline.btn--color-info.btn--darken-on-hover:hover {
	color: #0d5bdd;
}

.btn--outline.btn--color-info.btn--lighten-on-hover:hover {
	color: #8ab4f8;
}

.btn--outline.btn--color-warning.btn--darken-on-hover:hover {
	color: #d63905;
}

.btn--outline.btn--color-warning.btn--lighten-on-hover:hover {
	color: #fc9979;
}

.btn--outline.btn--color-danger.btn--darken-on-hover:hover {
	color: #bf2014;
}

.btn--outline.btn--color-danger.btn--lighten-on-hover:hover {
	color: #f1847b;
}

.btn--outline.btn--color-white.btn--darken-on-hover:hover {
	color: #d9d9d9;
}

.btn--outline.btn--color-white.btn--lighten-on-hover:hover {
	color: #fff;
}

.btn--outline.btn--color-black.btn--darken-on-hover:hover {
	color: #000;
}

.btn--outline.btn--color-black.btn--lighten-on-hover:hover {
	color: #262626;
}

a.btn:not(.btn--outline),a.btn:not(.btn--outline):hover {
	border-color: transparent;
}

.btn[class*=btn--gradient] {
	background-position: 0
0;
	background-size: 100% 200%;
	transition-property: background-position;
}

.btn[class*=btn--gradient]:hover {
	background-position: 0 100%;
}

.btn[class*=btn--gradient-horizontal] {
	background-position: 0 0;
	background-size: 200% 100%;
	transition-property: background-position;
}

.btn[class*=btn--gradient-horizontal]:hover {
	background-position: 100% 0;
}

.btn[class*=btn--outline-gradient] {
	border: 0;
	background-image: linear-gradient(90deg,#227fef,#ea4336,#227fef),linear-gradient(90deg,#227fef,#ea4336,#227fef);
	background-repeat: no-repeat;
	background-clip: border-box;
	border-left: .2rem solid #227fef;
	border-right: .2rem solid #ea4336;
	background-size: 200% .2rem;
	background-position: 0 100%,0 0;
}

.btn[class*=btn--outline-gradient]:hover {
	background-position: 100% 100%,100% 0;
	border-left: .2rem solid #ea4336;
	border-right: .2rem solid #227fef;
}

.btn[class*=btn--outline-gradient],.btn[class*=btn--outline-gradient]:hover {
	background-color: transparent;
}

.btn[class*=btn--content-gradient]:hover .btn__content {
	background-position: 100% 100%,100% 0;
}

.btn[class*=btn--content-gradient] .btn__content {
	color: #227fef;
	background: -webkit-linear-gradient(0deg,#227fef,#ea4336);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: .3s cubic-bezier(.4,0,.2,1);
	transition-property: background-position;
}

a.btn {
	text-decoration: none;
}

.btn-icon {
	width: auto;
}

.btn-icon--left {
	margin-right: 1rem;
}

.btn-icon--right {
	margin-left: 1rem;
}

.btn-icon--single {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	padding: inherit;
	width: 100%;
	height: 100%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.btn {
	height: 4.375em;
	font-size: 1.6rem;
	line-height: 1.2;
	letter-spacing: .128rem;
	text-transform: uppercase;
}

.btn--primary,.btn--secondary {
	background-position: 0 0;
	background-size: 200% 100%;
	background-color: transparent;
	transition-property: background-position,box-shadow;
}

.btn--primary:hover,.btn--secondary:hover {
	background-position: 100% 0;
}

.btn--primary .btn__content,.btn--primary:hover .btn__content,.btn--secondary .btn__content,.btn--secondary:hover .btn__content {
	color: #fff;
}

.btn--primary {
	background-image: linear-gradient(90deg,#007ae7,#21c6c8,#007ae7);
}

.btn--secondary {
	background-image: linear-gradient(90deg,#ffbd0a,#ea2c5b,#ffbd0a);
}

.btn--custom-1 {
	width: 100%;
	text-align: center;
}

@media (min-width:375px) {
	.btn--custom-1 {
		width: 34.8rem;
	}
}

.btn--single {
	display: table;
	table-layout: fixed;
}

.btn--disabled {
	pointer-events: none;
}

.btn--icon-only .btn__content {
	color: #fff;
	transition: color .2s ease-out;
}

.btn--icon-only:hover .btn__content {
	color: hsla(0,0%,100%,.7);
}

.btn--toggle-text {
	position: relative;
	overflow: hidden;
}

.btn--toggle-text .btn__content {
	position: static;
}

.btn--toggle-text .btn__content-inner span {
	transition: .3s ease-in-out;
}

.btn--toggle-text .btn__content-inner span:first-child {
	position: relative;
	display: block;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.btn--toggle-text .btn__content-inner span:nth-child(2) {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.btn--toggle-text .btn__loading {
	transition-delay: .3s;
}

.btn--toggle-text.is-active .btn__content-inner {
	position: relative;
}

.btn--toggle-text.is-active .btn__content-inner span:first-child {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.btn--toggle-text.is-active .btn__content-inner span:nth-child(2) {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.btn--auto .btn__content {
	min-width: auto;
}

.btn__content {
	top: .125em;
	min-width: calc(10.2rem - 2.26666em);
}

.btn--sm-content .btn__content {
	min-width: calc(12.8rem - 2.26666em);
}

.btn--md-content-static .btn__content {
	min-width: calc(18.8rem - 2.26666em);
}

@media (min-width:768px) {
	.btn--md-content .btn__content {
		min-width: calc(18.8rem - 2.26666em);
	}
}

.btn--lg-content .btn__content {
	min-width: calc(22.8rem - 2.26666em);
}

.btn-icon {
	top: .0625em;
	margin-top: -.4375em;
	width: 1.4375em;
	height: 1.4375em;
}

.btn__content {
	top: .12em;
}

.c-ul--circle {
	padding-left: 1em;
}

.c-ul--circle li:before {
	content: "\2022";
	margin: 0 .5em .1em -.85em;
	font-family: sans-serif;
}

.c-ul--circle li:before {
	color: #227fef;
}

.c-hover-effect--zoom {
	position: relative;
}

.c-hover-effect--zoom:before {
	z-index: 2;
	background: 50% 50% no-repeat;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1' viewBox='0 0 50 50'%3E%3Cpath d='M28.406 5a1.001 1.001 0 0 0 .188 2h13L7 41.594v-13a1 1 0 0 0-1.219-1 1 1 0 0 0-.781 1V45h16.406a1 1 0 1 0 0-2h-13L43 8.406v13a1 1 0 1 0 2 0V5H28.594a1 1 0 0 0-.094 0 1.001 1.001 0 0 0-.094 0z' fill='%23fff'/%3E%3C/svg%3E");
	background-size: 8rem 8rem;
	-webkit-backface-visibility: hidden;
	will-change: transform;
}

.no-touchevents .c-hover-effect--zoom:after,.no-touchevents .c-hover-effect--zoom:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 0;
	transition: opacity .4s ease,-webkit-transform .5s ease;
	transition: opacity .4s ease,transform .5s ease;
	transition: opacity .4s ease,transform .5s ease,-webkit-transform .5s ease;
}

.no-touchevents .c-hover-effect--zoom:before {
	-webkit-transform: scale(.8);
	transform: scale(.8);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.no-touchevents .c-hover-effect--zoom:after {
	z-index: 1;
	background-color: rgba(82,69,69,.6);
}

.no-touchevents .c-hover-effect--zoom:hover:after,.no-touchevents .c-hover-effect--zoom:hover:before {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.touchevents .c-hover-effect--zoom:before {
	content: "";
	position: absolute;
	left: auto;
	right: 0;
	top: 0;
	width: 15%;
	height: 15%;
	min-width: 3rem;
	min-height: 3rem;
	max-width: 10rem;
	max-height: 10rem;
	background-size: 70% 70%;
	background-color: rgba(2,30,56,.6);
	opacity: 1;
}

.no-touchevents .c-hover-effect--zoom:before {
	width: 35%;
	height: 35%;
	min-width: 4rem;
	min-height: 7rem;
	max-height: 10rem;
	background-size: contain;
}

.no-touchevents .c-hover-effect--zoom:after {
	background-color: rgba(191,190,190,.6);
}

.c-overlay {
	z-index: -1;
	border-radius: inherit;
	background-color: rgba(41,44,57,.35);
	opacity: 0;
	transition: .35s cubic-bezier(.05,.52,.27,.84);
}

.c-overlay:hover,:focus>.c-overlay,:hover>.c-overlay {
	z-index: 10;
	opacity: 1;
}

.c-overlay,.c-overlay__inner,.c-overlay__link {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.c-overlay__inner,.c-overlay__link {
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-overlay__inner>*,.c-overlay__link>* {
	margin: auto;
}

input,textarea {
	background-color: #efefef;
	border: 1px solid #efefef;
	border-radius: .3rem;
	color: #1b1d2d;
	font-size: inherit;
	font-weight: 400;
	height: 5.6rem;
	outline: none;
	padding: .86em 1.5rem;
	text-align: inherit;
	transition: .3s cubic-bezier(.4,0,.2,1);
	width: 100%;
	-webkit-appearance: none;
}

input:focus,textarea:focus {
	background-color: #fff;
	border-color: #d6d6d6;
}

input.active+.form__label,input:focus+.form__label,textarea.active+.form__label,textarea:focus+.form__label {
	font-size: 1.2rem;
	background: #fff;
	-webkit-transform: translateY(-2rem);
	transform: translateY(-2rem);
}

input.active::-webkit-input-placeholder,input:focus::-webkit-input-placeholder,textarea.active::-webkit-input-placeholder,textarea:focus::-webkit-input-placeholder {
	opacity: 0;
}

input.active:-moz-placeholder,input.active::-moz-placeholder,input:focus:-moz-placeholder,input:focus::-moz-placeholder,textarea.active:-moz-placeholder,textarea.active::-moz-placeholder,textarea:focus:-moz-placeholder,textarea:focus::-moz-placeholder {
	opacity: 0;
}

input.active:-ms-input-placeholder,input:focus:-ms-input-placeholder,textarea.active:-ms-input-placeholder,textarea:focus:-ms-input-placeholder {
	opacity: 0;
}

input[readonly],textarea[readonly] {
	border-color: #575b75;
	color: #fff;
	background: #575b75;
	cursor: default;
	pointer-events: none;
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
	color: #636363;
	opacity: 1;
	transition: .3s cubic-bezier(.4,0,.2,1);
}

input:-moz-placeholder,input::-moz-placeholder,textarea:-moz-placeholder,textarea::-moz-placeholder {
	color: #636363;
	opacity: 1;
	transition: .3s cubic-bezier(.4,0,.2,1);
}

input:-ms-input-placeholder,textarea:-ms-input-placeholder {
	color: #636363;
	opacity: 1;
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.form__success {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #07c118;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.form__success,.form__title {
	width: 100%;
	text-align: center;
}

.form__title {
	font-weight: 600;
	font-size: 2rem;
}

.form__input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.form__input-group {
	display: inline-block;
}

.form__input-group--row {
	display: flex;
	flex-wrap: wrap;
}

.form__group {
	position: relative;
}

.form__label {
	display: inline-block;
	width: 100%;
	cursor: default;
}

.form__label-content {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.form__checkbox,.form__radio {
	-webkit-appearance: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: auto;
	opacity: 0;
}

.form__checkbox+.icon,.form__radio+.icon {
	position: relative;
	flex-shrink: 0;
	width: 2.3rem;
	height: 2.3rem;
	stroke-width: 1;
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.form__checkbox+.icon svg,.form__radio+.icon svg {
	vertical-align: top;
	width: 100%;
	height: 100%;
}

.form__checkbox+.icon,.form__checkbox+.icon path,.form__radio+.icon path {
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.form__checkbox+.icon {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: .2rem;
	width: 2.3rem;
	height: 2.3rem;
	background: #fff;
}

.form__checkbox+.icon+span {
	margin-left: .8rem;
}

.form__checkbox+.icon svg {
	width: 1.4rem;
	height: .8rem;
}



.some-work-block {
	width: 32%;
	height: 250px;
	margin-top: 20px;
}
.swb-1 {
	background: url(../img/z-case-1.jpg) center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.swb-2 {
	background: url(../img/z-case-2.png) center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.swb-3 {
	background: url(../img/z-case-3.png) center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.swb-4 {
	background: url(../img/z-case-4.jpeg) center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.swb-5 {
	background: url(../img/z-case-5.jpg) center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.swb-6 {
	background: url(../img/z-case-6.jpg) center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.opacity-some-works {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 30px 20px;
}
.some-works {
	padding-bottom: 100px;
}
.title-some-works {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
.descriptioon-some-works {
	font-size: 16px;
	font-weight: 500;	
	color: #fff;
	text-align: center;
	padding-top: 5px;
}
.button-some-works {
	background-image: linear-gradient(270deg,#ea2c5b 0,#ffbd0a);
	border-radius: .5rem;
    font-weight: 500;
    line-height: 1.27;
    text-align: center;
    color: #fff;
    display: block;
    padding: 5px 0;
    width: 80%;
    margin: 0 auto;
}
.opacity-some-works {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.flex-some-work {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.button-some-works:hover {
	color: #fff;
}
.title-popup-sw {
	font-size: 25px;
	font-weight: 700;
	padding-bottom: 10px;
}
.descrip-popup-sw {
	font-size: 20px;
	font-weight: 400;
	padding-bottom: 20px;	
}
.title-list-sw {
	font-size: 20px;
	font-weight: 700;	
	padding-bottom: 15px;
}
.text-list-sw {
	font-size: 18px;
	font-weight: 400;
	padding-bottom: 5px;		
}
.flex-popup-sw {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
}
.list-popup-block {
	width: 263px;
}
.title-popup-sw {
	width: 220px;
}
.text-adv {
	font-size: 20px;
	font-weight: 500;
	padding-left: 20px;
}
.text-adv-button {
	font-size: 20px;
	font-weight: 700;	
	color: #fff;
}
.flex-adv-image {
	display: flex;
	align-items: center;
	width: 32%;
	padding-top: 10px;
}
.adv-image {
	width: 140px;
}
.flex-advertising-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex-adv-button {
	width: 32%;	
	text-align: center;
	padding-top: 10px;
}
.button-adv {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	background: #000;
	padding: 20px 30px;
	display: inline-block;
	margin-top: 10px;
}
.button-adv:hover {
	color: #fff;
}
.bg-button-adv {
	background-image: linear-gradient(270deg,#ea2c5b 0,#ffbd0a);
	padding: 20px 10px;
	border-radius: 10px;
}
.table-sw-popup, .title-list-sw {
	border: 1px solid #000;
}
.table-sw-popup {
	margin-bottom: 30px;
}
.pad-table-sw {
	padding: 15px;
	vertical-align: middle;
	border: 1px solid #000;
	width: 20%;
}

@media (min-width:768px) {
	.form__checkbox+.icon svg {
		width: 1.5rem;
		height: 1rem;
	}
}

.form__checkbox+.icon
path {
	stroke: #424242;
	stroke-dasharray: 30;
	stroke-dashoffset: 31;
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.form__checkbox:checked+.icon path {
	stroke: #227fef;
	stroke-dasharray: 30;
	stroke-dashoffset: 0;
}

.form__group.error .form__checkbox[required]:not(:checked)+.icon path {
	stroke: #ea4336;
}

.form__radio:checked+.icon path:first-child {
	stroke: #227fef;
}

.form__radio:checked+.icon path:last-child {
	fill: #227fef;
	stroke: none;
}

.form__radio+.icon {
	position: relative;
	margin-right: 8px;
	width: 2.3rem;
	height: 2.3rem;
	min-width: 2.3rem;
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.form__radio+.icon path:first-child {
	stroke: #424242;
}

.form__radio+.icon path:last-child {
	fill: transparent;
	stroke: none;
}

.form__group.error .form__radio[required]:not(:checked)+.icon path {
	stroke: #ea4336;
}

@-webkit-keyframes checkbox-checked {
	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes checkbox-checked {
	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

textarea {
	display: block;
	width: 100%;
}

.success__text {
	width: 100%;
	text-align: center;
	color: #07c118;
	opacity: 0;
	-webkit-transform: translateY(5rem);
	transform: translateY(5rem);
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.success__text.show {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.error input,.error textarea {
	border-color: #ea4336;
}

.error .error__text {
	display: block;
	opacity: 1;
}

.error__text {
	display: none;
	margin: .5rem 0;
	font-size: 12px;
	color: #ea4336;
	opacity: 0;
	transition: .3s cubic-bezier(.4,0,.2,1);
}

.c-input {
	padding: .86em 1.5rem;
	height: 4.8rem;
}

.c-input--xs {
	padding: 0 1.5rem;
	height: 2.9rem;
}

.c-form-title {
	color: #eb2f59;
}

.c-form-subtitle {
	margin-top: 2rem;
	font-size: 2.2rem;
	line-height: 1.27;
	color: #797979;
}

.c-form-actions,.c-form-inputs {
	margin-top: 2rem;
}

.c-form-actions .btn {
	width: 100%;
}

.form__group.error .form__input::-webkit-input-placeholder {
	color: #ea4336;
}

.form__group.error .form__input:-moz-placeholder,.form__group.error .form__input::-moz-placeholder {
	color: #ea4336;
}

.form__group.error .form__input:-ms-input-placeholder {
	color: #ea4336;
}

@media (max-width:767px) {
	.form__checkbox+.icon,.form__radio+.icon {
		width: 2.1rem;
		height: 2.1rem;
		min-width: 2.1rem;
	}
	.flex-popup-sw {
		flex-direction: column;
	}

}

.form__input-wrapper--checkbox:not(:first-child) {
	margin-top: 2rem;
}

.form__checkbox+.icon {
	border: .1rem solid #fff;
	border-radius: .5rem;
}

.form__checkbox:checked+.icon {
	border-color: #227fef;
	background: #227fef;
}

.form__checkbox:checked+.icon path {
	stroke: #fff;
	transition-delay: .15s;
}

.form__checkbox[disabled]+.icon {
	background-color: #fff;
}

.form__checkbox[disabled]~* {
	opacity: .4;
}

.form__radio+.icon circle,.form__radio+.icon path {
	transition: transform .25s ease-out,opacity .4s ease;
}

.form__radio+.icon .outline {
	stroke: #fff;
}

.form__radio+.icon .dot {
	fill: #4285f4;
	opacity: 0;
	-webkit-transform: scale(.2);
	transform: scale(.2);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.form__radio:checked+.icon .dot {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.c-form-agree {
	width: 100%;
	max-width: 29rem;
	line-height: 1;
	color: #bcbcbc;
}

.c-form-agree__label {
	margin-top: .12em;
	margin-left: 1rem;
	font-size: 1.4rem;
}

@media (min-width:768px) {
	.c-form-agree__label {
		margin-left: 1.8rem;
		font-size: 1.6rem;
	}
}

.c-form-agree__label a {
	position: relative;
	z-index: 2;
}

@media (min-width:768px) {
	.form--inline-labels .form__label {
		display: flex;
		align-items: center;
	}
}

.form--inline-labels .form__label-content {
	margin-bottom: .6rem;
	font-size: 1.2rem;
	text-transform: uppercase;
}

@media (min-width:768px) {
	.form--inline-labels .form__label-content {
		flex-shrink: 0;
		margin-bottom: 0;
		padding-right: 1.5rem;
		width: 15rem;
		font-size: 1.4rem;
	}
}

@media (min-width:992px) {
	.form--inline-labels .form__label-content {
		width: 44%;
		font-size: 1.6rem;
	}
}

@media (min-width:768px) {
	.form--inline-labels .form__input-content {
		margin-left: 15rem;
	}
}

@media (min-width:992px) {
	.form--inline-labels .form__input-content {
		margin-left: 44%;
	}
}

@media (min-width:768px) {
	.form--inline-labels .form__input-wrapper {
		flex-grow: 1;
		min-width: 0;
	}
}

.form--narrow {
	margin-right: auto;
	margin-left: auto;
	max-width: 26rem;
}

.form--narrow .btn {
	width: 100%;
}

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.ic {
	position: relative;
	flex: 0 0 auto;
	max-width: 100%;
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
	a .ic use {
		pointer-events: none;
	}
}

@supports (-ms-ime-align:auto) {
	a .ic use {
		pointer-events: none;
	}
}

@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active) {
	.ic {
		flex-shrink: 1;
	}
}

.c-accordion {
	position: relative;
}

.c-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.c-accordion__scroll-offset {
	position: absolute;
	left: 0;
	top: 0;
}

.c-accordion.is-hidden>.c-accordion__content {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.c-accordion>.c-accordion__content {
	overflow: hidden;
	transition: max-height .25s ease-in-out;
	will-change: max-height;
}

.c-accordion__icon-wrapper {
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
	margin-left: 1.5rem;
	border: .2rem solid;
	border-radius: 50%;
	width: 3.2rem;
	height: 3.2rem;
	text-align: center;
	transition: .3s ease;
	transition-property: opacity,color;
}

@media (min-width:768px) {
	.c-accordion__icon-wrapper {
		width: 4.1rem;
		height: 4.1rem;
	}
}

@media (min-width:992px) {
	.c-accordion__icon-wrapper {
		margin-left: 2.5rem;
	}
}

.c-accordion__icon-wrapper i {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	transition: .3s ease-in-out;
}

@media (min-width:768px) {
	.c-accordion__icon-wrapper i {
		font-size: 2.6rem;
	}
}

.c-accordion__icon-wrapper i:nth-child(2) {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.c-accordion__scroll-offset {
	top: -6rem;
}

.c-accordion.is-active .c-accordion__icon-wrapper {
	position: relative;
}

.c-accordion.is-active .c-accordion__icon-wrapper i:first-child {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.c-accordion.is-active .c-accordion__icon-wrapper i:nth-child(2) {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical>.swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.swiper-container-multirow>.swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: height,-webkit-transform;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform;
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(270deg,rgba(0,0,0,.5),transparent);
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(90deg,rgba(0,0,0,.5),transparent);
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(180deg,rgba(0,0,0,.5),transparent);
}

.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper {
	touch-action: pan-y;
}

.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper {
	touch-action: pan-x;
}

.swiper-button-next,.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: 50%;
	background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
	left: 10px;
	right: auto;
}

.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
	right: 10px;
	left: auto;
}

.swiper-button-prev.swiper-button-white,.swiper-container-rtl
.swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E");
}

.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E");
}

.swiper-button-lock {
	display: none;
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: opacity .3s;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	transform: scale(.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	transform: scale(.33);
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: top .2s,-webkit-transform .2s;
	transition: transform .2s,top .2s;
	transition: transform .2s,top .2s,-webkit-transform .2s;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: left .2s,-webkit-transform .2s;
	transition: transform .2s,left .2s;
	transition: transform .2s,left .2s,-webkit-transform .2s;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: right .2s,-webkit-transform .2s;
	transition: transform .2s,right .2s;
	transition: transform .2s,right .2s,-webkit-transform .2s;
}

.swiper-pagination-progressbar {
	background: rgba(0,0,0,.25);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: hsla(0,0%,100%,.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0,0,0,.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000;
}

.swiper-pagination-lock {
	display: none;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0,0,0,.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0,0,0,.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
	animation: swiper-preloader-spin 1s steps(12) infinite;
}

.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes swiper-preloader-spin {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode
.swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube {
	overflow: visible;
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0;
}

.swiper-container-flip {
	overflow: visible;
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
	-ms-perspective: 1200px;
}

[data-carousel=swiper] {
	position: relative;
	z-index: 10;
	width: 100%;
}

.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-slide--eq-height {
	align-items: stretch;
	height: auto;
}

.swiper-slide>* {
	box-sizing: border-box;
}

[data-carousel=swiper]:not(.is-initialized) {
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s;
}

[data-carousel=swiper]:not(.is-initialized) .swiper-slide {
	visibility: hidden;
}

.swiper-button-next,.swiper-button-prev {
	margin-top: 0;
	outline: none;
	width: 3rem;
	height: 3rem;
	color: inherit;
	background-image: none;
	background-size: 2rem 3.4rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: .3s cubic-bezier(.4,0,.2,1);
}

@media (min-width:576px) {
	.swiper-button-next,.swiper-button-prev {
		width: 2rem;
		height: 3.4rem;
	}
}

.swiper-button-next:hover,.swiper-button-prev:hover {
	color: #292c39;
}

.light .swiper-button-next:not(:hover),.light .swiper-button-prev:not(:hover) {
	color: currentColor;
}

@media (min-width:1270px) {
	[data-carousel=swiper]:not(.c-banner-slider) .swiper-button-next,[data-carousel=swiper]:not(.c-banner-slider) .swiper-button-prev {
		width: 2rem;
		height: 3.4rem;
	}
}

@media (max-width:1269px) {
	[data-carousel=swiper]:not(.c-banner-slider) .swiper-button-next,[data-carousel=swiper]:not(.c-banner-slider) .swiper-button-prev {
		border-radius: 0;
		padding: 1rem;
		box-shadow: 0 0 2.4rem .3rem hsla(0,0%,40.4%,.12);
		box-sizing: content-box;
		background-size: 50%;
		background-color: hsla(0,0%,100%,.88);
	}

	.light [data-carousel=swiper]:not(.c-banner-slider) .swiper-button-next,.light [data-carousel=swiper]:not(.c-banner-slider) .swiper-button-prev {
		background-color: #227fef;
	}

	.light [data-carousel=swiper]:not(.c-banner-slider) .swiper-button-next:hover,.light [data-carousel=swiper]:not(.c-banner-slider) .swiper-button-prev:hover {
		color: hsla(0,0%,100%,.85);
	}
}

.touchevents .swiper-button-next.is-disabled,.touchevents .swiper-button-prev.is-disabled {
	-webkit-filter: saturate(15%);
	filter: saturate(15%);
	pointer-events: all;
}

.swiper-button-prev {
	left: 1rem;
}

.swiper-button-next {
	right: 1rem;
}

.swiper-button-next,.swiper-button-prev {
	align-items: center;
	justify-content: center;
}

.swiper-button-next:not(.swiper-button-lock),.swiper-button-prev:not(.swiper-button-lock) {
	display: flex;
}

.swiper-button-next svg,.swiper-button-prev svg {
	width: 100%;
	height: 100%;
}

@media (max-width:1269px) {
	.container [data-carousel=swiper]>.swiper-button-prev {
		left: 0;
	}

	.container [data-carousel=swiper]>.swiper-button-next {
		right: 0;
	}
}

@media (min-width:1270px) {
	[data-carousel=swiper]>.swiper-button-prev {
		left: -3.5rem;
	}

	[data-carousel=swiper]>.swiper-button-next {
		right: -3.5rem;
	}
}

@media (min-width:1270px) {
	.swiper-slide .swiper-button-prev {
		left: 0;
	}

	.swiper-slide .swiper-button-next {
		right: 0;
	}
}

@media (min-width:0) {
	.swiper-button--xs-hidden.swiper-button-next.is-disabled,.swiper-button--xs-hidden.swiper-button-prev.is-disabled {
		opacity: 0;
		visibility: hidden;
	}
}

@media (min-width:576px) {
	.swiper-button--sm-hidden.swiper-button-next.is-disabled,.swiper-button--sm-hidden.swiper-button-prev.is-disabled {
		opacity: 0;
		visibility: hidden;
	}
}

@media (min-width:768px) {
	.swiper-button--md-hidden.swiper-button-next.is-disabled,.swiper-button--md-hidden.swiper-button-prev.is-disabled {
		opacity: 0;
		visibility: hidden;
	}
}

@media (min-width:992px) {
	.swiper-button--lg-hidden.swiper-button-next.is-disabled,.swiper-button--lg-hidden.swiper-button-prev.is-disabled {
		opacity: 0;
		visibility: hidden;
	}
}

@media (min-width:1200px) {
	.swiper-button--xl-hidden.swiper-button-next.is-disabled,.swiper-button--xl-hidden.swiper-button-prev.is-disabled {
		opacity: 0;
		visibility: hidden;
	}
}

.swiper-pagination-bullets {
	color: #227fef;
}

.light .swiper-pagination-bullets {
	color: #fff;
}

.swiper-pagination-bullet {
	width: 1.2rem;
	height: 1.2rem;
	background-color: currentColor;
}

.swiper-pagination-bullet:focus {
	outline: none;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet:not(:first-child) {
	margin: 0 .2rem;
}

.swiper-pagination-bullet-active {
	background-color: #529bf2;
}

.swiper-pagination-bullets--outline .swiper-pagination-bullet {
	position: relative;
	box-shadow: inset 0 0 0 .1rem #d1d1d1;
	background: none;
	opacity: 1;
}

.swiper-pagination-bullets--outline .swiper-pagination-bullet:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	border-radius: 50%;
	width: .48rem;
	height: .48rem;
	background-color: currentColor;
	opacity: 0;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	transition: opacity .3s ease-in-out;
}

.swiper-pagination-bullets--outline .swiper-pagination-bullet:hover:before {
	opacity: .4;
}

.swiper-pagination-bullets--outline .swiper-pagination-bullet-active:before,.swiper-pagination-bullets--outline .swiper-pagination-bullet-active:hover:before {
	opacity: 1;
}

@media (min-width:1200px) {
	section .bg-dark .swiper-button-next,section .bg-dark .swiper-button-prev {
		background: #1b1d2d;
		padding: .7rem;
		border-radius: .5rem;
	}
}

.c-carousel-controls {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-carousel-controls .swiper-button-next,.c-carousel-controls .swiper-button-prev {
	position: relative;
	top: 0;
	display: flex;
	align-items: center;
	border-radius: 50%;
	padding: 0;
	width: 4.4rem;
	height: 4.4rem;
	background-color: #f6f4f1;
	-webkit-transform: none;
	transform: none;
}

.c-carousel-controls .swiper-button-next:hover,.c-carousel-controls .swiper-button-prev:hover {
	background-color: #e3e0db;
}

.c-carousel-controls .swiper-button-next svg,.c-carousel-controls .swiper-button-prev svg {
	display: block;
	width: 1.1rem;
	height: 2rem;
	color: #292c39;
}

.c-carousel-controls .swiper-button-next.swiper-button-lock,.c-carousel-controls .swiper-button-prev.swiper-button-lock {
	display: none;
}

.c-carousel-controls .swiper-button-prev {
	left: 0;
}

.c-carousel-controls .swiper-button-prev svg {
	margin-left: -.1rem;
}

.c-carousel-controls .swiper-button-next {
	right: 0;
	margin-left: .6rem;
}

.c-carousel-controls .swiper-button-next svg {
	right: -.1rem;
}

@media (max-width:991px) {
	.c-content-slider--center-slides-on-lg .swiper-slide.swiper-slide-next,.c-content-slider--center-slides-on-lg .swiper-slide.swiper-slide-prev {
		opacity: .3;
		-webkit-backface-visibility: hidden;
		-webkit-perspective: 1000;
		-webkit-transform: scale3d(.85,.85,1) translateZ(0);
		transform: scale3d(.85,.85,1) translateZ(0);
		will-change: transform;
		pointer-events: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	.c-content-slider--center-slides-on-lg .swiper-slide {
		transition: transform .3s ease-out,opacity .5s ease;
	}
}

@media (max-width:767px) {
	.c-content-slider--center-slides-on-md .swiper-slide.swiper-slide-next,.c-content-slider--center-slides-on-md .swiper-slide.swiper-slide-prev {
		opacity: .3;
		-webkit-backface-visibility: hidden;
		-webkit-perspective: 1000;
		-webkit-transform: scale3d(.85,.85,1) translateZ(0);
		transform: scale3d(.85,.85,1) translateZ(0);
		will-change: transform;
		pointer-events: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	.c-content-slider--center-slides-on-md .swiper-slide {
		transition: transform .3s ease-out,opacity .5s ease;
	}
}

.c-content-slider .c-slider-btn {
	z-index: 2;
}

@media (max-width:991px) {
	.c-content-slider[class*="--center-slides-off-lg"] .swiper-container {
		overflow: hidden;
	}
}

@media (max-width:991px) {
	.c-content-slider[class*="--center-slides-on-lg"] .swiper-container {
		overflow: visible;
	}
}

@media (max-width:767px) {
	.c-content-slider[class*="--center-slides-off-md"]
.swiper-container {
		overflow: hidden;
	}
}

@media (max-width:767px) {
	.c-content-slider[class*="--center-slides-on-md"] .swiper-container {
		overflow: visible;
	}
}

@media (max-width:575px) {
	.c-content-slider[class*="--center-slides-off-sm"] .swiper-container {
		overflow: hidden;
	}
}

@media (max-width:575px) {
	.c-content-slider[class*="--center-slides-on-sm"] .swiper-container {
		overflow: visible;
	}
}

.equal-height .swiper-slide {
	height: auto;
}

.slide-auto-width .swiper-slide {
	width: auto;
}

.slide-auto-width .swiper-container:after,.slide-auto-width .swiper-container:before {
	content: "";
	position: absolute;
	top: 0;
	z-index: 2;
	width: 15%;
	height: 100%;
	opacity: 0;
	transition: .3s cubic-bezier(.4,0,.2,1);
	pointer-events: none;
}

@media (min-width:768px) {
	.slide-auto-width .swiper-container:after,.slide-auto-width .swiper-container:before {
		width: 27.86%;
	}
}

.slide-auto-width .swiper-container:after {
	right: 0;
	background-image: linear-gradient(270deg,#1b1d2d 0,rgba(27,29,45,0));
}

.slide-auto-width .swiper-container:before {
	left: 0;
	background-image: linear-gradient(90deg,#1b1d2d 0,rgba(27,29,45,0));
}

.slide-auto-width .is-slide-to-next-enabled .swiper-container:after,.slide-auto-width .is-slide-to-prev-enabled .swiper-container:before {
	opacity: 1;
}

@-webkit-keyframes a {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

body.compensate-for-scrollbar {
	overflow: hidden;
}

.fancybox-active {
	height: auto;
}

.fancybox-is-hidden {
	left: -9999px;
	margin: 0;
	position: absolute!important;
	top: -9999px;
	visibility: hidden;
}

.fancybox-container {
	-webkit-backface-visibility: hidden;
	height: 100%;
	left: 0;
	outline: none;
	position: fixed;
	-webkit-tap-highlight-color: transparent;
	top: 0;
	touch-action: manipulation;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	width: 100%;
	z-index: 99992;
}

.fancybox-container * {
	box-sizing: border-box;
}

.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.fancybox-outer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
}

.fancybox-bg {
	background: #1e1e1e;
	opacity: 0;
	transition-duration: inherit;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.47,0,.74,.71);
}

.fancybox-is-open .fancybox-bg {
	opacity: .9;
	transition-timing-function: cubic-bezier(.22,.61,.36,1);
}

.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar {
	direction: ltr;
	opacity: 0;
	position: absolute;
	transition: opacity .25s ease,visibility 0s ease .25s;
	visibility: hidden;
	z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar {
	opacity: 1;
	transition: opacity .25s ease 0s,visibility 0s ease 0s;
	visibility: visible;
}

.fancybox-infobar {
	color: #ccc;
	font-size: 13px;
	-webkit-font-smoothing: subpixel-antialiased;
	height: 44px;
	left: 0;
	line-height: 44px;
	min-width: 44px;
	mix-blend-mode: difference;
	padding: 0 10px;
	pointer-events: none;
	top: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fancybox-toolbar {
	right: 0;
	top: 0;
}

.fancybox-stage {
	direction: ltr;
	overflow: visible;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
	overflow: hidden;
}

.fancybox-slide {
	-webkit-backface-visibility: hidden;
	display: none;
	height: 100%;
	left: 0;
	outline: none;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: absolute;
	text-align: center;
	top: 0;
	transition-property: opacity,-webkit-transform;
	transition-property: transform,opacity;
	transition-property: transform,opacity,-webkit-transform;
	white-space: normal;
	width: 100%;
	z-index: 99994;
}

.fancybox-slide:before {
	content: "";
	display: inline-block;
	font-size: 0;
	height: 100%;
	vertical-align: middle;
	width: 0;
}

.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous {
	display: block;
}

.fancybox-slide--image {
	overflow: hidden;
	padding: 44px 0;
}

.fancybox-slide--image:before {
	display: none;
}

.fancybox-slide--html {
	padding: 6px;
}

.fancybox-content {
	background: #fff;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: relative;
	text-align: left;
	vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
	-webkit-animation-timing-function: cubic-bezier(.5,0,.14,1);
	animation-timing-function: cubic-bezier(.5,0,.14,1);
	-webkit-backface-visibility: hidden;
	background: transparent;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	left: 0;
	max-width: none;
	overflow: visible;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-transform-origin: top left;
	transform-origin: top left;
	transition-property: opacity,-webkit-transform;
	transition-property: transform,opacity;
	transition-property: transform,opacity,-webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
	cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
	cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content {
	cursor: -webkit-grab;
	cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
	cursor: text;
}

.fancybox-image,.fancybox-spaceball {
	background: transparent;
	border: 0;
	height: 100%;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%;
}

.fancybox-spaceball {
	z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content {
	height: 100%;
	overflow: visible;
	padding: 0;
	width: 100%;
}

.fancybox-slide--video .fancybox-content {
	background: #000;
}

.fancybox-slide--map .fancybox-content {
	background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
	background: #fff;
}

.fancybox-iframe,.fancybox-video {
	background: transparent;
	border: 0;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.fancybox-iframe {
	left: 0;
	position: absolute;
	top: 0;
}

.fancybox-error {
	background: #fff;
	cursor: default;
	max-width: 400px;
	padding: 40px;
	width: 100%;
}

.fancybox-error p {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}

.fancybox-button {
	background: rgba(30,30,30,.6);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	height: 44px;
	margin: 0;
	padding: 10px;
	position: relative;
	transition: color .2s;
	vertical-align: top;
	visibility: inherit;
	width: 44px;
}

.fancybox-button,.fancybox-button:link,.fancybox-button:visited {
	color: #ccc;
}

.fancybox-button:hover {
	color: #fff;
}

.fancybox-button:focus {
	outline: none;
}

.fancybox-button.fancybox-focus {
	outline: 1px dotted;
}

.fancybox-button[disabled],.fancybox-button[disabled]:hover {
	color: #888;
	cursor: default;
	outline: none;
}

.fancybox-button div {
	height: 100%;
}

.fancybox-button svg {
	display: block;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%;
}

.fancybox-button svg path {
	fill: currentColor;
	stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2) {
	display: none;
}

.fancybox-progress {
	background: #ff5268;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0;
	transform-origin: 0;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	transition-timing-function: linear;
	z-index: 99998;
}

.fancybox-close-small {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #ccc;
	cursor: pointer;
	opacity: .8;
	padding: 8px;
	position: absolute;
	right: -12px;
	top: -44px;
	z-index: 401;
}

.fancybox-close-small:hover {
	color: #fff;
	opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
	color: currentColor;
	padding: 10px;
	right: 0;
	top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
	overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
	display: none;
}

.fancybox-navigation .fancybox-button {
	background-clip: content-box;
	height: 100px;
	opacity: 0;
	position: absolute;
	top: calc(50% - 50px);
	width: 70px;
}

.fancybox-navigation .fancybox-button div {
	padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
	left: 0;
	left: env(safe-area-inset-left);
	padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
	padding: 31px 6px 31px 26px;
	right: 0;
	right: env(safe-area-inset-right);
}

.fancybox-caption {
	background: linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);
	bottom: 0;
	color: #eee;
	font-size: 14px;
	font-weight: 400;
	left: 0;
	line-height: 1.5;
	padding: 75px 44px 25px;
	pointer-events: none;
	right: 0;
	text-align: center;
	z-index: 99996;
}

@supports (padding:max(0px)) {
	.fancybox-caption {
		padding: 75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left));
	}
}

.fancybox-caption--separate {
	margin-top: -50px;
}

.fancybox-caption__body {
	max-height: 50vh;
	overflow: auto;
	pointer-events: all;
}

.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited {
	color: #ccc;
	text-decoration: none;
}

.fancybox-caption a:hover {
	color: #fff;
	text-decoration: underline;
}

.fancybox-loading {
	-webkit-animation: a 1s linear infinite;
	animation: a 1s linear infinite;
	background: transparent;
	border: 4px solid;
	border-color: #888 #888 #fff;
	border-radius: 50%;
	height: 50px;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 50px;
	z-index: 99999;
}

@keyframes a {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

.fancybox-animated {
	transition-timing-function: cubic-bezier(0,0,.25,1);
}

.fancybox-fx-slide.fancybox-slide--previous {
	opacity: 0;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

.fancybox-fx-slide.fancybox-slide--next {
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

.fancybox-fx-slide.fancybox-slide--current {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous {
	opacity: 0;
	transition-timing-function: cubic
-bezier(.19,1,.22,1);
}

.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	opacity: 0;
	-webkit-transform: scale3d(1.5,1.5,1.5);
	transform: scale3d(1.5,1.5,1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
	opacity: 0;
	-webkit-transform: scale3d(.5,.5,.5);
	transform: scale3d(.5,.5,.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
	opacity: 1;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
	opacity: 0;
	-webkit-transform: rotate(-1turn);
	transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
	opacity: 0;
	-webkit-transform: rotate(1turn);
	transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
	opacity: 1;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
	opacity: 0;
	-webkit-transform: scale3d(0,0,0) translate3d(-100%,0,0);
	transform: scale3d(0,0,0) translate3d(-100%,0,0);
}

.fancybox-fx-circular.fancybox-slide--next {
	opacity: 0;
	-webkit-transform: scale3d(0,0,0) translate3d(100%,0,0);
	transform: scale3d(0,0,0) translate3d(100%,0,0);
}

.fancybox-fx-circular.fancybox-slide--current {
	opacity: 1;
	-webkit-transform: scaleX(1) translateZ(0);
	transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
	-webkit-transform: translate3d(-100%,0,0) scale(.1) skew(-10deg);
	transform: translate3d(-100%,0,0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
	-webkit-transform: translate3d(100%,0,0) scale(.1) skew(10deg);
	transform: translate3d(100%,0,0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
	-webkit-transform: translateZ(0) scale(1);
	transform: translateZ(0) scale(1);
}

@media (max-height:576px) {
	.fancybox-slide {
		padding-left: 6px;
		padding-right: 6px;
	}

	.fancybox-slide--image {
		padding: 6px 0;
	}

	.fancybox-close-small {
		right: -6px;
	}

	.fancybox-slide--image .fancybox-close-small {
		background: #4e4e4e;
		color: #f2f4f6;
		height: 36px;
		opacity: 1;
		padding: 6px;
		right: 0;
		top: 0;
		width: 36px;
	}

	.fancybox-caption {
		padding-left: 12px;
		padding-right: 12px;
	}@	supports (padding:max(0px)) {
		.fancybox-caption{padding-left: max(12px,env(safe-area-inset-left));
		padding-right: max(12px,env(safe-area-inset-right));
	}
}}

.fancybox-share {
	background: #f4f4f4;
	border-radius: 3px;
	max-width: 90%;
	padding: 30px;
	text-align: center;
}

.fancybox-share h1 {
	color: #222;
	font-size: 35px;
	font-weight: 700;
	margin: 0 0 20px;
}

.fancybox-share p {
	margin: 0;
	padding: 0;
}

.fancybox-share__button {
	border: 0;
	border-radius: 3px;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 5px 10px;
	min-width: 130px;
	padding: 0 15px;
	text-decoration: none;
	transition: all .2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
}

.fancybox-share__button:link,.fancybox-share__button:visited {
	color: #fff;
}

.fancybox-share__button:hover {
	text-decoration: none;
}

.fancybox-share__button--fb {
	background: #3b5998;
}

.fancybox-share__button--fb:hover {
	background: #344e86;
}

.fancybox-share__button--pt {
	background: #bd081d;
}

.fancybox-share__button--pt:hover {
	background: #aa0719;
}

.fancybox-share__button--tw {
	background: #1da1f2;
}

.fancybox-share__button--tw:hover {
	background: #0d95e8;
}

.fancybox-share__button svg {
	height: 25px;
	margin-right: 7px;
	position: relative;
	top: -1px;
	vertical-align: middle;
	width: 25px;
}

.fancybox-share__button svg path {
	fill: #fff;
}

.fancybox-share__input {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #d7d7d7;
	border-radius: 0;
	color: #5d5b5b;
	font-size: 14px;
	margin: 10px 0 0;
	outline: none;
	padding: 10px 15px;
	width: 100%;
}

.fancybox-thumbs {
	background: #ddd;
	bottom: 0;
	display: none;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding: 2px 2px 4px;
	position: absolute;
	right: 0;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	top: 0;
	width: 212px;
	z-index: 99995;
}

.fancybox-thumbs-x {
	overflow-x: auto;
	overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
	display: block;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 212px;
}

.fancybox-thumbs__list {
	font-size: 0;
	height: 100%;
	list-style: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	position: relative;
	white-space: nowrap;
	width: 100%;
}

.politikas {
	font-family: sans-serif;
	font-size: 20px;
	line-height: 28px;
	padding: 20px;
}

.checkbox-polit {
	background-color: #efefef;
    border: 1px solid #efefef;
    border-radius: .3rem;
    color: #1b1d2d;
    font-size: inherit;
    font-weight: 400;
    height: auto;
    outline: none;
    padding: .86em 1.5rem;
    text-align: inherit;
    transition: .3s cubic-bezier(.4,0,.2,1);
    width: auto;
    -webkit-appearance: auto;
    margin-right: 5px;
}

.polit-pad {
	padding-top: 15px;
	text-align: center;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
	overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
	width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
	background: #2a2a2a;
	border-radius: 10px;
}

.fancybox-thumbs__list a {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: rgba(0,0,0,.1);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	float: left;
	height: 75px;
	margin: 2px;
	max-height: calc(100% - 8px);
	max-width: calc(50% - 4px);
	outline: none;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	width: 100px;
}

.fancybox-thumbs__list a:before {
	border: 6px solid #ff5268;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .2s cubic-bezier(.25,.46,.45,.94);
	z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
	opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
	opacity: 1;
}

@media (max-width:576px) {
	.fancybox-thumbs {
		width: 110px;
	}

	.fancybox-show-thumbs .fancybox-inner {
		right: 110px;
	}

	.fancybox-thumbs__list a {
		max-width: calc(100% - 10px);
	}
}

.fancybox-slide--html {
	padding: .6rem;
}

@media (max-width:575px) {
	.fancybox-is-open .fancybox-bg {
		opacity: .95;
	}
}

.fancybox-slide--html .fancybox-content {
	padding: 0;
	background: transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.fancybox-slide--html .fancybox-content>.fancybox-close-small {
	display: none;
}

.c-modal {
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	width: 100%;
	box-shadow: .5rem .9rem 2.8rem .4rem rgba(0,0,0,.1);
	background: #fff;
}

.c-modal--480 {
	max-width: 480px;
}

.c-modal--960 {
	max-width: 960px;
}

.c-modal--1140 {
	max-width: 1140px;
}

.c-modal--1200 {
	max-width: 1200px;
}

.c-modal--1920 {
	max-width: 1920px;
}

.c-modal__close {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	width: 4.8rem;
	height: 4.8rem;
	cursor: pointer;
}

.c-modal__close:hover svg {
	color: #bfbebe;
}

.c-modal__close svg {
	width: 2rem;
	height: 2rem;
	color: rgba(52,53,55,.54);
	fill: none;
	stroke-width: 2px;
	transition: all .3s ease;
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
	.c-modal__close svg use {
		pointer-events: none;
	}
}

@supports (-ms-ime-align:auto) {
	.c-modal__close svg use {
		pointer-events: none;
	}
}

.c-modal-card {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: .5rem;
	max-width: 48rem;
	background-color: #fff;
}

@media (min-width:768px) {
	.c-modal-card {
		max-width: 100%;
		max-width: calc(100% - 15px);
	}
}

@media (max-width:420px) {
	.c-modal-card {
		justify-content: center;
		width: 42rem;
		width: 100vw;
		min-height: 100vh;
		min-height: calc(100vh - 72px);
		max-width: 100%;
	}
}

.c-modal-card--dark {
	border: 0;
	background-color: transparent;
}

.c-modal-card--has-figure {
	border: 0;
	border-radius: 0;
	background: none;
}

@media (min-width:768px) {
	.c-modal-card--has-figure {
		max-width: 100%;
	}
}

@media (max-width:767px) {
	.c-modal-card--has-figure .c-modal__close {
		border-radius: 0 .5rem 0 0;
		height: 2.8rem;
		color: hsla(0,0%,100%,.6);
		background: hsla(0,0%,100%,.15);
	}
}

.c-modal-card--has-figure .c-modal-card__content {
	padding: 0;
	width: 100%;
}

@media (min-width:768px) {
	.c-modal-card--has-figure .c-modal-card__title {
		margin-top: 2.2rem;
	}
}

.c-modal-card--has-figure .c-modal-card__figure-column {
	width: 36rem;
	max-width: 100%;
}

@media (min-width:768px) {
	.c-modal-card--has-figure .c-modal-card__content-column {
		flex-grow: 0;
		min-width: 39rem;
	}
}

.c-modal-card--has-figure .c-modal-card__media {
	position: relative;
	height: 100%;
	min-height: 28rem;
}

@media (min-width:576px) {
	.c-modal-card--has-figure .c-modal-card__media {
		min-height: 36rem;
	}
}

@media (min-width:768px) {
	.c-modal-card--has-figure .c-modal-card__media {
		min-height: 42rem;
	}
}

@media (min-width:992px) {
	.c-modal-card--has-figure .c-modal-card__media {
		min-height: 50rem;
	}
}

.c-modal-card--has-figure .c-modal-card__meta {
	border-radius: 0 0 .5rem .5rem;
}

@media (min-width:768px) {
	.c-modal-card--has-figure .c-modal-card__meta {
		border-radius: 0 .5rem .5rem 0;
	}
}

@media (max-width:767px) {
	.c-modal-card--has-figure .c-modal-card__submit {
		margin-right: auto;
		margin-left: auto;
		width: 100%;
		max-width: 31rem;
	}
}

.c-modal-card--has-figure .figure-item {
	border-radius: .5rem .5rem 0 0;
}

@media (min-width:768px) {
	.c-modal-card--has-figure .figure-item {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
}

.c-modal-card--has-figure .form__group,.c-modal-card--has-figure .selectric-wrapper {
	margin-right: auto;
	margin-left: auto;
	max-width: 31rem;
}

.c-modal-card--has-map {
	max-width: 100%;
}

@media (max-width:420px) {
	.c-modal-card--has-map {
		min-height: auto;
	}
}

.c-modal-card--has-map .c-modal-card__content {
	padding: 0;
}

.c-modal-card--has-map .c-ymaps__container {
	width: 100vw;
	width: 100%;
	height: 320px;
	height: calc(320px - 1.2rem);
	min-height: 90vh;
	max-width: 100%;
}

.c-modal-card--has-map .c-modal__close {
	right: 1.2rem;
	top: 1.2rem;
	border-radius: 3px;
	padding: 0;
	box-shadow: 0 .1rem .2rem .1rem rgba(0,0,0,.15),0 .2rem .5rem -.3rem rgba(0,0,0,.15);
	background: #fff;
	opacity: .8;
	transition: .3s ease;
}

.c-modal-card--has-map .c-modal__close:hover svg {
	color: #667;
	opacity: 1;
}

.c-modal-card__content {
	width: 100%;
	padding: 4.2rem 2rem;
}

@media (min-width:576px) {
	.c-modal-card__content {
		padding: 6.2rem 3.6rem;
		max-width: none;
	}
}

.c-modal-card__hr {
	height: .3rem;
	max-width: 16rem;
	background: #227fef;
}

@media (max-width:575px) {
	.c-modal-card__messenger-icon {
		width: 5.6rem;
		height: 5.6rem;
	}
}

.c-modal-card__title {
	font-size: 3rem;
	line-height: 1.13;
	text-align: center;
	color: #eb2f59;
}

@media (min-width:768px) {
	.c-modal-card__title {
		font-size: 4rem;
	}
}

@media (min-width:768px) {
	.c-modal-card__title--long {
		font-size: 2.6rem;
	}
}

@media
(min-width:992px) {
	.c-modal-card__title--long {
		font-size: 3rem;
	}
}

.c-modal-card__subtitle {
	margin-top: 2rem;
	font-size: 1.8rem;
	line-height: 1.27;
	text-align: center;
	color: #797979;
}

@media (min-width:768px) {
	.c-modal-card__subtitle {
		font-size: 2.2rem;
	}
}

.c-modal-card__form {
	flex-direction: column;
	align-items: center;
	max-width: 100%;
}

@media (max-width:575px) {
	.c-modal-card__submit {
		width: 100%;
	}
}

.c-modal-card .c-form-agree {
	margin-right: auto;
	margin-left: auto;
}

.c-modal--480 .c-modal-card {
	justify-content: center;
	width: 42rem;
}

@media (min-width:768px) {
	.c-modal--480 .c-modal-card {
		width: 48rem;
	}
}

.c-modal {
	border-radius: .5rem;
	box-shadow: .4rem .5rem 2.5rem .4rem rgba(0,0,0,.06);
	background: none;
}

.c-modal--map {
	max-width: 1200px;
}

.c-modal--750 {
	max-width: 75rem;
}

@media (min-width:768px) {
	.c-modal--custom-1 {
		min-width: 54rem;
	}
}

.c-modal__close {
	right: .2rem;
	top: .2rem;
	padding: 1rem 0;
	box-sizing: content-box;
}

.c-modal__close:hover svg {
	color: #227fef;
	opacity: 1;
}

.c-modal__close svg {
	color: inherit;
}

.no-touchevents .c-modal__close svg {
	opacity: .8;
}

.obj-modal__title {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.09;
}

.obj-modal__big-img,.obj-modal__thumb-img {
	max-width: 100%;
	box-shadow: 0 0 2rem .4rem rgba(0,0,0,.08);
}

.obj-modal__thumbs {
	display: flex;
	margin: 1.5rem 0 0;
	width: 100%;
}

.obj-modal__thumb {
	width: 100%;
}

.obj-modal__thumb:not(:first-child) {
	padding-left: 1.5rem;
}

.obj-modal__form-prefix {
	font-weight: 400;
	font-size: 2.3rem;
	line-height: 1.22;
}

.obj-modal__form-wrapper {
	margin-right: -2rem;
	margin-left: -2rem;
	padding-right: 2rem;
	padding-left: 2rem;
	background-color: #1b1d2d;
}

@media (min-width:576px) {
	.obj-modal__form-wrapper {
		margin-right: -3.6rem;
		margin-left: -3.6rem;
		padding-right: 3.6rem;
		padding-left: 3.6rem;
	}
}

.obj-modal__submit-btn {
	border-radius: .5rem;
	padding: .48em 1.2em;
	width: 100%;
	min-height: 5.1rem;
}

@media (max-width:767px) {
	.obj-modal__submit-btn {
		font-size: inherit;
	}
}

.obj-modal__submit-btn .btn__content {
	line-height: 1;
}

@media (min-width:992px) {
	.obj-modal .error__text {
		position: absolute;
		width: 100%;
	}
}

@media (min-width:992px) {
	.obj-modal .c-modal__close {
		top: 1.2rem;
	}
}

@media (max-width:767px) {
	.obj-modal .c-modal-card {
		max-width: 60rem;
	}
}

@media (max-width:991px) {
	.obj-modal .c-modal-card__form {
		margin: auto;
		max-width: 57.5rem;
	}
	.schem_yes, .schem_no {
		padding: 20px 20px 20px 72px!important;
	}
	.schem_aud, .schem_prog {
		height: auto!important;
	}
	.some-work-block {
		width: 49%!important;
	}
}

.obj-modal .c-modal-card__content {
	padding: 6.2rem 2rem 0;
}

@media (min-width:576px) {
	.obj-modal .c-modal-card__content {
		padding: 6.2rem 3.6rem 0;
		max-width: none;
	}
}

@media (min-width:768px) {
	.obj-modal .c-modal-card__content {
		padding-top: 3rem;
	}
}

.obj-modal .c-modal-card__agree {
	font-size: 1.4rem;
	color: #757575;
}

.obj-modal .c-modal-card__agree a:not(:hover) {
	color: inherit;
}

.c-loader:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	border-top: 2px solid;
	border-right: 2px solid transparent;
	border-radius: 50%;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	color: inherit;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-animation: c-loader-rotate .6s linear infinite;
	animation: c-loader-rotate .6s linear infinite;
}

.c-loader.c-loader--lg:before {
	border-top-width: 3px;
	border-right-width: 3px;
	width: 4.2rem;
	height: 4.2rem;
}

.c-loader.c-loader--right.btn {
	padding-right: 2.5em;
}

.c-loader.c-loader--right.btn.c-loader--lg {
	padding-right: 4.75rem;
}

.c-loader.c-loader--right.btn.c-loader--sm {
	padding-right: 2.25rem;
}

.c-loader.c-loader--left:before {
	left: 2.2rem;
}

.c-loader.c-loader--left.c-loader--lg:before {
	left: 2rem;
}

.c-loader.c-loader--left.c-loader--sm:before {
	left: 1rem;
}

.c-loader.c-loader--left.btn {
	padding-left: 3.35rem;
}

.c-loader.c-loader--left.btn.c-loader--lg {
	padding-left: 4.75rem;
}

.c-loader.c-loader--left.btn.c-loader--sm {
	padding-left: 2.25rem;
}

@-webkit-keyframes c-loader-rotate {
	0% {
		-webkit-transform: translate(-50%,-50%) rotate(0deg);
		transform: translate(-50%,-50%) rotate(0deg);
	}

	to {
		-webkit-transform: translate(-50%,-50%) rotate(1turn);
		transform: translate(-50%,-50%) rotate(1turn);
	}
}

@keyframes c-loader-rotate {
	0% {
		-webkit-transform: translate(-50%,-50%) rotate(0deg);
		transform: translate(-50%,-50%) rotate(0deg);
	}

	to {
		-webkit-transform: translate(-50%,-50%) rotate(1turn);
		transform: translate(-50%,-50%) rotate(1turn);
	}
}

.c-loader.c-loader--light:before {
	border-top-color: #fff;
}

.c-loader.c-loader--primary:before {
	border-top-color: #227fef;
}

.c-loader.c-loader--secondary:before {
	border-top-color: #bfbebe;
}

.c-toggle-touch {
	display: flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	border: 1px solid transparent;
	border-radius: 3px;
	width: 4.2rem;
	height: 4.2rem;
	box-shadow: 0 1px 2px 1px rgba(0,0,0,.15),0 2px 5px -3px rgba(0,0,0,.15);
	box-sizing: border-box!important;
	text-decoration: none;
	background-clip: border-box;
	background-color: #fff;
	transition: background-color .15s ease-out,border-color .15s ease-out,opacity .15s ease-out;
	cursor: pointer;
}

.c-toggle-touch:active {
	background-color: #f3f1ed;
}

.c-toggle-touch--selected .c-toggle-touch__img--touch,.c-toggle-touch__img--no-touch {
	display: block;
}

.c-toggle-touch--selected .c-toggle-touch__img--no-touch,.c-toggle-touch__img--touch {
	display: none;
}

.c-toggle-touch__img {
	width: 2.8rem;
	height: 2.8rem;
}

.no-touchevents .c-toggle-touch {
	display: none;
}

.touchevents .is-touch-behaviors-disabled {
	pointer-events: none;
}

.touchevents .is-touch-behaviors-disabled .c-toggle-touch,.touchevents .is-touch-behaviors-disabled [class*=zoom__button] {
	pointer-events: all;
}

.c-ymaps__container {
	position: relative;
	height: 48rem;
}

@media (max-width:480px) {
	.c-ymaps__container {
		max-height: 48rem;
	}
}

.c-ymaps__body,.c-ymaps__wrapper {
	width: 100%;
	height: 100%;
}

.c-ymaps__preloader {
	height: 100%;
}

.c-ymaps__preloader-overlay {
	background: #292929;
}

.c-ymaps__preview {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	background-position: 50% 0;
	background-size: cover;
	background-repeat: no-repeat;
}

@media (max-width:479px) {
	.c-ymaps .ymaps-2-1-60-balloon__close+.ymaps-2-1-60-balloon__content {
		margin-right: 0;
	}
}

.c-ballon-content {
	max-width: 23.5rem;
}

.c-ballon-content__header {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.25;
}

@media (max-width:375px) {
	.c-ballon-content__header {
		font-size: 1.6rem;
	}
}

.c-ymaps__preloader {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 4.8rem;
	height: 4.8rem;
	color: #227fef;
}

.c-ymaps__preloader-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 60;
	height: 100%;
	background: #191919;
	opacity: .9;
}

.c-ymaps [class*=ymaps-][class*=-balloon__content] {
	font-family: inherit;
}

.logo {
	display: flex;
	align-items: center;
}

.logo--has-label {
	flex-direction: column;
}

.logo__icon {
	flex-shrink: 0;
}

.logo__label {
	margin-top: 1.3rem;
	font-weight: 700;
	font-size: 1.9rem;
	line-height: 1.16;
}

.tippy-tooltip.light-theme {
	color: #26323d;
	box-shadow: 0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);
	background-color: #fff;
}

.tippy-tooltip.light-theme[x-placement^=top] .tippy-arrow {
	border-top: 8px solid #fff;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}

.tippy-tooltip.light-theme[x-placement^=bottom] .tippy-arrow {
	border-bottom: 8px solid #fff;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}

.tippy-tooltip.light-theme[x-placement^=left] .tippy-arrow {
	border-left: 8px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.tippy-tooltip.light-theme[x-placement^=right] .tippy-arrow {
	border-right: 8px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.tippy-tooltip.light-theme .tippy-backdrop {
	background-color: #fff;
}

.tippy-tooltip.light-theme .tippy-roundarrow {
	fill: #fff;
}

.tippy-tooltip.light-theme[data-animatefill] {
	background-color: transparent;
}

.drd-popper .tippy-roundarrow {
	width: 25px;
	height: 10px;
}

.drd-popper.tippy-popper[x-placement^=bottom] .tippy-roundarrow {
	top: -9px;
	top: -8.5px;
}

.drd-popper.tippy-popper[x-placement^=top] .tippy-roundarrow {
	bottom: -9px;
	bottom: -8.5px;
}

.tippy-tooltip {
	font-size: inherit;
	line-height: inherit;
}

.tippy-roundarrow svg {
	fill: inherit;
}

.c-menu {
	display: flex;
	align-items: center;
	font-weight: 200;
}

.c-menu--dropdown .c-menu__link {
	padding: .55rem 1.75rem;
}

.c-menu__item {
	display: block;
}

.c-menu__link {
	position: relative;
	top: .12em;
	display: flex;
	flex-grow: 1;
	align-items: center;
	transition: all .3s;
}

.c-menu__link,.c-menu__trigger {
	padding: .25rem .75rem;
}

@media (min-width:768px) {
	.c-menu__link,.c-menu__trigger {
		padding: .55rem 1rem;
	}
}

.c-menu__link-icon {
	flex-shrink: 0;
	margin-right: .5rem;
	min-width: 1.9rem;
	text-align: center;
}

@media (min-width:768px) {
	.c-menu__link-icon {
		margin-right: 1rem;
		width: 2.4rem;
		min-width: 2.4rem;
	}
}

@media (max-width:768px) {
	.table-sw-popup {
		width: 650px!important;
		overflow-x: scroll!important;
	}
}

@media (min-width:768px) {
	.c-menu__link-icon img {
		width: 2.4rem;
		height: 2.4rem;
	}
}

.c-menu__link-icon svg {
	max-width: 1.9rem;
}

@media (min-width:768px) {
	.c-menu__link-icon svg {
		max-width: 3.4rem;
	}
}

.c-menu__submenu .c-menu__link.is-active {
	opacity: .5;
}

.c-menu__link--bg-on-hover:hover,.c-menu__submenu .c-menu__link:not(.is-active):hover {
	background-color: rgba(0,0,0,.2);
}

.c-menu--in-dropdown .c-menu__link {
	top: 0;
	padding: .55rem 1.75rem;
}

.c-menu--in-dropdown .c-menu__item {
	display: flex;
	align-items: center;
	min-height: 3.2rem;
}

.c-menu--in-dropdown .c-menu__link-icon {
	margin-right: .8rem;
	width: auto;
	min-width: auto;
	max-height: 1.8rem;
}

.c-menu--in-dropdown .c-menu__link-icon svg {
	min-width: auto;
	max-height: inherit;
}

.header {
	position: relative;
	z-index: 2;
}

.header a:hover {
	color: #fff;
	opacity: .8;
}

.header a.header__phone:hover {
	color: #a0283a;
	opacity: 1;
}

.header__top-wrapper {
	position: relative;
	overflow: hidden;
}

.header__top-wrapper:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: linear-gradient(90deg,#f0662f,#e83057);
}

@media (min-width:768px) and (max-width:991px) {
	.header__top-wrapper:before {
		width: 1920px;
	}
}

.header__offset-trigger {
	position: absolute;
	top: 1.5rem;
}

@media (min-width:992px) {
	.header__offset-trigger {
		top: 4rem;
	}
}

.header__top {
	position: relative;
	overflow: hidden;
	padding: 1.5rem 0;
	color: #fff;
}

@media (min-width:992px) {
	.header__top {
		padding: 4rem
0;
	}
}

.header__top:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: linear-gradient(90deg,#f0662f,#e83057);
}

@media (min-width:768px) and (max-width:991px) {
	.header__top:before {
		width: 1920px;
	}
}

.header__top-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (min-width:375px) and (max-width:575px) {
	.header__menu-area {
		margin-left: 1rem;
	}
}

@media (min-width:576px) and (max-width:991px) {
	.header__menu-area {
		margin-right: auto;
		margin-left: 2.5rem;
	}
}

.header__menu-trigger {
	display: flex;
	align-items: center;
	opacity: 1;
	transition: .3s cubic-bezier(.4,0,.2,1);
	cursor: pointer;
}

.no-touchevents .header__menu-trigger:hover {
	opacity: .8;
}

.header__menu-trigger i {
	font-size: 2rem;
}

.header__menu-trigger span {
	position: relative;
	top: .1rem;
	margin-left: .5rem;
}

@media (min-width:768px) {
	.header__menu-trigger span {
		margin-left: 1rem;
	}
}

.header__menu-dropdown {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.header__menu-static {
	display: none;
}

@media (min-width:992px) {
	.header__menu-static {
		display: flex;
		justify-content: center;
		font-size: 1.6rem;
	}
}

@media (min-width:1200px) {
	.header__menu-static {
		font-size: 1.8rem;
	}
}

.header__menu-static .c-menu__item {
	position: relative;
	line-height: 1;
}

.header__menu-static .c-menu__item:not(:first-child):before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-left: .1rem solid;
	width: .1rem;
	height: 1em;
}

.header__logo,.header__logo-icon {
	width: 10rem;
	height: auto;
	max-width: 100%;
}

@media (min-width:480px) {
	.header__logo,.header__logo-icon {
		width: 12rem;
	}
}

@media (min-width:576px) {
	.header__logo,.header__logo-icon {
		width: 17rem;
	}
}

@media (min-width:1200px) {
	.header__logo,.header__logo-icon {
		width: 20.9rem;
		height: 3.5rem;
	}
}

.header__logo {
	color: #fff;
	opacity: 1;
}

.header__nav-wrapper {
	flex-grow: 1;
	min-width: 0;
}

.header__nav-wrapper,.header__user-area {
	display: flex;
	align-items: center;
}

@media (max-width:767px) {
	.header__user-area {
		flex: 1 0 auto;
		flex-direction: row;
		min-width: 0;
		max-width: none;
	}
	.some-work-block {
		width: 100%!important;
	}
}

@media (min-width:768px) {
	.header__user-area {
		flex: 0 0 37.5%;
		max-width: 37.5%;
	}
}

@media (min-width:768px) and (max-width:991px) {
	.header__user-area {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (min-width:992px) {
	.header__user-area {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
}

@media (max-width:374px) {
	.header__logo-area {
		display: none;
	}
}

@media (min-width:1200px) {
	.header__logo-area {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.header__actions {
	flex: 0 0 auto;
	min-width: 0;
	max-width: none;
}

.header__phone-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}

.header__phone {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1;
	color: #8c2333;
}

@media (min-width:576px) {
	.header__phone {
		font-size: 2.2rem;
	}
}

.header__callback-action {
	margin-top: .4rem;
	font-size: 1.6rem;
	line-height: 1;
}

@media (max-width:767px) {
	.header__menu-wrapper {
		order: -1;
		margin-right: 1.5rem;
	}
}

@media (min-width:992px) {
	.header__menu-wrapper .c-menu__dropdown {
		display: none;
	}
}

.header__menu {
	display: none;
}

@media (min-width:1200px) {
	.header__menu {
		display: flex;
		align-items: center;
	}
}

.header__menu-link {
	padding: .5rem 1rem;
	line-height: 1.56;
	white-space: nowrap;
}

@media (min-width:1600px) {
	.header__menu-link {
		padding: .5rem 1.5rem;
	}
}

.header__menu-link+.header__menu-link {
	margin-left: 1.5rem;
}

.header.has-fixed .header__top {
	position: fixed;
	left: auto;
	right: auto;
	top: 0;
	padding: .4rem 0;
	width: 1920px;
	height: 6rem;
	max-width: 100%;
}

@media (min-width:992px) {
	.header.has-fixed .header__menu-area {
		flex: 1 0 auto;
		flex-direction: row;
		align-items: center;
		min-width: 0;
		max-width: none;
	}
}

.header.has-fixed .header__menu-wrapper {
	top: 0;
}

@media (min-width:992px) {
	.header.has-fixed .header__menu-wrapper {
		flex-grow: 1;
		min-width: 0;
	}
}

.header.has-fixed .header__menu-wrapper .c-menu__dropdown {
	min-width: 0;
}

@media (min-width:992px) {
	.header.has-fixed .header__menu-wrapper .c-menu__dropdown {
		display: none;
	}
}

.header.has-fixed .header__actions {
	flex: 0 0 auto;
	min-width: 0;
	max-width: none;
}

@media (min-width:768px) {
	.header.has-fixed .c-user__picture {
		width: 3.7rem;
		height: 3.7rem;
	}

	.header.has-fixed .c-user__info-container {
		margin-left: 1.6rem;
	}

	.header.has-fixed .c-user__title {
		display: none;
	}

	.header.has-fixed .c-user__name {
		font-size: 1.4rem;
	}
}

.c-nav.compensate-for-scrollbar:not(.is-sticky) {
	margin-right: 0!important;
}

.logo__link {
	color: inherit;
}

.logo__link:hover {
	color: inherit;
	opacity: .8;
}

.c-header-menu-popper .tippy-tooltip {
	padding: 1rem 0;
	text-align: left;
	color: #292c39;
	background-color: #fff;
}

.c-header-menu__item {
	padding: .55rem 1.75rem;
}

.usp {
	position: relative;
	overflow: hidden;
}

@media (min-width:768px) {
	.usp {
		padding-top: 3rem;
	}
}

@media (min-width:992px) {
	.usp {
		padding-bottom: 9rem;
	}
}

@media (max-width:767px) {
	.usp {
		padding: 3rem 15px 7rem;
		background-image: linear-gradient(90deg,#f0662f,#e83057);
		background-color: #e83057;
	}
}

@media (max-width:575px) {
	.usp {
		padding-top: 1rem;
		padding-bottom: 4rem;
	}
}

@media (min-width:768px) {
	.usp:before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		height: 85%;
		background: url(../img/usp-bg.svg) 0 0 no-repeat;
		background-size: cover;
		opacity: 0;
	}

	.is-anim-loaded .usp:before {
		transition: .6s ease;
		transition-delay: .1s;
	}
}

@media (min-width:992px) {
	.usp:before {
		height: auto;
	}
}

@media (min-width:1200px) {
	.usp:before {
		left: 50%;
		right: auto;
		padding-top: 6rem;
		width: 1920px;
		height: 685px;
		background-position: 50% 0;
		-webkit-transform: translate(-50%);
		transform: translate(-50%);
	}
}

.is-anim-ready .usp:before {
	opacity: 1;
}

@media (max-width:767px) {
	.usp .container {
		padding-right: 0;
		padding-left: 0;
	}
}

.usp__row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

@media (min-width:992px) {
	.usp__row {
		flex-direction: row;
	}
}

.usp__col {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.usp__meta {
	text-align: center;
}

@media (min-width:992px) {
	.usp__meta {
		flex: 0 0 50%;
		max-width: 50%;
		text-align: left;
	}
}

@media (min-width:1200px) {
	.usp__meta {
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
}

.usp__media {
	padding-top: 3rem;
}

@media (min-width:992px) {
	.usp__media {
		flex: 0 0 50%;
		max-width: 50%;
		padding-top: 0;
	}
}

@media (min-width:1200px) {
	.usp__media {
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
}

.usp__title {
	color: #fff;
}

@media (max-width:359px) {
	.usp__title {
		font-size: 3.1rem;
	}
}

.usp__title>* {
	/*white-space: nowrap;*/
}

.usp__title .plus {
	color: #852424;
}

@media (max-width:359px) {
	.usp__title .plus {
		position: relative;
		top: .12em;
		display: block;
	}
}

.usp__prices {
	display: flex;
	flex-direction: column;
	margin: 2.5rem auto 0;
	border-radius: .5rem;
	padding: 2rem;
	max-width: 25rem;
	white-space: nowrap;
	background-color: #fada43;
}

@media (min-width:414px) {
	.usp__prices {
		display: inline-flex;
		flex-direction: row;
		align-items: center;
		max-width: 100%;
	}
}

@media (min-width:576px) {
	.usp__prices {
		margin-top: 3.5rem;
		padding: 2rem 3.4rem 2.5rem;
	}
}

.usp__label {
	font-weight: 700;
	font-size: 3.2rem;
	line-height: .75;
	color: #675e1b;
}

@media (min-width:768px) {
	.usp__label {
		font-size: 3.6rem;
	}
}

@media (min-width:992px) {
	.usp__label {
		font-size: 4rem;
	}
}

.usp__price {
	font-weight: 400;
	font-size: 2rem;
	line-height: 1;
	text-decoration: line-through;
	color: #ccbc44;
}

@media (min-width:576px) {
	.usp__price {
		font-size: 2.4rem;
	}
}

.usp__old-price {
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 1;
	color: #c03434;
}

@media (min-width:576px) {
	.usp__old-price {
		font-size: 4rem;
	}
}

.usp__price-wrapper {
	margin-top: 1.5rem;
	text-align: center;
}

@media (min-width:414px) {
	.usp__price-wrapper {
		margin-top: 0;
		margin-left: 1.4rem;
	}
}

@media (min-width:576px) {
	.usp__price-wrapper {
		margin-left: 2.4rem;
	}
}

.usp__img {
	width: 100%;
}

@media (min-width:992px) {
	.usp__img {
		width: 120%;
	}
}

@media (min-width:1200px) {
	.usp__img {
		margin-left: -.7rem;
		width: 92.1rem;
		height: 56.5rem;
	}
}

.prices {
	margin-top: 5rem;
	display: none;
}

@media (min-width:992px) {
	.prices {
		margin-top: 0;
	}
}

@media (min-width:768px) and (max-width:991px) {
	.cssgrid .prices__dynamic-container {
		padding: 0;
		max-width: 100%;
	}
}

.prices__list {
	margin-top: 4.2rem;
}

@media (min-width:768px) and (max-width:991px) {
	.css-grid .prices__list {
		display: grid;
		align-content: start;
		grid-gap: 3rem 0;
		grid-template-columns: 3rem 1fr 3rem;
	}
	.adv-image {
		width: 100px!important;
	}
	.flex-adv-image, .flex-adv-button {
		width: 47%!important;
	}
	.flex-adv-button {
		text-align: left;
		padding-top: 20px;
	}
}

.prices__row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	align-items: normal;
	justify-content: center;
}

@media (min-width:992px) and (max-width:1199px) {
	.prices__row {
		margin-right: -.5rem;
		margin-left: -.5rem;
	}
}

@media (min-width:768px) and (max-width:991px) {
	.cssgrid .prices__row {
		display: grid;
		align-content: center;
		align-items: inherit;
		grid-auto-columns: minmax(28rem,calc(82.5% - 60px));
		grid-auto-flow: column;
		grid-column: 1/-1;
		grid-gap: 15px;
		grid-template-columns: 15px;
		grid-template-rows: minmax(28rem,1fr);
		overflow-x: scroll;
		margin-right: 0;
		margin-left: 0;
		padding-bottom: 2rem;
		-webkit-scroll-snap-type: x proximity;
		-ms-scroll-snap-type: x proximity;
		scroll-snap-type: x proximity;
	}
}

@media (min-width:768px) and (max-width:991px) and (min-width:768px) {
	.cssgrid .prices__row {
		grid-auto-columns: minmax(34rem,calc(82.5% - 60px));
	}
}

@media (min-width:768px) and (max-width:991px) {
	.cssgrid .prices__row:after,.cssgrid .prices__row:before {
		content: "";
		width: 15px;
	}
}

.prices__col {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width:992px) {
	.prices__col {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.prices__col {
		padding-right: .5rem;
		padding-left: .5rem;
	}
}

@media (max-width:991px) {
	.prices__col+.prices__col {
		margin-top: 3rem;
	}
}

@media (min-width:768px) and (max-width:991px) {
	.cssgrid .prices__col {
		margin: auto 0;
		padding: 0;
		scroll-snap-align: center;
	}
}

.price-item {
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
	border-radius: .5rem;
	min-width: 28rem;
	max-width: 100%;
	box-shadow: 0 .2rem 7.4rem .2rem rgba(0,0,0,.07);
	color: #13454c;
}

@media (min-width:768px) {
	.price-item {
		max-width: 34rem;
	}
}

@media (min-width:992px) {
	.price-item {
		max-width: 37rem;
	}
}

@media (min-width:768px) and (max-width:991px) {
	.cssgrid .price-item {
		min-width: 34rem;
	}
}

.price-item--promo
.price-item__price-wrapper:before {
	background-image: linear-gradient(90deg,#ea2f59
0,#f0662f);
}

.price-item__price-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 11.9rem;
	color: #fff;
}

.price-item__price-wrapper:before {
	content: "";
	position: absolute;
	left: -10%;
	right: -10%;
	top: 0;
	bottom: 0;
	z-index: -1;
	border-bottom-right-radius: 90% 100%;
	border-bottom-left-radius: 90% 100%;
	background-color: #227fef;
}

.price-item__price-wrapper.first:before {	
	background-color: yellow;
}
.price-item__price-wrapper.first {	
	color: #000;
}

.price-item__price {
	margin-top: .3rem;
	font-weight: 700;
	font-size: 4rem;
}

.price-item__price-unit {
	font-weight: 400;
	font-size: .625em;
}

.price-item__services {
	padding: 3.2rem 3rem 2.5rem;
}

.price-item__actions-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 3rem 3rem;
}

.price-item__action-btn {
	width: 25.6rem;
}

.price-item__action-label {
	margin-top: 3rem;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1;
	color: #b3b3b3;
}

.price-item__service {
	line-height: 1.33;
	text-align: center;
}

.price-item__service+.price-item__service {
	margin-top: 1rem;
}

.price-item__service+.price-item__service:before {
	content: "";
	display: block;
	margin: 0 auto 1rem;
	width: 10.1rem;
	height: .3rem;
	background-color: #f2f2f2;
}

.rv {
	margin: 5.5rem 0;
}

@media (min-width:768px) {
	.rv {
		margin: 7rem 0;
	}
}

@media (min-width:992px) {
	.rv {
		margin: 9rem 0;
	}
}

@media (min-width:1200px) {
	.rv {
		margin: 11.4rem 0;
	}
}

.rv__items {
	margin-top: 4rem;
}

@media (min-width:768px) {
	.rv__items {
		margin-top: 5rem;
	}
}

.rv__items .row {
	margin-top: -5rem;
}

@media (min-width:576px) {
	.rv__items .row {
		margin-top: -4rem;
	}
}

.rv__btn-wrapper {
	margin-top: 4rem;
	text-align: center;
}

@media (min-width:768px) {
	.rv__btn-wrapper {
		margin-top: 5rem;
	}
}

@media (min-width:768px) {
	.rv__btn {
		width: 32.2rem;
	}
}

.rv-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 auto;
	min-height: 100%;
	max-width: 32rem;
}

@media (min-width:1200px) {
	.rv-item {
		width: 32rem;
	}
}

.rv-item__content {
	display: flex;
}

.rv-item__subtitle-wrapper {
	margin-top: 1rem;
}

.rv-item__subtitle-prefix {
	font-size: 1.4rem;
}

.rv-item__meta {
	margin-left: 2rem;
}

.rv-item__audio-wrapper {
	margin-top: 1rem;
}

.rv-item__img {
	max-width: 100%;
	max-height: 8rem;
	object-fit: contain;
}

.rv-item__subtitle {
	font-size: 1.6rem;
}

.rv-item__audio {
	width: 32rem;
	max-width: 100%;
}

.rv-item__audio:focus {
	outline: none;
	box-shadow: 0 12px 25px -23px #585959;
}

.rv-item.is-hidden {
	display: none;
}

.crt {
	margin: 5.5rem 0;
}

@media (min-width:768px) {
	.crt {
		margin: 7rem 0;
	}
}

@media (min-width:992px) {
	.crt {
		margin: 9rem 0;
	}
}

@media (min-width:1200px) {
	.crt {
		margin: 11rem 0;
	}
}

.crt__title {
	text-align: center;
}

@media (max-width:479px) {
	.crt__title {
		font-size: 3.5rem;
	}
}

@media (max-width:575px) {
	.crt__title .lnt {
		font-size: 80%;
	}
}

@media (max-width:479px) {
	.crt__title .lnt {
		font-size: 70%;
	}
}

.crt__items {
	margin-top: 4rem;
}

@media (min-width:768px) {
	.crt__items {
		margin-top: 5.4rem;
	}
}

.crt__items .row {
	margin-top: -3rem;
}

@media (min-width:768px) {
	.crt__items .row {
		margin-top: -4.5rem;
	}
}

@media (min-width:992px) {
	.crt__items .row {
		margin-top: -6rem;
	}
}

.crt-item {
	margin-right: auto;
	margin-left: auto;
	min-height: 100%;
	max-width: 36rem;
}

.crt-item,.crt-item__body {
	display: flex;
	flex-direction: column;
}

.crt-item__body {
	flex-grow: 1;
	border-radius: 0 0 .1rem;
	padding: 12rem 2rem 2rem;
	box-shadow: .2rem .4rem 4rem rgba(0,0,0,.2);
}

.crt-item__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: -9rem;
}

.crt-item__doc {
	position: relative;
	width: 12.8rem;
	height: 18.1rem;
	box-shadow: .2rem .4rem 3.2rem rgba(0,0,0,.2);
	background-position: 50% 100%;
}

@media (max-width:767px) {
	.crt-item__doc {
		width: 9.8rem;
		height: 13.9rem;
		background-size: contain;
	}
	.flex-adv-image, .flex-adv-button {
		width: 100%!important;
	}
	.flex-adv-button {
		padding-top: 30px;
	}
}

.crt-item__avatar {
	flex-shrink: 0;
	margin-right: -13%;
}

@media (min-width:768px) {
	.crt-item__avatar {
		width: 18.8rem;
	}
}

.crt-item__role {
	margin-top: 1rem;
	text-align: center;
	color: #3b3b3b;
	opacity: .44;
}

.crt-item__data-table {
	margin-top: 3rem;
	font-size: 1.5rem;
}

@media (min-width:768px) {
	.crt-item__data-table {
		font-size: 1.6rem;
	}
}

.crt-item__data-table-row {
	display: flex;
	justify-content: space-between;
	line-height: 1.75;
}

.crt-item__data-value {
	margin-left: 1rem;
}

.crt-item__name {
	font-size: 2rem;
	line-height: 1;
	text-align: center;
}

@media (min-width:576px) {
	.crt-item__name {
		font-size: 2.1rem;
	}
}

@media (min-width:768px) {
	.crt-item__name {
		font-size: 2.2rem;
	}
}

@media (min-width:992px) {
	.crt-item__name {
		font-size: 2.256rem;
	}
}

@media (min-width:1200px) {
	.crt-item__name {
		font-size: 2.4rem;
	}
}

@media (max-width:767px) {
	.crt-item__name {
		font-size: 2.8rem;
	}
}

.cl {
	margin: 5.5rem 0;
}

@media (min-width:768px) {
	.cl {
		margin: 7rem 0;
	}
}

@media (min-width:992px) {
	.cl {
		margin: 9rem 0;
	}
}

@media (min-width:1200px) {
	.cl {
		margin: 11rem 0;
	}
}

@media (min-width:992px) {
	.cl__inner {
		padding-bottom: 6rem;
	}
}

@media (min-width:1200px) {
	.cl__inner {
		padding-bottom: 14.3rem;
	}
}

.cl__container {
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	box-shadow: 0 .2rem 7.4rem .2rem rgba(0,0,0,.07);
	background-color: #fff;
}

@media (min-width:992px) {
	.cl__container {
		flex-direction: row;
	}
}

.cl__form-wrapper {
	order: 1;
	padding: 2.5rem 2rem;
}

@media (max-width:991px) {
	.cl__form-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

@media (min-width:992px) {
	.cl__form-wrapper {
		flex: 0 0 41.02564%;
		order: 0;
		padding: 7rem 2.5rem 6.8rem 3rem;
		max-width: 41.02564%;
	}
}

@media (min-width:1200px) {
	.cl__form-wrapper {
		padding: 7rem 2.5rem 6.8rem 7rem;
	}
}

@media (max-width:991px) {
	.cl__items-wrapper {
		border-radius: 1rem 1rem 0 0;
		background-image: linear-gradient(90deg,#007ae7,#21c6c8);
		background-color: #227fef;
	}
}

@media (min-width:993px) {
	.cl__items-wrapper {
		flex: 0 0 58.97436%;
		max-width: 58.97436%;
		background: url(../img/cl/cl-bg.png) 100% 0 no-repeat;
	}
}

.cl__items {
	padding: 2.5rem 2rem;
}

@media (min-width:992px) {
	.cl__items {
		padding: 7rem 3rem 4rem;
	}
}

@media (min-width:1200px) {
	.cl__items {
		padding: 7rem 3rem 4rem 6.5rem;
	}
}

@media (max-width:991px) {
	.cl__form .c-form-actions,.cl__form .c-form-subtitle,.cl__form .c-form-title {
		text-align: center;
	}

	.cl__form .c-form-agree,.cl__form .c-form-inputs {
		margin-right: auto;
		margin-left: auto;
	}
}

.cl__form .c-form-title {
	font-weight: 800;
	font-size: 4rem;
	line-height: 1;
	text-transform: uppercase;
}

.cl__form .c-form-inputs {
	margin-top: 3.6rem;
	max-width: 30.7rem;
}

@media (min-width:375px) {
	.cl__form .c-form-actions {
		min-width: 30.7rem;
	}
}

.cl__img {
	display: none;
}

@media (min-width:992px) {
	.cl__img {
		display: block;
		margin-right: 3rem;
		margin-bottom: -6rem;
		margin-left: 4rem;
		max-width: 48rem;
	}
}

@media (min-width:1200px) {
	.cl__img {
		margin-right: 6.9rem;
		margin-bottom: -14.3rem;
		max-width: 57.8rem;
	}
}

.cl-item {
	display: flex;
	align-items: center;
}

.cl-item__img {
	max-width: 5.5rem;
}

.cl-item__label {
	margin-left: 2.8rem;
	font-size: 2rem;
	line-height: 1.2;
	color: #fff;
}

.appr {
	margin: 5.5rem 0;
	color: #515151;
}

@media (min-width:768px) {
	.appr {
		margin: 7rem 0;
	}
}

@media (min-width:992px) {
	.appr {
		margin: 9rem 0;
	}
}

@media (min-width:1200px) {
	.appr {
		margin: 11rem 0;
	}
}

.appr-ic-item {
	text-align: center;
}

@media (min-width:576px) {
	.appr-ic-item {
		text-align: left;
	}
}

.appr-ic-item__img {
	max-width: 4.8rem;
}

@media (min-width:576px) {
	.appr-ic-item__img {
		max-width: 6.4rem;
	}
}

@media (min-width:768px) {
	.appr-ic-item__img {
		max-width: 7.2rem;
	}
}

.appr-ic-item__title {
	margin-top: 1rem;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
}

@media (min-width:768px) {
	.appr-ic-item__title {
		margin-top: 2rem;
		font-size: 3rem;
	}
}

.appr-ic-item__desc {
	margin-top: 2rem;
	font-size: 1.8rem;
	line-height: 1.22;
}

.appr-item__container {
	border-radius: 1rem;
	padding: 2.5rem 1.5rem;
	box-shadow: 0 .2rem 7.4rem .2rem rgba(0,0,0,.07);
}

@media (min-width:576px) {
	.appr-item__container {
		padding: 3rem 2rem;
	}
}

@media (min-width:768px) {
	.appr-item__container {
		padding: 7rem 5.128% 6rem 8.3334%;
	}
}

.appr-item__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

@media (min-width:576px) {
	.appr-item__heading {
		flex-direction: row;
		text-align: left;
	}
}

.appr-item__heading-cnt {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: .703em;
	font-weight: 700;
	font-size: 10rem;
	line-height: .22;
	color: #ddd;
}

@media (min-width:576px) {
	.appr-item__heading-cnt {
		width: 7.3rem;
		font-size: 13.8rem;
	}
}

.appr-item__heading-label {
	position: relative;
	margin-top: 1rem;
	font-weight: 400;
	font-size: 2.4rem;
	line-height: 1;
}

@media (min-width:576px) {
	.appr-item__heading-label {
		top: -.12em;
		margin-top: 0;
		margin-left: 2.4rem;
	}
}

@media (min-width:768px) {
	.appr-item__heading-label {
		font-size: 3.2rem;
	}
}

@media (min-width:992px) {
	.appr-item__heading-label {
		font-size: 3.6rem;
	}
}

@media (min-width:1200px) {
	.appr-item__heading-label {
		font-size: 4rem;
	}
}

.appr-item__ic-items {
	margin-top: 3rem;
}

@media (min-width:992px) {
	.appr-item__ic-items {
		margin-top: 6rem;
	}
}

.appr-item__content,.appr-item__head-text {
	font-size: 1.9rem;
}

@media (min-width:576px) {
	.appr-item__content,.appr-item__head-text {
		font-size: 2rem;
	}
}

@media (min-width:768px) {
	.appr-item__content,.appr-item__head-text {
		font-size: 2.1rem;
	}
}

@media (min-width:992px) {
	.appr-item__content,.appr-item__head-text {
		font-size: 2.068rem;
	}
}

@media (min-width:1200px) {
	.appr-item__content,.appr-item__head-text {
		font-size: 2.2rem;
	}
}

@media (max-width:767px) {
	.appr-item__content,.appr-item__head-text {
		font-size: 1.8rem;
	}
}

.appr-item__note {
	border-radius: .5rem;
	padding: 2.5rem 3rem;
	font-weight: 700;
	line-height: 1.27;
	text-align: center;
	color: #fff;
	background-image: linear-gradient(270deg,#ea2c5b 0,#ffbd0a);
}

@media (min-width:992px) {
	.appr-item__note {
		text-align: left;
	}
}

@media (min-width:992px) {
	.appr-item .c-ul {
		padding-left: 0;
	}

	.appr-item .c-ul li+li {
		margin-top: 1em;
	}

	.appr-item .c-ul li:before {
		margin: 0 .5rem 0 0;
	}
}

.appr-item+.appr-item {
	margin-top: 5.5rem;
}

@media (min-width:768px) {
	.appr-item+.appr-item {
		margin-top: 7rem;
	}
}

@media (min-width:992px) {
	.appr-item+.appr-item {
		margin-top: 8rem;
	}
}

@media (min-width:992px) {
	.appr-item--2 .appr-item__container {
		background-image: url(../img/appr/appr-bg-2.png);
		background-position: 0 100%;
	}
}

@media (min-width:992px) and (max-width:1440px) {
	.appr-item--2 .appr-item__container {
		overflow: hidden;
	}
}

.appr-item--2 .appr-item__content {
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
}

@media (min-width:992px) {
	.appr-item--2 .appr-item__content {
		flex-direction: row-reverse;
		align-items: center;
	}
}

@media
(min-width:992px) {
	.appr-item--2 .appr-item__meta {
		margin-left: 3rem;
		min-width: 41rem;
	}
}

.appr-item--2 .appr-item__img {
	margin-top: 2rem;
	width: 100%;
}

@media (min-width:992px) {
	.appr-item--2 .appr-item__img {
		margin-top: 0;
		width: 79.2rem;
	}
}

.appr-item--2 .appr-item__note {
	margin-top: 3rem;
}

@media (min-width:992px) {
	.appr-item--2 .appr-item__note {
		margin-top: 3.75rem;
	}
}

.appr-item--3 .appr-item__content {
	margin-top: 3rem;
}

@media (min-width:992px) {
	.appr-item--3 .appr-item__content {
		margin-top: 0;
		padding-top: 8rem;
		padding-bottom: 2rem;
	}
}

.appr-item--3 .appr-item__note {
	margin-top: 3rem;
}

@media (min-width:992px) {
	.appr-item--3 .appr-item__note {
		text-align: center;
	}
}

@media (min-width:1200px) {
	.appr-item--3 .appr-item__note {
		margin-top: 5.75rem;
	}
}

@media (min-width:1200px) {
	.appr-item--4 {
		padding-bottom: 12.9rem;
	}
}

@media (min-width:992px) {
	.appr-item--4 .appr-item__container {
		background-image: url(../img/appr/appr-bg-4.png);
		background-position: 105% 100%;
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.appr-item--4 .appr-item__container {
		overflow: hidden;
	}
}

@media (min-width:1200px) {
	.appr-item--4 .appr-item__container {
		background-position: 100% 100%;
	}
}

.appr-item--4 .appr-item__content {
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
}

@media (min-width:992px) {
	.appr-item--4 .appr-item__content {
		flex-direction: row;
		align-items: center;
		margin-top: .8rem;
	}
}

@media (min-width:992px) {
	.appr-item--4 .appr-item__meta {
		min-width: 37.8rem;
	}
}

.appr-item--4 .appr-item__img {
	margin-top: 2rem;
	max-width: 100%;
	max-height: 39.5rem;
}

@media (min-width:992px) {
	.appr-item--4 .appr-item__img {
		margin-top: 0;
		margin-bottom: -11.9rem;
		margin-left: -13rem;
		width: 60rem;
		max-width: none;
		max-height: none;
	}
}

@media (min-width:1200px) {
	.appr-item--4 .appr-item__img {
		margin-bottom: -18.9rem;
		margin-left: -11.9rem;
		width: 71rem;
	}
}

.appr-item--4 .c-ul li+li {
	margin-top: .5rem;
}

.pyr {
	margin: 5.5rem 0;
}

@media (min-width:768px) {
	.pyr {
		margin: 7rem 0;
	}
}

@media (min-width:992px) {
	.pyr {
		margin: 9rem 0;
	}
}

@media (min-width:1200px) {
	.pyr {
		margin: 11rem 0;
	}
}

.pyr__title {
	margin-right: auto;
	margin-left: auto;
	max-width: 84rem;
}

.pyr__row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	align-items: center;
	margin-top: 4rem;
}

.pyr__aside,.pyr__main {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

@media (max-width:991px) {
	.pyr__main {
		margin-right: auto;
		margin-left: auto;
		max-width: 78rem;
	}
}

@media (min-width:992px) {
	.pyr__main {
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
}

@media (max-width:991px) {
	.pyr__aside {
		order: -1;
		margin-right: auto;
		margin-bottom: 3rem;
		margin-left: auto;
		max-width: 78rem;
	}
}

@media (min-width:992px) {
	.pyr__aside {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
}

.pyr__form-wrapper {
	position: relative;
}

@media (max-width:991px) {
	.pyr__form-wrapper {
		margin-right: auto;
		margin-left: auto;
		max-width: 37rem;
	}
}

.pyr__form {
	position: relative;
	border-radius: .5rem 0 0;
	padding: 2.5rem 1.5rem;
	box-shadow: .1rem .2rem 7.4rem .2rem rgba(0,0,0,.07);
	background-color: #feffff;
}

@media (min-width:375px) {
	.pyr__form {
		padding: 2.5rem;
	}
}

.pyr__form .form__input {
	border-radius: .3rem;
	padding: .7em 1.5em;
	text-align: left;
}

.pyr__form .form__input:not(:focus) {
	background-color: #efefef;
}

.pyr__form .form__label-content {
	margin-bottom: .5rem;
}

@media (max-width:575px) {
	.pyr__form .form__label-content {
		font-size: 1.6rem;
	}
}

.pyr__form label {
	vertical-align: middle;
}

@media (max-width:575px) {
	.pyr__form .c-tooltip-picker {
		width: 1.8rem;
		height: 1.8rem;
	}
}

.pyr__form .c-tooltip-picker svg {
	width: 100%;
	height: 100%;
}

.pyr__form .form__group+.form__group {
	margin-top: .9rem;
}

.pyr__form-submit {
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: .128rem;
	text-transform: uppercase;
}

@media (min-width:992px) {
	.pyr__form-submit {
		height: 6rem;
	}
}

@media (max-width:575px) {
	.pyr-content-tooltip {
		font-size: 1.6rem;
	}

	.pyr-content-tooltip .tippy-tooltip {
		padding: .6rem 1rem;
	}
}

.pyr-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
	border-radius: 0 0 1rem 1rem;
	padding: 0 3%;
	height: 6rem;
	font-size: 1.4rem;
	line-height: 1;
	color: #fff;
	background-image: linear-gradient(270deg,#21c6c8 0,#007ae7);
	background-color: #007ae7;
}

@media (min-width:576px) {
	.pyr-item {
		font-size: 1.6rem;
	}
}

@media (min-width:768px) {
	.pyr-item {
		font-size: 1.8rem;
	}
}

.pyr-item:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0;
}

.pyr-item--half {
	margin-bottom: -.24em;
	height: 3rem;
}

.pyr-item--half+.pyr-item {
	padding-bottom: .24em;
}

.pyr-item--half+.pyr-item:not(.pyr-item--half) {
	margin-top: .24em;
}

.pyr-item--half-first {
	border-radius: 0;
}

.pyr-item--half+.pyr-item--half-first {
	margin-top: .24em;
}

.pyr-item--2:before {
	opacity: .1;
}

.pyr-item--3:before {
	opacity: .2;
}

.pyr-item--4:before {
	opacity: .3;
}

.pyr-item--5:before {
	opacity: .4;
}

.pyr-item--6:before {
	opacity: .5;
}

.pyr-item--7:before {
	opacity: .55;
}

.pyr-item--final {
	background-image: linear-gradient(90deg,#ea1c4a 0,#f0893a);
	background-color: #ea1c4a;
}

.pyr-item--1 {
	width: 100%;
}

.pyr-item--2 {
	width: 90%;
}

.pyr-item--3 {
	width: 81%;
}

.pyr-item--4 {
	width: 72.9%;
}

.pyr-item--5 {
	width: 65.61%;
}

.pyr-item--6 {
	width: 59.049%;
}

.pyr-item--7 {
	width: 53.1441%;
}

.pyr-item--8 {
	width: 47.82969%;
}

.pyr-item__label {
	position: relative;
	line-height: 1;
}

.pyr-item__count {
	position: relative;
	flex-shrink: 0;
	margin-left: 1.5rem;
}

.pyr-content-tooltip .article {
	font-size: 1.6rem;
}

.faq {
	margin: 5.5rem 0;
	color: #515151;
}

@media (min-width:768px) {
	.faq {
		margin: 7rem 0;
	}
}

@media (min-width:992px) {
	.faq {
		margin: 9rem 0;
	}
}

@media (min-width:1200px) {
	.faq {
		margin: 11rem 0;
	}
}

.faq__item {
	border-radius: 1rem;
	padding: 0 1.5rem;
	box-shadow: 0 .2rem 7.4rem .2rem rgba(0,0,0,.07);
	background-color: #fff;
}

@media (min-width:576px) {
	.faq__item {
		padding: 0 2rem;
	}
}

@media (min-width:768px) {
	.faq__item {
		padding: 0 3rem;
	}
}

@media (min-width:992px) {
	.faq__item {
		padding-right: 8.33333%;
		padding-left: 8.33333%;
	}
}

.faq__item.is-active .c-accordion__trigger {
	color: #000;
}

.faq__item+.faq__item {
	margin-top: 2rem;
}

@media (min-width:768px) {
	.faq__item+.faq__item {
		margin-top: 2.5rem;
	}
}

@media (min-width:992px) {
	.faq__item+.faq__item {
		margin-top: 3.25rem;
	}
}

.faq__q {
	padding: 2rem 0;
	font-weight: 400;
	font-size: 2rem;
	line-height: 1.17;
}

@media (min-width:768px) {
	.faq__q {
		padding: 3rem 0;
		font-size: 2.4rem;
	}
}

@media (min-width:992px) {
	.faq__q {
		font-size: 2.8rem;
	}
}

@media (min-width:1200px) {
	.faq__q {
		padding-top: 4rem;
		padding-bottom: 4rem;
		font-size: 3rem;
	}
}

.faq__a {
	padding-bottom: 3rem;
}

@media (min-width:1200px) {
	.faq__a {
		padding-bottom: 4rem;
	}
}

@media (max-width:575px) {
	.faq__a {
		font-size: 1.7rem;
	}
}

.footer {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
}

@media (min-width:1200px) {
	.footer {
		margin-top: 3.5rem;
	}
}

@media (min-width:992px) {
	.footer {
		flex-direction: row;
		align-items: center;
		height: 82rem;
	}
}

@media (max-width:991px) {
	.footer__map-area {
		margin: 3rem auto;
		width: 100%;
		max-width: 1200px;
	}
}

@media (min-width:992px) {
	.footer__map-area {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}
}

.footer__meta-area {
	position: relative;
	width: 100%;
	pointer-events: none;
}

@media (max-width:991px) {
	.footer__meta-area {
		order: -1;
	}
}

@media (min-width:992px) {
	.footer__meta-area {
		z-index: 62;
	}
}

@media (max-width:991px) {
	.footer .c-ymaps {
		margin-right: 15px;
		margin-left: 15px;
	}
}

@media (min-width:992px) {
	.footer .c-ymaps,.footer .c-ymaps__container {
		height: 100%;
	}
}

.footer .c-ymaps__preloader-overlay {
	background: linear-gradient(90deg,#002449,#064547);
	opacity: .8;
}

.footer__meta-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 1rem;
	padding: 5rem 2rem;
	box-shadow: .3rem .2rem 4.4rem 1.6rem rgba(0,0,0,.1);
	text-align: center;
	background-color: #fff;
	pointer-events: all;
}

@media (min-width:992px) {
	.footer__meta-wrapper {
		padding: 7.8rem 2rem;
		max-width: 55.5rem;
	}
}

.footer__contacts-wrapper {
	display: flex;
	flex-direction: column;
	margin-top: 2.4rem;
	border-radius: .5rem;
	padding: 2rem 4rem;
	width: 28rem;
	font-weight: 700;
	line-height: 1.22;
	line-height: 1;
	color: #fff;
	background-image: linear-gradient(270deg,#21c6c8 0,#007ae7);
}

@media (min-width:576px) {
	.footer__contacts-wrapper {
		flex-direction: row;
		width: auto;
	}
}

.footer__contacts-wrapper a {
	transition-property: text-shadow;
}

.footer__contacts-wrapper a:hover {
	text-shadow: 0 .1em .5em hsla(0,0%,100%,.3);
	color: #fff;
}

.footer__email {
	margin-top: 1rem;
}

@media (min-width:576px) {
	.footer__email {
		margin-top: 0;
		margin-left: 1.5em;
	}

	.footer__email:before {
		content: "|";
		display: inline-flex;
		flex-shrink: 0;
		justify-content: center;
		margin-left: -1.5em;
		width: 1.5em;
		color: #fff;
	}
}

.footer__address {
	margin-top: 2.8rem;
}

.footer__address,.footer__links {
	font-weight: 700;
	line-height: 1.22;
}

.footer__links {
	display: flex;
	flex-direction: column;
	margin-top: 3.2rem;
	text-decoration: underline;
}

.c-id-upload {
	position: relative;
}

@media (max-width:767px) {
	.c-id-upload {
		width: 100%;
	}
}

@media (min-width:768px) {
	.c-id-upload__input-wrapper {
		display: flex;
	}
}

.c-id-upload__sample-trigger {
	text-transform: uppercase;
}

@media (max-width:767px) {
	.c-id-upload__sample-trigger {
		position: absolute;
		left: 16rem;
		top: 1.3rem;
	}
}

@media (min-width:768px) {
	.c-id-upload__sample-trigger {
		margin-top: 1.3rem;
		margin-left: 2.4rem;
	}
}

.c-post__img {
	margin-bottom: 3rem;
}

.c-post__content {
	font-size: 1.5rem;
	line-height: 1.73;
}

.c-post__content p {
	margin: 1.3em 0;
}

.c-post__content p:first-child {
	margin-top: 0;
}

.c-post__content p:last-child {
	margin-bottom: 0;
}

.c-datepicker-input[readonly] {
	border: 1px solid #fff;
	color: #1b1d2d;
	background-color: #fff;
}

.flatpickr-day.endRange,.flatpickr-day.endRange.inRange,.flatpickr-day.endRange.nextMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.endRange:focus,.flatpickr-day.endRange:hover,.flatpickr-day.selected,.flatpickr-day.selected.inRange,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.selected:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange,.flatpickr-day.startRange.inRange,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.startRange:focus,.flatpickr-day.startRange:hover {
	border-color: #227fef;
	color: #fff;
	background: #227fef;
}

.flatpickr-months
.flatpickr-next-month:hover svg,.flatpickr-months .flatpickr-prev-month:hover svg {
	fill: #227fef;
}

@-webkit-keyframes FlyTopOnce {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	20% {
		-webkit-transform: translate3d(0,-.3rem,0);
		transform: translate3d(0,-.3rem,0);
	}

	30% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	50% {
		-webkit-transform: translate3d(0,.1rem,0);
		transform: translate3d(0,.1rem,0);
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes FlyTopOnce {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	20% {
		-webkit-transform: translate3d(0,-.3rem,0);
		transform: translate3d(0,-.3rem,0);
	}

	30% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	50% {
		-webkit-transform: translate3d(0,.1rem,0);
		transform: translate3d(0,.1rem,0);
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@-webkit-keyframes animFromBottom {
	0% {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	99% {
		-webkit-transform: translateY(1rem);
		transform: translateY(1rem);
	}

	to {
		opacity: 0;
		visibility: hidden;
	}
}

@keyframes animFromBottom {
	0% {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	99% {
		-webkit-transform: translateY(1rem);
		transform: translateY(1rem);
	}

	to {
		opacity: 0;
		visibility: hidden;
	}
}

@-webkit-keyframes animFromBottomIfVisible {
	0% {
		opacity: 0;
		-webkit-transform: translateY(1rem);
		transform: translateY(1rem);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes animFromBottomIfVisible {
	0% {
		opacity: 0;
		-webkit-transform: translateY(1rem);
		transform: translateY(1rem);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.striked {
  position: relative;
  color: #fff;
  font-size: 24px;
}

.striked:before {
  border-bottom: 3px solid #fff;
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  transform: rotate(-12deg);
}

